@acid-tango/lokalise-downloader 中文文档教程
Lokalise Downloader
使用 CLI 或以编程方式下载 Lokalise 翻译的实用程序
Installation
将 lokalise-downloader 安装为 npm 模块并将其作为开发依赖项保存到 package.json 文件中:
npm install --save-dev @acid-tango/lokalise-downloader
CLI Usage
lokalise-downloader tag1,tag2,tag3 <apiKey> <projectId>
或者,您可以传递 apiKey
和 projectId
通过环境变量:
export LOKALISE_API_KEY <apiKey>
export LOKALISE_PROJECT_ID <projectId>
export LOKALISE_PROJECT_TAGS <tags>
Programatic usage
import { downloadLocalesAsJson } from "@acid-tango/lokalise-downloader"
const apiKey = "<apiKey>"
const projectId = "<projectId>"
const tags = ["api", "frontend"]
const translations = await downloadLocalesAsJson(apiKey, projectId, tags)
console.log(translations)
License
MIT
Lokalise Downloader
Utility for downloading Lokalise translations either using the CLI or programatically
Installation
Install lokalise-downloader as an npm module and save it to your package.json file as a development dependency:
npm install --save-dev @acid-tango/lokalise-downloader
CLI Usage
lokalise-downloader tag1,tag2,tag3 <apiKey> <projectId>
Alternativelly, you can pass the apiKey
and projectId
through environment variables:
export LOKALISE_API_KEY <apiKey>
export LOKALISE_PROJECT_ID <projectId>
export LOKALISE_PROJECT_TAGS <tags>
Programatic usage
import { downloadLocalesAsJson } from "@acid-tango/lokalise-downloader"
const apiKey = "<apiKey>"
const projectId = "<projectId>"
const tags = ["api", "frontend"]
const translations = await downloadLocalesAsJson(apiKey, projectId, tags)
console.log(translations)
License
MIT