* src/plugins/BookReport.py: Fixed typo (containg).

* src/plugins/FtmStyleAncestors.py, src/plugins/FtmStyleDescendants.py:
Fixed typo (death_endotes).


svn: r1966
This commit is contained in:
Lars Lundin 2003-08-07 08:53:22 +00:00
parent 917a752688
commit b6c9ff7624
4 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2003-08-07 Lars Kr. Lundin <gramps@lklundin.dk>
* src/plugins/BookReport.py: Fixed typo (containg).
* src/plugins/FtmStyleAncestors.py, src/plugins/FtmStyleDescendants.py:
Fixed typo (death_endotes).
2003-08-06 Alex Roitman <shura@alex.neuro.umn.edu>
* src/FamilyView.py (load_family): Enable translation for family
relation.

View File

@ -1005,7 +1005,7 @@ register_report(
_("Book Report"),
category=_("Books"),
status=(_("Unstable")),
description=_("Creates a book containg several reports."),
description=_("Creates a book containing several reports."),
xpm=get_xpm_image(),
author_name="Alex Roitman",
author_email="shura@alex.neuro.umn.edu"

View File

@ -648,7 +648,7 @@ class FtmAncestorReport(Report.Report):
'death_date' : ddate, 'death_place' : dplace,
})
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s died %(death_date)s%(death_endotes)s.") % {
self.doc.write_text(_("%(female_name)s%(endnotes)s died %(death_date)s%(death_endnotes)s.") % {
'female_name' : _('She'), 'endnotes' : '',
'death_endnotes' : self.endnotes(death),
'death_date' : ddate,

View File

@ -1051,7 +1051,7 @@ class FtmDescendantReport(Report.Report):
})
else:
self.doc.write_text(_("%(female_name)s%(endnotes)s "
"died %(death_date)s%(death_endotes)s.") % {
"died %(death_date)s%(death_endnotes)s.") % {
'female_name' : _('She'), 'endnotes' : '',
'death_endnotes' : self.endnotes(death),
'death_date' : ddate,