mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-11-28 05:58:22 +01:00
* [JA] [Localization] Translate starter-select-ui-handler.ts Unsure about "Enable/Disbale Passive", need some advice. * Update starter-select-ui-handler.ts
52 lines
1.9 KiB
TypeScript
52 lines
1.9 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
/**
|
|
* 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": "この条件で チャレンジを 始めますか?",
|
|
"confirmExit": "終了しますか?",
|
|
"invalidParty": "手持ちは チャレンジの 条件で 認められない!",
|
|
"gen1": "1世代",
|
|
"gen2": "2世代",
|
|
"gen3": "3世代",
|
|
"gen4": "4世代",
|
|
"gen5": "5世代",
|
|
"gen6": "6世代",
|
|
"gen7": "7世代",
|
|
"gen8": "8世代",
|
|
"gen9": "9世代",
|
|
"growthRate": "経験値タイプ:",
|
|
"ability": "特性:",
|
|
"passive": "パッシブ:",
|
|
"nature": "性格:",
|
|
"eggMoves": "タマゴ技",
|
|
"start": "始める",
|
|
"addToParty": "手持ちに入れる",
|
|
"toggleIVs": "個体値を表示",
|
|
"manageMoves": "技を並び替える",
|
|
"manageNature": "性格を変える",
|
|
"addToFavorites": "お気に入りにする",
|
|
"removeFromFavorites": "お気に入りから除く",
|
|
"useCandies": "飴を使う",
|
|
"selectNature": "性格を選んでください。",
|
|
"selectMoveSwapOut": "入れ替えたい技を選んでください。",
|
|
"selectMoveSwapWith": "他の技と交換してください。",
|
|
"unlockPassive": "パッシブを開放",
|
|
"reduceCost": "ポイントを減らす",
|
|
"sameSpeciesEgg": "タマゴを買う",
|
|
"cycleShiny": ": 色違い変更",
|
|
"cycleForm": ": フォルム変更",
|
|
"cycleGender": ": 性別変更",
|
|
"cycleAbility": ": 特性変更",
|
|
"cycleNature": ": 性格変更",
|
|
"cycleVariant": ": 色変更",
|
|
"enablePassive": "パッシブ - オン",
|
|
"disablePassive": "パッシブ - オフ",
|
|
"locked": "開放されていない",
|
|
"disabled": "無効",
|
|
"uncaught": "捕まっていない"
|
|
};
|