From: Arun Persaud Date: Tue, 18 Sep 2012 04:13:17 +0000 (-0700) Subject: mark more strings for translation X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=commitdiff_plain;h=444d740c6de6a1728421f2b2504a18a3d60d3766;hp=faf6fd486495c56f1a730471a9701d17d73c8154 mark more strings for translation --- diff --git a/include/game.php b/include/game.php index 2053350..22efe36 100644 --- a/include/game.php +++ b/include/game.php @@ -2034,8 +2034,8 @@ switch($mystatus) case 'init': case 'check': /* output sickness of other playes, in case they already selected and are sitting in front of the current player */ - echo "\n
\n"; - echo "
\n"; + echo "\n".'
'."\n"; + echo '
'."\n"; for($pos=1;$pos<5;$pos++) { @@ -2044,21 +2044,21 @@ switch($mystatus) $userstatus = DB_get_hand_status_by_userid_and_gameid($userid,$gameid); if($userstatus=='start' || $userstatus=='init') - echo "
still needs
to decide
\n"; /* show this to everyone */ + echo '
'._('still needs
to decide')."
\n"; /* show this to everyone */ else if($usersick!=NULL) /* in the init-phase we only showed players with $pos<$mypos, now we can show all */ - echo "
sick
\n"; + echo '
'._('sick')."
\n"; else - echo "
healthy
\n"; + echo '
'._('healthy')."
\n"; } /* display all comments on the top right (card1)*/ $comments = DB_get_pre_comment($gameid); /* display card */ - echo "
\n"; + echo '
'."\n"; /* display comments */ foreach( $comments as $comment ) - echo " ".$comment[1].": ".$comment[0]."\n"; + echo ' '.$comment[1].': '.$comment[0]."\n"; echo "
\n"; /* end div card */