mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-03 22:57:24 +00:00
14b3907b11
* add favorite filter. add favorite starter attribute * add error handling for undefined favorite attribute * add placeholders in each locales * add favorite icon from great art team * update favorite icon to code * update korean translation * align icons * initialize the starter preferences if they don't exist * update requested changes
53 lines
1.7 KiB
TypeScript
53 lines
1.7 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.",
|
|
"addToFavorites": "Add to Favorites",
|
|
"removeFromFavorites": "Remove from Favorites",
|
|
"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",
|
|
"goFilter": ": Ir a filtros",
|
|
"enablePassive": "Activar Pasiva",
|
|
"disablePassive": "Desactivar Pasiva",
|
|
"locked": "Bloqueado",
|
|
"disabled": "No disponible",
|
|
"uncaught": "No capturado"
|
|
};
|