aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-08-25 02:38:25 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-08-25 02:38:25 +0800
commite1843b9aa20c455aba336939bd861d46fcce4c15 (patch)
tree41b3bec68269115afaa26e658c9e6cc8ba47bfc0 /camel
parent68a61c2f072020a3a594ee7246140fd61655bada (diff)
downloadgsoc2013-evolution-e1843b9aa20c455aba336939bd861d46fcce4c15.tar
gsoc2013-evolution-e1843b9aa20c455aba336939bd861d46fcce4c15.tar.gz
gsoc2013-evolution-e1843b9aa20c455aba336939bd861d46fcce4c15.tar.bz2
gsoc2013-evolution-e1843b9aa20c455aba336939bd861d46fcce4c15.tar.lz
gsoc2013-evolution-e1843b9aa20c455aba336939bd861d46fcce4c15.tar.xz
gsoc2013-evolution-e1843b9aa20c455aba336939bd861d46fcce4c15.tar.zst
gsoc2013-evolution-e1843b9aa20c455aba336939bd861d46fcce4c15.zip
s/Synchronising/Synchronizing/.
* providers/local/camel-mbox-summary.c (mbox_summary_sync_quick): s/Synchronising/Synchronizing/. * providers/local/camel-mbox-summary.c (summary_rebuild): s/Summarising/Summarizing/ svn path=/trunk/; revision=12444
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog11
-rw-r--r--camel/providers/local/camel-mbox-summary.c6
2 files changed, 14 insertions, 3 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index c3a5abf485..fd1cf97fb4 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,14 @@
+2001-08-24 Ettore Perazzoli <ettore@ximian.com>
+
+ ["Summarizing" and "Synchronizing" are spelt with a "z" in the
+ default locale, that happens to be "en_US".]
+
+ * providers/local/camel-mbox-summary.c (mbox_summary_sync_quick):
+ s/Synchronising/Synchronizing/.
+
+ * providers/local/camel-mbox-summary.c (summary_rebuild):
+ s/Summarising/Summarizing/
+
2001-08-24 Not Zed <NotZed@Ximian.com>
* camel-mime-part-utils.c (convert_buffer): Limit the maximum
diff --git a/camel/providers/local/camel-mbox-summary.c b/camel/providers/local/camel-mbox-summary.c
index 03c58fa839..065355f730 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;
@@ -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) {