郭宇琦 3 päivää sitten
vanhempi
säilyke
1ff06efcca
4 muutettua tiedostoa jossa 157 lisäystä ja 5 poistoa
  1. 93 0
      app5.js
  2. 30 1
      locale/en.json
  3. 1 1
      locale/index.js
  4. 33 3
      locale/zh.json

+ 93 - 0
app5.js

@@ -0,0 +1,93 @@
+const fs = require('fs');
+const path = require('path');
+
+// 配置
+const projectDir = './pages'; // 你的 UniApp 项目路径
+const langFilePath = './output3.json'; // 本地语言文件路径
+const ignoredFiles = ['node_modules', 'locale']; // 忽略的文件夹或文件
+
+// 加载语言文件
+let langData = {};
+if (fs.existsSync(langFilePath)) {
+    const langFileContent = fs.readFileSync(langFilePath, 'utf-8');
+    langData = JSON.parse(langFileContent);
+}
+
+// 正则表达式:匹配汉字
+const chineseRegex = /[\u4e00-\u9fa5\u3000-\u303f\uff01-\uff5e\u201c-\u201d\u3008-\u3011]+/g;
+
+// 处理单个文件
+function processFile(filePath) {
+    let content = fs.readFileSync(filePath, 'utf-8');
+
+    // 匹配 <template> 和 <script> 标签中的内容
+    const templateRegex = /<template[^>]*>([\s\S]*?)<\/template>/gi;
+    const scriptRegex = /<script[^>]*>([\s\S]*?)<\/script>/gi;
+
+    // 替换 <template> 中的内容
+    content = content.replace(templateRegex, (match, templateContent) => {
+        return match.replace(chineseRegex, (text) => {
+            return replaceText(text, '{{ $t(\'$1\') }}');
+        });
+    });
+
+    // 替换 <script> 中的内容
+    content = content.replace(scriptRegex, (match, scriptContent) => {
+        return match.replace(/(['"])([\u4e00-\u9fa5]+)\1/g, (_, quote, text) => {
+            return replaceText(text, 'this.$t(\'$1\')');
+        });
+    });
+
+    // 写回文件
+    fs.writeFileSync(filePath, content, 'utf-8');
+}
+
+// 替换逻辑
+function replaceText(text, replacementPattern) {
+    // 如果语言文件中不存在该汉字,则生成一个唯一的 key
+    if (!langData[text]) {
+        const key = `text_${Object.keys(langData).length + 1}`;
+        langData[text] = key;
+    }
+
+    // 替换为指定的模式
+    const key = langData[text];
+    return replacementPattern.replace('$1', key);
+}
+
+// 遍历目录
+function traverseDirectory(dir) {
+    const files = fs.readdirSync(dir);
+
+    files.forEach((file) => {
+        const fullPath = path.join(dir, file);
+        const stats = fs.statSync(fullPath);
+
+        if (stats.isDirectory()) {
+            // 忽略指定的文件夹
+            if (!ignoredFiles.includes(file)) {
+                traverseDirectory(fullPath);
+            }
+        } else if (stats.isFile()) {
+            // 只处理 .vue 和 .js 文件
+            if (/\.(vue|js)$/.test(file)) {
+                processFile(fullPath);
+            }
+        }
+    });
+}
+
+// 主函数
+function main() {
+    console.log('开始转换汉字为国际化格式...');
+
+    // 遍历项目目录
+    traverseDirectory(projectDir);
+
+    // 更新语言文件
+    fs.writeFileSync(langFilePath, JSON.stringify(langData, null, 2), 'utf-8');
+    console.log(`语言文件已更新:${langFilePath}`);
+    console.log('转换完成!');
+}
+
+main();

+ 30 - 1
locale/en.json

@@ -578,5 +578,34 @@
 	"请关联车辆": "Please contact vehicle",
 	"请输入车辆编号": "Enter vehicle number",
 	"修改成功":"修改成功",
-	"请输入8-18位密码,包含字母数字":"请输入8-18位密码,包含字母数字"
+	"租借时长":"租借时长",
+	"请输入8-18位密码,包含字母数字":"请输入8-18位密码,包含字母数字",
+	"取车时间":"取车时间",
+	"时":"时",
+	"分":"分",
+	"取车":"取车",
+	"还车":"还车",
+	"确定":"确定",
+	"逾期金额":"逾期金额",
+	"已选择":"已选择",
+	"时长":"时长",
+	"现车":"现车",
+	"随时可到店提车":"随时可到店提车",
+	"用车方案":"用车方案",
+	"日租":"日租",
+	"月租":"月租",
+	"年租":"年租",
+	"时租":"时租",
+	"分租":"分租",
+	"周租":"周租",
+	"季租":"季租",
+	"购买":"购买",
+	"租车时长":"租车时长",
+	"共":"共",
+	"确认":"确认",
+	"成功":"成功",
+	"我们向":"我们向",
+	"注册邮件,请您登录邮箱点击链接完成注册":"注册邮件,请您登录邮箱点击链接完成注册",
+	"发送了一封密码重置邮件,请您登录邮箱操作处理":"发送了一封密码重置邮件,请您登录邮箱操作处理",
+	"扫一扫":"扫一扫"
 }

