diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 11 | ||||
-rw-r--r-- | calendar/calendar.error.xml | 12 | ||||
-rw-r--r-- | calendar/gui/dialogs/task-details-page.glade | 2 | ||||
-rw-r--r-- | calendar/gui/e-cal-component-preview.c | 2 | ||||
-rw-r--r-- | calendar/gui/e-cal-model-tasks.c | 4 | ||||
-rw-r--r-- | calendar/gui/e-calendar-table.c | 2 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 12 | ||||
-rw-r--r-- | calendar/gui/print.c | 2 |
8 files changed, 29 insertions, 18 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 059c2c1896..ffc2b3837a 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,14 @@ +2006-01-06 Andre Klapper <a9016009@gmx.de> + * evolution/calendar/calendar.error.xml: + * evolution/calendar/gui/e-itip-control.c: + * evolution/calendar/gui/dialogs/task-details-page.glade: + * evolution/calendar/gui/e-cal-component-preview.c: + * evolution/calendar/gui/e-cal-model-tasks.c: + * evolution/calendar/gui/e-calendar-table.c: + * evolution/calendar/gui/print.c: + changing "cancelled" (British English) + to "canceled" (American English). Fixes bug 325334. + 2005-01-06 Andre Klapper <a9016009@gmx.de> * calendar.error.xml: changed "RSVP" to "reply". Fixes bug 261071. diff --git a/calendar/calendar.error.xml b/calendar/calendar.error.xml index c7bd8f973a..d262bb8495 100644 --- a/calendar/calendar.error.xml +++ b/calendar/calendar.error.xml @@ -2,8 +2,8 @@ <error-list domain="calendar"> <error id="prompt-cancel-meeting" type="question" defult="GTK_RESPONSE_YES"> - <_primary>Would you like to send all the participants a cancellation notice?</_primary> - <_secondary>If you do not send a cancellation notice, the other participants may not know the meeting is cancelled.</_secondary> + <_primary>Would you like to send all the participants a cancelation notice?</_primary> + <_secondary>If you do not send a cancelation notice, the other participants may not know the meeting is canceled.</_secondary> <button _label="Do not Send" response="GTK_RESPONSE_NO"/> <button _label="Send Notice" response="GTK_RESPONSE_YES"/> </error> @@ -16,8 +16,8 @@ </error> <error id="prompt-cancel-task" type="question" defult="GTK_RESPONSE_YES"> - <_primary>Would you like to send all the participants a cancellation notice?</_primary> - <_secondary>If you do not send a cancellation notice, the other participants may not know the task has been deleted.</_secondary> + <_primary>Would you like to send all the participants a cancelation notice?</_primary> + <_secondary>If you do not send a cancelation notice, the other participants may not know the task has been deleted.</_secondary> <button _label="Do not Send" response="GTK_RESPONSE_NO"/> <button _label="Send Notice" response="GTK_RESPONSE_YES"/> </error> @@ -30,8 +30,8 @@ </error> <error id="prompt-cancel-journal" type="question" defult="GTK_RESPONSE_YES"> - <_primary>Would you like to send a cancellation notice for this journal entry?</_primary> - <_secondary>If you do not send a cancellation notice, the other participants may not know the journal has been deleted.</_secondary> + <_primary>Would you like to send a cancelation notice for this journal entry?</_primary> + <_secondary>If you do not send a cancelation notice, the other participants may not know the journal has been deleted.</_secondary> <button _label="Do not Send" response="GTK_RESPONSE_NO"/> <button _label="Send Notice" response="GTK_RESPONSE_YES"/> </error> diff --git a/calendar/gui/dialogs/task-details-page.glade b/calendar/gui/dialogs/task-details-page.glade index 910f7835b2..05891f99de 100644 --- a/calendar/gui/dialogs/task-details-page.glade +++ b/calendar/gui/dialogs/task-details-page.glade @@ -270,7 +270,7 @@ <child> <widget class="GtkMenuItem" id="convertwidget6"> <property name="visible">True</property> - <property name="label" translatable="yes">Cancelled</property> + <property name="label" translatable="yes">Canceled</property> <property name="use_underline">True</property> </widget> </child> diff --git a/calendar/gui/e-cal-component-preview.c b/calendar/gui/e-cal-component-preview.c index 982e4a3ab3..055d933175 100644 --- a/calendar/gui/e-cal-component-preview.c +++ b/calendar/gui/e-cal-component-preview.c @@ -231,7 +231,7 @@ write_html (GtkHTMLStream *stream, ECal *ecal, ECalComponent *comp, icaltimezone str = g_strdup (_("Completed")); break; case ICAL_STATUS_CANCELLED : - str = g_strdup (_("Cancelled")); + str = g_strdup (_("Canceled")); break; case ICAL_STATUS_NONE : default : diff --git a/calendar/gui/e-cal-model-tasks.c b/calendar/gui/e-cal-model-tasks.c index fd27f2d7b3..1ea87b2d71 100644 --- a/calendar/gui/e-cal-model-tasks.c +++ b/calendar/gui/e-cal-model-tasks.c @@ -346,7 +346,7 @@ get_status (ECalModelComponent *comp_data) case ICAL_STATUS_COMPLETED: return _("Completed"); case ICAL_STATUS_CANCELLED: - return _("Cancelled"); + return _("Canceled"); default: return ""; } @@ -659,7 +659,7 @@ set_status (ECalModelComponent *comp_data, const char *value) status = ICAL_STATUS_INPROCESS; else if (!e_util_utf8_strcasecmp (value, _("Completed"))) status = ICAL_STATUS_COMPLETED; - else if (!e_util_utf8_strcasecmp (value, _("Cancelled"))) + else if (!e_util_utf8_strcasecmp (value, _("Canceled"))) status = ICAL_STATUS_CANCELLED; else { g_warning ("Invalid status: %s\n", value); diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c index b6788c6cb8..5ac2e52d2a 100644 --- a/calendar/gui/e-calendar-table.c +++ b/calendar/gui/e-calendar-table.c @@ -461,7 +461,7 @@ e_calendar_table_init (ECalendarTable *cal_table) strings = g_list_append (strings, (char*) _("Not Started")); strings = g_list_append (strings, (char*) _("In Progress")); strings = g_list_append (strings, (char*) _("Completed")); - strings = g_list_append (strings, (char*) _("Cancelled")); + strings = g_list_append (strings, (char*) _("Canceled")); e_cell_combo_set_popdown_strings (E_CELL_COMBO (popup_cell), strings); diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index eaa31a9b13..d34b9d9fb7 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -1227,9 +1227,9 @@ get_cancel_options (gboolean found, icalcomponent_kind kind) if (!found) { switch (kind) { case ICAL_VEVENT_COMPONENT: - return g_strdup_printf ("<i>%s</i>", _("The meeting has been cancelled, however it could not be found in your calendars")); + return g_strdup_printf ("<i>%s</i>", _("The meeting has been canceled, however it could not be found in your calendars")); case ICAL_VTODO_COMPONENT: - return g_strdup_printf ("<i>%s</i>", _("The task has been cancelled, however it could not be found in your task lists")); + return g_strdup_printf ("<i>%s</i>", _("The task has been canceled, however it could not be found in your task lists")); default: g_assert_not_reached (); return NULL; @@ -1345,8 +1345,8 @@ show_current_event (EItipControl *itip) adjust_item (itip, priv->comp); break; case ICAL_METHOD_CANCEL: - itip_desc = _("<b>%s</b> has cancelled a meeting."); - itip_title = _("Meeting Cancellation"); + itip_desc = _("<b>%s</b> has canceled a meeting."); + itip_title = _("Meeting Cancelation"); /* FIXME priv->current_ecal will always be NULL so the * user won't see an error message, the OK button will * just be de-sensitized */ @@ -1422,8 +1422,8 @@ show_current_todo (EItipControl *itip) adjust_item (itip, priv->comp); break; case ICAL_METHOD_CANCEL: - itip_desc = _("<b>%s</b> has cancelled a task."); - itip_title = _("Task Cancellation"); + itip_desc = _("<b>%s</b> has canceled a task."); + itip_title = _("Task Cancelation"); /* FIXME priv->current_ecal will always be NULL so the * user won't see an error message, the OK button will * just be de-sensitized */ diff --git a/calendar/gui/print.c b/calendar/gui/print.c index 91f7480a6d..e1b17901f1 100644 --- a/calendar/gui/print.c +++ b/calendar/gui/print.c @@ -2372,7 +2372,7 @@ print_comp_item (GnomePrintContext *pc, ECalComponent *comp, ECal *client, status_string = _("Completed"); break; case ICAL_STATUS_CANCELLED: - status_string = _("Cancelled"); + status_string = _("Canceled"); break; default: break; |