diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2004-11-25 15:59:05 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2004-11-25 15:59:05 +0800 |
commit | 28e3f4b36be3dac5eea28e06c63384e81011a41e (patch) | |
tree | 7288764d1918241ad98e6a59b9365efe09ca7a0a /calendar/calendar-errors.xml | |
parent | 8ac90709191dc3bbd8927726b0b3f47d83a3ee05 (diff) | |
download | gsoc2013-evolution-28e3f4b36be3dac5eea28e06c63384e81011a41e.tar gsoc2013-evolution-28e3f4b36be3dac5eea28e06c63384e81011a41e.tar.gz gsoc2013-evolution-28e3f4b36be3dac5eea28e06c63384e81011a41e.tar.bz2 gsoc2013-evolution-28e3f4b36be3dac5eea28e06c63384e81011a41e.tar.lz gsoc2013-evolution-28e3f4b36be3dac5eea28e06c63384e81011a41e.tar.xz gsoc2013-evolution-28e3f4b36be3dac5eea28e06c63384e81011a41e.tar.zst gsoc2013-evolution-28e3f4b36be3dac5eea28e06c63384e81011a41e.zip |
Added two error ids to display use it when the meeting is created without
2004-11-25 Chenthill Palanisamy <pchenthill@novell.com>
* calendar-errors.xml: Added two error ids to display use
it when the meeting is created without a summary.
* gui/dialogs/send-comp.[ch] (send_component_prompt_subject): Added a
function to prompt for a dialog when a meeting/assigned task is sent
without a summary.
* gui/dialogs/comp-editor.c (response_cb): Called the above mentioned
function when the summary is not present.
svn path=/trunk/; revision=27987
Diffstat (limited to 'calendar/calendar-errors.xml')
-rw-r--r-- | calendar/calendar-errors.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/calendar/calendar-errors.xml b/calendar/calendar-errors.xml index 9ed07ca503..0e9cac856d 100644 --- a/calendar/calendar-errors.xml +++ b/calendar/calendar-errors.xml @@ -176,5 +176,19 @@ <button stock="gtk-cancel" response="GTK_RESPONSE_CANCEL"/> <button stock="gtk-delete" response="GTK_RESPONSE_YES"/> </error> + + <error id="prompt-send-no-subject-calendar" type="question" default="GTK_RESPONSE_YES"> + <primary>Are you sure you want to send the appointment without a summary?</primary> + <secondary>Adding a meaningful Summary to your appointment will give your recipients an idea of what your appointment is about.</secondary> + <button stock="gtk-cancel" response="GTK_RESPONSE_CANCEL"/> + <button label="_Send" response="GTK_RESPONSE_YES"/> + </error> + + <error id="prompt-send-no-subject-task" type="question" default="GTK_RESPONSE_YES"> + <primary>Are you sure you want to send the task without a summary?</primary> + <secondary>Adding a meaningful Summary to your task will give your recipients an idea of what your appointment is about.</secondary> + <button stock="gtk-cancel" response="GTK_RESPONSE_CANCEL"/> + <button label="_Send" response="GTK_RESPONSE_YES"/> + </error> </error-list> |