aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-10-23 06:34:46 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-10-23 06:34:46 +0800
commite74ade400c7871aed04d239b0bd0c3fa1f897304 (patch)
tree1458402e3a65752730b96f0ff8b1f7e3f3932bb3
parentb89da79e8c9a5db367cdff556ce024962b2cca82 (diff)
downloadgsoc2013-evolution-e74ade400c7871aed04d239b0bd0c3fa1f897304.tar
gsoc2013-evolution-e74ade400c7871aed04d239b0bd0c3fa1f897304.tar.gz
gsoc2013-evolution-e74ade400c7871aed04d239b0bd0c3fa1f897304.tar.bz2
gsoc2013-evolution-e74ade400c7871aed04d239b0bd0c3fa1f897304.tar.lz
gsoc2013-evolution-e74ade400c7871aed04d239b0bd0c3fa1f897304.tar.xz
gsoc2013-evolution-e74ade400c7871aed04d239b0bd0c3fa1f897304.tar.zst
gsoc2013-evolution-e74ade400c7871aed04d239b0bd0c3fa1f897304.zip
s/summarising/summarizing/. (spool_summary_check): s/summarise/summarize/.
2001-10-22 Jon Trowbridge <trow@ximian.com> * providers/local/camel-spool-summary.c (summary_rebuild): s/summarising/summarizing/. (spool_summary_check): s/summarise/summarize/. svn path=/trunk/; revision=13902
-rw-r--r--camel/ChangeLog6
-rw-r--r--camel/providers/local/camel-spool-summary.c6
2 files changed, 9 insertions, 3 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 06e5e748bb..72e59a2fc3 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-22 Jon Trowbridge <trow@ximian.com>
+
+ * providers/local/camel-spool-summary.c (summary_rebuild):
+ s/summarising/summarizing/.
+ (spool_summary_check): s/summarise/summarize/.
+
2001-10-22 Jeffrey Stedfast <fejj@ximian.com>
* camel-pgp-mime.c (camel_pgp_mime_part_verify): If we are
diff --git a/camel/providers/local/camel-spool-summary.c b/camel/providers/local/camel-spool-summary.c
index db05f602ef..c869aef22f 100644
--- a/camel/providers/local/camel-spool-summary.c
+++ b/camel/providers/local/camel-spool-summary.c
@@ -376,12 +376,12 @@ summary_rebuild(CamelSpoolSummary *cls, off_t offset, CamelException *ex)
/* FIXME: If there is a failure, it shouldn't clear the summary and restart,
it should try and merge the summary info's. This is a bit tricky. */
- camel_operation_start(NULL, _("Summarising folder"));
+ camel_operation_start(NULL, _("Summarizing folder"));
fd = open(cls->folder_path, O_RDONLY);
if (fd == -1) {
d(printf("%s failed to open: %s\n", cls->folder_path, strerror(errno)));
- camel_exception_setv(ex, 1, _("Could not open folder: %s: summarising from position %ld: %s"),
+ camel_exception_setv(ex, 1, _("Could not open folder: %s: summarizing from position %ld: %s"),
cls->folder_path, offset, strerror(errno));
camel_operation_end(NULL);
return -1;
@@ -495,7 +495,7 @@ spool_summary_check(CamelSpoolSummary *cls, CamelFolderChangeInfo *changeinfo, C
/* check if the summary is up-to-date */
if (stat(cls->folder_path, &st) == -1) {
camel_folder_summary_clear(s);
- camel_exception_setv(ex, 1, _("Cannot summarise folder: %s: %s"), cls->folder_path, strerror(errno));
+ camel_exception_setv(ex, 1, _("Cannot summarize folder: %s: %s"), cls->folder_path, strerror(errno));
return -1;
}