mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-11-14 23:31:26 +01:00
* egg and starter formatting * localization update * localization update * fix local voucher test * pr comments * pr comments * account for new font
45 lines
1.3 KiB
TypeScript
45 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":"Begin with these Pokémon?",
|
|
"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",
|
|
"start": "Start",
|
|
"addToParty": "Add to Party",
|
|
"toggleIVs": "Toggle IVs",
|
|
"manageMoves": "Manage Moves",
|
|
"useCandies": "Use Candies",
|
|
"selectMoveSwapOut": "Select a move to swap out.",
|
|
"selectMoveSwapWith": "Select a move to swap with",
|
|
"unlockPassive": "Unlock Passive",
|
|
"reduceCost": "Reduce Cost",
|
|
"cycleShiny": ": Shiny",
|
|
"cycleForm": ": Form",
|
|
"cycleGender": ": Gender",
|
|
"cycleAbility": ": Ability",
|
|
"cycleNature": ": Nature",
|
|
"cycleVariant": ": Variant",
|
|
"enablePassive": "Enable Passive",
|
|
"disablePassive": "Disable Passive",
|
|
"locked": "Locked",
|
|
"disabled": "Disabled",
|
|
"uncaught": "Uncaught"
|
|
};
|