mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-07-14 12:21:44 -04: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"
|
||
|
|