diff options
author | Konstantin Lopyrev <klopyrev@google.com> | 2010-05-27 16:01:41 -0700 |
---|---|---|
committer | Konstantin Lopyrev <klopyrev@google.com> | 2010-05-27 16:04:49 -0700 |
commit | 57fbf694a53afb9c1924d81272179dceb3acfa4d (patch) | |
tree | 7e3b444006920eea89fd87cd3392eeff668ea124 /res/values | |
parent | dfa18503b694c57fbdd677906768246629a3ddeb (diff) | |
download | packages_apps_Settings-57fbf694a53afb9c1924d81272179dceb3acfa4d.zip packages_apps_Settings-57fbf694a53afb9c1924d81272179dceb3acfa4d.tar.gz packages_apps_Settings-57fbf694a53afb9c1924d81272179dceb3acfa4d.tar.bz2 |
Change I546ee2fb: Fix 2677197: Adding minimum complex character support.
Change-Id: I5590ec2743b84e34098871507dbcc2f49e5a4e9f
Diffstat (limited to 'res/values')
-rw-r--r-- | res/values/strings.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml index f248ab9..a1829f2 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -620,6 +620,36 @@ <!-- Error shown when in PASSWORD mode and password doesn't contain any symbols --> <string name="lockpassword_password_requires_symbol">Password must contain at least one symbol</string> + <!-- Error shown when in PASSWORD mode and password doesn't contain the required number of letters --> + <plurals name="lockpassword_password_requires_letters"> + <item quantity="one">Password must contain at least 1 letter</item> + <item quantity="other">Password must contain at least %d letters</item> + </plurals> + + <!-- Error shown when in PASSWORD mode and password doesn't contain the required number of lowercase letters --> + <plurals name="lockpassword_password_requires_lowercase"> + <item quantity="one">Password must contain at least 1 lowercase letter</item> + <item quantity="other">Password must contain at least %d lowercase letters</item> + </plurals> + + <!-- Error shown when in PASSWORD mode and password doesn't contain the required number of uppercase letters --> + <plurals name="lockpassword_password_requires_uppercase"> + <item quantity="one">Password must contain at least 1 uppercase letter</item> + <item quantity="other">Password must contain at least %d uppercase letters</item> + </plurals> + + <!-- Error shown when in PASSWORD mode and password doesn't contain the required number of numerical digits --> + <plurals name="lockpassword_password_requires_numeric"> + <item quantity="one">Password must contain at least 1 numerical digit</item> + <item quantity="other">Password must contain at least %d numerical digits</item> + </plurals> + + <!-- Error shown when in PASSWORD mode and password doesn't contain the required number of special symbols --> + <plurals name="lockpassword_password_requires_symbols"> + <item quantity="one">Password must contain at least 1 special symbol</item> + <item quantity="other">Password must contain at least %d special symbols</item> + </plurals> + <!-- Error shown when in PASSWORD mode and password has been used recently. Please keep this string short! --> <string name="lockpassword_password_recently_used">Device administrator disallows using a recent password</string> |