From ee31bc8ca16dfc722179d23bc08410cde35b7cab Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Thu, 25 Sep 2003 23:11:03 +0000 Subject: [PATCH] * src/plugins/DetAncestralReport.py: Fix translatable string. svn: r2169 --- ChangeLog | 4 +++- src/plugins/DetAncestralReport.py | 40 +++++++++++++++---------------- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/ChangeLog b/ChangeLog index de9f10427..87c357086 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2003-09-25 Alex Roitman + * src/plugins/DetAncestralReport.py: Fix translatable string. + 2003-09-24 Don Allingham * 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: New file. - diff --git a/src/plugins/DetAncestralReport.py b/src/plugins/DetAncestralReport.py index 20be1d278..f3c67ed05 100644 --- a/src/plugins/DetAncestralReport.py +++ b/src/plugins/DetAncestralReport.py @@ -826,16 +826,16 @@ class DetAncestorReportDialog(Report.TextReportDialog): # 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_frame_option('Content','',self.first_name_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.include_notes_option) - self.add_frame_option('Content','',self.place_option) - self.add_frame_option('Content','',self.date_option) - self.add_frame_option('Content','',self.age_option) - self.add_frame_option('Content','',self.dupPersons_option) - self.add_frame_option('Content','',self.childRef_option) - self.add_frame_option('Content','',self.image_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.list_children_option) + self.add_frame_option(_('Content'),'',self.include_notes_option) + self.add_frame_option(_('Content'),'',self.place_option) + self.add_frame_option(_('Content'),'',self.date_option) + self.add_frame_option(_('Content'),'',self.age_option) + self.add_frame_option(_('Content'),'',self.dupPersons_option) + self.add_frame_option(_('Content'),'',self.childRef_option) + self.add_frame_option(_('Content'),'',self.image_option) 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 # 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.full_date_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.place_option) - self.add_frame_option('Content','',self.date_option) - self.add_frame_option('Content','',self.age_option) - self.add_frame_option('Content','',self.dupPersons_option) - self.add_frame_option('Content','',self.childRef_option) - self.add_frame_option('Content','',self.image_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.list_children_option) + self.add_frame_option(_('Content'),'',self.include_notes_option) + self.add_frame_option(_('Content'),'',self.place_option) + self.add_frame_option(_('Content'),'',self.date_option) + self.add_frame_option(_('Content'),'',self.age_option) + self.add_frame_option(_('Content'),'',self.dupPersons_option) + self.add_frame_option(_('Content'),'',self.childRef_option) + self.add_frame_option(_('Content'),'',self.image_option) def parse_report_options_frame(self): """Parse the report options frame of the dialog. Save the user selected choices for later use."""