use Q_() to translate strings with a context. fixes #2726

This commit is contained in:
Yann Leboulanger 2006-11-29 18:06:06 +00:00
parent c8203cb045
commit 65f0738de7
1 changed files with 2 additions and 1 deletions

View File

@ -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()