aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/local
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-08-24 09:48:23 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-08-24 09:48:23 +0800
commitd7597f075732aec2d8a07495b3d3a1ac801a5876 (patch)
tree2e14aa6bf3fb2f4eebbc4a3db79d72566e8666e7 /camel/providers/local
parent91b07e46bab5654bc0cd7ef28eb98f3fd29cce43 (diff)
downloadgsoc2013-evolution-d7597f075732aec2d8a07495b3d3a1ac801a5876.tar
gsoc2013-evolution-d7597f075732aec2d8a07495b3d3a1ac801a5876.tar.gz
gsoc2013-evolution-d7597f075732aec2d8a07495b3d3a1ac801a5876.tar.bz2
gsoc2013-evolution-d7597f075732aec2d8a07495b3d3a1ac801a5876.tar.lz
gsoc2013-evolution-d7597f075732aec2d8a07495b3d3a1ac801a5876.tar.xz
gsoc2013-evolution-d7597f075732aec2d8a07495b3d3a1ac801a5876.tar.zst
gsoc2013-evolution-d7597f075732aec2d8a07495b3d3a1ac801a5876.zip
Likewise.
2001-08-24 Not Zed <NotZed@Ximian.com> * providers/local/camel-spool-summary.c (summary_rebuild): Likewise. * providers/local/camel-mbox-summary.c (summary_rebuild): Summarising is spelt with an s. 2001-08-23 Not Zed <NotZed@Ximian.com> * camel-mime-part.c (write_to_stream): If we have rawtext, then dont do any charset conversion, only encoding/crlf conversion. * camel-data-wrapper.h (struct _CamelDataWrapper): Added 'rawtext' member, says the character encoding is raw, not utf8. * providers/local/camel-spool-summary.c (spool_summary_sync_quick): Synchronising is spelt with an s, not a z. (spool_summary_sync_full): " * providers/local/camel-mbox-summary.c (mbox_summary_sync_full): No, synchronising is spelt with an s. (mbox_summary_sync_quick): " * camel-mime-part-utils.c (camel_mime_part_construct_content_from_parser): Remove the warnings which aren't going anywhere fast. (convert_buffer): Function to convert a bytearray of textual content from one charset to another. If the charset doesn't exist or fails, then do no conversion. (simple_data_wrapper_construct_from_parser): First, read in data, then try and convert it using the specified charset if supplied. If that fails, then dont do any conversion, and leave as raw. Also, if we have any x-* charsets, then dont do any processing. svn path=/trunk/; revision=12429
Diffstat (limited to 'camel/providers/local')
-rw-r--r--camel/providers/local/camel-mbox-summary.c8
-rw-r--r--camel/providers/local/camel-spool-summary.c8
2 files changed, 8 insertions, 8 deletions
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) {