add context to None translation. fixes #2726

This commit is contained in:
Yann Leboulanger 2007-01-11 18:26:35 +00:00
parent 74c447f46b
commit 99f8a9cbb9
1 changed files with 2 additions and 1 deletions

View File

@ -2670,7 +2670,8 @@ class ManageBookmarksWindow:
model = gtk.ListStore(str, str)
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.sort()
for opt in opts: