From: Matteo Nastasi (mop) Date: Fri, 28 Nov 2014 08:00:26 +0000 (+0100) Subject: multilanguage for user guarantee X-Git-Tag: v4.16.0~1 X-Git-Url: http://mop.ddnsfree.com/gitweb/?p=brisk.git;a=commitdiff_plain;h=a077bfd2503b30f044b70ff6f8eaf44ae0de106b multilanguage for user guarantee --- diff --git a/web/index_wr.php b/web/index_wr.php index 8cde2fa..339e461 100644 --- a/web/index_wr.php +++ b/web/index_wr.php @@ -22,7 +22,9 @@ * */ -$mlang_indwr = array( 'btn_backtotab' => array( 'it' => 'Torna ai tavoli.', +$mlang_indwr = array( 'unknownerr' => array( 'it' => 'errore sconosciuto', + 'en' => 'unknown error'), + 'btn_backtotab' => array( 'it' => 'Torna ai tavoli.', 'en' => 'Back to tables.' ), 'warrrepl' => array( 'it' => '
Il nominativo è stato inoltrato all\'amministratore.

Nell\'arco di pochi giorni verrà

notificata al garantito l\'avvenuta registrazione.', 'en' => '
The subscription was forwarded to the administrator.

In a few days we will notify

your friend the occurred registration.'), @@ -44,10 +46,8 @@ $mlang_indwr = array( 'btn_backtotab' => array( 'it' => 'Torna ai tavoli.', 'en' => 'The table where you want to sit require authentication'), 'mustcert' => array( 'it' => 'Il tavolo a cui volevi sederti richiede autentifica e certificazione.', 'en' => 'The table where you want to sit require authentication and certification'), - 'tabwait_a'=> array( 'it' => 'Il tavolo si è appena liberato, ci si potrà sedere tra ', - 'en' => 'The table is only just opened, you will sit down in '), // FIXME - 'tabwait_b'=> array( 'it' => ' secondi.', - 'en' => ' seconds.'), + 'tabwait'=> array( 'it' => 'Il tavolo si è appena liberato, ci si potrà sedere tra %d secondi.', + 'en' => 'The table is only just opened, you will sit down in %d seconds.'), 'mustfirst'=> array( 'it' => 'Il tuo utente può sedersi al tavolo solo per primo.', 'en' => 'Your can sit down as first user only.' ), 'pollmust' => array( 'it' => 'Per partecipare al sondaggio devi essere autenticato.', @@ -70,6 +70,10 @@ $mlang_indwr = array( 'btn_backtotab' => array( 'it' => 'Torna ai tavoli.', 'en' => '
You or someone with your same IP address is standing up from a table without the permission of the other players

You will wait '), 'badsit_b' => array( 'it' => ' prima di poterti sedere nuovamente.

Se non sei stato tu ad alzarti e possiedi un login con password, autenticandoti con quello, potrai accedere.', 'en' => ' before you can sit down again. If you don\'t leave the table and you have a login with a password, authenticating with this one you will access'), + 'nu_loginau' => array('it' => "login già in uso", + 'en' => "login already in use"), + 'nu_emailau' => array('it' => "email già utilizzata", + 'en' => "email already in use"), 'nu_msubj' => array( 'it' => 'Brisk: verifica email', 'en' => 'Brisk: email verification'), // %s(guar) %s(login) %s(baseurl) %d(code) %s(hash) @@ -340,9 +344,9 @@ function index_wr_main(&$brisk, $remote_addr_full, $get, $post, $cookie) // check for already used fields if (($idret = $bdb->check_record_by_login_or_email($cli_name, $cli_email)) != 0) { - $mesg_to_user = nickserv_msg($dt, ($idret == 1 ? "login già in uso" : - ($idret == 2 ? "email già utilizzata" - : "errore sconosciuto"))); + $mesg_to_user = nickserv_msg($dt, ($idret == 1 ? $mlang_indwr['nu_loginau'][$G_lang] : + ($idret == 2 ? $mlang_indwr['nu_emailau'][$G_lang] + : $mlang_indwr['unknownerr'][$G_lang]))); break; } $bdb->transaction('BEGIN'); @@ -703,8 +707,8 @@ function index_wr_main(&$brisk, $remote_addr_full, $get, $post, $cookie) $not_allowed_msg = nickserv_msg($dt, $mlang_indwr['shutmsg'][$G_lang]); } else if ($table->wakeup_time > $curtime) { - $not_allowed_msg = nickserv_msg($dt, $mlang_indwr['tabwait_a'][$G_lang], - $table->wakeup_time - $curtime, $mlang_indwr['tabwait_b'][$G_lang]); + $not_allowed_msg = nickserv_msg($dt, sprintf($mlang_indwr['tabwait'][$G_lang], + $table->wakeup_time - $curtime)); } else if ($table->auth_type == TABLE_AUTH_TY_CERT && ( ! $user->is_cert() ) ) { $not_allowed_msg = nickserv_msg($dt, $mlang_indwr['mustcert'][$G_lang]);