Translate JSON i18n files without breaking keys or placeholders.
AI tools often break JSON when translating:
- Keys get changed
- Placeholders like
{name}or%dbreak - Output becomes invalid JSON
This makes it unusable in production.
This tool guarantees:
- ✅ Keys preserved
- ✅ Placeholders intact
- ✅ Valid JSON
- ✅ Ready-to-use output
https://localizejson.lovable.app
Input
{
"welcome": "Welcome {name}",
"messages": "You have {count} new messages"
}
{
"welcome": "Bon retour, {name}",
"messages": "Vous avez {count} nouveaux messages"
}