aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html.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/em-format-html.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/em-format-html.c')
-rw-r--r--mail/em-format-html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c
index 7cf5a1f2f6..8e1cfcef3e 100644
--- a/mail/em-format-html.c
+++ b/mail/em-format-html.c
@@ -1395,7 +1395,7 @@ static void emfh_gethttp(struct _EMFormatHTMLJob *job, gint cancelled)
camel_http_stream_set_proxy ((CamelHttpStream *)instream, proxy);
g_free (proxy);
}
- camel_operation_start(NULL, _("Retrieving `%s'"), job->u.uri);
+ camel_operation_start(NULL, _("Retrieving '%s'"), job->u.uri);
tmp_stream = (CamelHttpStream *)instream;
content_type = camel_http_stream_get_content_type(tmp_stream);
length = camel_header_raw_find(&tmp_stream->headers, "Content-Length", NULL);
@@ -1404,7 +1404,7 @@ static void emfh_gethttp(struct _EMFormatHTMLJob *job, gint cancelled)
total = atoi(length);
camel_content_type_unref(content_type);
} else
- camel_operation_start_transient(NULL, _("Retrieving `%s'"), job->u.uri);
+ camel_operation_start_transient(NULL, _("Retrieving '%s'"), job->u.uri);
camel_url_free(url);