X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=blobdiff_plain;f=include%2Fcancelgame.php;h=a6a4fe97c57ba33c0c438c3782ef08aed3fa62bd;hp=412812684fd6ea1eb2dc37e1425e50ffec73ab34;hb=2d296b5743e2f2a07816f08e42d9ee1828e26a67;hpb=08583506b9bdb4ef2d30bad9752c960f20fe54b6 diff --git a/include/cancelgame.php b/include/cancelgame.php index 4128126..a6a4fe9 100644 --- a/include/cancelgame.php +++ b/include/cancelgame.php @@ -1,5 +1,5 @@ +/* Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012 Arun Persaud * * This file is part of e-DoKo. * @@ -24,9 +24,6 @@ if(!isset($HOST)) exit; -/* display the menu */ -output_status(); - /* you should only get here from a game page, so $me should be set */ if(!myisset("me")) { @@ -55,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 "

Game ".DB_format_gameid($gameid). - " has been canceled.

"; + echo '

'. + sprintf(_('Game %s has been canceled.'),DB_format_gameid($gameid)). + "

\n"; } else /* game can't be canceled yet */ - echo "

You need to wait longer before you can cancel a game...

\n"; + echo "

"._('You need to wait longer before you can cancel a game...')."

\n"; ?> \ No newline at end of file