From 66ddaaf798a7ac2ed368ac19d9f64db3d957f20d Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 14 Mar 2010 16:03:19 -0700 Subject: marked more strings for translation --- include/game.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include/game.php') diff --git a/include/game.php b/include/game.php index db27bde..0601e44 100644 --- a/include/game.php +++ b/include/game.php @@ -1904,7 +1904,7 @@ switch($mystatus) } else if(myisset('card') && !$myturn ) { - echo "please wait until it's your turn!
\n"; + echo _("please wait until it's your turn!")."
\n"; } if($seq!=4 && $trickNR>=1 && !(myisset('card') && $myturn) ) @@ -1981,7 +1981,7 @@ switch($mystatus) if($myturn && !myisset('card') && $mystatus=='play' ) { echo "Hello ".$myname.", it's your turn!
\n"; - echo "Your cards are:
\n"; + echo _('Your cards are').":
\n"; /* do we have to follow suite? */ $followsuit = 0; @@ -2013,7 +2013,7 @@ switch($mystatus) } else if($mystatus=='play' ) { - echo "Your cards are:
\n"; + echo _('Your cards are').":
\n"; foreach($mycards as $card) display_card($card,$PREF['cardset']); } @@ -2023,7 +2023,7 @@ switch($mystatus) $oldcards = mysort($oldcards,$gametype); if(isset($_SESSION['id']) && $myid==$_SESSION['id']) - echo "Your cards were:
\n"; + echo _('Your cards were').":
\n"; else { $name = DB_get_name('userid',$myid); @@ -2109,10 +2109,10 @@ $gameend = time() - strtotime($r[0]); if($gamestatus == 'play' || $gameend < 60*60*24*7) { - echo "
\nA short comment:\n"; + echo "
\n"._('A short comment').":\n"; } -echo "\n"; +echo "\n"; /* has this hand been played by others? */ $other_game_ids = DB_played_by_others($gameid); -- cgit v1.2.3-18-g5258