Translation Manager
Upload a JSON file to get started. The system will automatically flatten nested keys.
Don't have a JSON file to upload? Start with an example structure.
Any nested JSON will be flattened into dot notation:
{
"app": {
"title": "Welcome",
"menu": {
"items": ["Home", "About", "Contact"]
}
}
}
Flattened keys:
app.title → "Welcome"app.menu.items.0 → "Home"app.menu.items.1 → "About"app.menu.items.2 → "Contact"Built with Go, Echo, HTMX, and SQLite