From 2cfa4a9a135774461d397e9031cebb6e5d292476 Mon Sep 17 00:00:00 2001 From: Raphael Ackermann Date: Sat, 2 Feb 2008 10:37:51 +0000 Subject: [PATCH] 2008-02-02 Raphael Ackermann * src/plugins/WriteGeneWeb.py: "Living" is not translated -->fixed svn: r9975 --- ChangeLog | 3 +++ src/plugins/WriteGeneWeb.py | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 631b49c37..15ee1b470 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2008-02-02 Raphael Ackermann + * src/plugins/WriteGeneWeb.py: "Living" is not translated -->fixed + 2008-02-01 Brian Matherly * src/plugins/GVRelGraph.py: Fix 0001617: place/cause option: cause is never included diff --git a/src/plugins/WriteGeneWeb.py b/src/plugins/WriteGeneWeb.py index 96a0284ba..c03af5164 100644 --- a/src/plugins/WriteGeneWeb.py +++ b/src/plugins/WriteGeneWeb.py @@ -18,7 +18,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# $Id$ +# $Id:WriteGeneWeb.py 9912 2008-01-22 09:17:46Z acraphae $ "Export to GeneWeb." @@ -473,7 +473,7 @@ class GeneWebWriter: def get_ref_name(self,person): surname = self.rem_spaces( person.get_primary_name().get_surname()) - firstname = "Living" + firstname = _("Living") if not (Utils.probably_alive(person,self.db) and self.restrict and self.living): firstname = self.rem_spaces( person.get_primary_name().get_first_name()) if not self.person_ids.has_key(person.get_handle()): @@ -483,7 +483,7 @@ class GeneWebWriter: def get_child_ref_name(self,person,father_lastname): surname = self.rem_spaces( person.get_primary_name().get_surname()) - firstname = "Living" + firstname = _("Living") if not (Utils.probably_alive(person,self.db) and self.restrict and self.living): firstname = self.rem_spaces( person.get_primary_name().get_first_name()) if not self.person_ids.has_key(person.get_handle()):