You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.9 KiB
PHP
33 lines
1.9 KiB
PHP
<?php
|
|
|
|
/*
|
|
+-----------------------------------------------------------------------+
|
|
| plugins/password/localization/<lang>.inc |
|
|
| |
|
|
| Localization file of the Roundcube Webmail Password plugin |
|
|
| Copyright (C) 2012-2013, The Roundcube Dev Team |
|
|
| |
|
|
| Licensed under the GNU General Public License version 3 or |
|
|
| any later version with exceptions for skins & plugins. |
|
|
| See the README file for a full license statement. |
|
|
| |
|
|
+-----------------------------------------------------------------------+
|
|
|
|
For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/
|
|
*/
|
|
$labels['changepasswd'] = 'Modifica la Password';
|
|
$labels['curpasswd'] = 'Password corrente:';
|
|
$labels['newpasswd'] = 'Nuova password:';
|
|
$labels['confpasswd'] = 'Conferma la nuova Password:';
|
|
$messages['nopassword'] = 'Per favore inserire la nuova password.';
|
|
$messages['nocurpassword'] = 'Per favore inserire la password corrente.';
|
|
$messages['passwordincorrect'] = 'La password corrente non è corretta.';
|
|
$messages['passwordinconsistency'] = 'Le password non coincidono, per favore reinserire.';
|
|
$messages['crypterror'] = 'Impossibile salvare la nuova password. Funzione di crittografia mancante.';
|
|
$messages['connecterror'] = 'Imposibile salvare la nuova password. Errore di connessione.';
|
|
$messages['internalerror'] = 'Impossibile salvare la nuova password.';
|
|
$messages['passwordshort'] = 'La password deve essere lunga almeno $length caratteri.';
|
|
$messages['passwordweak'] = 'La password deve includere almeno una cifra decimale e un simbolo di punteggiatura.';
|
|
$messages['passwordforbidden'] = 'La password contiene caratteri proibiti.';
|
|
?>
|