diff options
author | David Bordoley <bordoley@msu.edu> | 2003-07-11 11:31:32 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-07-11 11:31:32 +0800 |
commit | 9921d406286cca7e3cd182e5194a14d65d4cceb1 (patch) | |
tree | 6224913f8ca3d362f8d173aee8a09765df4d530c /src/toolbar.c | |
parent | 66c8f535bac55e4aaddbebf7ba284f7d9cd8ed39 (diff) | |
download | gsoc2013-epiphany-9921d406286cca7e3cd182e5194a14d65d4cceb1.tar gsoc2013-epiphany-9921d406286cca7e3cd182e5194a14d65d4cceb1.tar.gz gsoc2013-epiphany-9921d406286cca7e3cd182e5194a14d65d4cceb1.tar.bz2 gsoc2013-epiphany-9921d406286cca7e3cd182e5194a14d65d4cceb1.tar.lz gsoc2013-epiphany-9921d406286cca7e3cd182e5194a14d65d4cceb1.tar.xz gsoc2013-epiphany-9921d406286cca7e3cd182e5194a14d65d4cceb1.tar.zst gsoc2013-epiphany-9921d406286cca7e3cd182e5194a14d65d4cceb1.zip |
Fix up the tooltips.
2003-07-10 David Bordoley <bordoley@msu.edu>
* src/ephy-window.c:
* src/toolbar.c: (toolbar_setup_actions):
Fix up the tooltips.
Diffstat (limited to 'src/toolbar.c')
-rwxr-xr-x | src/toolbar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/toolbar.c b/src/toolbar.c index cea20d77c..f2e071722 100755 --- a/src/toolbar.c +++ b/src/toolbar.c @@ -370,7 +370,7 @@ toolbar_setup_actions (Toolbar *t) "name", "Location", "label", _("Address Entry"), "stock_id", EPHY_STOCK_ENTRY, - "tooltip", _("Enter a web address to open, or a phrase to search for on the web."), + "tooltip", _("Enter a web address to open, or a phrase to search for on the web"), NULL); g_signal_connect (action, "go_location", G_CALLBACK (go_location_cb), t->priv->window); @@ -380,7 +380,7 @@ toolbar_setup_actions (Toolbar *t) action = g_object_new (EPHY_TYPE_ZOOM_ACTION, "name", "Zoom", "label", _("Zoom"), - "tooltip", _("Zoom"), + "tooltip", _("Adjust the text size"), "zoom", 1.0, NULL); g_signal_connect (action, "zoom_to_level", @@ -400,7 +400,7 @@ toolbar_setup_actions (Toolbar *t) "name", "ToolbarGo", "label", _("Go"), "stock_id", GTK_STOCK_JUMP_TO, - "tooltip", _("Go to the address entered in the location entry."), + "tooltip", _("Go to the address entered in the address entry"), NULL); g_signal_connect (action, "activate", G_CALLBACK (window_cmd_load_location), t->priv->window); |