migrate to gitea

This commit is contained in:
jonasgaudian
2026-02-14 18:12:28 +01:00
commit 7c17f0f0cf
21 changed files with 2037 additions and 0 deletions

22
__init__.py Normal file
View 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'
]