@c-sheep/i18n-extract-cli
v1.0.0
Published
这是一款能够自动将代码里的中文转成i18n国际化标记的命令行工具。当然,你也可以用它实现将中文语言包自动翻译成其他语言。适用于vue2、vue3和react
Maintainers
Readme
使用
在项目根目录执行下面命令
cc指令参数
| 参数 | 类型 | 默认值 | 描述 | | ----------------- | ------ | ------ | -------------------------------------------------- | | -c, --config-file | String | '' | 指定命令行配置文件的所在路径(可以自定义更多功能) |
子命令
| 子命令 | 描述 | | --------- | -------------------------------- | | init | 在项目里初始化一个命令行配置 | | translate | 把中文翻译成 en tw | | export | 将 module 里面的语言导出 excel | | merge | 把 excel 导入到项目里面生成 json |
命令行配置
如果有更多的定制需求,可以在项目根目录执行cc init,创建i18n.config.js文件,按自身需求修改完配置后,再执行cc -c i18n.config.js。(注意:配置文件里参数的优先级比指令参数高)
{
"i18n:init": "npx cc init",
"i18n:genre": "npx cc -c ./i18n.config.js",
"i18n:translate": "npx cc translate -c ./i18n.config.js",
"i18n:export": "npx cc exportExcel -c ./i18n.config.js",
"i18n:merge": "npx cc merge -c ./i18n.config.js",
}// 以下为i18n.config.js默认的完整配置,所有属性均为可选,可以根据自身需要修改
module.exports = {
input: 'src',
output: '', // 没有值时表示完成提取后自动覆盖原始文件
exclude: ['**/node_modules/**/*'], // 排除不需要提取的文件
localePath: './locales/module', // 中文语言包的存放位置
localeFileType: 'json', // 设置语言包的文件类型,支持js、json。默认为json
// rules每个属性对应的是不同后缀文件的处理方式
rules: {
js: {
caller: '', // 自定义this.$t('xxx')中的this。不填则默认没有调用对象
functionName: 't', // 自定义this.$t('xxx')中的$t
customizeKey: function (key, currentFilePath) {
return key
}, // 自定义this.$t('xxx')中的'xxx'部分的生成规则
importDeclaration: 'import { t } from "i18n"', // 默认在文件里导入i18n包。不填则默认不导入i18n的包。由于i18n的npm包有很多,用户可根据项目自行修改导入语法
forceImport: false, // 即使文件没出现中文,也强行插入importDeclaration定义的语句
},
// ts,cjs,mjs,jsx,tsx配置方式同上
ts: {
caller: '',
functionName: 't',
customizeKey: function (key, currentFilePath) {
return key
},
importDeclaration: 'import { t } from "i18n"',
forceImport: false,
},
cjs: {
caller: '',
functionName: 't',
customizeKey: function (key, currentFilePath) {
return key
},
importDeclaration: 'import { t } from "i18n"',
forceImport: false,
},
mjs: {
caller: '',
functionName: 't',
customizeKey: function (key, currentFilePath) {
return key
},
importDeclaration: 'import { t } from "i18n"',
forceImport: false,
},
jsx: {
caller: '',
functionName: 't',
customizeKey: function (key, currentFilePath) {
return key
},
importDeclaration: 'import { t } from "i18n"',
functionSnippets: '', // react函数组件里,全局加代码片段
forceImport: false,
},
tsx: {
caller: '',
functionName: 't',
customizeKey: function (key, currentFilePath) {
return key
},
importDeclaration: 'import { t } from "i18n"',
functionSnippets: '',
forceImport: false,
},
vue: {
caller: 'this',
functionNameInTemplate: '$t',// vue这里的配置,仅针对vue的template标签里面的内容生效
functionNameInScript: '$t', // vue这里的配置,仅针对vue的script部分export default里面的内容生效
customizeKey: : function (key, currentFilePath) {
return key
},
importDeclaration: '',
forceImport: false,
tagOrder: ['template', 'script', 'style'], // 支持自定义vue文件的标签顺序
},
},
globalRule: {
ignoreMethods: [] // 忽略指定函数调用的中文提取。例如想忽略sensor.track('中文')的提取。这里就写['sensor.track']
},
// prettier配置,参考https://prettier.io/docs/en/options.html
prettier: {
semi: false,
singleQuote: true,
},
skipExtract: false, // 跳过提取中文阶段
// 以下是和翻译相关的配置,注意搭配使用
skipTranslate: true, // 跳过翻译语言包阶段。默认不翻译
locales: [], // 需要翻译的语言包。例如['en', 'zh-CHT'],会自动翻译英文和繁体
excelPath: './locales.xlsx', // excel存放路径
exportExcel: false, // 是否导出excel
// 参数:
// allKeyValue:已遍历的所有文件的key-value
// currentFileKeyMap: 当前文件提取到的key-value
// currentFilePath: 当前遍历的文件路径
adjustKeyMap(allKeyValue, currentFileKeyMap, currentFilePath) {return allKeyValue}, // 对提取结构进行二次处理
}具体用法可以点击下方链接参考
转换效果示例
react 转换示例
转换前
import { useState } from "react";
/*i18n-ignore*/
const b = "被忽略提取的文案";
function Example() {
const [msg, setMsg] = useState("你好");
return (
<div>
<p title="标题">{msg + "呵呵"}</p>
<button onClick={() => setMsg(msg + "啊")}>点击</button>
</div>
);
}
export default Example;转换后
import { t } from "i18n";
import { useState } from "react";
/*i18n-ignore*/
const b = "被忽略提取的文案";
function Example() {
const [msg, setMsg] = useState(t("你好"));
return (
<div>
<p title={t("标题")}>{msg + t("呵呵")}</p>
<button onClick={() => setMsg(msg + t("啊"))}>{t("点击")}</button>
</div>
);
}
export default Example;vue 转换示例
转换前
<template>
<div :label="'标签'" :title="1 + '标题'">
<p title="测试注释">内容</p>
<button @click="handleClick('信息')">点击</button>
</div>
</template>
<script>
export default {
methods: {
handleClick() {
console.log("点了");
}
}
};
</script>转换后
<template>
<div :label="$t('标签')" :title="1 + $t('标题')">
<p :title="$t('测试注释')">{{ $t("内容") }}</p>
<button @click="handleClick($t('信息'))">{{ $t("点击") }}</button>
</div>
</template>
<script>
export default {
methods: {
handleClick() {
console.log(this.$t("点了"));
}
}
};
</script>注意事项
- 自定义配置里的 js 规则,除了用于处理 js 文件,也会应用到 vue 的模版和 vue
script标签的非export default部分。例如
<script>import a from 'a.js' function b() {a("哈哈哈")}</script>- 自定义配置里的 vue 的
functionNameInScript规则,仅针对script标签的export default部分生效。例如
<script>
export default {
data: {
return {
a: '测试'
}
}
}
</script>代码转换后,新插入的导入语句中
import { t } from "i18n"的i18n是通过打包工具(如webpack)的别名alias功能实现的。开发者可以结合自身需求自己定义,通过别名把i18n文件指向一个绝对路径导入语句中
import { t } from "i18n",其中的i18n文件内容要自己去封装实现翻译后,命令行工具自动去掉提取汉字里的回车,这是因为回车会影响翻译准确度。所有原文里如果有回车,请自行校对,在语言包里手动补上回车
