mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2026-01-03 01:24:22 +01: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"
|
||
|
|
|