diff options
author | infirit <[email protected]> | 2014-07-28 16:35:37 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2014-07-28 17:09:20 +0200 |
commit | 68bee853e2c5fd5515d9622144fdfe0ec22f4138 (patch) | |
tree | 6a56784971804232fec9aa00d13b5279410ad0cb /src | |
parent | 935986216bba15dd991a3de9272820d35cbfab74 (diff) | |
download | eom-68bee853e2c5fd5515d9622144fdfe0ec22f4138.tar.bz2 eom-68bee853e2c5fd5515d9622144fdfe0ec22f4138.tar.xz |
Fix conflicting mnemonics in View menu
Eog bug https://bugzilla.gnome.org/show_bug.cgi?id=646360
Based on Eog commit b4fefa4d98a8db91738da593e2101160fbd63465
From Felix Riemann <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/eom-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eom-window.c b/src/eom-window.c index 5d04f45..b7ec35f 100644 --- a/src/eom-window.c +++ b/src/eom-window.c @@ -3735,7 +3735,7 @@ static const GtkActionEntry action_entries_image[] = { { "ViewZoomNormal", GTK_STOCK_ZOOM_100, N_("_Normal Size"), "<control>0", N_("Show the image at its normal size"), G_CALLBACK (eom_window_cmd_zoom_normal) }, - { "ViewZoomFit", GTK_STOCK_ZOOM_FIT, N_("Best _Fit"), "F", + { "ViewZoomFit", GTK_STOCK_ZOOM_FIT, N_("_Best Fit"), "F", N_("Fit the image to the window"), G_CALLBACK (eom_window_cmd_zoom_fit) }, { "ControlEqual", GTK_STOCK_ZOOM_IN, N_("_Zoom In"), "<control>equal", @@ -3789,7 +3789,7 @@ static const GtkActionEntry action_entries_collection[] = { }; static const GtkToggleActionEntry toggle_entries_collection[] = { - { "ViewSlideshow", "slideshow-play", N_("_Slideshow"), "F5", + { "ViewSlideshow", "slideshow-play", N_("S_lideshow"), "F5", N_("Start a slideshow view of the images"), G_CALLBACK (eom_window_cmd_slideshow), FALSE }, }; |