user-accounts: add positive confirmation to the password dialog

Add checkmarks, remove exclam icons, remove tooltips, change
password hints and decrese timeout (by design).

https://bugzilla.gnome.org/show_bug.cgi?id=702476
This commit is contained in:
Ondrej Holy 2013-07-23 13:22:49 +02:00 committed by Stef Walter
parent 0395197d37
commit aaf25450ee
5 changed files with 26 additions and 29 deletions

View file

@ -115,8 +115,9 @@ pw_error_hint (gint error)
case PWQ_ERROR_MIN_LENGTH:
return C_("Password hint", "Try to add more letters, numbers and symbols.");
case PWQ_ERROR_EMPTY_PASSWORD:
default:
return C_("Password hint", "Mix uppercase and lowercase and use a number or two.");
default:
return C_("Password hint", "Good password! Adding more letters, numbers and punctuation will make it stronger.");
}
}