pokerogue/src/locales/zh_TW/challenges.ts
Lugiad d66d4d1eeb
[Localization] Missing translation placeholders of Fresh Start challenge in some languages (#3383)
* Update achv.ts

* Update challenges.ts

* Update achv.ts

* Update achv.ts

* Update challenges.ts

* Update challenges.ts

* Update achv.ts

* Update challenges.ts

* Update achv.ts

* Update src/locales/de/achv.ts

Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com>

* Update src/locales/pt_BR/challenges.ts

Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br>

* Update achv.ts

* Update challenges.ts

* Update achv.ts

* Update challenges.ts

* Update achv.ts

* Update challenges.ts

* Update achv.ts

* Update challenges.ts

---------

Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com>
Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br>
2024-08-06 13:46:11 -04:00

32 lines
973 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屬性的寶可夢"
},
"freshStart": {
"name": "Fresh Start",
"desc": "You can only use the original starters, and only as if you had just started PokéRogue.",
"value.0": "Off",
"value.1": "On",
}
} as const;