From 6cc565063d4590e8e57801f8d4906f3242bdb3eb Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Fri, 30 Sep 2005 20:27:57 +0000 Subject: [PATCH] fix string; add fixme --- src/roster_window.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/roster_window.py b/src/roster_window.py index 63f06efbf..0cbccf273 100644 --- a/src/roster_window.py +++ b/src/roster_window.py @@ -1220,11 +1220,13 @@ _('If "%s" accepts this request you will know his status.') %jid) self.tree.expand_row(path, False) def on_req_usub(self, widget, user, account): - '''Remove a user''' - window = dialogs.ConfirmationDialogCheck(\ + '''Remove a contact''' + window = dialogs.ConfirmationDialogCheck( _('Contact "%s" will be removed from your roster') % (user.name), - _('By removing this contact you also remove authorization. Contact "%s" will always see you as offline.') % user.name, - _('Allow this contact to still know my status')) + _('By removing this contact you also by default remove authorization resulting in him/her always seeing you as offline.'), + _('I want this contact to know my status after removal')) + # FIXME: + # maybe use 2 optionboxes from which the user can select? (better) if window.get_response() == gtk.RESPONSE_OK: remove_auth = True if window.is_checked():