From 715b9ae16d68657ad1a60879054f1b43d93de22b Mon Sep 17 00:00:00 2001 From: Tim G L Lyons Date: Wed, 24 Oct 2012 18:05:37 +0000 Subject: [PATCH] Some untranslated strings svn: r20593 --- gramps/plugins/webreport/narrativeweb.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gramps/plugins/webreport/narrativeweb.py b/gramps/plugins/webreport/narrativeweb.py index 33efba441..0e6633640 100644 --- a/gramps/plugins/webreport/narrativeweb.py +++ b/gramps/plugins/webreport/narrativeweb.py @@ -6256,13 +6256,13 @@ class IndividualPage(BasePage): # The parent may not be birth father in ths family, because it # may be a step family. However, it will be odd to display the # parent as anything other than "Father" - reln = "Father" + reln = _("Father") else: # Stepfather may not always be quite right (for example, it may # actually be StepFather-in-law), but it is too expensive to # calculate out the correct relationship using the Relationship # Calculator - reln = "Stepfather" + reln = _("Stepfather") trow = Html("tr") + (self.display_parent(father_handle, reln, None)) table += trow @@ -6270,9 +6270,9 @@ class IndividualPage(BasePage): mother_handle = family.get_mother_handle() if mother_handle: if mother_handle == birthmother: - reln = "Mother" + reln = _("Mother") else: - reln = "Stepmother" + reln = _("Stepmother") trow = Html("tr") + (self.display_parent(mother_handle, reln, None)) table += trow @@ -6296,7 +6296,7 @@ class IndividualPage(BasePage): child.gender) reln = reln[0].upper() + reln[1:] except: - reln = "Not siblings" + reln = _("Not siblings") reln = "    " + reln # Now output reln, child_link, (frel, mrel)