add context to None translation. fixes #2726
This commit is contained in:
parent
74c447f46b
commit
99f8a9cbb9
|
@ -2670,7 +2670,8 @@ class ManageBookmarksWindow:
|
||||||
model = gtk.ListStore(str, str)
|
model = gtk.ListStore(str, str)
|
||||||
|
|
||||||
self.option_list = {'': _('Default'), 'all': Q_('?print_status:All'),
|
self.option_list = {'': _('Default'), 'all': Q_('?print_status:All'),
|
||||||
'in_and_out': _('Enter and leave only'), 'none': _('None')}
|
'in_and_out': _('Enter and leave only'),
|
||||||
|
'none': _('?print_status:None')}
|
||||||
opts = self.option_list.keys()
|
opts = self.option_list.keys()
|
||||||
opts.sort()
|
opts.sort()
|
||||||
for opt in opts:
|
for opt in opts:
|
||||||
|
|
Loading…
Reference in New Issue