# HG changeset patch # User Mark Doliner # Date 1182759852 0 # Node ID c3d5b91be0815eddc028144f45bd4fbcc32bdf3a # Parent ad450d54e72dc09ca1f130a6a4cf1f14dc0cc787 Get rid of the portion of this error message that says "The most common reason for this is that you have the maximum number of buddies on your buddy list." I have a feeling that's not the most common reason anymore, since the max number of buddies is so high now. And for some reason people complain that "I don't have anywhere near that number of buddies!" when they try to add an invalid screen name like "1blah," or something diff -r ad450d54e72d -r c3d5b91be081 libpurple/protocols/oscar/oscar.c --- a/libpurple/protocols/oscar/oscar.c Mon Jun 25 02:57:15 2007 +0000 +++ b/libpurple/protocols/oscar/oscar.c Mon Jun 25 08:24:12 2007 +0000 @@ -5060,7 +5060,8 @@ default: { /* La la la */ gchar *buf; purple_debug_error("oscar", "ssi: Action 0x%04hx was unsuccessful with error 0x%04hx\n", retval->action, retval->ack); - buf = g_strdup_printf(_("Could not add the buddy %s for an unknown reason. The most common reason for this is that you have the maximum number of allowed buddies in your buddy list."), (retval->name ? retval->name : _("(no name)"))); + buf = g_strdup_printf(_("Could not add the buddy %s for an unknown reason."), + (retval->name ? retval->name : _("(no name)"))); if ((retval->name != NULL) && !purple_conv_present_error(retval->name, purple_connection_get_account(gc), buf)) purple_notify_error(gc, NULL, _("Unable To Add"), buf); g_free(buf);