aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/local/camel-spool-summary.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-08-12 04:51:04 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-08-12 04:51:04 +0800
commitfc6e6a3041e5377691b53e8ca28dc4aa581f4198 (patch)
treee7709f60a63f4e4b90dac1950eabf5453acead0c /camel/providers/local/camel-spool-summary.c
parent446a48db9d747bb30b4f2f6b5f11a329c7e422ac (diff)
downloadgsoc2013-evolution-fc6e6a3041e5377691b53e8ca28dc4aa581f4198.tar
gsoc2013-evolution-fc6e6a3041e5377691b53e8ca28dc4aa581f4198.tar.gz
gsoc2013-evolution-fc6e6a3041e5377691b53e8ca28dc4aa581f4198.tar.bz2
gsoc2013-evolution-fc6e6a3041e5377691b53e8ca28dc4aa581f4198.tar.lz
gsoc2013-evolution-fc6e6a3041e5377691b53e8ca28dc4aa581f4198.tar.xz
gsoc2013-evolution-fc6e6a3041e5377691b53e8ca28dc4aa581f4198.tar.zst
gsoc2013-evolution-fc6e6a3041e5377691b53e8ca28dc4aa581f4198.zip
s/summarising/summarizing/. (summary_rebuild): Likewise.
* providers/local/camel-spool-summary.c (summary_rebuild): s/summarising/summarizing/. (summary_rebuild): Likewise. * providers/local/camel-mbox-summary.c (mbox_summary_sync_full): s/summarise/summarize/. (mbox_summary_sync_quick): Likewise. (summary_rebuild): Likewise. (mbox_summary_check): Likewise. svn path=/trunk/; revision=11919
Diffstat (limited to 'camel/providers/local/camel-spool-summary.c')
-rw-r--r--camel/providers/local/camel-spool-summary.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/providers/local/camel-spool-summary.c b/camel/providers/local/camel-spool-summary.c
index 6a44fdf7cb..e9dd4aea1d 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", 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;