feat(i18n): add backend translation utility with shared locale files

This commit is contained in:
ghostubborn
2026-04-01 15:22:14 +08:00
parent 2ffadd3038
commit 0c18e1aeca
2 changed files with 62 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
from .file_parser import FileParser
from .llm_client import LLMClient
from .locale import t, get_locale, get_language_instruction
__all__ = ['FileParser', 'LLMClient']
__all__ = ['FileParser', 'LLMClient', 't', 'get_locale', 'get_language_instruction']