diff options
author | Not Zed <NotZed@Ximian.com> | 2004-06-28 16:47:08 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-06-28 16:47:08 +0800 |
commit | ded907d9654c4a2be0bbf704cd955475816ee20b (patch) | |
tree | 188f6f676f15a43fa110ec7dd4535b2f2ba8af7b /calendar/gui | |
parent | 92e8573a7ce990ccfe4b36902e51516b1f8fb954 (diff) | |
download | gsoc2013-evolution-ded907d9654c4a2be0bbf704cd955475816ee20b.tar gsoc2013-evolution-ded907d9654c4a2be0bbf704cd955475816ee20b.tar.gz gsoc2013-evolution-ded907d9654c4a2be0bbf704cd955475816ee20b.tar.bz2 gsoc2013-evolution-ded907d9654c4a2be0bbf704cd955475816ee20b.tar.lz gsoc2013-evolution-ded907d9654c4a2be0bbf704cd955475816ee20b.tar.xz gsoc2013-evolution-ded907d9654c4a2be0bbf704cd955475816ee20b.tar.zst gsoc2013-evolution-ded907d9654c4a2be0bbf704cd955475816ee20b.zip |
same.
2004-06-28 Not Zed <NotZed@Ximian.com>
* gui/tasks-component.c (impl__get_userCreatableItems): same.
* gui/calendar-component.c (impl__get_userCreatableItems): fix up
shortcuts. #56746.
svn path=/trunk/; revision=26540
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/calendar-component.c | 4 | ||||
-rw-r--r-- | calendar/gui/tasks-component.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index 4bf64da90f..6b84eac36f 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -1246,9 +1246,9 @@ impl__get_userCreatableItems (PortableServer_Servant servant, list->_buffer[3].id = CREATE_CALENDAR_ID; list->_buffer[3].description = _("New calendar"); - list->_buffer[3].menuDescription = _("C_alendar"); + list->_buffer[3].menuDescription = _("Cale_ndar"); list->_buffer[3].tooltip = _("Create a new calendar"); - list->_buffer[3].menuShortcut = 'a'; + list->_buffer[3].menuShortcut = 'n'; list->_buffer[3].iconName = "stock_calendar"; list->_buffer[3].type = GNOME_Evolution_CREATABLE_FOLDER; diff --git a/calendar/gui/tasks-component.c b/calendar/gui/tasks-component.c index e685977a5d..1fa67ed6b7 100644 --- a/calendar/gui/tasks-component.c +++ b/calendar/gui/tasks-component.c @@ -1036,9 +1036,9 @@ impl__get_userCreatableItems (PortableServer_Servant servant, list->_buffer[1].id = CREATE_TASK_LIST_ID; list->_buffer[1].description = _("New tasks group"); - list->_buffer[1].menuDescription = _("_Tasks Group"); + list->_buffer[1].menuDescription = _("Tasks Gro_up"); list->_buffer[1].tooltip = _("Create a new tasks group"); - list->_buffer[1].menuShortcut = 'n'; + list->_buffer[1].menuShortcut = 'u'; list->_buffer[1].iconName = "stock_todo"; list->_buffer[1].type = GNOME_Evolution_CREATABLE_FOLDER; |