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

en_CA.inc 1.8KB

123456789101112131415161718192021222324252627282930
  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['curpasswd'] = 'Current Password:';
  17. $labels['newpasswd'] = 'New Password:';
  18. $labels['confpasswd'] = 'Confirm New Password:';
  19. $messages['nopassword'] = 'Please input new password.';
  20. $messages['nocurpassword'] = 'Please input current password.';
  21. $messages['passwordincorrect'] = 'Current password incorrect.';
  22. $messages['passwordinconsistency'] = 'Passwords do not match, please try again.';
  23. $messages['crypterror'] = 'Could not save new password. Encryption function missing.';
  24. $messages['connecterror'] = 'Could not save new password. Connection error.';
  25. $messages['internalerror'] = 'Could not save new password.';
  26. $messages['passwordshort'] = 'Password must be at least $length characters long.';
  27. $messages['passwordweak'] = 'Password must include at least one number and one punctuation character.';
  28. $messages['passwordforbidden'] = 'Password contains forbidden characters.';