mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-25 02:11:05 +00:00
3d9b134332
* Update Challenge UI * Update interpolation and localization * Update src/locales/de/challenges.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/de/challenges.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> --------- Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com>
27 lines
916 B
TypeScript
27 lines
916 B
TypeScript
import { TranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const challenges: TranslationEntries = {
|
|
"title": "챌린지 조건 설정",
|
|
"illegalEvolution": "{{pokemon}} changed into an ineligble pokémon\nfor this challenge!",
|
|
"singleGeneration": {
|
|
"name": "단일 세대",
|
|
"desc": "{{gen}}의 포켓몬만 사용할 수 있습니다.",
|
|
"desc_default": "선택한 세대의 포켓몬만 사용할 수 있습니다.",
|
|
"gen_1": "1세대",
|
|
"gen_2": "2세대",
|
|
"gen_3": "3세대",
|
|
"gen_4": "4세대",
|
|
"gen_5": "5세대",
|
|
"gen_6": "6세대",
|
|
"gen_7": "7세대",
|
|
"gen_8": "8세대",
|
|
"gen_9": "9세대",
|
|
},
|
|
"singleType": {
|
|
"name": "단일 타입",
|
|
"desc": "{{type}} 타입의 포켓몬만 사용할 수 있습니다.",
|
|
"desc_default": "선택한 타입의 포켓몬만 사용할 수 있습니다."
|
|
//type in pokemon-info
|
|
},
|
|
} as const;
|