diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 13 | ||||
-rw-r--r-- | calendar/calendar-errors.xml | 2 | ||||
-rw-r--r-- | calendar/calendar-errors.xml.h | 2 |
3 files changed, 15 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 316fdcd986..39c2bfe6cd 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,16 @@ +2005-01-26 JP Rosevear <jpr@novell.com> + + Fixes #71485 + + * calendar-errors.xml: fix paste-o + +2005-01-27 Harry Lu <harry.lu@sun.com> + + Fix a runtime invalid cast warning. + + * gui/e-calendar-table.c: (e_calendar_table_init): only set + a11y name if atk is enabled. + 2005-01-26 Rodrigo Moya <rodrigo@novell.com> * gui/dialogs/recurrence-page.c (sensitize_buttons): objects returned diff --git a/calendar/calendar-errors.xml b/calendar/calendar-errors.xml index 0e9cac856d..9104b3a794 100644 --- a/calendar/calendar-errors.xml +++ b/calendar/calendar-errors.xml @@ -186,7 +186,7 @@ <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> + <secondary>Adding a meaningful Summary to your task will give your recipients an idea of what your task is about.</secondary> <button stock="gtk-cancel" response="GTK_RESPONSE_CANCEL"/> <button label="_Send" response="GTK_RESPONSE_YES"/> </error> diff --git a/calendar/calendar-errors.xml.h b/calendar/calendar-errors.xml.h index e2b98155b5..bbead6601b 100644 --- a/calendar/calendar-errors.xml.h +++ b/calendar/calendar-errors.xml.h @@ -128,5 +128,5 @@ char *s = N_("_Send"); /* calendar:prompt-send-no-subject-task primary */ char *s = N_("Are you sure you want to send the task without a summary?"); /* calendar:prompt-send-no-subject-task secondary */ -char *s = N_("Adding a meaningful Summary to your task will give your recipients an idea of what your appointment is about."); +char *s = N_("Adding a meaningful Summary to your task will give your recipients an idea of what your task is about."); char *s = N_("_Send"); |