* 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

@ -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)