=== modified file 'xl/nls.py' --- xl/nls.py 2009-11-24 22:46:52 +0000 +++ xl/nls.py 2010-03-02 10:26:30 +0000 @@ -38,11 +38,11 @@ try: import gettext - gettext.textdomain('exaile') + gettext.install('exaile', unicode=True) if xdg.local_hack: # running from source dir, so we have to set the paths - gettext.bindtextdomain('exaile', os.path.join(xdg.exaile_dir, 'po')) + gettext.install('exaile', os.path.join(xdg.exaile_dir, 'po'), True) - gettext = gettext.gettext + gettext = _ except ImportError: # gettext is not available. Provide a dummy function instead def gettext(text):