diff --git a/src/i18n/langs/en.json b/src/i18n/langs/en.json index 9a9023d83..4977d16d6 100644 --- a/src/i18n/langs/en.json +++ b/src/i18n/langs/en.json @@ -486,6 +486,7 @@ "ReLoginErr": "Login time has exceeded 5 minutes, please login again" }, "common": { + "Proxy": "Proxy", "PublicKey": "Public key", "PrivateKey": "Private key", "Project": "Project name", @@ -2199,4 +2200,4 @@ "PublishStatus": "Publish status", "NoPublished": "Unpublished" } -} \ No newline at end of file +} diff --git a/src/i18n/langs/ja.json b/src/i18n/langs/ja.json index 696afb72a..4f5e6e441 100644 --- a/src/i18n/langs/ja.json +++ b/src/i18n/langs/ja.json @@ -486,6 +486,7 @@ "ReLoginErr": "ログイン時間が 5 分を超えました。もう一度ログインしてください" }, "common": { + "Proxy": "プロキシ", "PublicKey": "公開鍵です", "PrivateKey": "秘密鍵です", "Project": "プロジェクト名です", @@ -2191,4 +2192,4 @@ "PublishStatus": "投稿ステータス", "NoPublished": "未発表" } -} \ No newline at end of file +} diff --git a/src/i18n/langs/zh.json b/src/i18n/langs/zh.json index 1c67a0d60..64ad8842f 100644 --- a/src/i18n/langs/zh.json +++ b/src/i18n/langs/zh.json @@ -479,6 +479,7 @@ "ReLoginErr": "登录时长已超过 5 分钟,请重新登录" }, "common": { + "Proxy": "代理", "PublicKey": "公钥", "PrivateKey": "私钥", "Project": "项目名", diff --git a/src/views/assets/Asset/AssetCreateUpdate/GPTCreateUpdate.vue b/src/views/assets/Asset/AssetCreateUpdate/GPTCreateUpdate.vue index 5ebeea1a9..01fe2f278 100644 --- a/src/views/assets/Asset/AssetCreateUpdate/GPTCreateUpdate.vue +++ b/src/views/assets/Asset/AssetCreateUpdate/GPTCreateUpdate.vue @@ -12,10 +12,9 @@ export default { return { url: '/api/v1/assets/gpts/', addFields: [ + [this.$t('common.Proxy'), ['proxy'], 1] ] } - }, - mounted() { } }