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 | |
parent | 6f7ec6c07dfe9c01977cf685832871c45d7e2b17 (diff) | |
download | gsoc2013-evolution-f0c158955ea0440d0141c1d82e29896db8f89388.tar gsoc2013-evolution-f0c158955ea0440d0141c1d82e29896db8f89388.tar.gz gsoc2013-evolution-f0c158955ea0440d0141c1d82e29896db8f89388.tar.bz2 gsoc2013-evolution-f0c158955ea0440d0141c1d82e29896db8f89388.tar.lz gsoc2013-evolution-f0c158955ea0440d0141c1d82e29896db8f89388.tar.xz gsoc2013-evolution-f0c158955ea0440d0141c1d82e29896db8f89388.tar.zst gsoc2013-evolution-f0c158955ea0440d0141c1d82e29896db8f89388.zip |
I18n fixes
svn path=/trunk/; revision=11488
-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); |