summary refs log tree commit diff
path: root/pkgs/applications/misc/playonlinux/0001-fix-locale.patch
blob: 2ae1a17ca8b9fbee9ff23364fd63b77ddf9eab77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/python/lib/lng.py b/python/lib/lng.py
index a390d920..00c3527e 100755
--- a/python/lib/lng.py
+++ b/python/lib/lng.py
@@ -12,11 +12,7 @@ class Lang(object):
 
 class iLang(object):
     def __init__(self):
-        if(os.environ["DEBIAN_PACKAGE"] == "TRUE"):
-            languages = os.listdir('/usr/share/locale')
-        else:
-            languages = os.listdir(Variables.playonlinux_env+'/lang/locale')
-
+        languages = os.listdir('@out@/share/playonlinux/lang/locale')
         if(os.environ["POL_OS"] == "Mac"):
             wxLocale = wx.Locale().FindLanguageInfo(os.environ["RLANG"])