aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/local
diff options
context:
space:
mode:
authorPeter Williams <peterw@ximian.com>2001-08-25 06:38:22 +0800
committerPeter Williams <peterw@src.gnome.org>2001-08-25 06:38:22 +0800
commit7a67b5c2ff35239e7f53fb94896064af9d3c5d17 (patch)
tree2b423a547e462fe120240b7bb5b433f626ecd3e5 /camel/providers/local
parent7c6273ec2ee915a55b2a8fbeb1c597a2a0d0282d (diff)
downloadgsoc2013-evolution-7a67b5c2ff35239e7f53fb94896064af9d3c5d17.tar
gsoc2013-evolution-7a67b5c2ff35239e7f53fb94896064af9d3c5d17.tar.gz
gsoc2013-evolution-7a67b5c2ff35239e7f53fb94896064af9d3c5d17.tar.bz2
gsoc2013-evolution-7a67b5c2ff35239e7f53fb94896064af9d3c5d17.tar.lz
gsoc2013-evolution-7a67b5c2ff35239e7f53fb94896064af9d3c5d17.tar.xz
gsoc2013-evolution-7a67b5c2ff35239e7f53fb94896064af9d3c5d17.tar.zst
gsoc2013-evolution-7a67b5c2ff35239e7f53fb94896064af9d3c5d17.zip
Revert Not Zed's previous commits as they apparently can cause serious
2001-08-24 Peter Williams <peterw@ximian.com> * Revert Not Zed's previous commits as they apparently can cause serious data loss for POP3 users. svn path=/trunk/; revision=12461
Diffstat (limited to 'camel/providers/local')
-rw-r--r--camel/providers/local/camel-mbox-summary.c2
-rw-r--r--camel/providers/local/camel-spool-summary.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/camel/providers/local/camel-mbox-summary.c b/camel/providers/local/camel-mbox-summary.c
index 065355f730..eed8a9d083 100644
--- a/camel/providers/local/camel-mbox-summary.c
+++ b/camel/providers/local/camel-mbox-summary.c
@@ -499,7 +499,7 @@ mbox_summary_sync_full(CamelLocalSummary *cls, gboolean expunge, CamelFolderChan
d(printf("performing full summary/sync\n"));
- camel_operation_start(NULL, _("Synchronising folder"));
+ camel_operation_start(NULL, _("Synchronizing folder"));
fd = open(cls->folder_path, O_RDONLY);
if (fd == -1) {
diff --git a/camel/providers/local/camel-spool-summary.c b/camel/providers/local/camel-spool-summary.c
index c5872e8cc2..8a3188296b 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) {
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;
@@ -641,7 +641,7 @@ spool_summary_sync_full(CamelSpoolSummary *cls, gboolean expunge, CamelFolderCha
d(printf("performing full summary/sync\n"));
- camel_operation_start(NULL, _("Synchronising folder"));
+ camel_operation_start(NULL, _("Synchronizing folder"));
fd = open(cls->folder_path, O_RDWR);
if (fd == -1) {
@@ -928,7 +928,7 @@ spool_summary_sync_quick(CamelSpoolSummary *cls, gboolean expunge, CamelFolderCh
d(printf("Performing quick summary sync\n"));
- camel_operation_start(NULL, _("Synchronising folder"));
+ camel_operation_start(NULL, _("Synchronizing folder"));
fd = open(cls->folder_path, O_RDWR);
if (fd == -1) {