aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.c
diff options
context:
space:
mode:
authorDavid Bordoley <bordoley@msu.edu>2003-07-11 11:31:32 +0800
committerDave Bordoley <Bordoley@src.gnome.org>2003-07-11 11:31:32 +0800
commit9921d406286cca7e3cd182e5194a14d65d4cceb1 (patch)
tree6224913f8ca3d362f8d173aee8a09765df4d530c /src/ephy-window.c
parent66c8f535bac55e4aaddbebf7ba284f7d9cd8ed39 (diff)
downloadgsoc2013-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/ephy-window.c')
-rw-r--r--src/ephy-window.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 47246a143..b0dc4a26c 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -69,10 +69,10 @@ static EggActionGroupEntry ephy_menu_entries [] = {
/* File menu */
{ "FileNewWindow", N_("_New Window"), GTK_STOCK_NEW, "<control>N",
- N_("Create a new window"),
+ N_("Open a new window"),
G_CALLBACK (window_cmd_file_new_window), NULL },
{ "FileNewTab", N_("New _Tab"), EPHY_STOCK_NEW_TAB, "<control>T",
- N_("Create a new tab"),
+ N_("Open a new tab"),
G_CALLBACK (window_cmd_file_new_tab), NULL },
{ "FileOpen", N_("_Open..."), GTK_STOCK_OPEN, "<control>O",
N_("Open a file"),
@@ -104,13 +104,13 @@ static EggActionGroupEntry ephy_menu_entries [] = {
N_("Select the entire page"),
G_CALLBACK (window_cmd_edit_select_all), NULL },
{ "EditFind", N_("_Find..."), GTK_STOCK_FIND, "<control>F",
- N_("Find a string"),
+ N_("Find a word or phrase in the page"),
G_CALLBACK (window_cmd_edit_find), NULL },
{ "EditFindNext", N_("Find Ne_xt"), NULL, "<control>G",
- N_("Find next occurrence of the string"),
+ N_("Find next occurrence of the word or phrase"),
G_CALLBACK (window_cmd_edit_find_next), NULL },
{ "EditFindPrev", N_("Find Pre_vious"), NULL, "<shift><control>G",
- N_("Find previous occurrence of the string"),
+ N_("Find previous occurrence of the word or phrase"),
G_CALLBACK (window_cmd_edit_find_prev), NULL },
{ "EditPersonalData", N_("P_ersonal Data"), NULL, NULL,
N_("View and remove cookies and passwords"),
@@ -142,13 +142,13 @@ static EggActionGroupEntry ephy_menu_entries [] = {
N_("Browse at full screen"),
G_CALLBACK (window_cmd_view_fullscreen), NULL, TOGGLE_ACTION},
{ "ViewZoomIn", N_("Zoom _In"), GTK_STOCK_ZOOM_IN, "<control>plus",
- N_("Show the contents in more detail"),
+ N_("Increase the text size"),
G_CALLBACK (window_cmd_view_zoom_in), NULL },
{ "ViewZoomOut", N_("Zoom _Out"), GTK_STOCK_ZOOM_OUT, "<control>minus",
- N_("Show the contents in less detail"),
+ N_("Decrease the text size"),
G_CALLBACK (window_cmd_view_zoom_out), NULL },
{ "ViewZoomNormal", N_("_Normal Size"), GTK_STOCK_ZOOM_100, NULL,
- N_("Show the contents at the normal size"),
+ N_("Use the normal text size"),
G_CALLBACK (window_cmd_view_zoom_normal), NULL },
{ "ViewEncoding", N_("_Encoding"), NULL, NULL, NULL, NULL, NULL },
{ "ViewPageSource", N_("_Page Source"), EPHY_STOCK_VIEWSOURCE, "<control>U",
@@ -160,7 +160,7 @@ static EggActionGroupEntry ephy_menu_entries [] = {
N_("Add a bookmark for the current page"),
G_CALLBACK (window_cmd_file_bookmark_page), NULL },
{ "GoBookmarks", N_("_Edit Bookmarks"), EPHY_STOCK_BOOKMARKS, "<control>B",
- N_("Go to a bookmark"),
+ N_("Open the bookmarks window"),
G_CALLBACK (window_cmd_go_bookmarks), NULL },
/* Go menu */
@@ -180,7 +180,7 @@ static EggActionGroupEntry ephy_menu_entries [] = {
N_("Go to a specified location"),
G_CALLBACK (window_cmd_go_location), NULL },
{ "GoHistory", N_("H_istory"), EPHY_STOCK_HISTORY, "<control>H",
- N_("Go to an already visited page"),
+ N_("Open the history window"),
G_CALLBACK (window_cmd_go_history), NULL },
/* Tabs menu */