diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-07-31 05:13:58 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-07-31 05:13:58 +0800 |
commit | f0c158955ea0440d0141c1d82e29896db8f89388 (patch) | |
tree | 9685fbacfc9fec3bad355d78452ea529c2ee5725 /my-evolution/e-summary-rdf.c | |
parent | 6f7ec6c07dfe9c01977cf685832871c45d7e2b17 (diff) | |
download | gsoc2013-evolution-f0c158955ea0440d0141c1d82e29896db8f89388.tar.gz gsoc2013-evolution-f0c158955ea0440d0141c1d82e29896db8f89388.tar.zst gsoc2013-evolution-f0c158955ea0440d0141c1d82e29896db8f89388.zip |
I18n fixes
svn path=/trunk/; revision=11488
Diffstat (limited to 'my-evolution/e-summary-rdf.c')
-rw-r--r-- | my-evolution/e-summary-rdf.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/my-evolution/e-summary-rdf.c b/my-evolution/e-summary-rdf.c index 3a6eae6754..a19cf061b1 100644 --- a/my-evolution/e-summary-rdf.c +++ b/my-evolution/e-summary-rdf.c @@ -276,14 +276,17 @@ display_doc (RDF *r) "width=\"48\" height=\"48\"><b>"); if (r->cache == NULL) { - g_string_append (html, _("There was an error downloading news feed</b></dt>")); + char *tmp_utf; + + tmp_utf = e_utf8_from_locale_string (_("There was an error downloading news feed")); + g_string_append (html, tmp_utf); + g_string_append (html, "</b></dt>"); + g_free (tmp_utf); } else { tree_walk (r->cache->root, r, html); } - if (r->html != NULL) { - g_free (r->html); - } + g_free (r->html); g_string_append (html, "</dl>"); r->html = html->str; g_string_free (html, FALSE); |