UNPKG

855 BMarkdownView Raw
1# scratch-translate-extension-languages
2#### Languages used by the Scratch 3.0 Translate Extension
3
4[![Build Status](https://travis-ci.com/LLK/scratch-translate-extension-languages.svg?token=Yfq2ryN1BwaxDME69Lnc&branch=master)](https://travis-ci.com/LLK/scratch-translate-extension-languages)
5
6## Configuration
7| Variable | Default | Required | Description |
8| --------------------- | ----------- | -------- | --------------------------- |
9| `GOOGLE_CLIENT_EMAIL` | `null` | Yes | Google authentication email |
10| `GOOGLE_PRIVATE_KEY` | `null` | Yes | Google authentication key |
11
12_Note that to properly format `GOOGLE_PRIVATE_KEY` in an environment variable,
13newlines should be escaped properly:_
14
15```bash
16export GOOGLE_PRIVATE_KEY=$'-----BEGIN PRIVATE KEY-----\n...\n-----END PRIVATE KEY-----'
17```