summaryrefslogtreecommitdiffstats
path: root/include/game.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2013-01-12 17:12:20 -0800
committerArun Persaud <arun@nubati.net>2013-01-12 17:12:20 -0800
commit4d2440b798773b0e26a1434308d2f45061ecdbc2 (patch)
tree419a7030487c220da26a1209793d82a0ace9cc87 /include/game.php
parent106c90b95129be78b2763553c72e3aa131f5ee4b (diff)
downloade-DoKo-4d2440b798773b0e26a1434308d2f45061ecdbc2.tar.gz
e-DoKo-4d2440b798773b0e26a1434308d2f45061ecdbc2.tar.bz2
e-DoKo-4d2440b798773b0e26a1434308d2f45061ecdbc2.zip
TRANSLATION: marked more messages for translation
Diffstat (limited to 'include/game.php')
-rw-r--r--include/game.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/game.php b/include/game.php
index 367cc07..9b878aa 100644
--- a/include/game.php
+++ b/include/game.php
@@ -328,7 +328,7 @@ if($session)
$next = NULL;
/* check for solo, add game type to session number */
- echo " Game $session.$j";
+ echo ' '._('Game')." $session.$j";
if($gamestatus != 'pre' && $GT !='normal' )
echo " ($GT)";
if(isset($_SESSION['id']) && $_SESSION['id']==$myid)
@@ -2238,7 +2238,8 @@ switch ($card_status) {
$name = DB_get_name('userid',$user);
$oldcards = DB_get_all_hand($userhash);
$oldcards = mysort($oldcards,$gametype);
- echo "$name's cards were: <br />\n";
+ echo sprintf(_("%s's cards were:"),$name);
+ echo " <br />\n";
foreach($oldcards as $card)
display_card($card,$PREF['cardset']);
}