diff options
author | Go MAEDA <maeda@farend.jp> | 2019-08-29 01:35:09 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-08-29 01:35:09 +0000 |
commit | 35e6a532f56d1a3e54476d2adb36375169e9bef9 (patch) | |
tree | 6d225402666ad8aa85b2fe6f9d40c427669368fc /config/locales | |
parent | 0d9f7ee64a43ce75dd87c8d035a9d335b1077c16 (diff) | |
download | redmine-35e6a532f56d1a3e54476d2adb36375169e9bef9.tar.gz redmine-35e6a532f56d1a3e54476d2adb36375169e9bef9.zip |
Force passwords to contain specified character classes (#4221).
Patch by Takenori TAKAKI.
git-svn-id: http://svn.redmine.org/redmine/trunk@18411 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/locales')
-rw-r--r-- | config/locales/en.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/locales/en.yml b/config/locales/en.yml index b4f37f0b7..d0c72ef69 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -132,6 +132,10 @@ en: earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues" not_a_regexp: "is not a valid regular expression" open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task" + must_contain_uppercase: "must contain uppercase letters (A-Z)" + must_contain_lowercase: "must contain lowercase letters (a-z)" + must_contain_digits: "must contain digits (0-9)" + must_contain_special_chars: "must contain special characters (!, $, %, ...)" actionview_instancetag_blank_option: Please select @@ -437,6 +441,7 @@ en: setting_openid: Allow OpenID login and registration setting_password_max_age: Require password change after setting_password_min_length: Minimum password length + setting_password_required_char_classes : Required character classes for passwords setting_lost_password: Allow password reset via email setting_new_project_user_role_id: Role given to a non-admin user who creates a project setting_default_projects_modules: Default enabled modules for new projects @@ -1061,6 +1066,10 @@ en: label_issue_history_properties: Property changes label_issue_history_notes: Notes label_last_tab_visited: Last visited tab + label_password_char_class_uppercase: uppercase letters + label_password_char_class_lowercase: lowercase letters + label_password_char_class_digits: digits + label_password_char_class_special_chars: special characters button_login: Login button_submit: Submit @@ -1152,6 +1161,7 @@ en: text_project_identifier_info: 'Only lower case letters (a-z), numbers, dashes and underscores are allowed.<br />Once saved, the identifier cannot be changed.' text_caracters_maximum: "%{count} characters maximum." text_caracters_minimum: "Must be at least %{count} characters long." + text_characters_must_contain: "Must contain %{character_classes}." text_length_between: "Length between %{min} and %{max} characters." text_tracker_no_workflow: No workflow defined for this tracker text_role_no_workflow: No workflow defined for this role |