diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-25 03:15:37 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-25 03:15:37 +0800 |
commit | 31850e8de9e72fccd7a0462e4ccdc3b4e2688acc (patch) | |
tree | f5dd4f04b0fc0b2a432d1351b1e9f35d86d45ef1 | |
parent | 99cf86d7dd42b1404c8d5d78ab6899c8f0f46aef (diff) | |
download | gsoc2013-evolution-31850e8de9e72fccd7a0462e4ccdc3b4e2688acc.tar gsoc2013-evolution-31850e8de9e72fccd7a0462e4ccdc3b4e2688acc.tar.gz gsoc2013-evolution-31850e8de9e72fccd7a0462e4ccdc3b4e2688acc.tar.bz2 gsoc2013-evolution-31850e8de9e72fccd7a0462e4ccdc3b4e2688acc.tar.lz gsoc2013-evolution-31850e8de9e72fccd7a0462e4ccdc3b4e2688acc.tar.xz gsoc2013-evolution-31850e8de9e72fccd7a0462e4ccdc3b4e2688acc.tar.zst gsoc2013-evolution-31850e8de9e72fccd7a0462e4ccdc3b4e2688acc.zip |
Added accelerators for the right-click shortcut menu.
* e-shortcuts-view.c: Added accelerators for the right-click
shortcut menu.
svn path=/trunk/; revision=12448
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shortcuts-view.c | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index cf0b997b76..1af72a424e 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2001-08-24 Ettore Perazzoli <ettore@ximian.com> + + * e-shortcuts-view.c: Added accelerators for the right-click + shortcut menu. + 2001-08-23 Zbigniew Chyla <cyba@gnome.pl> * e-shortcuts.c (e_shortcuts_add_default_group): Convert names of the diff --git a/shell/e-shortcuts-view.c b/shell/e-shortcuts-view.c index 6995c323b8..768a4bde1d 100644 --- a/shell/e-shortcuts-view.c +++ b/shell/e-shortcuts-view.c @@ -378,14 +378,14 @@ rename_shortcut_cb (GtkWidget *widget, } static GnomeUIInfo shortcut_right_click_menu_uiinfo[] = { - GNOMEUIINFO_ITEM_STOCK (N_("Open"), N_("Open the folder linked to this shortcut"), + GNOMEUIINFO_ITEM_STOCK (N_("_Open"), N_("Open the folder linked to this shortcut"), open_shortcut_cb, GNOME_STOCK_MENU_OPEN), - GNOMEUIINFO_ITEM_NONE (N_("Open in New Window"), N_("Open the folder linked to this shortcut in a new window"), + GNOMEUIINFO_ITEM_NONE (N_("Open in New _Window"), N_("Open the folder linked to this shortcut in a new window"), open_shortcut_in_new_window_cb), GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM_NONE (N_("Rename"), N_("Rename this shortcut"), + GNOMEUIINFO_ITEM_NONE (N_("_Rename"), N_("Rename this shortcut"), rename_shortcut_cb), - GNOMEUIINFO_ITEM_STOCK (N_("Remove"), N_("Remove this shortcut from the shortcut bar"), + GNOMEUIINFO_ITEM_STOCK (N_("Re_move"), N_("Remove this shortcut from the shortcut bar"), remove_shortcut_cb, GNOME_STOCK_MENU_TRASH), GNOMEUIINFO_END }; |