navigation history is for all objects

svn: r17619
This commit is contained in:
Jérôme Rapinat 2011-05-29 16:56:28 +00:00
parent 8b3145e03a
commit 9bb6a77850

View File

@ -289,7 +289,7 @@ class NavigationView(PageView):
self.fwd_action = gtk.ActionGroup(self.title + '/Forward') self.fwd_action = gtk.ActionGroup(self.title + '/Forward')
self.fwd_action.add_actions([ self.fwd_action.add_actions([
('Forward', gtk.STOCK_GO_FORWARD, _("_Forward"), ('Forward', gtk.STOCK_GO_FORWARD, _("_Forward"),
"%sRight" % mod_key(), _("Go to the next person in the history"), "%sRight" % mod_key(), _("Go to the next object in the history"),
self.fwd_clicked) self.fwd_clicked)
]) ])
@ -297,7 +297,7 @@ class NavigationView(PageView):
self.back_action = gtk.ActionGroup(self.title + '/Backward') self.back_action = gtk.ActionGroup(self.title + '/Backward')
self.back_action.add_actions([ self.back_action.add_actions([
('Back', gtk.STOCK_GO_BACK, _("_Back"), ('Back', gtk.STOCK_GO_BACK, _("_Back"),
"%sLeft" % mod_key(), _("Go to the previous person in the history"), "%sLeft" % mod_key(), _("Go to the previous object in the history"),
self.back_clicked) self.back_clicked)
]) ])