mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-03 08:22:53 +01:00
20 lines
394 B
Python
20 lines
394 B
Python
|
from library.configurator import Configurator
|
||
|
|
||
|
|
||
|
def get_translations():
|
||
|
return Configurator([
|
||
|
'nexus/translations/translations.yaml',
|
||
|
])
|
||
|
|
||
|
|
||
|
def t(label, language='en'):
|
||
|
if language in _translations and label in _translations[language]:
|
||
|
return _translations[language][label]
|
||
|
return _translations['en'][label]
|
||
|
|
||
|
|
||
|
_translations = get_translations()
|
||
|
|
||
|
|
||
|
__all__ = ['t']
|