2024-05-06 17:02:45 +01:00
|
|
|
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 = {
|
2024-05-23 16:03:10 +01:00
|
|
|
"confirmStartTeam":"Vuoi iniziare con questi Pokémon?",
|
2024-06-16 02:51:34 +01:00
|
|
|
"gen1": "1ª",
|
|
|
|
"gen2": "2ª",
|
|
|
|
"gen3": "3ª",
|
|
|
|
"gen4": "4ª",
|
|
|
|
"gen5": "5ª",
|
|
|
|
"gen6": "6ª",
|
|
|
|
"gen7": "7ª",
|
|
|
|
"gen8": "8ª",
|
|
|
|
"gen9": "9ª",
|
2024-05-23 16:03:10 +01:00
|
|
|
"growthRate": "Vel. Crescita:",
|
|
|
|
"ability": "Abilità:",
|
|
|
|
"passive": "Passiva:",
|
|
|
|
"nature": "Natura:",
|
2024-06-16 02:51:34 +01:00
|
|
|
"eggMoves": "Mosse da uova",
|
2024-05-23 16:03:10 +01:00
|
|
|
"start": "Inizia",
|
2024-06-16 02:51:34 +01:00
|
|
|
"addToParty": "Aggiungi al gruppo",
|
2024-05-23 16:03:10 +01:00
|
|
|
"toggleIVs": "Vedi/Nascondi IV",
|
2024-06-16 02:51:34 +01:00
|
|
|
"manageMoves": "Gestisci mosse",
|
2024-06-17 05:49:29 +01:00
|
|
|
"manageNature": "Gestisci natura",
|
2024-06-16 02:51:34 +01:00
|
|
|
"useCandies": "Usa caramelle",
|
2024-06-17 05:49:29 +01:00
|
|
|
"selectNature": "Seleziona natura.",
|
2024-05-23 16:03:10 +01:00
|
|
|
"selectMoveSwapOut": "Seleziona una mossa da scambiare.",
|
|
|
|
"selectMoveSwapWith": "Seleziona una mossa da scambiare con",
|
2024-06-16 02:51:34 +01:00
|
|
|
"unlockPassive": "Sblocca passiva",
|
|
|
|
"reduceCost": "Riduci costo",
|
2024-06-11 02:58:01 +01:00
|
|
|
"cycleShiny": ": Shiny",
|
|
|
|
"cycleForm": ": Forma",
|
2024-06-16 02:51:34 +01:00
|
|
|
"cycleGender": ": Genere",
|
2024-06-11 02:58:01 +01:00
|
|
|
"cycleAbility": ": Abilità",
|
|
|
|
"cycleNature": ": Natura",
|
|
|
|
"cycleVariant": ": Variante",
|
2024-06-16 02:51:34 +01:00
|
|
|
"enablePassive": "Attiva passiva",
|
|
|
|
"disablePassive": "Disattiva passiva",
|
2024-05-23 16:03:10 +01:00
|
|
|
"locked": "Bloccato",
|
|
|
|
"disabled": "Disabilitato",
|
2024-06-16 02:51:34 +01:00
|
|
|
"uncaught": "Non catturato"
|
2024-05-23 16:03:10 +01:00
|
|
|
};
|