diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-10-22 23:50:27 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-10-22 23:50:27 +0800 |
commit | c32a9d9770aa342802bb8f8bdf5e54663b40437f (patch) | |
tree | 9e77a821e4aef497c3a04fdade8ca49924754978 /src/toolbar.c | |
parent | 79d6fe5e18ec0e08e8ed165d47b41f012316ec55 (diff) | |
download | gsoc2013-epiphany-c32a9d9770aa342802bb8f8bdf5e54663b40437f.tar gsoc2013-epiphany-c32a9d9770aa342802bb8f8bdf5e54663b40437f.tar.gz gsoc2013-epiphany-c32a9d9770aa342802bb8f8bdf5e54663b40437f.tar.bz2 gsoc2013-epiphany-c32a9d9770aa342802bb8f8bdf5e54663b40437f.tar.lz gsoc2013-epiphany-c32a9d9770aa342802bb8f8bdf5e54663b40437f.tar.xz gsoc2013-epiphany-c32a9d9770aa342802bb8f8bdf5e54663b40437f.tar.zst gsoc2013-epiphany-c32a9d9770aa342802bb8f8bdf5e54663b40437f.zip |
Add tooltips on the arrows, and fix the tooltip on the "Up" button to be
2004-10-22 Christian Persch <chpe@cvs.gnome.org>
* src/ephy-navigation-action.c: (set_tooltip_cb), (connect_proxy),
(ephy_navigation_action_finalize),
(ephy_navigation_action_set_property),
(ephy_navigation_action_get_property),
(ephy_navigation_action_class_init):
* src/ephy-navigation-action.h:
* src/toolbar.c: (toolbar_setup_actions):
Add tooltips on the arrows, and fix the tooltip on the "Up" button
to be consistent with nautilus. Thanks to spark for the string review;
fixes bug #155825.
Diffstat (limited to 'src/toolbar.c')
-rwxr-xr-x | src/toolbar.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/toolbar.c b/src/toolbar.c index a15257599..e4242b971 100755 --- a/src/toolbar.c +++ b/src/toolbar.c @@ -295,6 +295,7 @@ toolbar_setup_actions (Toolbar *t) "label", _("Back"), "stock_id", GTK_STOCK_GO_BACK, "tooltip", _("Go back"), + "arrow-tooltip", _("Back history"), "window", t->priv->window, "direction", EPHY_NAVIGATION_DIRECTION_BACK, "is_important", TRUE, @@ -309,6 +310,7 @@ toolbar_setup_actions (Toolbar *t) "label", _("Forward"), "stock_id", GTK_STOCK_GO_FORWARD, "tooltip", _("Go forward"), + "arrow-tooltip", _("Forward history"), "window", t->priv->window, "direction", EPHY_NAVIGATION_DIRECTION_FORWARD, NULL); @@ -321,7 +323,8 @@ toolbar_setup_actions (Toolbar *t) "name", "NavigationUp", "label", _("Up"), "stock_id", GTK_STOCK_GO_UP, - "tooltip", _("Go up"), + "tooltip", _("Go up one level"), + "arrow-tooltip", _("List of upper levels"), "window", t->priv->window, "direction", EPHY_NAVIGATION_DIRECTION_UP, NULL); |