2008-02-02 Raphael Ackermann <raphael.ackermann@gmail.com>

* src/plugins/WriteGeneWeb.py: "Living" is not translated -->fixed

svn: r9975
This commit is contained in:
Raphael Ackermann 2008-02-02 10:37:51 +00:00
parent 435d2ce7cc
commit 2cfa4a9a13
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
2008-02-02 Raphael Ackermann <raphael.ackermann@gmail.com>
* src/plugins/WriteGeneWeb.py: "Living" is not translated -->fixed
2008-02-01 Brian Matherly <brian@gramps-project.org>
* src/plugins/GVRelGraph.py: Fix 0001617: place/cause option: cause is
never included

View File

@ -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()):