migrate to gitea
This commit is contained in:
22
__init__.py
Normal file
22
__init__.py
Normal file
@@ -0,0 +1,22 @@
|
||||
"""
|
||||
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'
|
||||
]
|
||||
Reference in New Issue
Block a user