From 25ae0983e5d92c4568c27eb9fa64c927eae7773d Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sat, 21 Feb 2009 16:38:00 +0000 Subject: [PATCH] start of multilang support, myconsole.js start support, browser detection added --- web/index.php | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/web/index.php b/web/index.php index 160bee0..90a91a0 100644 --- a/web/index.php +++ b/web/index.php @@ -2,7 +2,7 @@ /* * brisk - index.php * - * Copyright (C) 2006-2008 Matteo Nastasi + * Copyright (C) 2006-2009 Matteo Nastasi * mailto: nastasi@alternativeoutput.it * matteo.nastasi@milug.org * web: http://www.alternativeoutput.it @@ -28,6 +28,9 @@ require_once("Obj/brisk.phh"); require_once("Obj/auth.phh"); require_once("Obj/proxyscan.phh"); +$mlang_room = array( 'userpasserr' => array('it' => 'Utente e/o password errati.', + 'en' => 'Wrong user and/or password.') ); + // Use of proxies isn't allowed. if (!$G_is_local && is_proxy()) exit; @@ -44,7 +47,7 @@ function main() { GLOBAL $G_with_topbanner, $G_topbanner, $G_is_local; GLOBAL $sess, $name, $pass_private, $table_idx, $table_token, $BRISK_SHOWHTML, $BRISK_DEBUG, $_SERVER; - + GLOBAL $G_lang, $G_lng, $mlang_room; $body = ""; $tables = ""; $standup = ""; @@ -133,8 +136,8 @@ function main() else { /* Login Rendering */ /* MLANG: "Utente e/o password errati.", "Il nickname deve contenere almeno una lettera o una cifra.", "Spiacenti, non ci sono più posti liberi. Riprova più tardi.", "Il tuo nickname è già in uso." */ - if ($idx == -3) - $body .= '
Utente e/o password errati.
'; + if ($idx == -3) + $body .= '
'.$mlang_room['userpasserr'][$G_lang].'
'; else if ($idx == -2) $body .= '
Il nickname deve contenere almeno una lettera o una cifra.
'; else if ($idx == -1) @@ -372,20 +375,23 @@ supported by:

+ + - + \n"); @@ -466,10 +472,13 @@ Digita il tuo nickname per accedere ai tavoli della briscola.

+ + - + \n"); -- 2.17.1