Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cimpress-translations-cli

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cimpress-translations-cli

A simple client to retrieve translations in CI environment

  • 0.1.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

cimpress-translations-cli

npm version

cimpress-translations-cli is a convenient client for Cimpress' Translations service which can very easily be integrated into an existing build pipeline to automatically download latest translations for an application.

Getting Started

Include cimpress-translations-cli in your project using npm or yarn:

npm i -D cimpress-translations-cli

Supported options

  -V, --version                       output the version number
  -a, --application-id <id>           Cimpress Translation Application ID (as defined in https://translations.cimpress.io
  -c, --client-id <id>                Auth0 Client ID that suppors clients_grant.
  -s, --client-secret <secret>        Auth0 Client Secret for the client id.
  -t, --translations-file <filepath>  File where a single file with all languages is created.
  -h, --help                          output usage information
  
  --iso639_1                          Produce language file with 2-letter language codes (eg.: en, de, fr, ...).

Integrate into your build pipeline

The commands below assume (for simplicity) that you have APP_ID, CLIENT_ID and CLIENT_SECRET set as environment variables. ``

Running manually to test
node ./node_modules/.bin/cimpress-translations-cli -a ${APP_ID} -c ${CLIENT_ID} -s ${CLIENT_SECRET} -t "./src/locales/translations.json"
Setting in your package.json
    ...
    scripts: {
        ...
        "translate": "cimpress-translations-cli -a ${APP_ID} -c ${CLIENT_ID} -s ${CLIENT_SECRET} -t "./src/locales/translations.json",
        ...
    },
    ...
Steps performed by the client
  1. Retrieve access token for CLIENT_ID/CLIENT_SECRET
  2. Retrieve application description (including list of languages) from Cimpress Translaions service for application with id APP_ID
  3. For each application language from 2), download the language blobs
  4. Combine the language blobs into a single json
  5. Save the combined language files in the translations file (specified with -t option)

Keywords

FAQs

Package last updated on 10 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc