* src/SelectChild.py: Fix typos upsetting translation.

* src/plugins/book.glade: Mark dummy strins as non-translatable.
* src/po/template.po: Update the above corrections in template.


svn: r1848
This commit is contained in:
Alex Roitman
2003-07-09 05:07:26 +00:00
parent 55a25ee7d4
commit c9217c1856
4 changed files with 39 additions and 76 deletions

View File

@ -334,9 +334,8 @@ class EditRel:
if father:
fname = father.getPrimaryName().getName()
val = _("Relationship to %(father)s" % {
'father' : fname
})
val = _("Relationship to %{father}s") % {
'father' : fname }
self.fdesc.set_text('<b>%s</b>' % val)
self.fcombo.set_sensitive(1)
else:
@ -346,9 +345,8 @@ class EditRel:
if mother:
mname = mother.getPrimaryName().getName()
val = _("Relationship to %(mother)s" % {
'mother' : mname
})
val = _("Relationship to %{mother}s") % {
'mother' : mname }
self.mdesc.set_text('<b>%s</b>' % val)
self.mcombo.set_sensitive(1)
else: