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
committerMichael Meeks <michael.meeks@novell.com>2010-04-07 19:25:57 +0800
commit1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2 (patch)
tree258829f55f8c6edf1b3ee3da595ff092ef52850e /mail/em-format-html.c
parentdfdb970ac69e3058418875aa043f9d2a17ea5945 (diff)
downloadgsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.gz
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.bz2
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.lz
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.xz
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.zst
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.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);