From c694b408e67589adf4cf406c385e8aa3dbe8e44c Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Sun, 23 Jul 2006 03:50:55 +0000 Subject: [PATCH] * src/ReportBase/_ReportUtils.py: fix modified birth string (bug # 266). svn: r7056 --- gramps2/ChangeLog | 3 +++ gramps2/src/ReportBase/_ReportUtils.py | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 94da8b9c0..b4fb45af6 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2006-07-21 Brian Matherly + * src/ReportBase/_ReportUtils.py: fix modified birth string (bug # 266). + 2006-07-21 Brian Matherly * src/plugins/GraphViz.py: launch image viewer in Windows. * src/Mime/_WinMime.py: handle rundll32.exe applications. diff --git a/gramps2/src/ReportBase/_ReportUtils.py b/gramps2/src/ReportBase/_ReportUtils.py index 13ae4af7c..831d68bc0 100644 --- a/gramps2/src/ReportBase/_ReportUtils.py +++ b/gramps2/src/ReportBase/_ReportUtils.py @@ -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."), }, ]