23 lines
490 B
Python
23 lines
490 B
Python
"""
|
|
Android XML Translation Tool
|
|
A tool for translating Android XML values files using local LLM
|
|
"""
|
|
|
|
from .config import Config
|
|
from .models import TranslationItem, TranslationBatch
|
|
from .llm_client import LLMClient
|
|
from .xml_processor import XMLProcessor
|
|
from .ui import UI
|
|
from .translation_tool import TranslationTool
|
|
|
|
__version__ = "1.0.0"
|
|
__all__ = [
|
|
'Config',
|
|
'TranslationItem',
|
|
'TranslationBatch',
|
|
'LLMClient',
|
|
'XMLProcessor',
|
|
'UI',
|
|
'TranslationTool'
|
|
]
|