changeset 14920:478e64cf96fe

[gaim-migrate @ 17692] Change a couple of protocols to use the more common "Incorrect password." string. The Novell prpl has an "Invalid password" string, which probably means the same thing, but I'm not 100% sure. Ideally, we'd get that changed, too. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 07 Nov 2006 05:52:41 +0000
parents 056c8a27668c
children 57dcc53e77a4
files libgaim/protocols/qq/login_logout.c libgaim/protocols/simple/simple.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libgaim/protocols/qq/login_logout.c	Tue Nov 07 02:59:24 2006 +0000
+++ b/libgaim/protocols/qq/login_logout.c	Tue Nov 07 05:52:41 2006 +0000
@@ -476,7 +476,7 @@
 	switch (ret) {
 	case QQ_LOGIN_REPLY_PWD_ERROR:
 		gc->wants_to_die = TRUE;
-		gaim_connection_error(gc, _("Wrong password!"));
+		gaim_connection_error(gc, _("Incorrect password."));
 		break;
 	case QQ_LOGIN_REPLY_MISC_ERROR:
 		gaim_connection_error(gc, _("Unable to login, check debug log"));
--- a/libgaim/protocols/simple/simple.c	Tue Nov 07 02:59:24 2006 +0000
+++ b/libgaim/protocols/simple/simple.c	Tue Nov 07 05:52:41 2006 +0000
@@ -1032,7 +1032,7 @@
 				gaim_debug_info("simple", "REGISTER retries %d\n", sip->registrar.retries);
 				if(sip->registrar.retries > 3) {
 					sip->gc->wants_to_die = TRUE;
-					gaim_connection_error(sip->gc, _("Wrong Password"));
+					gaim_connection_error(sip->gc, _("Incorrect password."));
 					return TRUE;
 				}
 				tmp = sipmsg_find_header(msg, "WWW-Authenticate");