From d6517b77825846083d7abbb56f291a48ca576b1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A5=9E=E4=BB=A3=E7=B6=BA=E5=87=9B?= Date: Wed, 2 Oct 2024 12:27:37 +0800 Subject: [PATCH] i18n: use official name --- src/locales/cn/hr.json | 2 +- src/locales/jp/hr.json | 2 +- src/locales/kr/hr.json | 2 +- src/locales/tw/hr.json | 2 +- src/locales/us/hr.json | 2 +- src/views/Hr.vue | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/locales/cn/hr.json b/src/locales/cn/hr.json index b242ab5f..4c563cf6 100644 --- a/src/locales/cn/hr.json +++ b/src/locales/cn/hr.json @@ -7,7 +7,7 @@ "showGuarantees": "查看保底词条组合" }, "tagType": { - "credentials": "资质", + "qualification": "资历", "locations": "位置", "professions": "职业", "abilities": "能力" diff --git a/src/locales/jp/hr.json b/src/locales/jp/hr.json index 6e9a02fb..fb7a854e 100644 --- a/src/locales/jp/hr.json +++ b/src/locales/jp/hr.json @@ -7,7 +7,7 @@ "showGuarantees": "4★以上確定タグの組み合わせを表示する" }, "tagType": { - "credentials": "素質", + "qualification": "資格", "locations": "位置", "professions": "職業", "abilities": "能力" diff --git a/src/locales/kr/hr.json b/src/locales/kr/hr.json index eeb8ce57..d375dab4 100644 --- a/src/locales/kr/hr.json +++ b/src/locales/kr/hr.json @@ -7,7 +7,7 @@ "showGuarantees": "4★ 이상의 모든 조합 표시" }, "tagType": { - "credentials": "자격", + "qualification": "자격", "locations": "배치", "professions": "직업", "abilities": "특성" diff --git a/src/locales/tw/hr.json b/src/locales/tw/hr.json index b15cab69..b15b1d58 100644 --- a/src/locales/tw/hr.json +++ b/src/locales/tw/hr.json @@ -7,7 +7,7 @@ "showGuarantees": "檢視保底詞條組合" }, "tagType": { - "credentials": "資質", + "qualification": "資歷", "locations": "位置", "professions": "職業", "abilities": "能力" diff --git a/src/locales/us/hr.json b/src/locales/us/hr.json index eee95a85..c6be5b6c 100644 --- a/src/locales/us/hr.json +++ b/src/locales/us/hr.json @@ -7,7 +7,7 @@ "showGuarantees": "Show all combinations with 4★ or higher" }, "tagType": { - "credentials": "Credential", + "qualification": "Qualification", "locations": "Location", "professions": "Profession", "abilities": "Abilities" diff --git a/src/views/Hr.vue b/src/views/Hr.vue index 78864159..9f53d248 100644 --- a/src/views/Hr.vue +++ b/src/views/Hr.vue @@ -394,7 +394,7 @@ const tagListInit = { professions: Array(8) .fill(null) .map((v, i) => i + 1), - sort: ['credentials', 'professions', 'locations', 'abilities'], + sort: ['qualification', 'professions', 'locations', 'abilities'], }; export default defineComponent({ @@ -567,7 +567,7 @@ export default defineComponent({ const tag = this.enumTagZh; return { locations: [tag.近战位, tag.远程位], - credentials: [tag.高级资深干员, tag.资深干员, tag.新手, tag.支援机械], + qualification: [tag.高级资深干员, tag.资深干员, tag.新手, tag.支援机械], abilities: this.tagData.abilities, ...tagListInit, };