From: <rl...@us...> - 2006-11-07 05:52:52
|
Revision: 17692 http://svn.sourceforge.net/gaim/?rev=17692&view=rev Author: rlaager Date: 2006-11-06 21:52:41 -0800 (Mon, 06 Nov 2006) Log Message: ----------- 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. Modified Paths: -------------- trunk/libgaim/protocols/qq/login_logout.c trunk/libgaim/protocols/simple/simple.c Modified: trunk/libgaim/protocols/qq/login_logout.c =================================================================== --- trunk/libgaim/protocols/qq/login_logout.c 2006-11-07 02:59:24 UTC (rev 17691) +++ trunk/libgaim/protocols/qq/login_logout.c 2006-11-07 05:52:41 UTC (rev 17692) @@ -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")); Modified: trunk/libgaim/protocols/simple/simple.c =================================================================== --- trunk/libgaim/protocols/simple/simple.c 2006-11-07 02:59:24 UTC (rev 17691) +++ trunk/libgaim/protocols/simple/simple.c 2006-11-07 05:52:41 UTC (rev 17692) @@ -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"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |