From 34c52b71923ab252a5aefb9a778f959169f62c6f Mon Sep 17 00:00:00 2001 From: Martin Hawlisch Date: Wed, 29 Nov 2006 19:40:43 +0000 Subject: [PATCH] * src/DataViews/_RelationView.py (write_title): Always write Label for birth and death. svn: r7733 --- ChangeLog | 4 ++++ src/DataViews/_RelationView.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6b441f740..e27090025 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-11-29 Martin Hawlisch + * src/DataViews/_RelationView.py (write_title): Always write Label + for birth and death. + 2006-11-29 Alex Roitman * INSTALL: Update. diff --git a/src/DataViews/_RelationView.py b/src/DataViews/_RelationView.py index 62a93cf0b..7ca896088 100644 --- a/src/DataViews/_RelationView.py +++ b/src/DataViews/_RelationView.py @@ -491,7 +491,7 @@ class RelationshipView(PageView.PersonNavView): if birth: birth_title = birth.get_type() else: - birth_title = None + birth_title = _("Birth") subtbl.attach(GrampsWidgets.BasicLabel("%s:" % birth_title), 1, 2, 1, 2, xoptions=gtk.FILL, yoptions=0) @@ -502,7 +502,7 @@ class RelationshipView(PageView.PersonNavView): if death: death_title = death.get_type() else: - death_title = None + death_title = _("Death") subtbl.attach(GrampsWidgets.BasicLabel("%s:" % death_title), 1, 2, 2, 3, xoptions=gtk.FILL, yoptions=0)