Mercurial > pidgin.yaz
changeset 25195:98681dad9355
Change error message shown when trying to buzz a buddy who doesn't announce
support to reflect the fact that disabling "attention" also implies the client
should not advertize support, or as we do in libpurple, don't announce support
when the status is set to "Busy".
author | Marcus Lundblad <ml@update.uu.se> |
---|---|
date | Tue, 13 Jan 2009 19:23:07 +0000 |
parents | 5ba9484fe17e |
children | 9d023b5d7daf |
files | libpurple/protocols/jabber/jabber.c |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/jabber/jabber.c Tue Jan 13 18:38:15 2009 +0000 +++ b/libpurple/protocols/jabber/jabber.c Tue Jan 13 19:23:07 2009 +0000 @@ -2491,7 +2491,9 @@ return TRUE; } else { - *error = g_strdup_printf(_("Unable to buzz, because the user %s does not support it."), username); + *error = g_strdup_printf(_("Unable to buzz, because the user %s does" + "not support it or do not wish to receive buzzes now."), + username); return FALSE; } }