From f09e34a02f549c9591f40ae59734042a395ebc19 Mon Sep 17 00:00:00 2001 From: Eric Date: Thu, 4 Jun 2020 15:33:45 +0800 Subject: [PATCH] add terminal en cn --- src/i18n/langs/cn.json | 4 +++- src/i18n/langs/en.json | 4 ++-- src/views/settings/Terminal.vue | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/i18n/langs/cn.json b/src/i18n/langs/cn.json index 3980f6507..f66695df2 100644 --- a/src/i18n/langs/cn.json +++ b/src/i18n/langs/cn.json @@ -622,7 +622,9 @@ "consult": "咨询", "ImportLicense": "导入许可证", "AssetCount": "资产数量", - "ImportLicenseTip": "请导入许可证" + "ImportLicenseTip": "请导入许可证", + "all": "全部", + "auto": "自动" }, "settings": { "setting": "" diff --git a/src/i18n/langs/en.json b/src/i18n/langs/en.json index 8d7294e64..ef71c1ab6 100644 --- a/src/i18n/langs/en.json +++ b/src/i18n/langs/en.json @@ -615,8 +615,8 @@ "AssetCount": "Asset count", "ImportLicenseTip": "Please Import License", "ApiKeyList": "Api key list", - "DateCreated": "", - "Create": "" + "all": "All", + "auto": "Auto" }, "settings": { "setting": "" diff --git a/src/views/settings/Terminal.vue b/src/views/settings/Terminal.vue index ba971cb0f..a81fd68ba 100644 --- a/src/views/settings/Terminal.vue +++ b/src/views/settings/Terminal.vue @@ -71,8 +71,8 @@ export default { label: this.$t('setting.terminalAssetListPageSize'), type: 'select', options: [ - { label: 'All', value: 'all' }, - { label: 'Auto', value: 'auto' }, + { label: this.$t('setting.all'), value: 'all' }, + { label: this.$t('setting.auto'), value: 'auto' }, { label: '10', value: '10' }, { label: '15', value: '15' }, { label: '25', value: '25' },