From dd0495c46d492f85c4ae770b2c15866390c044f2 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Mon, 14 Apr 2003 20:34:52 +0000 Subject: [PATCH] More Verify.py corrections svn: r1450 --- src/plugins/Verify.py | 8 ++++---- src/po/template.po | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/plugins/Verify.py b/src/plugins/Verify.py index 876c1efc2..ad97d7271 100644 --- a/src/plugins/Verify.py +++ b/src/plugins/Verify.py @@ -125,11 +125,11 @@ def on_apply_clicked(obj): if dyear>0 and (byear>dyear): error = error + _("Died before birth: %s born %d, died %d.\n") % (idstr, byear, dyear) if dyear>0 and (bapyear>dyear): - error = error + _("Died before birth: %s baptized %d, died %d.\n") % (idstr, bapyear, dyear) + error = error + _("Died before baptism: %s baptized %d, died %d.\n") % (idstr, bapyear, dyear) if buryear>0 and (byear>buryear): - error = error + _("Buried before birth: %s born %d, died %d.\n") % (idstr, byear, buryear) + error = error + _("Buried before birth: %s born %d, buried %d.\n") % (idstr, byear, buryear) if buryear>0 and (bapyear>buryear): - error = error + _("Buried before birth: %s baptized %d, died %d.\n") % (idstr, bapyear, buryear) + error = error + _("Buried before birth: %s baptized %d, buried %d.\n") % (idstr, bapyear, buryear) if byear == 0: byear = bapyear # guess baptism = birth if dyear == 0: @@ -159,7 +159,7 @@ def on_apply_clicked(obj): yngpar = yngdad waswidstr = _(" was a widow ") if (person.getGender() == RelLib.Person.female) and (person.getGender() == RelLib.Person.male): - error = error + _("Ambiguous gender for %s.\n") % idstr + error = error + _("Ambigous gender for %s.\n") % idstr parstr = _("parent ") oldpar = olddad yngpar = yngdad diff --git a/src/po/template.po b/src/po/template.po index 2132d8ac2..d981c76f1 100644 --- a/src/po/template.po +++ b/src/po/template.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: GRAMPS VERSION\n" -"POT-Creation-Date: Sun Apr 13 22:43:06 2003\n" +"POT-Creation-Date: Mon Apr 14 15:34:42 2003\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -4843,17 +4843,17 @@ msgstr "" #: plugins/Verify.py:128 msgid "" -"Died before birth: %s baptized %d, died %d.\n" +"Died before baptism: %s baptized %d, died %d.\n" msgstr "" #: plugins/Verify.py:130 msgid "" -"Buried before birth: %s born %d, died %d.\n" +"Buried before birth: %s born %d, buried %d.\n" msgstr "" #: plugins/Verify.py:132 msgid "" -"Buried before birth: %s baptized %d, died %d.\n" +"Buried before birth: %s baptized %d, buried %d.\n" msgstr "" #: plugins/Verify.py:142