fix gettext usage
svn: r4388
This commit is contained in:
parent
dab1b6c8a7
commit
390a84bd2f
@ -1,4 +1,6 @@
|
||||
2005-04-20 Eero Tamminen <eerot@sf>
|
||||
* src/plugins/DetAncestralReport.py: fix gettext usage
|
||||
* src/plugins/DetDescendantReport.py: fix gettext usage
|
||||
* src/plugins/ChangeNames.py: Fix typo
|
||||
|
||||
2005-04-20 Don Allingham <don@gramps-project.org>
|
||||
|
@ -240,7 +240,7 @@ class DetAncestorReport(Report.Report):
|
||||
if person.get_note() != "" and self.includeNotes:
|
||||
self.doc.start_paragraph("DAR-NoteHeader")
|
||||
self.doc.start_bold()
|
||||
self.doc.write_text(_("Notes for %(name)s" % { 'name': name } ))
|
||||
self.doc.write_text(_("Notes for %(name)s") % { 'name': name } )
|
||||
self.doc.end_bold()
|
||||
self.doc.end_paragraph()
|
||||
self.doc.write_note(person.get_note(),person.get_note_format(),"DAR-Entry")
|
||||
|
@ -261,7 +261,7 @@ class DetDescendantReport(Report.Report):
|
||||
if person.get_note() and self.includeNotes:
|
||||
self.doc.start_paragraph("DDR-NoteHeader")
|
||||
self.doc.start_bold()
|
||||
self.doc.write_text(_("Notes for %s" % name))
|
||||
self.doc.write_text(_("Notes for %s") % name)
|
||||
self.doc.end_bold()
|
||||
self.doc.end_paragraph()
|
||||
self.doc.write_note(person.get_note(),person.get_note_format(),"DDR-Entry")
|
||||
|
Loading…
Reference in New Issue
Block a user