aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-08-25 09:30:52 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-08-25 09:30:52 +0800
commitb275da5c55e390831038c4decc3636820f99ad2f (patch)
tree543764b118a841b168470497400af65445a3a8c3 /camel
parent378cb9febf6204eef00941d7a402c1b0a3a9377e (diff)
downloadgsoc2013-evolution-b275da5c55e390831038c4decc3636820f99ad2f.tar
gsoc2013-evolution-b275da5c55e390831038c4decc3636820f99ad2f.tar.gz
gsoc2013-evolution-b275da5c55e390831038c4decc3636820f99ad2f.tar.bz2
gsoc2013-evolution-b275da5c55e390831038c4decc3636820f99ad2f.tar.lz
gsoc2013-evolution-b275da5c55e390831038c4decc3636820f99ad2f.tar.xz
gsoc2013-evolution-b275da5c55e390831038c4decc3636820f99ad2f.tar.zst
gsoc2013-evolution-b275da5c55e390831038c4decc3636820f99ad2f.zip
["Summarising" and "Synchronising" are spelt with a "s" in ENGLISH]
2001-08-25 Not Zed <NotZed@Ximian.com> ["Summarising" and "Synchronising" are spelt with a "s" in ENGLISH] * providers/local/camel-mbox-summary.c (mbox_summary_sync_quick): s/Synchronizing/Synchronising/. * providers/local/camel-mbox-summary.c (summary_rebuild): s/Summarizing/Summarising/ svn path=/trunk/; revision=12470
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog11
-rw-r--r--camel/providers/local/camel-mbox-summary.c8
-rw-r--r--camel/providers/local/camel-spool-summary.c8
3 files changed, 19 insertions, 8 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index feda231667..598ae85f18 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,14 @@
+2001-08-25 Not Zed <NotZed@Ximian.com>
+
+ ["Summarising" and "Synchronising" are spelt with a "s" in
+ ENGLISH]
+
+ * providers/local/camel-mbox-summary.c (mbox_summary_sync_quick):
+ s/Synchronizing/Synchronising/.
+
+ * providers/local/camel-mbox-summary.c (summary_rebuild):
+ s/Summarizing/Summarising/
+
2001-08-24 Jeffrey Stedfast <fejj@ximian.com>
* camel-disco-diary.c (camel_disco_diary_replay): Use fseek
diff --git a/camel/providers/local/camel-mbox-summary.c b/camel/providers/local/camel-mbox-summary.c
index eed8a9d083..03c58fa839 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, _("Summarizing folder"));
+ camel_operation_start(NULL, _("Summarising 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: summarizing from position %ld: %s"),
+ camel_exception_setv(ex, 1, _("Could not open folder: %s: summarising 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, _("Synchronizing folder"));
+ camel_operation_start(NULL, _("Synchronising 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, _("Synchronizing folder"));
+ camel_operation_start(NULL, _("Synchronising folder"));
fd = open(cls->folder_path, O_RDWR);
if (fd == -1) {
diff --git a/camel/providers/local/camel-spool-summary.c b/camel/providers/local/camel-spool-summary.c
index 8a3188296b..c5872e8cc2 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, _("Summarizing folder"));
+ camel_operation_start(NULL, _("Summarising 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: summarizing from position %ld: %s"),
+ camel_exception_setv(ex, 1, _("Could not open folder: %s: summarising 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, _("Synchronizing folder"));
+ camel_operation_start(NULL, _("Synchronising 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, _("Synchronizing folder"));
+ camel_operation_start(NULL, _("Synchronising folder"));
fd = open(cls->folder_path, O_RDWR);
if (fd == -1) {