Mercurial > pidgin.yaz
changeset 18278:c3d5b91be081
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
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 25 Jun 2007 08:24:12 +0000 |
parents | ad450d54e72d |
children | 48d2c9dbfcc2 |
files | libpurple/protocols/oscar/oscar.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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);