From 2ec1d31e11d8f6c52b6c2ddb712fa82afad022ee Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sun, 17 Jul 2005 17:38:03 +0000 Subject: [PATCH] missing substitution --- src/roster_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roster_window.py b/src/roster_window.py index 1da955049..49238db23 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -591,7 +591,7 @@ class RosterWindow: def on_remove_agent(self, widget, contact, account): '''When an agent is requested to log in or off''' - window = dialogs.ConfirmationDialog(_('Transport "%s" will be removed') % user.jid, _('You will no longer be able to send and receive messages to contacts from %s.' % contact.jid)) + window = dialogs.ConfirmationDialog(_('Transport "%s" will be removed') % contact.jid, _('You will no longer be able to send and receive messages to contacts from %s.' % contact.jid)) if window.get_response() == gtk.RESPONSE_OK: gajim.connections[account].unsubscribe_agent(contact.jid + '/' \ + contact.resource)