From 6c4eabfc4b686a72224ff06cb56c385bfc489790 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Wed, 10 Feb 2010 21:59:31 +0100 Subject: Webinterface with lighttpd! locale fixing try. --- pyLoadCli.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'pyLoadCli.py') diff --git a/pyLoadCli.py b/pyLoadCli.py index 03a44cc02..e4238b28d 100755 --- a/pyLoadCli.py +++ b/pyLoadCli.py @@ -431,7 +431,16 @@ if __name__ == "__main__": config = xmlconfig.getConfig() translation = gettext.translation("pyLoadCli", join(abspath(dirname(__file__)), "locale"), languages=[config['general']['language']]) - translation.install(unicode=(False if sys.stdout.encoding == "ascii" else True)) + + try: + translation.ugettext("äöü") + unicode = True + except: + unicode = False + + #@TODO cleaner method, if possible + + translation.install(unicode) if len(sys.argv) > 1: -- cgit v1.2.3