diff options
author | Dave Bordoley <bordoley@msu.edu> | 2003-02-16 23:41:27 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-02-16 23:41:27 +0800 |
commit | 87fdfec206525bd8527349060c7720fd6635c5fc (patch) | |
tree | 30ddec8342a8bc71f8e14c53e9e93c1231fcf6fb /src | |
parent | ac8a253194008f2c62de4d92dcbb0b5a663368b4 (diff) | |
download | gsoc2013-epiphany-87fdfec206525bd8527349060c7720fd6635c5fc.tar gsoc2013-epiphany-87fdfec206525bd8527349060c7720fd6635c5fc.tar.gz gsoc2013-epiphany-87fdfec206525bd8527349060c7720fd6635c5fc.tar.bz2 gsoc2013-epiphany-87fdfec206525bd8527349060c7720fd6635c5fc.tar.lz gsoc2013-epiphany-87fdfec206525bd8527349060c7720fd6635c5fc.tar.xz gsoc2013-epiphany-87fdfec206525bd8527349060c7720fd6635c5fc.tar.zst gsoc2013-epiphany-87fdfec206525bd8527349060c7720fd6635c5fc.zip |
src/ephy-window.c Fix mneumonic collision between back and bookmarks.
2003-02-16 Dave Bordoley <bordoley@msu.edu>
* src/ephy-window.c
Fix mneumonic collision between back and bookmarks.
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c index b58feb5d1..cd6113412 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -169,7 +169,7 @@ static EggActionGroupEntry ephy_menu_entries [] = { { "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", + { "GoBookmarks", N_("Boo_kmarks"), EPHY_STOCK_BOOKMARKS, "<control>B", N_("Go to a bookmark"), G_CALLBACK (window_cmd_go_bookmarks), NULL }, |