Droidlate: A local web-based Weblate-like UI for managing and editing Android strings.xml translations.
Project description
Droidlate
Droidlate is a lightweight, local, web-based translation workspace for Android strings.xml resource files. It features a clean, responsive, Weblate-inspired Single Page Application (SPA) designed to make translating Android applications fast, accurate, and resilient.
Core Usecases
- Local Offline Workspace: Translate and edit local localization files on your machine. Avoid uploading sensitive resource files to third-party servers or setting up heavy server-side infrastructure.
- Preserving XML Formatting & Comments: Standard XML parsers rewrite files, wiping out comments, custom spacing, ordering, and attributes. Droidlate's custom parsing engine performs in-place character index replacements to maintain exact XML styling, comments, structure, and formatting.
- Tracking Outdated Translations: When developers update a base string in
values/strings.xml, translations can become outdated. Droidlate normalizes and hashes base strings into a lightweight local sidecar metadata file, highlighting which target translations need updates. - Placeholder Verification & QA: Mismatched Java-style placeholders (e.g.,
%s,%1$din the source but% dor missing in the target) cause runtime crashes on Android. Droidlate validates alignment on every keystroke and flags warnings. - Orphaned String Pruning: Over time, strings are deleted from the main codebase but linger in translation files. Droidlate lists these "orphaned" strings and lets you prune them with a single click.
Key Features
- Sleek UI with Dark Mode: A modern HSL-tailored interface featuring layout toggles (especially optimized for mobile web layouts), status indicators, and translation statistics.
- Keyboard Shortcuts: Built for productivity. Use
Ctrl+Sto instantly Save & Next, andAlt+1/Alt+2to paste dynamic suggestions. - Auto-Translation Suggestions: Integrates with translation suggestion services (like Google Translate and MyMemory) to suggest translations on the fly.
- Atomicity & Crash Resilience: Local updates are written to the target XML file first, then metadata sidecars second. If interrupted, the app automatically flags the key as
Outdatedon the next run, ensuring no state corruption. - Secure Server Binding: The local Flask server strictly binds to the loopback interface (
127.0.0.1), ensuring your filesystem is safe from external network access.
Installation
To install Droidlate locally in edit mode:
# Clone the repository and install dependencies
git clone https://github.com/estiaksoyeb/Droidlate.git
cd Droidlate
pip install -e .
Alternatively, install requirements directly:
pip install -r requirements.txt
Usage & CLI Commands
Once installed, you can launch the Droidlate workspace using the droidlate CLI command:
1. Auto-Scan Mode (Default)
Run the command in your Android project root (or near your resources). Droidlate will auto-detect typical folders like app/src/main/res/, src/main/res/, or res/:
droidlate
2. Specify Resource Directory
You can explicitly define where the Android resource directory is located:
droidlate --res-dir /path/to/android/app/src/main/res
3. Single-File Mode
To translate or edit a single pair of strings files directly:
droidlate --source app/src/main/res/values/strings.xml --target app/src/main/res/values-es/strings.xml
4. Custom Port
Run the local web server on a different port:
droidlate --port 8080
Repository Structure
├── droidlate/ # Package root
│ ├── parser/
│ │ ├── xml_parser.py # Expat character-level round-trip parser
│ │ └── diff_engine.py # Hashing, validation, and status engines
│ ├── translator/
│ │ └── engine.py # Translation Orchestrator
│ ├── web/
│ │ ├── server.py # Flask server and local REST APIs
│ │ └── static/ # Single Page Web App (HTML, CSS, JS)
│ ├── cli_wizard.py # CLI console loop wizard
│ └── main.py # Command entry point
├── pyproject.toml # Package configuration and script registration
├── requirements.txt # App dependencies
└── README.md # This documentation
Credits
- Droidlate's auto-translation suggestions feature was inspired by Android strings.xml Translator.
License
This project is licensed under the GNU General Public License v3.0 (GPL-3.0). See LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file droidlate-1.0.0.tar.gz.
File metadata
- Download URL: droidlate-1.0.0.tar.gz
- Upload date:
- Size: 42.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec82e9fe4ee85c81269c5b08890e934d6b576f018db3f37ec3fff1dc10149dc3
|
|
| MD5 |
6a4096391e5fd3724c739842f1937194
|
|
| BLAKE2b-256 |
9978ffa2e40092a1aa4a58dbac765eb312a3e123705c57871263acb01d860717
|
File details
Details for the file droidlate-1.0.0-py3-none-any.whl.
File metadata
- Download URL: droidlate-1.0.0-py3-none-any.whl
- Upload date:
- Size: 44.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dcd52f0959ccfa9b80657eea466f9f25c745fdc2220397ecc45c44e3fd85bec
|
|
| MD5 |
19299b7598bbff2474f52df06090ddbd
|
|
| BLAKE2b-256 |
23091f1cf5d0fa44daec81c750e93c4053879fe499f13bcfb1debd453508146b
|