summaryrefslogtreecommitdiffstats
path: root/include/functions.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2013-01-19 12:51:28 -0800
committerArun Persaud <arun@nubati.net>2013-01-19 12:51:28 -0800
commit029a068c5ccaac8e5ff3d7e9d7f7f435976b4bc5 (patch)
treed761bdd10c173e498091fe3d84ad13215f6429da /include/functions.php
parent01b20748909652b47e34dfd8898365105704471b (diff)
downloade-DoKo-029a068c5ccaac8e5ff3d7e9d7f7f435976b4bc5.tar.gz
e-DoKo-029a068c5ccaac8e5ff3d7e9d7f7f435976b4bc5.tar.bz2
e-DoKo-029a068c5ccaac8e5ff3d7e9d7f7f435976b4bc5.zip
TRANSLATION: marked more strings for translation
Diffstat (limited to 'include/functions.php')
-rw-r--r--include/functions.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/functions.php b/include/functions.php
index d9421f1..47e8089 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -1087,8 +1087,8 @@ function display_single_user($r,$start=0)
$stop = substr($vacation[1],0,10);
$comment = $vacation[2];
- $title = "begin: $start end: $stop $comment";
- echo " <span class=\"vacation\" title=\"$title\">$gravatar (on vacation until $stop)</span> \n";
+ $title = _("begin:")." $start "._("end:")." $stop $comment";
+ echo " <span class=\"vacation\" title=\"$title\">$gravatar "._("(on vacation until $stop)")."</span> \n";
}
else
echo " $gravatar \n";
@@ -1450,7 +1450,7 @@ function format_score_table_ascii($score)
/* truncate table if we have too many games */
$max = sizeof($score);
- if($max>6) $output.=" (table truncated to last 6 games)\n";
+ if($max>6) $output.=" "._("(table truncated to last 6 games)")."\n";
/* output header */
foreach($score[0]['players'] as $id=>$points)