Fixed a typo.

2005-08-14  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* gnome-about-me-password.c: Fixed a typo.
This commit is contained in:
Francisco Javier F. Serrador 2005-08-14 21:13:54 +00:00 committed by Francisco Javier Fernandez Serrador
parent 46a69bcda0
commit a9b538de77
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2005-08-14 Francisco Javier F. Serrador <serrador@cvs.gnome.org>
* gnome-about-me-password.c (update_password): Replace "passwod is
to simple" with "Password is too simple".
2005-08-07 Diego Gonzalez <diego@pemas.net> 2005-08-07 Diego Gonzalez <diego@pemas.net>
* gnome-about-me-password.c (update_password): fix the rest of bug * gnome-about-me-password.c (update_password): fix the rest of bug

View file

@ -317,7 +317,7 @@ update_password (PasswordDialog *pdialog, gchar **msg)
*msg = g_strdup (_("Password is too simple")); *msg = g_strdup (_("Password is too simple"));
retcode = -3; retcode = -3;
} else if (g_strrstr (s, "simple") != NULL) { } else if (g_strrstr (s, "simple") != NULL) {
*msg = g_strdup (_("Password is to simple")); *msg = g_strdup (_("Password is too simple"));
retcode = -3; retcode = -3;
} else if (g_strrstr (s, "similar") != NULL) { } else if (g_strrstr (s, "similar") != NULL) {
*msg = g_strdup (_("Old and new passwords are too similar")); *msg = g_strdup (_("Old and new passwords are too similar"));