diff options
-rw-r--r-- | my-evolution/ChangeLog | 4 | ||||
-rw-r--r-- | 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 <cyba@gnome.pl> + + * e-summary-rdf.c (display_doc): Convert translated string to UTF8. + 2001-07-30 Iain Holmes <iain@ximian.com> * 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\"><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); |