UNPKG

@tenado/i18n-cli

Version:

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

6 lines (5 loc) 133 B
// 判断是否为中文 const regex = require("./regex.js"); module.exports = (text) => { return regex.chineseChar.test(text); };