diff options
author | Matt Wilson <msw@redhat.com> | 2002-01-29 23:05:13 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2002-01-29 23:05:13 +0000 |
commit | d01a140c03718928e7d4ac33a2ba471d9d6fdb71 (patch) | |
tree | f535f27ae9b4bc580cee46758b5b97cb9df02084 /gui.py | |
parent | 6c3a88b317773f3f29a92e10b154d85c033e8a7a (diff) | |
download | anaconda-d01a140c03718928e7d4ac33a2ba471d9d6fdb71.tar.gz anaconda-d01a140c03718928e7d4ac33a2ba471d9d6fdb71.tar.xz anaconda-d01a140c03718928e7d4ac33a2ba471d9d6fdb71.zip |
i18n almost works again. Small tweaks left to do
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,7 +21,7 @@ import sys import parted import gtk import htmlbuffer -from translate import _, N_ +from translate import _, N_, utf8 from language import expandLangs from splashscreen import splashScreenPop from log import log @@ -445,7 +445,7 @@ class InstallControlWindow: def refreshHelp(self): buffer = htmlbuffer.HTMLBuffer() ics = self.currentWindow.getICS() - buffer.feed(ics.getHTML(self.langSearchPath)) + buffer.feed(utf8(ics.getHTML(self.langSearchPath))) textbuffer = buffer.get_buffer() self.help.set_buffer(textbuffer) # scroll to the top. Do this with a mark so it's done in the idle loop |