diff options
author | Dave Bordoley <bordoley@msu.edu> | 2003-02-15 15:48:48 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-02-15 15:48:48 +0800 |
commit | 7207a1355f44aff105a424e30be95d34bf4fe072 (patch) | |
tree | 735e3938c2873c99a44ee2335d8c1c3259886861 /src/ephy-window.c | |
parent | 853e7df8135a9a57071e3b0122e4dbf29e447dc9 (diff) | |
download | gsoc2013-epiphany-7207a1355f44aff105a424e30be95d34bf4fe072.tar gsoc2013-epiphany-7207a1355f44aff105a424e30be95d34bf4fe072.tar.gz gsoc2013-epiphany-7207a1355f44aff105a424e30be95d34bf4fe072.tar.bz2 gsoc2013-epiphany-7207a1355f44aff105a424e30be95d34bf4fe072.tar.lz gsoc2013-epiphany-7207a1355f44aff105a424e30be95d34bf4fe072.tar.xz gsoc2013-epiphany-7207a1355f44aff105a424e30be95d34bf4fe072.tar.zst gsoc2013-epiphany-7207a1355f44aff105a424e30be95d34bf4fe072.zip |
src/ephy-window.c src/window-commands.c src/window-commands.h
2003-02-15 Dave Bordoley <bordoley@msu.edu>
* src/ephy-window.c
* src/window-commands.c
* src/window-commands.h
* data/ui/epiphany-ui.xml.in
Added Help->Contents
Move reload and stop to bottom of view menu
Fix mneumonic collision in the go menu
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r-- | src/ephy-window.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index 9163cfd1c..904dfc149 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -166,7 +166,7 @@ static EggActionGroupEntry ephy_menu_entries [] = { { "GoLocation", N_("_Location..."), NULL, "<control>L", N_("Go to a specified location"), G_CALLBACK (window_cmd_go_location), NULL }, - { "GoHistory", N_("_History"), EPHY_STOCK_HISTORY, "<control>H", + { "GoHistory", N_("H_istory"), EPHY_STOCK_HISTORY, "<control>H", N_("Go to an already visited page"), G_CALLBACK (window_cmd_go_history), NULL }, { "GoBookmarks", N_("_Bookmarks"), EPHY_STOCK_BOOKMARKS, "<control>B", @@ -191,6 +191,9 @@ static EggActionGroupEntry ephy_menu_entries [] = { G_CALLBACK (window_cmd_tabs_detach), NULL }, /* Help menu */ + {"HelpContents", N_("_Contents"), GTK_STOCK_HELP, "F1", + N_("Display web browser help"), + G_CALLBACK (window_cmd_help_contents), NULL }, { "HelpAbout", N_("_About"), GNOME_STOCK_ABOUT, NULL, N_("Display credits for the web browser creators"), G_CALLBACK (window_cmd_help_about), NULL }, |