https://github.com/simplelocalize/download
Download translation files from Translation Editor
https://github.com/simplelocalize/download
download-translations easy-localization excel-i18n github-actions-download-i18n github-actions-i18n github-actions-l10n i18n l10n localization-cli localization-tool react-localization
Last synced: 3 months ago
JSON representation
Download translation files from Translation Editor
- Host: GitHub
- URL: https://github.com/simplelocalize/download
- Owner: simplelocalize
- Created: 2021-11-28T12:13:06.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-04T16:06:02.000Z (over 3 years ago)
- Last Synced: 2025-09-30T17:58:08.014Z (7 months ago)
- Topics: download-translations, easy-localization, excel-i18n, github-actions-download-i18n, github-actions-i18n, github-actions-l10n, i18n, l10n, localization-cli, localization-tool, react-localization
- Homepage: https://simplelocalize.io/docs/integrations/github-actions/
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Download localization files
This Github Action uses [official SimpleLocalize CLI](https://github.com/simplelocalize/simplelocalize-cli).
Learn more: https://simplelocalize.io/docs/integrations/github-actions/
## Usage
```yml
name: 'My project'
on:
push:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Download translations
uses: simplelocalize/download@v2.1
with:
apiKey:
downloadPath: ./{lang}/translations.json
downloadFormat: single-language-json
downloadOptions: "ESCAPE_NEW_LINES" # optional
languageKey: en # optional, it accepts only one language key
customerId: ikea # optional, it accepts only one customer id
```