diff libpurple/protocols/oscar/oscar.c @ 15383:21bc8d84974f

I think this changes every user-visible string that contains 'Gaim.' We probably want the UI to be able to provide a user-readable client name as well as website, as some of my re-wordings come out somewhat awkward when I force not mentioning Gaim
author Sean Egan <seanegan@gmail.com>
date Mon, 22 Jan 2007 09:27:02 +0000
parents 5fe8042783c1
children 42961709cb30
line wrap: on
line diff
--- a/libpurple/protocols/oscar/oscar.c	Mon Jan 22 09:05:30 2007 +0000
+++ b/libpurple/protocols/oscar/oscar.c	Mon Jan 22 09:27:02 2007 +0000
@@ -1469,7 +1469,7 @@
 		g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly.  You may want to use TOC until "
 			"this is fixed.  Check %s for updates."), GAIM_WEBSITE);
 		gaim_notify_warning(pos->gc, NULL,
-							_("Gaim was unable to get a valid AIM login hash."),
+							_("Unable to get a valid AIM login hash."),
 							buf);
 		gaim_input_remove(pos->inpa);
 		close(pos->fd);
@@ -1512,7 +1512,7 @@
 		buf = g_strdup_printf(_("You may be disconnected shortly.  You may want to use TOC until "
 			"this is fixed.  Check %s for updates."), GAIM_WEBSITE);
 		gaim_notify_warning(pos->gc, NULL,
-							_("Gaim was unable to get a valid AIM login hash."),
+							_("Unable to get a valid AIM login hash."),
 							buf);
 		g_free(buf);
 		g_free(pos->modname);
@@ -1601,7 +1601,7 @@
 		g_snprintf(buf, sizeof(buf), _("You may be disconnected shortly.  "
 			"Check %s for updates."), GAIM_WEBSITE);
 		gaim_notify_warning(pos->gc, NULL,
-							_("Gaim was unable to get a valid login hash."),
+							_("Unable to get a valid login hash."),
 							buf);
 	}
 
@@ -4454,9 +4454,9 @@
 		{
 			gchar *errstr;
 			errstr = g_strdup_printf(ngettext("The maximum profile length of %d byte "
-									 "has been exceeded.  Gaim has truncated it for you.",
+									 "has been exceeded.  It has been truncated it for you.",
 									 "The maximum profile length of %d bytes "
-									 "has been exceeded.  Gaim has truncated it for you.",
+									 "has been exceeded.  It has been truncated it for you.",
 									 od->rights.maxsiglen), od->rights.maxsiglen);
 			gaim_notify_warning(gc, NULL, _("Profile too long."), errstr);
 			g_free(errstr);
@@ -4683,7 +4683,7 @@
 
 	if (reason == 0x0005) {
 		gaim_notify_error(gc, NULL, _("Unable To Retrieve Buddy List"),
-						  _("Gaim was temporarily unable to retrieve your buddy list from the AIM servers.  Your buddy list is not lost, and will probably become available in a few hours."));
+						  _("The AIM servers were temporarily unable to send your buddy list.  Your buddy list is not lost, and will probably become available in a few hours."));
 		if (od->getblisttimer > 0)
 			gaim_timeout_remove(od->getblisttimer);
 		od->getblisttimer = gaim_timeout_add(30000, gaim_ssi_rerequestdata, od);