# HG changeset patch # User Richard Laager # Date 1162878761 0 # Node ID 478e64cf96fedf85c4d96215f5e88bfc92aa9105 # Parent 056c8a27668cbb9c6618565085ac0dedb657a2c7 [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 diff -r 056c8a27668c -r 478e64cf96fe libgaim/protocols/qq/login_logout.c --- 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")); diff -r 056c8a27668c -r 478e64cf96fe libgaim/protocols/simple/simple.c --- 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");