Some untranslated strings
svn: r20593
This commit is contained in:
parent
5951118ddb
commit
715b9ae16d
@ -6256,13 +6256,13 @@ class IndividualPage(BasePage):
|
|||||||
# The parent may not be birth father in ths family, because it
|
# 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
|
# may be a step family. However, it will be odd to display the
|
||||||
# parent as anything other than "Father"
|
# parent as anything other than "Father"
|
||||||
reln = "Father"
|
reln = _("Father")
|
||||||
else:
|
else:
|
||||||
# Stepfather may not always be quite right (for example, it may
|
# Stepfather may not always be quite right (for example, it may
|
||||||
# actually be StepFather-in-law), but it is too expensive to
|
# actually be StepFather-in-law), but it is too expensive to
|
||||||
# calculate out the correct relationship using the Relationship
|
# calculate out the correct relationship using the Relationship
|
||||||
# Calculator
|
# Calculator
|
||||||
reln = "Stepfather"
|
reln = _("Stepfather")
|
||||||
trow = Html("tr") + (self.display_parent(father_handle, reln, None))
|
trow = Html("tr") + (self.display_parent(father_handle, reln, None))
|
||||||
table += trow
|
table += trow
|
||||||
|
|
||||||
@ -6270,9 +6270,9 @@ class IndividualPage(BasePage):
|
|||||||
mother_handle = family.get_mother_handle()
|
mother_handle = family.get_mother_handle()
|
||||||
if mother_handle:
|
if mother_handle:
|
||||||
if mother_handle == birthmother:
|
if mother_handle == birthmother:
|
||||||
reln = "Mother"
|
reln = _("Mother")
|
||||||
else:
|
else:
|
||||||
reln = "Stepmother"
|
reln = _("Stepmother")
|
||||||
trow = Html("tr") + (self.display_parent(mother_handle, reln, None))
|
trow = Html("tr") + (self.display_parent(mother_handle, reln, None))
|
||||||
table += trow
|
table += trow
|
||||||
|
|
||||||
@ -6296,7 +6296,7 @@ class IndividualPage(BasePage):
|
|||||||
child.gender)
|
child.gender)
|
||||||
reln = reln[0].upper() + reln[1:]
|
reln = reln[0].upper() + reln[1:]
|
||||||
except:
|
except:
|
||||||
reln = "Not siblings"
|
reln = _("Not siblings")
|
||||||
|
|
||||||
reln = " " + reln
|
reln = " " + reln
|
||||||
# Now output reln, child_link, (frel, mrel)
|
# Now output reln, child_link, (frel, mrel)
|
||||||
|
Loading…
Reference in New Issue
Block a user