diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/calendar-component.c | 4 | ||||
-rw-r--r-- | calendar/gui/tasks-component.c | 4 |
3 files changed, 11 insertions, 4 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index bd0a7d6f54..8374ae4285 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +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. + 2004-06-25 JP Rosevear <jpr@novell.com> * gui/dialogs/alarm-dialog.glade: don't show option tabs 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; |