diff options
author | JP Rosevear <jpr@novell.com> | 2005-01-27 12:39:44 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2005-01-27 12:39:44 +0800 |
commit | 7b6ba9e828c68f9229bcb8ad41a550119260aef6 (patch) | |
tree | 46cb402141b6c0fc90264abeb0a304feaae80ad6 /calendar | |
parent | 1ea95238a99920f1685a31bd64b459c78dca6f5a (diff) | |
download | gsoc2013-evolution-7b6ba9e828c68f9229bcb8ad41a550119260aef6.tar.gz gsoc2013-evolution-7b6ba9e828c68f9229bcb8ad41a550119260aef6.tar.zst gsoc2013-evolution-7b6ba9e828c68f9229bcb8ad41a550119260aef6.zip |
Fixes #71485
2005-01-26 JP Rosevear <jpr@novell.com>
Fixes #71485
* calendar-errors.xml: fix paste-o
svn path=/trunk/; revision=28570
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"); |