From 9bb6a77850e437df287b88b113447d9d53134c52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sun, 29 May 2011 16:56:28 +0000 Subject: [PATCH] navigation history is for all objects svn: r17619 --- src/gui/views/navigationview.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/views/navigationview.py b/src/gui/views/navigationview.py index 27b9fd5be..c2404da21 100644 --- a/src/gui/views/navigationview.py +++ b/src/gui/views/navigationview.py @@ -289,7 +289,7 @@ class NavigationView(PageView): self.fwd_action = gtk.ActionGroup(self.title + '/Forward') self.fwd_action.add_actions([ ('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) ]) @@ -297,7 +297,7 @@ class NavigationView(PageView): self.back_action = gtk.ActionGroup(self.title + '/Backward') self.back_action.add_actions([ ('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) ])