From 444d740c6de6a1728421f2b2504a18a3d60d3766 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Mon, 17 Sep 2012 21:13:17 -0700 Subject: mark more strings for translation --- include/game.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 */ -- cgit v1.2.3-18-g5258