changeset 7043:35a567991f76

[gaim-migrate @ 7606] "My patch (i18n30.patch) includes: - xgettext was not able to correctly extract a message in src/protocols/yahoo/yahoo.c - updated po/POTFILES.in Regards, Bj?rn" committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 30 Sep 2003 00:34:25 +0000
parents d3f8aa123372
children c889aee7bd95
files po/POTFILES.in src/protocols/yahoo/yahoo.c
diffstat 2 files changed, 16 insertions(+), 26 deletions(-) [+]
line wrap: on
line diff
--- a/po/POTFILES.in	Mon Sep 29 23:59:25 2003 +0000
+++ b/po/POTFILES.in	Tue Sep 30 00:34:25 2003 +0000
@@ -22,6 +22,9 @@
 plugins/signals-test.c
 plugins/simple.c
 plugins/spellchk.c
+plugins/ssl/ssl-gnutls.c
+plugins/ssl/ssl-nss.c
+plugins/ssl/ssl.c
 plugins/statenotify.c
 plugins/tcl/tcl.c
 plugins/ticker/gtkticker.c
@@ -99,32 +102,17 @@
 src/protocols/irc/irc.c
 src/protocols/irc/msgs.c
 src/protocols/irc/parse.c
-src/protocols/jabber/expat.c
-src/protocols/jabber/genhash.c
-src/protocols/jabber/hashtable.c
+src/protocols/jabber/auth.c
+src/protocols/jabber/buddy.c
+src/protocols/jabber/chat.c
 src/protocols/jabber/jabber.c
-src/protocols/jabber/jconn.c
-src/protocols/jabber/jid.c
-src/protocols/jabber/jpacket.c
 src/protocols/jabber/jutil.c
-src/protocols/jabber/karma.c
-src/protocols/jabber/log.c
-src/protocols/jabber/pool.c
-src/protocols/jabber/pproxy.c
-src/protocols/jabber/rate.c
-src/protocols/jabber/sha.c
-src/protocols/jabber/snprintf.c
-src/protocols/jabber/socket.c
-src/protocols/jabber/str.c
+src/protocols/jabber/message.c
+src/protocols/jabber/parser.c
+src/protocols/jabber/presence.c
+src/protocols/jabber/roster.c
 src/protocols/jabber/win32/posix.uname.c
-src/protocols/jabber/xhash.c
 src/protocols/jabber/xmlnode.c
-src/protocols/jabber/xmlparse.c
-src/protocols/jabber/xmlrole.c
-src/protocols/jabber/xmltok.c
-src/protocols/jabber/xmltok_impl.c
-src/protocols/jabber/xmltok_ns.c
-src/protocols/jabber/xstream.c
 src/protocols/msn/dispatch.c
 src/protocols/msn/error.c
 src/protocols/msn/ft.c
@@ -148,7 +136,6 @@
 src/protocols/oscar/ft.c
 src/protocols/oscar/icq.c
 src/protocols/oscar/im.c
-src/protocols/oscar/info.c
 src/protocols/oscar/invite.c
 src/protocols/oscar/misc.c
 src/protocols/oscar/msgcookie.c
--- a/src/protocols/yahoo/yahoo.c	Mon Sep 29 23:59:25 2003 +0000
+++ b/src/protocols/yahoo/yahoo.c	Tue Sep 30 00:34:25 2003 +0000
@@ -1372,6 +1372,7 @@
 	char *sn   = NULL;
 	GSList *l = pkt->hash;
 	int m = 0;
+	gchar *buf;	
 
 	
 	while (l) {
@@ -1394,10 +1395,12 @@
 			yahoo_process_auth_new(gc, seed);
 			break;
 		default:
+			buf = g_strdup_printf(_("The Yahoo server has requested the use of an unrecognized "
+						"authentication method.  This version of Gaim will likely not be able"
+						"to successfully sign on to Yahoo.  Check %s for updates."), GAIM_WEBSITE);
 			gaim_notify_error(gc, "", _("Failed Yahoo! Authentication"),
-					  _("The Yahoo server has requested the use of an unrecognized "
-					    "authentication method.  This version of Gaim will likely not be able"
-					    "to successfully sign on to Yahoo.  Check " GAIM_WEBSITE " for updates."));
+					  buf);
+			g_free(buf);
 			yahoo_process_auth_new(gc, seed); /* Can't hurt to try it anyway. */
 		}
 	}