diff options
author | Christian Persch <chpe@src.gnome.org> | 2004-11-28 05:53:23 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-11-28 05:53:23 +0800 |
commit | 31e0bb87dc5de15587bf81696ca7d861ce5b9ea8 (patch) | |
tree | dddbc1115dd1a1eab6a2a36f63a552167b9d0e5e | |
parent | c2b4a2366d806218971883b90089ffddd0270499 (diff) | |
download | gsoc2013-epiphany-31e0bb87dc5de15587bf81696ca7d861ce5b9ea8.tar gsoc2013-epiphany-31e0bb87dc5de15587bf81696ca7d861ce5b9ea8.tar.gz gsoc2013-epiphany-31e0bb87dc5de15587bf81696ca7d861ce5b9ea8.tar.bz2 gsoc2013-epiphany-31e0bb87dc5de15587bf81696ca7d861ce5b9ea8.tar.lz gsoc2013-epiphany-31e0bb87dc5de15587bf81696ca7d861ce5b9ea8.tar.xz gsoc2013-epiphany-31e0bb87dc5de15587bf81696ca7d861ce5b9ea8.tar.zst gsoc2013-epiphany-31e0bb87dc5de15587bf81696ca7d861ce5b9ea8.zip |
Add translator comments
-rwxr-xr-x | src/toolbar.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/toolbar.c b/src/toolbar.c index 9a7718b16..d93eee48f 100755 --- a/src/toolbar.c +++ b/src/toolbar.c @@ -311,6 +311,9 @@ toolbar_setup_actions (Toolbar *t) "label", _("Back"), "stock_id", GTK_STOCK_GO_BACK, "tooltip", _("Go back"), + /* this is the tooltip on the Back button's drop-down arrow, which will show + * a menu with all sites you can go 'back' to + */ "arrow-tooltip", _("Back history"), "window", t->priv->window, "direction", EPHY_NAVIGATION_DIRECTION_BACK, @@ -326,6 +329,9 @@ toolbar_setup_actions (Toolbar *t) "label", _("Forward"), "stock_id", GTK_STOCK_GO_FORWARD, "tooltip", _("Go forward"), + /* this is the tooltip on the Forward button's drop-down arrow, which will show + * a menu with all sites you can go 'forward' to + */ "arrow-tooltip", _("Forward history"), "window", t->priv->window, "direction", EPHY_NAVIGATION_DIRECTION_FORWARD, @@ -340,6 +346,9 @@ toolbar_setup_actions (Toolbar *t) "label", _("Up"), "stock_id", GTK_STOCK_GO_UP, "tooltip", _("Go up one level"), + /* this is the tooltip on the Up button's drop-down arrow, which will show + * a menu with al sites you can go 'up' to + */ "arrow-tooltip", _("List of upper levels"), "window", t->priv->window, "direction", EPHY_NAVIGATION_DIRECTION_UP, |