diff src/multi.c @ 3427:8fa61405af2b

[gaim-migrate @ 3453] Who never commits anything *now*, Etan? I changed most of the error message text around. If you think any of it should be different, just let me know, or send a patch. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sun, 25 Aug 2002 10:51:24 +0000
parents 412d1035d666
children 66b1ad9782a9
line wrap: on
line diff
--- a/src/multi.c	Sun Aug 25 06:08:15 2002 +0000
+++ b/src/multi.c	Sun Aug 25 10:51:24 2002 +0000
@@ -945,15 +945,17 @@
 			signoff(u->gc);
 		} else {
 			if (u->protocol == PROTO_TOC)
-				do_error_dialog(_("You have attempted to login an IM account using the "
+				do_error_dialog(_("TOC not found."), 
+						_("You have attempted to login an IM account using the "
 						 "TOC protocol.  Because this protocol is inferior to "
 						 "OSCAR, it is now compiled as a plugin by default.  "
 						 "To login, edit this account to use OSCAR or load the "
-						  "TOC plugin."), _("Login Error"));
+						  "TOC plugin."), GAIM_ERROR);
 			else
-				do_error_dialog(_("You cannot log this account in; you do not have "
+				do_error_dialog(_("Protocol not found."), 
+						_("You cannot log this account in; you do not have "
 						  "the protocol it uses loaded, or the protocol does "
-						  "not have a login function."), _("Login Error"));
+						  "not have a login function."), GAIM_ERROR);
 		}
 		l = l->next;
 	}
@@ -1389,7 +1391,7 @@
 		gtk_widget_destroy(k->dlg);
 	k = g_new0(struct kick_dlg, 1);
 	k->user = gc->user;
-	k->dlg = do_error_dialog(buf, title);
+	k->dlg = do_error_dialog(title, buf, GAIM_ERROR);
 	kicks = g_slist_append(kicks, k);
 	gtk_signal_connect(GTK_OBJECT(k->dlg), "destroy", GTK_SIGNAL_FUNC(set_kick_null), k);
 	if (meter) {