From f531d48e618b3ee4e99ae6f1034368d9e7744918 Mon Sep 17 00:00:00 2001 From: Huluti Date: Sat, 10 Dec 2016 16:45:38 +0100 Subject: [PATCH] Enable language selector --- src/manjaro-hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manjaro-hello.py b/src/manjaro-hello.py index 0fa4d88..f73ea70 100644 --- a/src/manjaro-hello.py +++ b/src/manjaro-hello.py @@ -58,7 +58,7 @@ class ManjaroHello(): else: self.preferences["locale"] = self.default_locale - locale.setlocale(locale.LC_ALL, self.sys_locale + ".utf8") + locale.setlocale(locale.LC_ALL, self.preferences["locale"] + ".utf8") locale.bindtextdomain(self.app, self.locale_path) locale.textdomain(self.app)