* src/ReportBase/_ReportUtils.py: fix modified birth string (bug # 266).

svn: r7056
This commit is contained in:
Brian Matherly 2006-07-23 03:50:55 +00:00
parent 75fe94b45a
commit b6fff67b59
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
2006-07-21 Brian Matherly <brian@gramps-project.org>
* src/ReportBase/_ReportUtils.py: fix modified birth string (bug # 266).
2006-07-21 Brian Matherly <brian@gramps-project.org>
* src/plugins/GraphViz.py: launch image viewer in Windows.
* src/Mime/_WinMime.py: handle rundll32.exe applications.

View File

@ -97,9 +97,9 @@ born_modified_date_no_place = [
RelLib.Person.FEMALE : _("She was born %(modified_date)s."),
},
{
RelLib.Person.UNKNOWN : _("%(unknown_gender_name)s was born on %(modified_date)s."),
RelLib.Person.MALE : _("%(male_name)s was born on %(modified_date)s."),
RelLib.Person.FEMALE : _("%(female_name)s was born on %(modified_date)s."),
RelLib.Person.UNKNOWN : _("%(unknown_gender_name)s was born %(modified_date)s."),
RelLib.Person.MALE : _("%(male_name)s was born %(modified_date)s."),
RelLib.Person.FEMALE : _("%(female_name)s was born %(modified_date)s."),
},
]