aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-09-08 04:26:47 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-09-08 04:26:47 +0800
commitbe57fd02579babe9d9db2070a87ced35a5da8bf9 (patch)
treeb0867671d78a4756edae300732a3c4e8c7baf1df
parent385961fa0bce4d2e7c44685c22f661d86b725e0a (diff)
downloadgsoc2013-evolution-be57fd02579babe9d9db2070a87ced35a5da8bf9.tar
gsoc2013-evolution-be57fd02579babe9d9db2070a87ced35a5da8bf9.tar.gz
gsoc2013-evolution-be57fd02579babe9d9db2070a87ced35a5da8bf9.tar.bz2
gsoc2013-evolution-be57fd02579babe9d9db2070a87ced35a5da8bf9.tar.lz
gsoc2013-evolution-be57fd02579babe9d9db2070a87ced35a5da8bf9.tar.xz
gsoc2013-evolution-be57fd02579babe9d9db2070a87ced35a5da8bf9.tar.zst
gsoc2013-evolution-be57fd02579babe9d9db2070a87ced35a5da8bf9.zip
s/Synchronising/Synchronizing/. (mbox_summary_sync_quick): Likewise.
* providers/local/camel-mbox-summary.c (mbox_summary_sync_full): s/Synchronising/Synchronizing/. (mbox_summary_sync_quick): Likewise. (summary_rebuild): s/Summarising/Summarizing/. svn path=/trunk/; revision=12683
-rw-r--r--camel/ChangeLog7
-rw-r--r--camel/providers/local/camel-mbox-summary.c8
2 files changed, 11 insertions, 4 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 397297d815..8389e59a37 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,10 @@
+2001-09-07 Ettore Perazzoli <ettore@ximian.com>
+
+ * providers/local/camel-mbox-summary.c (mbox_summary_sync_full):
+ s/Synchronising/Synchronizing/.
+ (mbox_summary_sync_quick): Likewise.
+ (summary_rebuild): s/Summarising/Summarizing/.
+
2001-09-07 Jeffrey Stedfast <fejj@ximian.com>
* camel-multipart.c (camel_multipart_set_boundary): Take a const
diff --git a/camel/providers/local/camel-mbox-summary.c b/camel/providers/local/camel-mbox-summary.c
index 03c58fa839..eed8a9d083 100644
--- a/camel/providers/local/camel-mbox-summary.c
+++ b/camel/providers/local/camel-mbox-summary.c
@@ -246,12 +246,12 @@ summary_rebuild(CamelMboxSummary *mbs, 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;
@@ -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) {
@@ -700,7 +700,7 @@ mbox_summary_sync_quick(CamelLocalSummary *cls, gboolean expunge, CamelFolderCha
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) {