My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/applications/misc/playonlinux/0001-fix-locale.patch

17 lines
615 B

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"])