diff --git a/backend/src/main/resources/i18n/messages_en_US.properties b/backend/src/main/resources/i18n/messages_en_US.properties
index bff38df6ca..83076a4f3c 100644
--- a/backend/src/main/resources/i18n/messages_en_US.properties
+++ b/backend/src/main/resources/i18n/messages_en_US.properties
@@ -198,30 +198,30 @@ authsource_configuration_is_null=Authentication source configuration cannot be e
删除菜单=Delete Menu
删除角色=Delete Role
删除连接=Delete Connection
-参数管理=Parameter Management
+参数管理=Parameter
数据源=Data Source
数据源表单=Data source form
数据集=Data Set
-权限管理=Authority Management
+权限管理=Authority
校验连接=Verify Connection
-模板管理=Template Management
-用户管理=User Management
+模板管理=Template
+用户管理=User
用户表单=User Form
-系统管理=System management
-组织管理=Organization management
+系统管理=System
+组织管理=Organization
组织表单=Organization Form
编辑用户=Edit User
编辑组织=Edit Organization
编辑菜单=Edit Menu
编辑角色=Edit Role
编辑连接=Edit Connection
-菜单管理=Menu management
+菜单管理=Menu
菜单表单=Menu Form
视图=View
-角色管理=Role management
+角色管理=Role
角色表单=Role Form
重置密码=Reset Password
-
+关于=About Us
i18n_auth_view=View
i18n_auth_use=Use
i18n_auth_export=Export
diff --git a/backend/src/main/resources/i18n/messages_zh_CN.properties b/backend/src/main/resources/i18n/messages_zh_CN.properties
index da226999a2..86a6411db6 100644
--- a/backend/src/main/resources/i18n/messages_zh_CN.properties
+++ b/backend/src/main/resources/i18n/messages_zh_CN.properties
@@ -222,7 +222,7 @@ authsource_configuration_is_null=认证源配置不能为空
角色管理=角色管理
角色表单=角色表单
重置密码=重置密码
-
+关于=关于
i18n_auth_view=查看
i18n_auth_use=使用
i18n_auth_export=导出
diff --git a/backend/src/main/resources/i18n/messages_zh_TW.properties b/backend/src/main/resources/i18n/messages_zh_TW.properties
index e5764aa65a..6fd799065e 100644
--- a/backend/src/main/resources/i18n/messages_zh_TW.properties
+++ b/backend/src/main/resources/i18n/messages_zh_TW.properties
@@ -222,7 +222,7 @@ authsource_configuration_is_null=認證源配置不能為空
角色管理=角色管理
角色表单=角色表單
重置密码=重置密碼
-
+关于=關於
i18n_auth_view=查看
i18n_auth_use=使用
i18n_auth_export=導出
diff --git a/frontend/src/lang/en.js b/frontend/src/lang/en.js
index 2a67bf6c00..a4a16f3188 100644
--- a/frontend/src/lang/en.js
+++ b/frontend/src/lang/en.js
@@ -916,5 +916,18 @@ export default {
use: 'Use',
export: 'Export',
manage: 'Manage'
+ },
+ about: {
+ auth_to: 'Authorized to',
+ invalid_license: 'Invalid License',
+ update_license: 'Update License',
+ expiration_time: 'Expiration Time',
+ expirationed: '(Expired)',
+ auth_num: 'Authorized quantity',
+ version: 'Version',
+ version_num: 'Version number',
+ standard: 'Standard',
+ enterprise: 'Enterprise',
+ suport: 'Get technical support'
}
}
diff --git a/frontend/src/lang/tw.js b/frontend/src/lang/tw.js
index a58a0d3462..8fff6d763c 100644
--- a/frontend/src/lang/tw.js
+++ b/frontend/src/lang/tw.js
@@ -916,5 +916,18 @@ export default {
use: '使用',
export: '導出',
manage: '管理'
+ },
+ about: {
+ auth_to: '授權給',
+ invalid_license: 'License 無效',
+ update_license: '更新 License',
+ expiration_time: '過期時間',
+ expirationed: '(已過期)',
+ auth_num: '授權數量',
+ version: '版本',
+ version_num: '版本號',
+ standard: '標準版',
+ enterprise: '企業版',
+ suport: '獲取技術支持'
}
}
diff --git a/frontend/src/lang/zh.js b/frontend/src/lang/zh.js
index f357cb315d..836d872b33 100644
--- a/frontend/src/lang/zh.js
+++ b/frontend/src/lang/zh.js
@@ -918,5 +918,18 @@ export default {
use: '使用',
export: '导出',
manage: '管理'
+ },
+ about: {
+ auth_to: '授权给',
+ invalid_license: 'License 无效',
+ update_license: '更新 License',
+ expiration_time: '过期时间',
+ expirationed: '(已过期)',
+ auth_num: '授权数量',
+ version: '版本',
+ version_num: '版本号',
+ standard: '标准版',
+ enterprise: '企业版',
+ suport: '获取技术支持'
}
}
diff --git a/frontend/src/views/system/about/index.vue b/frontend/src/views/system/about/index.vue
index 17b17080fb..836a2c6e33 100644
--- a/frontend/src/views/system/about/index.vue
+++ b/frontend/src/views/system/about/index.vue
@@ -7,35 +7,35 @@
| 授权给 | +{{ $t('about.auth_to') }} | {{ license.corporation }} |
|---|---|---|
| 过期时间 | +{{ $t('about.expiration_time') }} | - + |
| 授权数量 | +{{ $t('about.auth_num') }} | {{ license.count }} |
| 版本 | +{{ $t('about.version') }} | - 标准版 - 企业版 + {{ $t('about.standard') }} + {{ $t('about.enterprise') }} |
| 版本号 | +{{ $t('about.version_num') }} | {{ build }} | @@ -54,11 +54,11 @@ name="file" :before-upload="beforeUpload" > - 更新 License + {{ $t('about.update_license') }} - 获取技术支持 + {{ $t('about.suport') }}