* src/plugins/Ancestors.py: Typo.

* src/plugins/IndivComplete.py: Typo.


svn: r2732
This commit is contained in:
Alex Roitman 2004-01-31 23:01:27 +00:00
parent 8a4a4fac42
commit 7b1b6c67df
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-01-31 Alex Roitman <shura@alex.neuro.umn.edu>
* src/plugins/Ancestors.py: Typo.
* src/plugins/IndivComplete.py: Typo.
2004-01-31 Egyeki Gergely <egeri@elte.hu>
* src/po/hu.po: Updating translation for 1.0-RC

View File

@ -736,7 +736,7 @@ class ComprehensiveAncestorsReport (Report.Report):
for name in names:
paras.append ((self.doc.start_paragraph, ['AR-Details']))
paras.append ((self.doc.write_text,
[const.NameTypesMap.get_value(name.getType ()) +
[const.NameTypesMap.find_value(name.getType ()) +
': ' + name.getRegularName ()]))
paras.append ((self.doc.end_paragraph, []))

View File

@ -233,7 +233,7 @@ class IndivComplete(Report.Report):
self.d.end_row()
for name in self.person.getAlternateNames():
type = const.NameTypesMap.get_value(name.getType())
type = const.NameTypesMap.find_value(name.getType())
self.d.start_row()
self.normal_cell(type)
text = name.getRegularName()