parent
d8f05e65d4
commit
b7e9f0937d
@ -185,7 +185,7 @@ class EventView(PageView.ListView):
|
|||||||
self._add_action('ColumnEdit', gtk.STOCK_PROPERTIES,
|
self._add_action('ColumnEdit', gtk.STOCK_PROPERTIES,
|
||||||
_('_Column Editor'), callback=self._column_editor,)
|
_('_Column Editor'), callback=self._column_editor,)
|
||||||
self._add_action('QuickReport', None,
|
self._add_action('QuickReport', None,
|
||||||
_("Quick Report"), None, None, None)
|
_("Quick View"), None, None, None)
|
||||||
self._add_action('Dummy', None,
|
self._add_action('Dummy', None,
|
||||||
' ', None, None, self.dummy_report)
|
' ', None, None, self.dummy_report)
|
||||||
|
|
||||||
|
@ -171,7 +171,7 @@ class FamilyListView(PageView.ListView):
|
|||||||
|
|
||||||
self.all_action = gtk.ActionGroup(self.title + "/FamilyAll")
|
self.all_action = gtk.ActionGroup(self.title + "/FamilyAll")
|
||||||
self.all_action.add_actions([
|
self.all_action.add_actions([
|
||||||
('QuickReport', None, _("Quick Report"), None, None, None),
|
('QuickReport', None, _("Quick View"), None, None, None),
|
||||||
('Dummy', None, ' ', None, None, self.dummy_report),
|
('Dummy', None, ' ', None, None, self.dummy_report),
|
||||||
])
|
])
|
||||||
self._add_action_group(self.all_action)
|
self._add_action_group(self.all_action)
|
||||||
|
@ -148,7 +148,7 @@ class PersonView(PageView.PersonNavView):
|
|||||||
_("Edit the selected person"), self.edit),
|
_("Edit the selected person"), self.edit),
|
||||||
('CloseAllNodes', None, _("Collapse all Nodes"), None, None,
|
('CloseAllNodes', None, _("Collapse all Nodes"), None, None,
|
||||||
self.close_all_nodes),
|
self.close_all_nodes),
|
||||||
('QuickReport', None, _("Quick Report"), None, None, None),
|
('QuickReport', None, _("Quick View"), None, None, None),
|
||||||
('Dummy', None, ' ', None, None, self.dummy_report),
|
('Dummy', None, ' ', None, None, self.dummy_report),
|
||||||
])
|
])
|
||||||
|
|
||||||
|
@ -123,7 +123,7 @@ class RepositoryView(PageView.ListView):
|
|||||||
self._add_action('FilterEdit', None, _('Repository Filter Editor'),
|
self._add_action('FilterEdit', None, _('Repository Filter Editor'),
|
||||||
callback=self.filter_editor,)
|
callback=self.filter_editor,)
|
||||||
self._add_action('QuickReport', None,
|
self._add_action('QuickReport', None,
|
||||||
_("Quick Report"), None, None, None)
|
_("Quick View"), None, None, None)
|
||||||
self._add_action('Dummy', None,
|
self._add_action('Dummy', None,
|
||||||
' ', None, None, self.dummy_report)
|
' ', None, None, self.dummy_report)
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ def create_quickreport_menu(category,dbstate,uistate, handle) :
|
|||||||
ofile = StringIO()
|
ofile = StringIO()
|
||||||
ofile.write('<menu action="QuickReport">')
|
ofile.write('<menu action="QuickReport">')
|
||||||
|
|
||||||
actions.append(('QuickReport', None, _("Quick Report"), None, None, None))
|
actions.append(('QuickReport', None, _("Quick View"), None, None, None))
|
||||||
|
|
||||||
menu = gtk.Menu()
|
menu = gtk.Menu()
|
||||||
menu.show()
|
menu.show()
|
||||||
|
Loading…
Reference in New Issue
Block a user