JSON localization files can be organized in flat or nested formats, and choosing the right structure affects readability, maintainability, and integration with your app.
{
"home.title": "Welcome",
"home.description": "Your productivity hub",
"buttons.save": "Save",
"buttons.cancel": "Cancel"
}{
"home": {
"title": "Welcome",
"description": "Your productivity hub"
},
"buttons": {
"save": "Save",
"cancel": "Cancel"
}
}Localazy supports both flat and nested JSON formats, allowing you to upload, translate, and export files without losing structure. You can also choose the preferred format for your project, ensuring consistency across environments and repositories.
Please help us with improving our documentation.
We appreciate all your feedback.