You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

en_US.inc 2.2KB

12345678910111213141516171819202122232425262728293031323334353637
  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.';