96 lines
1.9 KiB
Python
96 lines
1.9 KiB
Python
#!/usr/bin/env python3
|
|
|
|
from importlib import import_module
|
|
#from paramecio.citoplasma.sessions import get_session
|
|
import json
|
|
from flask import session
|
|
|
|
yes_session=False
|
|
|
|
i18n_module={}
|
|
|
|
def load_lang(*args):
|
|
|
|
for module in args:
|
|
|
|
lang_path=module[0]+'.i18n.'+module[1]
|
|
|
|
try:
|
|
|
|
i18n_module[lang_path]=import_module(lang_path)
|
|
|
|
pass
|
|
|
|
except:
|
|
pass
|
|
|
|
# here load the language
|
|
|
|
|
|
class I18n:
|
|
|
|
default_lang='en-US'
|
|
|
|
dict_i18n=['en-US', 'es-ES']
|
|
|
|
l={}
|
|
|
|
#@staticmethod
|
|
#def set_lang(code_lang):
|
|
# if default_lang
|
|
|
|
|
|
@staticmethod
|
|
def get_default_lang():
|
|
|
|
lang=I18n.default_lang
|
|
|
|
s=session
|
|
|
|
lang=s.get('lang', lang)
|
|
|
|
return lang
|
|
|
|
@staticmethod
|
|
def lang(module, symbol, text_default, lang=None):
|
|
|
|
if not lang:
|
|
lang=I18n.get_default_lang()
|
|
|
|
I18n.l[lang]=I18n.l.get(lang, {})
|
|
|
|
I18n.l[lang][module]=I18n.l[lang].get(module, {})
|
|
|
|
I18n.l[lang][module][symbol]=I18n.l[lang][module].get(symbol, text_default)
|
|
|
|
return I18n.l[lang][module][symbol]
|
|
|
|
@staticmethod
|
|
def extract_value(value):
|
|
|
|
value=json.loads(value)
|
|
|
|
lang=I18n.get_default_lang()
|
|
|
|
if value[lang]!='':
|
|
|
|
return value[lang]
|
|
|
|
return value[I18n.default_lang]
|
|
|
|
"""
|
|
@staticmethod
|
|
def get_browser_lang():
|
|
|
|
return request.headers.get('Accept-Language', 'en-US')
|
|
"""
|
|
@staticmethod
|
|
def lang_json(module, symbol, text_default):
|
|
|
|
arr_final={}
|
|
|
|
for l in I18n.dict_i18n:
|
|
arr_final[l]=I18n.lang(module, symbol, text_default, l)
|
|
|
|
return json.dumps(arr_final)
|
|
|