X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Findex.php;fp=web%2Findex.php;h=647b1bbffe856ffdd3133fb438236590113ce479;hb=8731028d57608423cec432688bffc32d7763b559;hp=defcdf017927a9e5e9bbe1965166c84d76d90ffe;hpb=07c17bc6b57350654f6da42b27dc57ac3ea6d8ad;p=brisk.git diff --git a/web/index.php b/web/index.php index defcdf0..647b1bb 100644 --- a/web/index.php +++ b/web/index.php @@ -49,6 +49,8 @@ $mlang_room = array( 'userpasserr' => array('it' => 'Utente e/o password errati 'en' => 'EN Abbiamo perso le tue tracce, quindi ti abbiamo disconnesso.'), 'reas_ttot' => array('it' => 'Abbiamo perso le tue tracce mentre stavi giocando, quindi ti abbiamo disconnesso.', 'en' => 'EN Abbiamo perso le tue tracce mentre stavi giocando, quindi ti abbiamo disconnesso.'), + 'reas_anon' => array('it' => 'L\' accesso attraverso sistemi di anonimizzazione non è consentito.', + 'en' => 'EN L\' accesso attraverso sistemi di anonimizzazione non è consentito.'), 'reas_anot' => array('it' => 'La tua sessione è stata assegnata ad un altro browser.', 'en' => 'EN La tua sessione è stata assegnata ad un altro browser.'), 'btn_enter' => array('it' => 'entra', @@ -362,6 +364,9 @@ function index_main(&$brisk, $transp_type, $header, &$header_out, $remote_addr_f case GHOST_SESS_REAS_TTOT: $last_msg = $mlang_room['reas_ttot'][$G_lang]; break; + case GHOST_SESS_REAS_ANON: + $last_msg = $mlang_room['reas_anon'][$G_lang]; + break; default: $last_msg = $mlang_room['reas_unkn'][$G_lang]; break;