+ 1 - 1
locale/index.js

@@ -4,7 +4,7 @@ import Vue from 'vue';
 import VueI18n from 'vue-i18n'
 Vue.use(VueI18n);
 let i18nConfig = {
-	locale: "zh",
+	locale: "en",
 	messages: {
 		en,
 		zh

+ 33 - 3
locale/zh.json

@@ -1,5 +1,6 @@
 {
 	"设备":"设备",
+	"租赁设备":"租赁设备",
 	"续航":"续航",
 	"车辆已关机":"车辆已关机",
 	"更新于":"更新于",
@@ -54,7 +55,7 @@
 	"重置密码邮件已发送":"重置密码邮件已发送",
 	"我知道了":"我知道了",
 	"请输入有效的邮箱地址":"请输入有效的邮箱地址",
-	"欢迎来到FRANCO MORINI":"欢迎来到FRANCO MORINI",
+	"欢迎来到智寻出行":"欢迎来到智寻出行",
 	"请输入邮箱账号":"请输入邮箱账号",
 	"请输入密码":"请输入密码",
 	"已阅读并同意":"已阅读并同意",
@@ -89,5 +90,34 @@
 	"注册邮件发送成功":"注册邮件发送成功",
 	"蓝牙配对成功":"蓝牙配对成功",
 	"请输入8-18位密码,包含字母数字":"请输入8-18位密码,包含字母数字",
-	"车辆已开机":"车辆已开机"
-}
+	"车辆已开机":"车辆已开机",
+	"租借时长":"租借时长",
+	"取车时间":"取车时间",
+	"时":"时",
+	"分":"分",
+	"取车":"取车",
+	"还车":"还车",
+	"确定":"确定",
+	"逾期金额":"逾期金额",
+	"已选择":"已选择",
+	"时长":"时长",
+	"现车":"现车",
+	"随时可到店提车":"随时可到店提车",
+	"用车方案":"用车方案",
+	"日租":"日租",
+	"月租":"月租",
+	"年租":"年租",
+	"时租":"时租",
+	"分租":"分租",
+	"周租":"周租",
+	"季租":"季租",
+	"购买":"购买",
+	"租车时长":"租车时长",
+	"共":"共",
+	"确认":"确认",
+	"成功":"成功",
+	"我们向":"我们向",
+	"注册邮件,请您登录邮箱点击链接完成注册":"注册邮件,请您登录邮箱点击链接完成注册",
+	"发送了一封密码重置邮件,请您登录邮箱操作处理":"发送了一封密码重置邮件,请您登录邮箱操作处理",
+	"扫一扫":"扫一扫"
+}