0001369: Cannot translate (LivingProxy) references on NarrativeWeb dialog

svn: r9348
This commit is contained in:
Brian Matherly 2007-11-13 12:46:56 +00:00
parent 509b9b918a
commit 978d7b2987
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2007-11-13 Brian Matherly <brian@gramps-project.org>
* src/plugins/NarrativeWeb.py: Fix 0001369: Cannot translate (LivingProxy)
references on NarrativeWeb dialog
2007-11-13 Benny Malengier <benny.malengier@gramps-project.org> 2007-11-13 Benny Malengier <benny.malengier@gramps-project.org>
* src/plugins/GraphViz.py: issue #1362, code generation should not show * src/plugins/GraphViz.py: issue #1362, code generation should not show
open with ghostview, ..., instead show app with text/plain. open with ghostview, ..., instead show app with text/plain.

View File

@ -2754,9 +2754,9 @@ class WebReportOptions(ReportOptions):
self.include_gallery.set_active(self.options_dict['NWEBgallery']) self.include_gallery.set_active(self.options_dict['NWEBgallery'])
self.living = gtk.combo_box_new_text() self.living = gtk.combo_box_new_text()
self.living.append_text("Exclude") self.living.append_text(_("Exclude"))
self.living.append_text("Restrict") self.living.append_text(_("Restrict"))
self.living.append_text("Include") self.living.append_text(_("Include"))
self.living.set_active(self.options_dict['NWEBlivinginfo']) self.living.set_active(self.options_dict['NWEBlivinginfo'])
self.restrict_years = gtk.SpinButton(gtk.Adjustment(1,0,100,1)) self.restrict_years = gtk.SpinButton(gtk.Adjustment(1,0,100,1))