UNPKG

@tenado/i18n-cli

Version:

i18n-cli是一个自动国际化脚本,通过执行命令,自动提取代码里面的中文,自动调用百度或谷歌翻译接口,自动将翻译结果以 key-value 形式存入*.json 语言包里

9 lines (7 loc) 235 B
// 翻译中文 const translateCore = require("./core/translate/index.js"); const mergeOptions = require("./core/utils/mergeOptions.js"); module.exports = (opts) => { const options = mergeOptions(opts); translateCore(options); };