changing "canceled" to "cancelled" to stay consistant to the rest. Fixes

2005-12-30  Andre Klapper <a9016009@gmx.de>
	* evolution/mail/mail-session.c, evolution/calendar/calendar.error.xml:
	  changing "canceled" to "cancelled" to stay consistant to the rest.
	  Fixes bug 325116.

svn path=/trunk/; revision=30974
This commit is contained in:
Andre Klapper
2005-12-30 04:15:33 +00:00
committed by Andre Klapper
parent acf3cb7653
commit a9eaa8d3bf
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<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 don't send a cancellation notice, the other participants may not know the meeting is canceled.</_secondary>
<_secondary>If you don't send a cancellation notice, the other participants may not know the meeting is cancelled.</_secondary>
<button _label="Don't Send" response="GTK_RESPONSE_NO"/>
<button _label="Send Notice" response="GTK_RESPONSE_YES"/>
</error>

View File

@ -238,7 +238,7 @@ get_password (CamelSession *session, CamelService *service, const char *domain,
g_free(url);
if (ret == NULL)
camel_exception_set(ex, CAMEL_EXCEPTION_USER_CANCEL, _("User canceled operation."));
camel_exception_set(ex, CAMEL_EXCEPTION_USER_CANCEL, _("User cancelled operation."));
return ret;
}