7276: translate some punctuation marks -- partial

This commit is contained in:
Paul Franklin 2014-08-13 09:23:04 -07:00
parent 1ad6634888
commit f867caf61e
3 changed files with 16 additions and 10 deletions

View File

@ -414,7 +414,8 @@ class ArgHandler(object):
print(_("Family Tree \"%s\":") % summary[_("Family Tree")]) print(_("Family Tree \"%s\":") % summary[_("Family Tree")])
for item in sorted(summary): for item in sorted(summary):
if item != "Family Tree": if item != "Family Tree":
print(" %s: %s" % (item, summary[item])) # translators: needed for French, ignore otherwise
print(_(" %s: %s") % (item, summary[item]))
sys.exit(0) sys.exit(0)
if self.list_table: if self.list_table:

View File

@ -121,10 +121,10 @@ class FamilyGroup(Report):
# translators: needed for Arabic, ignore otherwise # translators: needed for Arabic, ignore otherwise
descr += self._("; ") descr += self._("; ")
attr_type = self._get_type(attr.get_type()) attr_type = self._get_type(attr.get_type())
descr += "%(type)s: %(value)s" % { # translators: needed for French, ignore otherwise
'type' : self._(attr_type), descr += self._("%(str1)s: %(str2)s") % {
'value' : attr.get_value() 'str1' : self._(attr_type),
} 'str2' : attr.get_value() }
self.doc.start_row() self.doc.start_row()
self.doc.start_cell("FGR-TextContents") self.doc.start_cell("FGR-TextContents")

View File

@ -562,10 +562,12 @@ class IndivCompleteReport(Report):
self.doc.start_row() self.doc.start_row()
self.doc.start_cell('IDS-NormalCell') self.doc.start_cell('IDS-NormalCell')
self.normal_paragraph("%s:" % self._("Name")) # translators: needed for French, ignore otherwise
self.normal_paragraph("%s:" % self._("Gender")) ignore4 = self._("%s:")
self.normal_paragraph("%s:" % self._("Father")) self.normal_paragraph(self._("%s:") % self._("Name"))
self.normal_paragraph("%s:" % self._("Mother")) self.normal_paragraph(self._("%s:") % self._("Gender"))
self.normal_paragraph(self._("%s:") % self._("Father"))
self.normal_paragraph(self._("%s:") % self._("Mother"))
self.doc.end_cell() self.doc.end_cell()
self.doc.start_cell('IDS-NormalCell') self.doc.start_cell('IDS-NormalCell')
@ -593,7 +595,10 @@ class IndivCompleteReport(Report):
crop=media0.get_rectangle()) crop=media0.get_rectangle())
else: else:
self._user.warn(_("Could not add photo to page"), self._user.warn(_("Could not add photo to page"),
"%s: %s" % (filename, _('File does not exist'))) # translators: for French, else ignore
_("%(str1)s: %(str2)s") %
{'str1' : filename,
'str2' : _('File does not exist') } )
self.doc.end_cell() self.doc.end_cell()
self.doc.end_row() self.doc.end_row()