pokerogue/src/locales/zh_CN/challenges.ts
Yonmaru40 7d07755718
[Localization] various zh_cn translation fix (7-1) (#2734)
* Update ability-trigger.ts

* Update ability.ts

* Update battle.ts

* Update bgm-name.ts

* Update challenges.ts

* Update dialogue.ts

* Update modifier-type.ts

* Update modifier-type.ts

* Update move.ts

* Update move.ts

* Update pokemon-info.ts

* Update pokemon-info.ts

* Update splash-messages.ts

* Update starter-select-ui-handler.ts

* Update bgm-name.ts

* Update splash-messages.ts

* Update src/locales/zh_CN/battle.ts

级 → Lv.

* Update src/locales/zh_CN/modifier-type.ts

Co-authored-by: RimKnight <rimknight852@gmail.com>

* Update src/locales/zh_CN/modifier-type.ts

Co-authored-by: RimKnight <rimknight852@gmail.com>

* Update splash-messages.ts

---------

Co-authored-by: RimKnight <rimknight852@gmail.com>
2024-07-01 00:13:12 -04:00

26 lines
777 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { TranslationEntries } from "#app/interfaces/locales";
export const challenges: TranslationEntries = {
"title": "适用挑战条件",
"illegalEvolution": "{{pokemon}}变成了\n不符合此挑战条件的宝可梦",
"singleGeneration": {
"name": "单一世代",
"desc": "你只能使用第{{gen}}\n世代的宝可梦",
"desc_default": "你只能使用所选\n世代的宝可梦",
"gen_1": "一",
"gen_2": "二",
"gen_3": "三",
"gen_4": "四",
"gen_5": "五",
"gen_6": "六",
"gen_7": "七",
"gen_8": "八",
"gen_9": "九",
},
"singleType": {
"name": "单属性",
"desc": "你只能使用{{type}}\n属性的宝可梦",
"desc_default": "你只能使用所选\n属性的宝可梦"
},
} as const;