README
lokse
A tool for efficient usage of translations stored in google spreadsheet
🚀 Usage
$ npm install -g lokse
$ lokse COMMAND
running command...
$ lokse (-v|--version|version)
lokse/1.6.0 darwin-x64 node-v12.21.0
$ lokse --help [COMMAND]
USAGE
$ lokse COMMAND
...
🔑 Authentication
The last version of Google Spreadsheets API requires us to be authenticated to allow fetching spreadsheet data.
There are two options for authentication: Service Account or API key. For each of these options we have to define some values as environment variables.
Environment variables
We have practically two ways of how to define environment variables containing API key or Service Account credentials
Use it before the command like
$ LOKSE_SERVICE_ACCOUNT_EMAIL=this_is_account_email LOKSE_PRIVATE_KEY=this_is_the_private_key lokse update
or use a more flexible and handy way of keeping variables inside the .env.local
file. Create the file if you don't have it yet and put your variables into it like
LOKSE_SERVICE_ACCOUNT_EMAIL=this_is_account_email
LOKSE_PRIVATE_KEY=this_is_the_private_key
then you'll be able to run
$ lokse update
For the sake of security reasons Never check your API keys / secrets into version control. That means you should not forget to add
.env.local
into the.gitignore
.
Service Account
Currently the best option of authentication is to create a Service account (if you don't have any, follow the instructions here) and then setup at least read permissions for your account in the spreadsheet.
Since every Service account contains email adress just click the "Share" button at top right corner of the spreadsheet and add your Service account email there.
Once you have the Service account created, you should have its client email and private key. It looks smilar to this
"client_email": "localize-with-spreadsheet@localize-with-spreadsheet.iam.gserviceaccount.com",
"private_key": "-----BEGIN PRIVATE KEY-----\nAnd_here_is_a_long_text_of_random_characters_that_defines_the_private_key\n-----END PRIVATE KEY-----\n",
Take these two values, put them into LOKSE_SERVICE_ACCOUNT_EMAIL
and LOKSE_PRIVATE_KEY
variables using one of two ways described above and there you go, fetching data from spreadsheet should work now.
API key
For read only access, we're good with usage of API key, if you don't have any, follow the instructions here to create one.
Then define the variable LOKSE_API_KEY=this_is_your_api_key
and then if the key is valid fetching data should work for you.
Using API key instead of Service account has one important limitation: You spreadsheet must set permissions to be visible for everyone in the Internet.
🔧 Configuration
CLI uses Cosmiconfig
which means you can hold the configuration in any format it supports.
So just create lokse.config.js
, .lokserc
, .lokserc.yml
, .lokserc.json
or add lokse
property into the package.json
and there you can setup on of the options:
sheetId
Spreadsheet id. When you open your spreadsheet it's this string
dir
Output directory where generated translation files will be written to.
languages
List of languages you want to generate translations for. Also names of columns in spreadsheet.
column
Name of spreadsheet columm containing translation ids.
format
Format of output translation file.
sheets
Target spreadsheet can contain more than one sheet and default behaviour is to use all of them, but sometimes you need only some of them. This option determines sheets to fetch translations from. You can define sheets you want to use or those you don't want to or combine these definition.
You can choose from various formats to define sheets to use
Special value
*
means to include all sheets and is the default behaviour when you omit thesheets
option.{ "sheets": "*", }
Titles of sheets to use. Can be string or array of strings
{ "sheets": "Web translations", } // or { "sheets": ["App translations", "Legal docs"] }
Definition of sheets to include or exclude from the list of all sheets. Can be one of formats mentioned above
{ "sheets": { "include": ["Web translations", "Legal docs"], "exclude": "CMS translations" } } // or { "sheets": { "exclude": ["CMS translations"] } } // or { "sheets": { "include": ["Web translations", "Legal docs"], } }
splitTranslations
Enables splitting translations into multiple files which is useful for lazy loading of some big parts of translations (eg. translation of the whole legal document).
You have two ways of how to split your translations:
Split by sheets -
splitTranslations: true
- each sheet means one translations file and name of file is determined by sheet title. Given 3 sheets in yout spreadsheet named "App translations", "Legal docs", "Landing Page" the result will be 3 files namedapp-translations.cs.json
,legal-docs.cs.json
,landing-page.cs.json
(of course the language and format depends on your settings).Split by domains -
splitTranslations: string[]
- this configuration expects an array of domain names. Domain is a first part of your translation id, given translation idnews.mostRead.error.text
the domain isnews
. The domain name determines also the filename,news.cs.json
in our example.
Translations that starts with domainnews.
will be written into thenews.cs.json
, other translations that does not belong to any other group will be saved into general translations in filecs.json
.
The splitTranslations
option can be provided only through configuration not inline CLI parameter.
.lokserc
Example of {
"sheetId": "1HKjvejcuHIY73WvEkipD7_dmF9dFeNLji3nS2RXcIzk",
"dir": "locales",
"languages": ["cs", "en", "fr"],
"column": "key_web",
"format": "json",
"sheets": ["App translations", "Legal docs"],
"splitTranslations": ["news", "documents"]
}
🕹 Commands
lokse help [COMMAND]
display help for lokse
USAGE
$ lokse help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
See code: @oclif/plugin-help
lokse open
open localization spreadsheet in default browser
USAGE
$ lokse open
OPTIONS
-h, --help show CLI help
-i, --id=id spreadsheet id
EXAMPLE
$ lokse open -i 1HKjvejcuHIY73WvEkipD7_dmF9dFeNLji3nS2RXcIzk
See code: lib/commands/open.js
lokse update
update translations from localization spreadsheet
USAGE
$ lokse update
OPTIONS
-c, --col=col column containing translations keys. For example key_web.
-d, --dir=dir output folder
-f, --format=(json|android|ios) output format. Default is json.
-h, --help show CLI help
-i, --id=id spreadsheet id
-l, --languages=languages translation columns languages. Multiple values are comma separated. For example
cs,en,fr
-s, --sheets=sheets sheets to get translations from. Name or list of names, comma separated. For example
Translations1,Translations2
EXAMPLES
$ lokse update
$ lokse update -i 1HKjvejcuHIY73WvEkipD7_dmF9dFeNLji3nS2RXcIzk -d locales -l cz,en,fr -t key_web
See code: lib/commands/update.js