I18n fixes
svn path=/trunk/; revision=11488
This commit is contained in:
@ -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.
|
||||
|
||||
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user