mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-04 07:07:17 +00:00
d20b7553ef
* add confirmExit popup * add translation entries for `confirmExit` * Update src/ui/starter-select-ui-handler.ts Co-authored-by: Adrian T. <68144167+torranx@users.noreply.github.com> --------- Co-authored-by: Adrian T. <68144167+torranx@users.noreply.github.com>
50 lines
1.6 KiB
TypeScript
50 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": "¿Comenzar con estos Pokémon?",
|
|
"confirmExit": "Do you want to exit?",
|
|
"invalidParty": "¡Este equipo no es válido!",
|
|
"gen1": "I",
|
|
"gen2": "II",
|
|
"gen3": "III",
|
|
"gen4": "IV",
|
|
"gen5": "V",
|
|
"gen6": "VI",
|
|
"gen7": "VII",
|
|
"gen8": "VIII",
|
|
"gen9": "IX",
|
|
"growthRate": "Crecimiento:",
|
|
"ability": "Habilid:",
|
|
"passive": "Pasiva:",
|
|
"nature": "Natur:",
|
|
"eggMoves": "Mov. Huevo",
|
|
"addToParty": "Añadir al Equipo",
|
|
"removeFromParty": "Excluir del Equipo",
|
|
"toggleIVs": "Mostrar IVs",
|
|
"manageMoves": "Cambiar movs.",
|
|
"manageNature": "Cambiar natur.",
|
|
"useCandies": "Usar Caramelos",
|
|
"selectNature": "Elige Natur.",
|
|
"selectMoveSwapOut": "Elige el movimiento que sustituir.",
|
|
"selectMoveSwapWith": "Elige el movimiento que sustituirá a",
|
|
"unlockPassive": "Añadir Pasiva",
|
|
"reduceCost": "Reducir Coste",
|
|
"sameSpeciesEgg": "Buy an Egg",
|
|
"cycleShiny": ": Shiny",
|
|
"cycleForm": ": Forma",
|
|
"cycleGender": ": Género",
|
|
"cycleAbility": ": Habilidad",
|
|
"cycleNature": ": Naturaleza",
|
|
"cycleVariant": ": Variante",
|
|
"enablePassive": "Activar Pasiva",
|
|
"disablePassive": "Desactivar Pasiva",
|
|
"locked": "Bloqueado",
|
|
"disabled": "No disponible",
|
|
"uncaught": "No capturado"
|
|
};
|