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)