# HG changeset patch # User Marcus Lundblad # Date 1231874587 0 # Node ID 98681dad9355a08c724df8ac5e83f14cd95a3487 # Parent 5ba9484fe17e6f363bd22589912599ef531498bc 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". diff -r 5ba9484fe17e -r 98681dad9355 libpurple/protocols/jabber/jabber.c --- 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; } }