0001663: webcal options show Mos. 1-6 Notes and Mos. 7-12 Notes

svn: r9980
This commit is contained in:
Brian Matherly 2008-02-02 14:57:32 +00:00
parent 0974c7aa33
commit 7cda6f4c7a
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2008-02-02 Brian Matherly <brian@gramps-project.org>
* src/plugins/WebCal.py:
0001663: webcal options show Mos. 1-6 Notes and Mos. 7-12 Notes
2008-02-02 Brian Matherly <brian@gramps-project.org> 2008-02-02 Brian Matherly <brian@gramps-project.org>
* src/plugins/CmdRef.py: 0001688: BUG when I clicked generate commandline * src/plugins/CmdRef.py: 0001688: BUG when I clicked generate commandline
plugin reference tool plugin reference tool

View File

@ -707,7 +707,7 @@ class WebReportOptions(ReportOptions):
'Note_text11' : _('This prints in November'), 'Note_text11' : _('This prints in November'),
'Note_text12' : _('This prints in December'), 'Note_text12' : _('This prints in December'),
'Year' : time.localtime()[0], 'Year' : time.localtime()[0],
'Country' : 4, 'Country' : 0,
'Surname' : 1, 'Surname' : 1,
'alive' : 1, 'alive' : 1,
'birthdays' : 1, 'birthdays' : 1,
@ -855,7 +855,7 @@ class WebReportOptions(ReportOptions):
dialog.add_frame_option(title,_('Image Repeat'),self.Month_repeat) dialog.add_frame_option(title,_('Image Repeat'),self.Month_repeat)
title = _("Mos. 1-6 Notes") title = _("Months 1-6 Notes")
note_msg = [_('Jan Note'),_('Feb Note'),_('Mar Note'),_('Apr Note'), note_msg = [_('Jan Note'),_('Feb Note'),_('Mar Note'),_('Apr Note'),
_('May Note'),_('Jun Note'),_('Jul Note'),_('Aug Note'), _('May Note'),_('Jun Note'),_('Jul Note'),_('Aug Note'),
@ -886,7 +886,7 @@ class WebReportOptions(ReportOptions):
dialog.add_frame_option(title,note_msg[4],self.Note_text5) dialog.add_frame_option(title,note_msg[4],self.Note_text5)
dialog.add_frame_option(title,note_msg[5],self.Note_text6) dialog.add_frame_option(title,note_msg[5],self.Note_text6)
title = _("Mos. 7-12 Notes") title = _("Months 7-12 Notes")
self.Note_text7 = gtk.Entry() self.Note_text7 = gtk.Entry()
self.Note_text7.set_text(str(self.options_dict['Note_text7'])) self.Note_text7.set_text(str(self.options_dict['Note_text7']))