* src/plugins/ChangeTypes.py (init_gui): Work around intltool bug.
In po:
2006-05-14  Alex Roitman  <shura@gramps-project.org>
	* gramps.pot: update.



svn: r6656
This commit is contained in:
Alex Roitman 2006-05-14 19:27:38 +00:00
parent fa120b9468
commit 1000571a10
4 changed files with 549 additions and 518 deletions

View File

@ -1,4 +1,5 @@
2006-05-14 Alex Roitman <shura@gramps-project.org>
* src/plugins/ChangeTypes.py (init_gui): Work around intltool bug.
* src/plugins/Summary.py: Set titles properly.
* src/plugins/CountAncestors.py: Add window title, remove extra text.
* src/Filters/Rules/Person/_HasNoteRegexp.py: Import re module.

View File

@ -1,3 +1,6 @@
2006-05-14 Alex Roitman <shura@gramps-project.org>
* gramps.pot: update.
2006-05-12 Alex Roitman <shura@gramps-project.org>
* gramps.pot: Update.
* POTFILES.in: Add missing files.

File diff suppressed because it is too large Load Diff

View File

@ -86,10 +86,10 @@ class ChangeTypes(Tool.BatchTool, ManagedWindow.ManagedWindow):
AutoComp.fill_combo(self.auto1,event_names)
AutoComp.fill_combo(self.auto2,event_names)
# Need to display localized event names
self.auto1.child.set_text(
_(self.options.handler.options_dict['fromtype']))
self.auto2.child.set_text(
_(self.options.handler.options_dict['totype']))
fromtype = self.options.handler.options_dict['fromtype']
totype = self.options.handler.options_dict['totype']
self.auto1.child.set_text(_(fromtype))
self.auto2.child.set_text(_(totype))
window = self.glade.get_widget('top')
self.set_window(window,self.glade.get_widget('title'),self.title)