Broken i18n in windows. (ticket #925)
Posted: Wed Dec 02, 2009 1:55 pm
I've found solution for ticket #925 in this thread:
http://old.nabble.com/PyGTK-localisatio ... 65426.html
Briefly:
To fix #925 we should add file libi18n.py and in gtkui.py before gettext initialization
add following code:
http://old.nabble.com/PyGTK-localisatio ... 65426.html
Briefly:
To fix #925 we should add file libi18n.py and in gtkui.py before gettext initialization
add following code:
Code: Select all
if sys.platform == 'win32':
import libi18n
libi18n.fix_locale()
del libi18n