summaryrefslogtreecommitdiffstats
path: root/include/cancelgame.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2012-12-31 16:46:02 +0000
committerArun Persaud <arun@nubati.net>2013-01-12 15:04:24 -0800
commit2d296b5743e2f2a07816f08e42d9ee1828e26a67 (patch)
tree8d497666d0b4a65b90a695aa77c4a105f6d56621 /include/cancelgame.php
parenta38183cf36a31f4372a5e37d09c6312a9fa267f7 (diff)
downloade-DoKo-2d296b5743e2f2a07816f08e42d9ee1828e26a67.tar.gz
e-DoKo-2d296b5743e2f2a07816f08e42d9ee1828e26a67.tar.bz2
e-DoKo-2d296b5743e2f2a07816f08e42d9ee1828e26a67.zip
fixed more language settings in email; marked more strings for translation
Diffstat (limited to 'include/cancelgame.php')
-rw-r--r--include/cancelgame.php14
1 files changed, 8 insertions, 6 deletions
diff --git a/include/cancelgame.php b/include/cancelgame.php
index df6e98d..a6a4fe9 100644
--- a/include/cancelgame.php
+++ b/include/cancelgame.php
@@ -52,22 +52,24 @@ $myname = DB_get_name('hash',$me);
$r = DB_query_array("SELECT mod_date from Game WHERE id='$gameid' " );
if(time()-strtotime($r[0]) > 60*60*24*30) /* = 1 month */
{
- $message = "Game ".DB_format_gameid($gameid).
- " has been canceled since nothing happend for a while and $myname requested it.\n\n";
-
/* email to all players */
$userids = DB_get_all_userid_by_gameid($gameid);
foreach($userids as $user)
{
+ set_language($user, 'uid');
+ $message = sprintf(_('Game %s has been canceled since nothing happend for a while and %s requested it.'),DB_format_gameid($gameid),$myname)."\n\n";
+
mymail($user,$gameid, GAME_CANCELED_TIMEOUT, $message);
}
+ set_language($myid, 'uid');
/* set gamestatus to canceled */
cancel_game('timedout',$gameid);
- echo "<p style=\"background-color:red\";>Game ".DB_format_gameid($gameid).
- " has been canceled.<br /><br /></p>";
+ echo '<p style="background-color:red";>'.
+ sprintf(_('Game %s has been canceled.'),DB_format_gameid($gameid)).
+ "<br /><br /></p>\n";
}
else /* game can't be canceled yet */
- echo "<p>You need to wait longer before you can cancel a game...</p>\n";
+ echo "<p>"._('You need to wait longer before you can cancel a game...')."</p>\n";
?> \ No newline at end of file