0001972: Fixed untranslated filter names in FilterByName and 'and' in family description

svn: r10411
This commit is contained in:
Doug Blank 2008-03-29 01:54:49 +00:00
parent 3437dec92b
commit a8a5a9e0ee
2 changed files with 9 additions and 2 deletions

View File

@ -194,7 +194,7 @@ class SimpleTable:
text += " " + self.access.name(father) text += " " + self.access.name(father)
else: else:
text += " " + _("Unknown father") text += " " + _("Unknown father")
text += " and" text += " " + _("and")
if mother: if mother:
text += " " + self.access.name(mother) text += " " + self.access.name(mother)
else: else:

View File

@ -33,6 +33,13 @@ import DateHandler
import posixpath import posixpath
from gettext import gettext as _ from gettext import gettext as _
# force translation
[_('all people'), _('males'), _('females'), _('people with unknown gender'),
_('people with incomplete names'), _('people with missing birth dates'),
_('disconnected people'), _('all families'), _('unique surnames'),
_('people with media'), _('media references'), _('unique media'),
_('missing media'), _('media by size'), _('list of people')]
def run(database, document, filter_name, *args, **kwargs): def run(database, document, filter_name, *args, **kwargs):
""" """
Loops through the families that the person is a child in, and display Loops through the families that the person is a child in, and display
@ -43,7 +50,7 @@ def run(database, document, filter_name, *args, **kwargs):
sdoc = SimpleDoc(document) sdoc = SimpleDoc(document)
stab = SimpleTable(sdb, sdoc) stab = SimpleTable(sdb, sdoc)
# display the title # display the title
sdoc.title(_("Filtering on %s") % filter_name) sdoc.title(_("Filtering on %s") % _(filter_name)) # listed above
sdoc.paragraph("") sdoc.paragraph("")
matches = 0 matches = 0
if (filter_name == 'all people'): if (filter_name == 'all people'):