* src/plugins/DetAncestralReport.py: Fix translatable string.

svn: r2169
This commit is contained in:
Alex Roitman 2003-09-25 23:11:03 +00:00
parent e5bf63e2ad
commit ee31bc8ca1
2 changed files with 23 additions and 21 deletions

View File

@ -1,3 +1,6 @@
2003-09-25 Alex Roitman <shura@alex.neuro.umn.edu>
* src/plugins/DetAncestralReport.py: Fix translatable string.
2003-09-24 Don Allingham <dallingham@users.sourceforge.net> 2003-09-24 Don Allingham <dallingham@users.sourceforge.net>
* src/plugins/WriteFTree.py: increment the count properly * src/plugins/WriteFTree.py: increment the count properly
@ -3806,4 +3809,3 @@
* .cvsignore 1.1, COPYING 1.1, NEWS 1.1, README 1.1, TODO 1.1: * .cvsignore 1.1, COPYING 1.1, NEWS 1.1, README 1.1, TODO 1.1:
New file. New file.

View File

@ -826,16 +826,16 @@ class DetAncestorReportDialog(Report.TextReportDialog):
# if you want to put everyting in the generic "Options" category, use # if you want to put everyting in the generic "Options" category, use
# self.add_option(text,widget) instead of self.add_frame_option(category,text,widget) # self.add_option(text,widget) instead of self.add_frame_option(category,text,widget)
self.add_frame_option('Content','',self.first_name_option) self.add_frame_option(_('Content'),'',self.first_name_option)
self.add_frame_option('Content','',self.full_date_option) self.add_frame_option(_('Content'),'',self.full_date_option)
self.add_frame_option('Content','',self.list_children_option) self.add_frame_option(_('Content'),'',self.list_children_option)
self.add_frame_option('Content','',self.include_notes_option) self.add_frame_option(_('Content'),'',self.include_notes_option)
self.add_frame_option('Content','',self.place_option) self.add_frame_option(_('Content'),'',self.place_option)
self.add_frame_option('Content','',self.date_option) self.add_frame_option(_('Content'),'',self.date_option)
self.add_frame_option('Content','',self.age_option) self.add_frame_option(_('Content'),'',self.age_option)
self.add_frame_option('Content','',self.dupPersons_option) self.add_frame_option(_('Content'),'',self.dupPersons_option)
self.add_frame_option('Content','',self.childRef_option) self.add_frame_option(_('Content'),'',self.childRef_option)
self.add_frame_option('Content','',self.image_option) self.add_frame_option(_('Content'),'',self.image_option)
def parse_report_options_frame(self): def parse_report_options_frame(self):
@ -1046,16 +1046,16 @@ class DetAncestorBareReportDialog(Report.BareReportDialog):
# if you want to put everyting in the generic "Options" category, use # if you want to put everyting in the generic "Options" category, use
# self.add_option(text,widget) instead of self.add_frame_option(category,text,widget) # self.add_option(text,widget) instead of self.add_frame_option(category,text,widget)
self.add_frame_option('Content','',self.first_name_option) self.add_frame_option(_('Content'),'',self.first_name_option)
self.add_frame_option('Content','',self.full_date_option) self.add_frame_option(_('Content'),'',self.full_date_option)
self.add_frame_option('Content','',self.list_children_option) self.add_frame_option(_('Content'),'',self.list_children_option)
self.add_frame_option('Content','',self.include_notes_option) self.add_frame_option(_('Content'),'',self.include_notes_option)
self.add_frame_option('Content','',self.place_option) self.add_frame_option(_('Content'),'',self.place_option)
self.add_frame_option('Content','',self.date_option) self.add_frame_option(_('Content'),'',self.date_option)
self.add_frame_option('Content','',self.age_option) self.add_frame_option(_('Content'),'',self.age_option)
self.add_frame_option('Content','',self.dupPersons_option) self.add_frame_option(_('Content'),'',self.dupPersons_option)
self.add_frame_option('Content','',self.childRef_option) self.add_frame_option(_('Content'),'',self.childRef_option)
self.add_frame_option('Content','',self.image_option) self.add_frame_option(_('Content'),'',self.image_option)
def parse_report_options_frame(self): def parse_report_options_frame(self):
"""Parse the report options frame of the dialog. Save the user selected choices for later use.""" """Parse the report options frame of the dialog. Save the user selected choices for later use."""