mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2024-11-26 20:53:13 -06:00
18 lines
504 B
Python
18 lines
504 B
Python
import os
|
|
import languageHandler
|
|
import logging
|
|
log = logging.getLogger("mysc.localization")
|
|
|
|
def get(rootFolder):
|
|
log.debug("Getting documentation folder. RootFolder: %s" % (rootFolder,))
|
|
defaultLocale = languageHandler.curLang
|
|
if len(defaultLocale) > 2:
|
|
defaultLocale = defaultLocale[:2]
|
|
log.debug("Locale: %s" % (defaultLocale,))
|
|
if os.path.exists(rootFolder+"/"+defaultLocale):
|
|
return defaultLocale
|
|
else:
|
|
log.debug("The folder does not exist, using the English folder...")
|
|
return "en"
|
|
|