mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-26 20:53:13 -06:00
10 lines
199 B
Python
10 lines
199 B
Python
|
import gettext_windows, os
|
||
|
|
||
|
def get(rootFolder):
|
||
|
defaultLocale = gettext_windows.get_language()[0][:2]
|
||
|
if os.path.exists(rootFolder+"/"+defaultLocale):
|
||
|
return defaultLocale
|
||
|
else:
|
||
|
return "en"
|
||
|
|