An open API service indexing awesome lists of open source software.

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

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
```