diff -r ad4544239a3e -r 332cd6342bab src/protocols/jabber/auth.c --- 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"));