#3406: Try to use of translation context (first step)

svn: r13726
This commit is contained in:
Jérôme Rapinat 2009-12-06 09:56:08 +00:00
parent 927ac824b9
commit 6f155e598e

View File

@ -34,15 +34,17 @@ from gen.lib import Person
import DateHandler import DateHandler
import posixpath import posixpath
from gettext import gettext as _ from TransUtils import sgettext as _
from gettext import ngettext from gettext import ngettext
# force translation # force translation
[_('all people'), _('males'), _('females'), _('people with unknown gender'), [_('Filtering_on|all people'), _('Filtering_on|males'), _('Filtering_on|females'),
_('people with incomplete names'), _('people with missing birth dates'), _('Filtering_on|people with unknown gender'), _('Filtering_on|people with incomplete names'),
_('disconnected people'), _('all families'), _('unique surnames'), _('Filtering_on|people with missing birth dates'), _('Filtering_on|disconnected people'),
_('people with media'), _('media references'), _('unique media'), _('Filtering_on|all families'), _('Filtering_on|unique surnames'),
_('missing media'), _('media by size'), _('list of people')] _('Filtering_on|people with media'), _('Filtering_on|media references'),
_('Filtering_on|unique media'), _('Filtering_on|missing media'),
_('Filtering_on|media by size'), _('Filtering_on|list of people')]
def run(database, document, filter_name, *args, **kwargs): def run(database, document, filter_name, *args, **kwargs):
""" """