From 98349b2bf1f952c9c4820c14c8477510e4d2bfbf Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Mon, 3 Jul 2006 21:56:19 +0000 Subject: [PATCH] subscription can be translated but english version is always sent to server --- src/dialogs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dialogs.py b/src/dialogs.py index cb126db57..67bbdf3b8 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -1811,7 +1811,8 @@ class PrivacyListWindow: self.edit_type_group_combobox.get_active_text().decode('utf-8') elif self.edit_type_subscription_radiobutton.get_active(): edit_type = 'subscription' - edit_value = self.edit_type_subscription_combobox.get_active_text() + subs = ['none', 'both', 'from', 'to'] + edit_value = subs[self.edit_type_subscription_combobox.get_active()] elif self.edit_type_select_all_radiobutton.get_active(): edit_type = '' edit_value = ''