Browse Source

no message

linwenxin 8 months ago
parent
commit
fff679111c
2 changed files with 7 additions and 1 deletions
  1. 1 1
      src/global-text-processor.js
  2. 6 0
      src/layout/components/Navbar.vue

+ 1 - 1
src/global-text-processor.js

@@ -203,7 +203,7 @@ export const GlobalTextProcessor = {
 
 export function translaBeforeRegistration(cb) {
   window.Vue_Translation_Of_Text_Type = window.localStorage.getItem('Vue_Translation_Of_Text_Type')
-  if (window?.Vue_Translation_Of_Text_Type && ['en', 'ar'].includes(window?.Vue_Translation_Of_Text_Type)) {
+  if (window?.Vue_Translation_Of_Text_Type && ['en', 'ar', 'ru', 'ja'].includes(window?.Vue_Translation_Of_Text_Type)) {
     Vue.use(GlobalTextProcessor) // 注册插件
     axios
       .post(WindowsTranslateApi + '/api/v1/common/readTranslationOfText', {

+ 6 - 0
src/layout/components/Navbar.vue

@@ -63,9 +63,15 @@
             <el-dropdown-item divided @click.native="$setLanguage('zh')">
               <span style="display: block">中文</span>
             </el-dropdown-item>
+            <el-dropdown-item divided @click.native="$setLanguage('ru')">
+              <span style="display: block">俄文</span>
+            </el-dropdown-item>
             <el-dropdown-item divided @click.native="$setLanguage('en')">
               <span style="display: block">英文</span>
             </el-dropdown-item>
+            <el-dropdown-item divided @click.native="$setLanguage('ja')">
+              <span style="display: block">日文</span>
+            </el-dropdown-item>
             <el-dropdown-item divided @click.native="$setLanguage('ar')">
               <span style="display: block">阿拉伯文</span>
             </el-dropdown-item>