src/PluginUtils/_ReportUtils.py: Change strings to include gender instead of "child of"

svn: r6660
This commit is contained in:
Brian Matherly 2006-05-15 00:43:41 +00:00
parent ccba2edd14
commit 8cb771c5d1
2 changed files with 16 additions and 12 deletions

View File

@ -1,3 +1,7 @@
2006-05-14 Brian Matherly <brian@gramps-project.org>
* src/PluginUtils/_ReportUtils.py: Change strings to include gender instead
of "child of"
2006-05-14 Don Allingham <don@gramps-project.org> 2006-05-14 Don Allingham <don@gramps-project.org>
* src/DateHandler/__init__.py: import DateParser and DateDisplay * src/DateHandler/__init__.py: import DateParser and DateDisplay
* src/DataViews/_PersonView.py: default gender filter to "any" * src/DataViews/_PersonView.py: default gender filter to "any"

View File

@ -727,8 +727,8 @@ child_father_mother = {
_("He was the son of %(father)s and %(mother)s."), _("He was the son of %(father)s and %(mother)s."),
], ],
[ [
_("%(male_name)s is the child of %(father)s and %(mother)s."), _("%(male_name)s is the son of %(father)s and %(mother)s."),
_("%(male_name)s was the child of %(father)s and %(mother)s."), _("%(male_name)s was the son of %(father)s and %(mother)s."),
] ]
], ],
RelLib.Person.FEMALE : [ RelLib.Person.FEMALE : [
@ -737,8 +737,8 @@ child_father_mother = {
_("She was the daughter of %(father)s and %(mother)s."), _("She was the daughter of %(father)s and %(mother)s."),
], ],
[ [
_("%(female_name)s is the child of %(father)s and %(mother)s."), _("%(female_name)s is the daughter of %(father)s and %(mother)s."),
_("%(female_name)s was the child of %(father)s and %(mother)s."), _("%(female_name)s was the daughter of %(father)s and %(mother)s."),
], ],
] ]
} }
@ -760,8 +760,8 @@ child_father = {
_("He was the son of %(father)s."), _("He was the son of %(father)s."),
], ],
[ [
_("%(male_name)s is the child of %(father)s."), _("%(male_name)s is the son of %(father)s."),
_("%(male_name)s was the child of %(father)s."), _("%(male_name)s was the son of %(father)s."),
], ],
], ],
RelLib.Person.FEMALE : [ RelLib.Person.FEMALE : [
@ -770,8 +770,8 @@ child_father = {
_("She was the daughter of %(father)s."), _("She was the daughter of %(father)s."),
], ],
[ [
_("%(female_name)s is the child of %(father)s."), _("%(female_name)s is the daughter of %(father)s."),
_("%(female_name)s was the child of %(father)s."), _("%(female_name)s was the daughter of %(father)s."),
], ],
], ],
} }
@ -793,8 +793,8 @@ child_mother = {
_("He was the son of %(mother)s."), _("He was the son of %(mother)s."),
], ],
[ [
_("%(male_name)s is the child of %(mother)s."), _("%(male_name)s is the son of %(mother)s."),
_("%(male_name)s was the child of %(mother)s."), _("%(male_name)s was the son of %(mother)s."),
], ],
], ],
RelLib.Person.FEMALE : [ RelLib.Person.FEMALE : [
@ -803,8 +803,8 @@ child_mother = {
_("She was the daughter of %(mother)s."), _("She was the daughter of %(mother)s."),
], ],
[ [
_("%(female_name)s is the child of %(mother)s."), _("%(female_name)s is the daughter of %(mother)s."),
_("%(female_name)s was the child of %(mother)s."), _("%(female_name)s was the daughter of %(mother)s."),
], ],
], ],
} }