diff src/protocols/jabber/auth.c @ 7981:ad5c8f01882b

[gaim-migrate @ 8658] "I have updated the German translation and changed some i18n strings. i18n44.patch contains: - updated German translation - changed some 99% identical strings which differ only in spelling, for instance: _("Unable to connect") and _("Unable to connect.") This reduces some translation strings and makes the UI a bit more clear." committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 03 Jan 2004 16:22:44 +0000
parents 8bba34c04c9d
children 7bae464195c4
line wrap: on
line diff
--- a/src/protocols/jabber/auth.c	Sat Jan 03 16:08:23 2004 +0000
+++ b/src/protocols/jabber/auth.c	Sat Jan 03 16:22:44 2004 +0000
@@ -57,7 +57,7 @@
 	mechs = xmlnode_get_child(packet, "mechanisms");
 
 	if(!mechs) {
-		gaim_connection_error(js->gc, _("Invalid response from server"));
+		gaim_connection_error(js->gc, _("Invalid response from server."));
 		return;
 	}
 
@@ -150,7 +150,7 @@
 	const char *pw = gaim_account_get_password(js->gc->account);
 
 	if(!type) {
-		gaim_connection_error(js->gc, _("Invalid response from server"));
+		gaim_connection_error(js->gc, _("Invalid response from server."));
 		return;
 	} else if(!strcmp(type, "error")) {
 		/* XXX: still need to handle XMPP-style errors */
@@ -309,7 +309,7 @@
 		GHashTable *parts;
 
 		if(!enc_in) {
-			gaim_connection_error(js->gc, _("Invalid response from server"));
+			gaim_connection_error(js->gc, _("Invalid response from server."));
 			return;
 		}
 
@@ -409,7 +409,7 @@
 	const char *ns = xmlnode_get_attrib(packet, "xmlns");
 
 	if(!ns || strcmp(ns, "urn:ietf:params:xml:ns:xmpp-sasl")) {
-		gaim_connection_error(js->gc, _("Invalid response from server"));
+		gaim_connection_error(js->gc, _("Invalid response from server."));
 		return;
 	}
 
@@ -421,7 +421,7 @@
 	const char *ns = xmlnode_get_attrib(packet, "xmlns");
 
 	if(!ns)
-		gaim_connection_error(js->gc, _("Invalid response from server"));
+		gaim_connection_error(js->gc, _("Invalid response from server."));
 	else if(!strcmp(ns, "urn:ietf:params:xml:ns:xmpp-sasl")) {
 		if(xmlnode_get_child(packet, "bad-protocol")) {
 			gaim_connection_error(js->gc, _("Bad Protocol"));