mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-11 08:07:15 +00:00
111f4362fc
* Added nature selection menu Added a nature selection menu to the starter selection, as you can way too easily skip over the nature you want when cycling. All nature selections are furthermore persistent and stored in the starterData. Those changes are compatible with the current save format, but will increase the size, so, in case the size of the save file can't be increased, further changes will be needed. * Sorted nature selection into sub-menus The nature-selection menu is now, instead of one large list, multiple smaller menus. Those menus will appear once at least one nature of the appropriate kind has been collected. Translations partially required. * Update French starter-select-ui-handler.ts * Added support for updated save structure Adds compatibility with updated save-data structure which supports more persistent starter attributes * more persistent start data Abilities, Variants and Forms are now also saved. * added gender to stored information * fixed typedoc issues * Starter Preferences now stored locally * removed deprecated import (due last merge) * Sub menus removed --------- Co-authored-by: Lugiad <adrien.grivel@hotmail.fr>
47 lines
1.5 KiB
TypeScript
47 lines
1.5 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":"Vuoi iniziare con questi Pokémon?",
|
|
"gen1": "1ª",
|
|
"gen2": "2ª",
|
|
"gen3": "3ª",
|
|
"gen4": "4ª",
|
|
"gen5": "5ª",
|
|
"gen6": "6ª",
|
|
"gen7": "7ª",
|
|
"gen8": "8ª",
|
|
"gen9": "9ª",
|
|
"growthRate": "Vel. Crescita:",
|
|
"ability": "Abilità:",
|
|
"passive": "Passiva:",
|
|
"nature": "Natura:",
|
|
"eggMoves": "Mosse da uova",
|
|
"start": "Inizia",
|
|
"addToParty": "Aggiungi al gruppo",
|
|
"toggleIVs": "Vedi/Nascondi IV",
|
|
"manageMoves": "Gestisci mosse",
|
|
"manageNature": "Gestisci natura",
|
|
"useCandies": "Usa caramelle",
|
|
"selectNature": "Seleziona natura.",
|
|
"selectMoveSwapOut": "Seleziona una mossa da scambiare.",
|
|
"selectMoveSwapWith": "Seleziona una mossa da scambiare con",
|
|
"unlockPassive": "Sblocca passiva",
|
|
"reduceCost": "Riduci costo",
|
|
"cycleShiny": ": Shiny",
|
|
"cycleForm": ": Forma",
|
|
"cycleGender": ": Genere",
|
|
"cycleAbility": ": Abilità",
|
|
"cycleNature": ": Natura",
|
|
"cycleVariant": ": Variante",
|
|
"enablePassive": "Attiva passiva",
|
|
"disablePassive": "Disattiva passiva",
|
|
"locked": "Bloccato",
|
|
"disabled": "Disabilitato",
|
|
"uncaught": "Non catturato"
|
|
};
|