32 lines
1.3 KiB
TypeScript
32 lines
1.3 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
/**
|
|
* The menu namespace holds most miscellaneous text that isn't directly part of the game's
|
|
* contents or directly related to Pokemon data. This includes menu navigation, settings,
|
|
* account interactions, descriptive text, etc.
|
|
*/
|
|
export const starterSelectUiHandler: SimpleTranslationEntries = {
|
|
"confirmStartTeam":"이 포켓몬들로 시작하시겠습니까?",
|
|
"growthRate": "성장 속도",
|
|
"ability": "특성:",
|
|
"passive": "패시브:",
|
|
"nature": "성격:",
|
|
"eggMoves": "알 기술",
|
|
"start": "시작",
|
|
"addToParty": "파티에 추가",
|
|
"toggleIVs": "개체값 토글",
|
|
"manageMoves": "기술 관리",
|
|
"useCandies": "사탕 사용",
|
|
"selectMoveSwapOut": "교체할 기술을 선택해주세요.",
|
|
"selectMoveSwapWith": "교체될 기술을 선택해주세요. 대상:",
|
|
"unlockPassive": "패시브 해금",
|
|
"reduceCost": "코스트 줄이기",
|
|
"cycleShiny": "R: 색이 다른 포켓몬 전환",
|
|
"cycleForm": 'F: 폼 전환',
|
|
"cycleGender": 'G: 암수 전환',
|
|
"cycleAbility": 'E: 특성 전환',
|
|
"cycleNature": 'N: 성격 전환',
|
|
"cycleVariant": 'V: 형태 전환',
|
|
"enablePassive": "패시브 활성화",
|
|
"disablePassive": "패시브 비활성화"
|
|
} |