您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

en_US.inc 2.6KB

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