
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@aplus-frontend/i18n-extract-cli
Advanced tools
这是一款能够自动将代码里的中文转成 i18n 国际化标记的命令行工具。当然,你也可以用它实现将中文语言包自动翻译成其他语言。适用于 vue2、vue3 和 react
pnpm i @aplus-frontend/i18n-extract-cli -g
在项目根目录执行下面命令
aplus-i18n
| 参数 | 类型 | 默认值 | 描述 |
|---|---|---|---|
| -i, --input | String | 'src' | 指定待提取的文件目录。 |
| -o, --output | String | '' | 输出转换后文件路径。没有值时表示完成提取后自动覆盖原始文件。当有值时,会输出到指定目录 |
| -c, --config-file | String | '' | 指定命令行配置文件的所在路径(可以自定义更多功能) |
| --localePath | String | './locales/zh-CN.json' | 指定提取的中文语言包所存放的路径。 |
| -v,--verbose | Boolean | false | 控制台打印更多调试信息 |
| -h,--help | Boolean | false | 查看指令用法 |
| --skip-extract | Boolean | false | 跳过 i18n 转换阶段。 |
| --skip-translate | Boolean | false | 跳过中文翻译阶段。 |
| --locales | Array | ['en-US'] | 根据中文语言包自动翻译成其他语言。用法例子 --locales en zh-CHT |
| --incremental | Boolean | false | 开启后。支持将文件中提取到中文键值对,追加到原有的中文语言包。 |
| --exportExcel | Boolean | false | 开启后。导出所有翻译内容到 excel。 默认导出到当前目录下的 locales.xlsx |
| --excelPath | String | './locales.xlsx' | 指定导出的 excel 路径。 |
| 子命令 | 描述 |
|---|---|
| init | 在项目里初始化一个命令行配置 |
| loadExcel | 根据导入翻译文件的 excel 内容,生成语言包 |
如果有更多的定制需求,可以在项目根目录执行aplus-i18n init,创建i18n.config.js文件,按自身需求修改完配置后,再执行aplus-i18n -c i18n.config.js。(注意:配置文件里参数的优先级比指令参数高)
// 以下为i18n.config.js默认的完整配置,所有属性均为可选,可以根据自身需要修改
module.exports = {
input: 'src',
output: '', // 没有值时表示完成提取后自动覆盖原始文件
exclude: ['**/node_modules/**/*'], // 排除不需要提取的文件
localePath: './locales/zh-CN.json', // 中文语言包的存放位置
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, // 跳过翻译语言包阶段。默认不翻译
extractOnly: false, // 仅提取中文,不进行语法转换
locales: [], // 需要翻译的语言包。例如['en', 'zh-CHT'],会自动翻译英文和繁体
excelPath: './locales.xlsx', // excel存放路径
exportExcel: false, // 是否导出excel
// 参数:
// allKeyValue:已遍历的所有文件的key-value
// currentFileKeyMap: 当前文件提取到的key-value
// currentFilePath: 当前遍历的文件路径
adjustKeyMap(allKeyValue, currentFileKeyMap, currentFilePath) {return allKeyValue}, // 对提取结构进行二次处理
}
aplus-i18n --skip-extract --locales en zh-CHT
aplus-i18n --skip-translate
aplus-i18n -c ./i18n.config.js
ja.json文件中aplus-i18n --localePath ./locales/zh-CN.json --locales ja
aplus-i18n --incremental -i ./src/C
excel 的表头格式举例['字典key', 'zh-CN', 'en-US']
# 方式1,根据指令参数导入
aplus-i18n loadExcel --excelPath ./demo.xlsx --localePath ./locales/zh-CN.json
# 方式2,根据本地自定义配置导入
aplus-i18n loadExcel -c ./i18n.config.js
# 方式1,根据指令参数
aplus-i18n --skip-extract --skip-translate --exportExcel --excelPath ./demo.xlsx
# 方式2,根据本地配置
aplus-i18n --skip-extract --skip-translate -c ./i18n.config.js
转换前
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
转换前
<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>
script标签的非export default部分。例如<script>import a from 'a.js' function b() {a('哈哈哈')}</script>
functionNameInScript规则,仅针对script标签的export default部分生效。例如<script>
export default {
data: {
return {
a: '测试'
}
}
}
</script>
代码转换后,新插入的导入语句中import { t } from "i18n"的i18n是通过打包工具(如webpack)的别名alias功能实现的。开发者可以结合自身需求自己定义,通过别名把i18n文件指向一个绝对路径
导入语句中import { t } from "i18n",其中的i18n文件内容要自己去封装实现
执行aplus-i18n命令时,如果需要自动翻译,请确保项目里中文语言包zh-CN.json文件存在,并且中文语言包的路径配置正确
翻译后,命令行工具自动去掉提取汉字里的回车,这是因为回车会影响翻译准确度。所有原文里如果有回车,请自行校对,在语言包里手动补上回车
FAQs
We found that @aplus-frontend/i18n-extract-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 12 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.