diff options
author | JP Rosevear <jpr@novell.com> | 2004-07-26 23:35:36 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-07-26 23:35:36 +0800 |
commit | fd77100a729e5576f987e80473c60e0780ce0a34 (patch) | |
tree | 7534b89812ed26df32c5fbbebff8cc84dedb8404 /calendar/gui/calendar-component.c | |
parent | ef076f8049145118bd8d19bc29367681e2dafa9f (diff) | |
download | gsoc2013-evolution-fd77100a729e5576f987e80473c60e0780ce0a34.tar.gz gsoc2013-evolution-fd77100a729e5576f987e80473c60e0780ce0a34.tar.zst gsoc2013-evolution-fd77100a729e5576f987e80473c60e0780ce0a34.zip |
set a different title if we are editing; de-sensitize option menu if we
2004-07-26 JP Rosevear <jpr@novell.com>
* gui/dialogs/calendar-setup.c (calendar_setup_edit_calendar): set
a different title if we are editing; de-sensitize option menu if
we are editing
(calendar_setup_edit_task_list): set a different title if we are editing
* gui/dialogs/calendar-setup.glade: use task list instead of tasks
group
* gui/tasks-component.c (impl__get_userCreatableItems): add
assigned task as an item, use task list instead of tasks group
* gui/calendar--component.c (impl__get_userCreatableItems): fiddle
with shortcuts
svn path=/trunk/; revision=26735
Diffstat (limited to 'calendar/gui/calendar-component.c')
-rw-r--r-- | calendar/gui/calendar-component.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index 80e921803b..b0b3af2480 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -1252,9 +1252,9 @@ impl__get_userCreatableItems (PortableServer_Servant servant, list->_buffer[2].id = CREATE_ALLDAY_EVENT_ID; list->_buffer[2].description = _("New all day appointment"); - list->_buffer[2].menuDescription = _("All _Day Appointment"); + list->_buffer[2].menuDescription = _("All Day A_ppointment"); list->_buffer[2].tooltip = _("Create a new all-day appointment"); - list->_buffer[2].menuShortcut = 'd'; + list->_buffer[2].menuShortcut = 'p'; list->_buffer[2].iconName = "stock_new-24h-appointment"; list->_buffer[2].type = GNOME_Evolution_CREATABLE_OBJECT; |