I18n fixes

svn path=/trunk/; revision=11488
This commit is contained in:
Iain Holmes
2001-07-30 21:13:58 +00:00
parent 6f7ec6c07d
commit f0c158955e
2 changed files with 11 additions and 4 deletions

View File

@ -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.

View File

@ -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);