Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2006-11-29 21:06:06 +0300
committerYann Leboulanger <asterix@lagaule.org>2006-11-29 21:06:06 +0300
commit65f0738de74db22295c32bfe6da0979c261560f3 (patch)
tree42aa3103833c3a77708dcd81239c09a7fc54a72b
parentc8203cb045b8668c60735fbfc6807802780a799a (diff)
use Q_() to translate strings with a context. fixes #2726
-rw-r--r--src/config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.py b/src/config.py
index b95547d51..2f81f9990 100644
--- a/src/config.py
+++ b/src/config.py
@@ -21,6 +21,7 @@ import gobject
import os
import common.config
import common.sleepy
+from common.i18n import Q_
import gtkgui_helpers
import dialogs
@@ -2635,7 +2636,7 @@ class ManageBookmarksWindow:
self.print_status_combobox = self.xml.get_widget('print_status_combobox')
model = gtk.ListStore(str, str)
- self.option_list = {'': _('Default'), 'all': _('?print_status:All'),
+ self.option_list = {'': _('Default'), 'all': Q_('?print_status:All'),
'in_and_out': _('Enter and leave only'), 'none': _('None')}
opts = self.option_list.keys()
opts.sort()