The most popular office program can now be a tool for translation management. Localize you application with Microsoft Excel or any other spreadsheet tool. Translations and translation keys can be exported using Web client, API or CLI to the Excel spreadsheet. You can share the file with others and import it later to update the translations. Use Excel as a localization tool!
Upload with CLI
simplelocalize upload --apiKey <PROJECT_KEY> \
--uploadFormat excel \
--uploadPath ./my-excel-file.xlsx
Learn more about SimpleLocalize CLI and translations upload feature.
Download with CLI
simplelocalize download --apiKey <PROJECT_KEY> \
--downloadFormat excel \
--downloadPath ./my-excel-file.xlsx
Learn more about SimpleLocalize CLI and translations download feature.
Import with API
curl
--request POST \
--url 'https://api.simplelocalize.io/api/v2/import?uploadFormat=excel' \
--header 'x-simplelocalize-token: <API_KEY>' \
--form file=@/path/to/your/my-excel-file.xlsx
Learn more about importing translations with API
Export with API
curl
--request GET \
--url https://api.simplelocalize.io/api/v3/export?downloadFormat=excel \
--header 'x-simplelocalize-token: <API_KEY>'
Learn more about exporting translations with API