From aea7959eb027f403527dd5659e9aebcd0bcf74a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Thu, 3 Feb 2011 09:04:07 +0000 Subject: [PATCH] 4326: 'descendant' instead of 'descendent' svn: r16551 --- src/Utils.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Utils.py b/src/Utils.py index fbc292d7d..372ffb8bd 100644 --- a/src/Utils.py +++ b/src/Utils.py @@ -704,7 +704,7 @@ class ProbablyAlive(object): val = d.get_year() - years d.set_year(val) return (d, d.copy_offset_ymd(self.MAX_AGE_PROB_ALIVE), - _("descendent birth date"), + _("descendant birth date"), child) child_death_ref = child.get_death_ref() if child_death_ref: @@ -713,7 +713,7 @@ class ProbablyAlive(object): if dobj.get_start_date() != gen.lib.Date.EMPTY: return (dobj.copy_offset_ymd(- self.AVG_GENERATION_GAP), dobj.copy_offset_ymd(- self.AVG_GENERATION_GAP + self.MAX_AGE_PROB_ALIVE), - _("descendent death date"), + _("descendant death date"), child) date1, date2, explain, other = descendants_too_old (child, years + self.AVG_GENERATION_GAP) if date1 and date2: @@ -729,7 +729,7 @@ class ProbablyAlive(object): val = d.get_year() - years d.set_year(val) return (d, d.copy_offset_ymd(self.MAX_AGE_PROB_ALIVE), - _("descendent birth-related date"), + _("descendant birth-related date"), child) elif ev and ev.type.is_death_fallback(): @@ -737,7 +737,7 @@ class ProbablyAlive(object): if dobj.get_start_date() != gen.lib.Date.EMPTY: return (dobj.copy_offset_ymd(- self.AVG_GENERATION_GAP), dobj.copy_offset_ymd(- self.AVG_GENERATION_GAP + self.MAX_AGE_PROB_ALIVE), - _("descendent death-related date"), + _("descendant death-related date"), child) return (None, None, "", None)