Translation Editor
Save time on handling localization files and translation strings.
Try SimpleLocalize
Share article

CLI 2.0 with multi-file support

CLI 2.0 with multi-file support

Hey there! In the latest update, I implemented a frequently requested feature which is multi-file support in a new version of SimpleLocalize CLI, and I wanted to share with you how to use it. See the below updates that should help you in your daily translation and management work with SimpleLocalize. ☺️

How to download translation using command-line tool

Multi-file support

Multi-file support gives you a possibility to upload and download files which have a structure like below.

.
├── ca
│   ├── common.json
│   └── home.json
├── en
│   ├── common.json
│   └── home.json
└── es
    ├── common.json
    └── home.json

The newest version of CLI will automatically detect if you are trying to upload or download files with namespaces and/or languages. Namespaces in the example above are home and common, and languages are ca, en, es.

How to upload translations?

To upload such structure of translations, you can simply run command like below:

simplelocalize upload
  --apiKey <PROJECT_API_KEY>
  --uploadPath /{lang}/{ns}.json
  --uploadFormat single-language-json

In the example above, {ns} is a namespace and {lang} is a language.

See upload command documentation page.

How to download translations?

Once you finish translating your content, you can run a download command to update translation files or/and add new ones!

simplelocalize download
  --apiKey <PROJECT_API_KEY>
  --downloadPath /{lang}/{ns}.json
  --downloadFormat single-language-json

See download command documentation page.

Options flag is now available

You can use CLI to download all available file formats. Some formats offer additional options, for example if you would like to download an Excel file with translations and translation key descriptions, you can run:

simplelocalize download
  --apiKey <PROJECT_API_KEY>
  --downloadPath /locales/translations.xlsx
  --downloadFormat excel
  --downloadOptions INCLUDE_DESCRIPTIONS

You can see currently available options in the 'Data' tab in the project view, when Developer mode is turned on in the top-right corner.

export translations section

Additional options are also supported in the Upload command, and you can apply them respectively with --uploadOptions parameter.

Faster CLI and smaller file size

SimpleLocalize CLI 2.0 brings many small improvements, one of those is much smaller CLI size. The newest version is only 15 megabytes, comparing to the previous 1.1.x version with 50 megabytes. CLI still has zero dependencies, which means you don't need to have Java, Python, node or any other software to run the CLI.

Other improvements:

  • better compatibility between operating systems,
  • new API which responds much faster for CLI requests,
  • better error handling,
  • more meaningful error messages.

How to update or install CLI?

To install CLI version 2.x, you can invoke the command below. It will automatically detect your operating system and download SimpleLocalize CLI. If you would like to download CLI executable manually, without the script, you can find all CLI releases on GitHub.

curl -s https://get.simplelocalize.io/2.5/install | bash

How to check what CLI version I'm running?

You can simply check what is your current CLI version by running CLI with --version parameter.

simplelocalize --version
or
simplelocalize-cli --version
or
./your-downloaded-simplelocalize --version

Troubleshooting

If you have any troubles with CLI, please visit troubleshooting page for solutions. You can also report the problem on GitHub.

What's next?

In the upcoming weeks, I would like to focus on adding more CLI small features based on the given feedback.

Keep an eye on changelog, my Twitter or SimpleLocalize Twitter. Thank you all for your e-mails and all the feedback you provide me with. Have a great day! ☺️

Relevant posts

Check out our latest blog posts and stay up to date with SimpleLocalize

Cloudflare Workers and Website Localization (1/5)

Jakub Pomykałaby6 min read

In this tutorial, we will show you how to use Cloudflare Workers to create a simple website localization feature, without the need to install any additional dependencies. We will localize a simple static HTML website hosted on GitHub Pages, but you can use the same approach to localize any website, including those built with popular frameworks like React, Angular, or Vue.js.

Continue reading