From ff24ab3d6ee46052e4154d91ee753a57699e04e9 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Fri, 21 May 2021 10:22:08 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20license=20=E6=9B=B4=E6=96=B0=E6=8F=90?= =?UTF-8?q?=E7=A4=BA=E5=9C=8B=E9=9A=9B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/lang/en.js | 3 ++- frontend/src/lang/tw.js | 3 ++- frontend/src/lang/zh.js | 3 ++- frontend/src/views/system/about/index.vue | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/frontend/src/lang/en.js b/frontend/src/lang/en.js index e11fae5de8..79e36a2519 100644 --- a/frontend/src/lang/en.js +++ b/frontend/src/lang/en.js @@ -943,6 +943,7 @@ export default { version_num: 'Version number', standard: 'Standard', enterprise: 'Enterprise', - suport: 'Get technical support' + suport: 'Get technical support', + update_success: 'Update Success' } } diff --git a/frontend/src/lang/tw.js b/frontend/src/lang/tw.js index 54cde526c4..791c4ae3e8 100644 --- a/frontend/src/lang/tw.js +++ b/frontend/src/lang/tw.js @@ -942,6 +942,7 @@ export default { version_num: '版本號', standard: '標準版', enterprise: '企業版', - suport: '獲取技術支持' + suport: '獲取技術支持', + update_success: '更新成功' } } diff --git a/frontend/src/lang/zh.js b/frontend/src/lang/zh.js index 6e43c72bce..023d6fa2ff 100644 --- a/frontend/src/lang/zh.js +++ b/frontend/src/lang/zh.js @@ -944,6 +944,7 @@ export default { version_num: '版本号', standard: '标准版', enterprise: '企业版', - suport: '获取技术支持' + suport: '获取技术支持', + update_success: '更新成功' } } diff --git a/frontend/src/views/system/about/index.vue b/frontend/src/views/system/about/index.vue index 836a2c6e33..fe8d02ef42 100644 --- a/frontend/src/views/system/about/index.vue +++ b/frontend/src/views/system/about/index.vue @@ -138,7 +138,7 @@ export default { const param = { license: this.licenseKey } updateInfo(param).then(response => { if (response.data.status === 'valid') { - this.$success(this.$t('i18n_mc_update_success')) + this.$success(this.$t('about.update_success')) this.license = this.getLicense(response.data) } else { this.$warning(response.data.message)