From f0c158955ea0440d0141c1d82e29896db8f89388 Mon Sep 17 00:00:00 2001 From: Iain Holmes Date: Mon, 30 Jul 2001 21:13:58 +0000 Subject: I18n fixes svn path=/trunk/; revision=11488 --- my-evolution/ChangeLog | 4 ++++ my-evolution/e-summary-rdf.c | 11 +++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index 0c6927468a..c108a1c758 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,7 @@ +2001-07-23 Zbigniew Chyla + + * e-summary-rdf.c (display_doc): Convert translated string to UTF8. + 2001-07-30 Iain Holmes * e-summary-preferences.c: Remove the Wipe Trackers references. 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\">"); if (r->cache == NULL) { - g_string_append (html, _("There was an error downloading news feed")); + 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, ""); + 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, ""); r->html = html->str; g_string_free (html, FALSE); -- cgit v1.2.3