aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-ops.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-03-29 06:54:27 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-03-29 06:55:22 +0800
commitfa2da5acd6f45520739f747062d04cdb866b2428 (patch)
tree4716aebb3c2a193cc3cd398d2878d0e60aa2ee1e /mail/mail-ops.c
parent68581a10047876899dc97cb30777435e1f42a5a1 (diff)
downloadgsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.gz
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.bz2
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.lz
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.xz
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.zst
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.zip
Fix mismatched quotes.
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r--mail/mail-ops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index 73ad926390..7cbb91bede 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -595,7 +595,7 @@ mail_send_message (struct _send_queue_msg *m, CamelFolder *queue, const gchar *u
folder = mail_tool_uri_to_folder (sent_folder_uri, 0, ex);
if (camel_exception_is_set(ex)) {
g_string_append_printf (err, _("Failed to append to %s: %s\n"
- "Appending to local `Sent' folder instead."),
+ "Appending to local 'Sent' folder instead."),
sent_folder_uri, camel_exception_get_description (ex));
camel_exception_clear (ex);
}
@@ -622,7 +622,7 @@ mail_send_message (struct _send_queue_msg *m, CamelFolder *queue, const gchar *u
if (err->len)
g_string_append(err, "\n\n");
g_string_append_printf (err, _("Failed to append to %s: %s\n"
- "Appending to local `Sent' folder instead."),
+ "Appending to local 'Sent' folder instead."),
name, camel_exception_get_description (ex));
camel_object_ref (sent_folder);
camel_object_unref (folder);
@@ -638,7 +638,7 @@ mail_send_message (struct _send_queue_msg *m, CamelFolder *queue, const gchar *u
if (err->len)
g_string_append(err, "\n\n");
- g_string_append_printf (err, _("Failed to append to local `Sent' folder: %s"),
+ g_string_append_printf (err, _("Failed to append to local 'Sent' folder: %s"),
camel_exception_get_description (ex));
}
}