0
|
1 <?php
|
|
2
|
|
3 /*
|
|
4 +-----------------------------------------------------------------------+
|
|
5 | plugins/password/localization/<lang>.inc |
|
|
6 | |
|
|
7 | Localization file of the Roundcube Webmail Password plugin |
|
|
8 | Copyright (C) 2012-2013, The Roundcube Dev Team |
|
|
9 | |
|
|
10 | Licensed under the GNU General Public License version 3 or |
|
|
11 | any later version with exceptions for skins & plugins. |
|
|
12 | See the README file for a full license statement. |
|
|
13 | |
|
|
14 +-----------------------------------------------------------------------+
|
|
15
|
|
16 For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/
|
|
17 */
|
|
18
|
|
19 $labels = array();
|
|
20 $labels['changepasswd'] = 'Change password';
|
|
21 $labels['curpasswd'] = 'Current Password:';
|
|
22 $labels['newpasswd'] = 'New Password:';
|
|
23 $labels['confpasswd'] = 'Confirm New Password:';
|
|
24
|
|
25 $messages = array();
|
|
26 $messages['nopassword'] = 'Please input new password.';
|
|
27 $messages['nocurpassword'] = 'Please input current password.';
|
|
28 $messages['passwordincorrect'] = 'Current password incorrect.';
|
|
29 $messages['passwordinconsistency'] = 'Passwords do not match, please try again.';
|
|
30 $messages['crypterror'] = 'Could not save new password. Encryption function missing.';
|
|
31 $messages['connecterror'] = 'Could not save new password. Connection error.';
|
|
32 $messages['internalerror'] = 'Could not save new password.';
|
|
33 $messages['passwordshort'] = 'Password must be at least $length characters long.';
|
|
34 $messages['passwordweak'] = 'Password must include at least one number and one punctuation character.';
|
|
35 $messages['passwordforbidden'] = 'Password contains forbidden characters.';
|
|
36 $messages['firstloginchange'] = 'This is your first login. Please change your password.';
|
|
37 $messages['disablednotice'] = 'The system is currently under maintenance and password change is not possible at the moment. Everything should be back to normal soon. We apologize for any inconvenience.';
|
|
38 $messages['passwinhistory'] = 'This password has already been used previously.';
|
|
39 $messages['samepasswd'] = 'New password have to be different from the old one.';
|
|
40 $messages['passwdexpirewarning'] = 'Warning! Your password will expire soon, change it before $expirationdatetime.';
|
|
41 $messages['passwdexpired'] = 'Your password has expired, you have to change it now!';
|
|
42 $messages['passwdconstraintviolation'] = 'Password constraint violation. Password probably too weak.';
|