Don't mention TOC in this error message. I think this error is too

Mon, 29 Dec 2008 03:49:33 +0000

author
Mark Doliner <markdoliner@pidgin.im>
date
Mon, 29 Dec 2008 03:49:33 +0000
changeset 25317
456cd1702219
parent 25316
8b6461a2f967
child 25344
345fa404d2a0

Don't mention TOC in this error message. I think this error is too
technical and is ripe for improvement, but I couldn't come up with
anything better.

libpurple/protocols/oscar/oscar.c file | annotate | diff | comparison | revisions
--- a/libpurple/protocols/oscar/oscar.c	Sun Dec 28 00:39:39 2008 +0000
+++ b/libpurple/protocols/oscar/oscar.c	Mon Dec 29 03:49:33 2008 +0000
@@ -1653,10 +1653,10 @@
 	}
 	if (in != '\n') {
 		char buf[256];
-		GHashTable *ui_info = purple_core_get_ui_info();		
-		g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly.  You may want to use TOC until "
-			"this is fixed.  Check %s for updates."),
-				   ((ui_info && g_hash_table_lookup(ui_info, "website")) ? (char *)g_hash_table_lookup(ui_info, "website") : PURPLE_WEBSITE));
+		GHashTable *ui_info = purple_core_get_ui_info();
+		g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly.  "
+				"If so, check %s for updates."),
+				((ui_info && g_hash_table_lookup(ui_info, "website")) ? (char *)g_hash_table_lookup(ui_info, "website") : PURPLE_WEBSITE));
 		purple_notify_warning(pos->gc, NULL,
 							_("Unable to get a valid AIM login hash."),
 							buf);

mercurial