diff options
author | Arun Persaud <arun@nubati.net> | 2012-09-17 21:13:17 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2012-09-17 21:13:17 -0700 |
commit | 444d740c6de6a1728421f2b2504a18a3d60d3766 (patch) | |
tree | fc01b3ae0516c0d49df9a5b46a7833b63c910297 | |
parent | faf6fd486495c56f1a730471a9701d17d73c8154 (diff) | |
download | e-DoKo-444d740c6de6a1728421f2b2504a18a3d60d3766.tar.gz e-DoKo-444d740c6de6a1728421f2b2504a18a3d60d3766.tar.bz2 e-DoKo-444d740c6de6a1728421f2b2504a18a3d60d3766.zip |
mark more strings for translation
-rw-r--r-- | include/game.php | 14 |
1 files 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<div class=\"tricks\">\n"; - echo " <div class=\"trick\" id=\"trick0\">\n"; + echo "\n".'<div class="tricks">'."\n"; + echo ' <div class="trick" id="trick0">'."\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 " <div class=\"vorbehalt".($pos-1)."\"> still needs <br />to decide </div>\n"; /* show this to everyone */ + echo ' <div class="vorbehalt'.($pos-1).'">'._('still needs <br />to decide')."</div>\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 " <div class=\"vorbehalt".($pos-1)."\"> sick </div>\n"; + echo ' <div class="vorbehalt'.($pos-1).'">'._('sick')."</div>\n"; else - echo " <div class=\"vorbehalt".($pos-1)."\"> healthy </div>\n"; + echo ' <div class="vorbehalt'.($pos-1).'">'._('healthy')."</div>\n"; } /* display all comments on the top right (card1)*/ $comments = DB_get_pre_comment($gameid); /* display card */ - echo " <div class=\"card1\">\n"; + echo ' <div class="card1">'."\n"; /* display comments */ foreach( $comments as $comment ) - echo " <span class=\"comment\">".$comment[1].": ".$comment[0]."</span>\n"; + echo ' <span class="comment">'.$comment[1].': '.$comment[0]."</span>\n"; echo " </div>\n"; /* end div card */ |