52 lines
1.6 KiB
TypeScript
52 lines
1.6 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": "Begin with these Pokémon?",
|
|
"confirmExit": "Do you want to exit?",
|
|
"invalidParty": "This is not a valid starting party!",
|
|
"gen1": "I",
|
|
"gen2": "II",
|
|
"gen3": "III",
|
|
"gen4": "IV",
|
|
"gen5": "V",
|
|
"gen6": "VI",
|
|
"gen7": "VII",
|
|
"gen8": "VIII",
|
|
"gen9": "IX",
|
|
"growthRate": "Growth Rate:",
|
|
"ability": "Ability:",
|
|
"passive": "Passive:",
|
|
"nature": "Nature:",
|
|
"eggMoves": "Egg Moves",
|
|
"addToParty": "Add to Party",
|
|
"removeFromParty": "Remove from Party",
|
|
"toggleIVs": "Toggle IVs",
|
|
"manageMoves": "Manage Moves",
|
|
"manageNature": "Manage Nature",
|
|
"addToFavorites": "Add to Favorites",
|
|
"removeFromFavorites": "Remove from Favorites",
|
|
"useCandies": "Use Candies",
|
|
"selectNature": "Select nature.",
|
|
"selectMoveSwapOut": "Select a move to swap out.",
|
|
"selectMoveSwapWith": "Select a move to swap with",
|
|
"unlockPassive": "Unlock Passive",
|
|
"reduceCost": "Reduce Cost",
|
|
"sameSpeciesEgg": "Buy an Egg",
|
|
"cycleShiny": ": Shiny",
|
|
"cycleForm": ": Form",
|
|
"cycleGender": ": Gender",
|
|
"cycleAbility": ": Ability",
|
|
"cycleNature": ": Nature",
|
|
"cycleVariant": ": Variant",
|
|
"enablePassive": "Enable Passive",
|
|
"disablePassive": "Disable Passive",
|
|
"locked": "Locked",
|
|
"disabled": "Disabled",
|
|
"uncaught": "Uncaught"
|
|
};
|