my-gradio-app / i18n /__init__.py
Nguyen Trong Lap
Recreate history without binary blobs
eeb0f9c
raw
history blame contribute delete
456 Bytes
"""
Internationalization (i18n) Module
Multi-language support for Vietnamese and English
"""
from .language_detector import Language, LanguageDetector, detect_language
from .translations import Translations, t
from .multilingual_handler import MultilingualHandler, get_multilingual_handler
__all__ = [
'Language',
'LanguageDetector',
'detect_language',
'Translations',
't',
'MultilingualHandler',
'get_multilingual_handler'
]