Improved new username format message (bug #647851)

Added 'only' to the new username sentence ("The username must consist of")
to have "The username must only consist of", based on the suggestion in
bug #647851 (https://bugzilla.gnome.org/show_bug.cgi?id=647851).
This commit is contained in:
Robert Roth 2011-07-08 12:11:44 +00:00 committed by Rodrigo Moya
parent 1d37702b65
commit 2714908bf7

View file

@ -519,7 +519,7 @@ is_valid_username (const gchar *username, gchar **tip)
*tip = g_strdup (_("The username cannot start with a '-'"));
}
else {
*tip = g_strdup (_("The username must consist of:\n"
*tip = g_strdup (_("The username must only consist of:\n"
" \xe2\x9e\xa3 letters from the English alphabet\n"
" \xe2\x9e\xa3 digits\n"
" \xe2\x9e\xa3 any of the characters '.', '-' and '_'"));