cowave-translate
v0.2.10
Published
这是一款将中文项目自动翻译成英文的库
Readme
项目自动翻译
Author:ZyeAlex
功能:将中文 Vue 项目自动翻译成外语项目
使用方法
script 指令
"scripts": { "translate": "auto-translate" }配置
- tanslate.config.js 或者 config/tanslate.js
module.exports = { // 翻译目标语言 lang: ['en'], // 包含的字符,正则文件名 include: [/\.vue$/, /\.jsx?$/, /\.tsx?$/], // 排除的字符,正则文件名 exclude: [/^main\./], // 翻译引擎 engine: 'baidu', // APP-ID配置 baidu: { appid: '20240213001963355', secretKey: 'lrRLqbR2S8iOWgc5tWUV', }, // 专业术语关键字 keys: [ { ch: '物联网', en: 'IoT', }, ], // 单词长度 short: 5, // 缓存容量(单词个数) cache: 10000 }执行
- 将自动生成 xxx-en 项目
node translate
