diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2005-10-03 19:20:51 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2005-10-03 19:20:51 +0800 |
commit | ce6a0e927d7d468fdf7469dc6469d497f1f36dba (patch) | |
tree | 005c2b4e5ce433dc88f94aef50dc6ca13a282753 /calendar/gui/gnome-cal.c | |
parent | f8618bb628e7817ec3d9d1da23dfb609b6b9f894 (diff) | |
download | gsoc2013-evolution-ce6a0e927d7d468fdf7469dc6469d497f1f36dba.tar.gz gsoc2013-evolution-ce6a0e927d7d468fdf7469dc6469d497f1f36dba.tar.zst gsoc2013-evolution-ce6a0e927d7d468fdf7469dc6469d497f1f36dba.zip |
Provides across calendars keyboard accelerators for popup menus
2005-10-02 Srinivasa Ragavan <sragavan@novell.com>
Provides across calendars keyboard accelerators for popup menus
* gui/calendar-component.c (ecc_source_popups):
* gui/e-calendar-view.c (ecv_main_items) (ecv_main_items):
* gui/gnome-cal.c (gc_popups):
* gui/tasks-component.c (etc_source_popups):
Added Keybinding for popup menu.
svn path=/trunk/; revision=30478
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r-- | calendar/gui/gnome-cal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index a2c62ae152..b74e98308d 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -2225,13 +2225,13 @@ gc_define_views(EPopup *ep, EPopupItem *pitem, void *data) static EPopupItem gc_popups[] = { /* Code generates the path to fit */ { E_POPUP_BAR, NULL }, - { E_POPUP_RADIO|E_POPUP_ACTIVE, NULL, N_("Custom View"), }, - { E_POPUP_ITEM, NULL, N_("Save Custom View"), gc_save_custom_view }, + { E_POPUP_RADIO|E_POPUP_ACTIVE, NULL, N_("_Custom View"), }, + { E_POPUP_ITEM, NULL, N_("_Save Custom View"), gc_save_custom_view }, /* index == 3, when we have non-custom view */ { E_POPUP_BAR, NULL }, - { E_POPUP_ITEM, NULL, N_("Define Views..."), gc_define_views }, + { E_POPUP_ITEM, NULL, N_("_Define Views..."), gc_define_views }, }; static void |