windows fix

This commit is contained in:
Andrew Resch 2008-07-05 23:43:38 +00:00
parent 0ebcaa4d9b
commit ec50c9cb41

View File

@ -149,11 +149,15 @@ class Core(
self.register_introspection_functions()
# Initialize gettext
locale.setlocale(locale.LC_MESSAGES, '')
locale.bindtextdomain("deluge",
if deluge.common.windows_check():
locale.set_localte(locale.LC_ALL, '')
else:
locale.setlocale(locale.LC_MESSAGES, '')
locale.bindtextdomain("deluge",
pkg_resources.resource_filename(
"deluge", "i18n"))
locale.textdomain("deluge")
locale.textdomain("deluge")
gettext.bindtextdomain("deluge",
pkg_resources.resource_filename(
"deluge", "i18n"))