mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-04 07:07:17 +00:00
b54a255c15
* update goFilter shortcut * fix filter instruction position * remove unnecessary new lines * update requested changes. add other language entries too * remove unnecessary case code * open dropdown when pressing goFilter shortcut * add missing entry for `fr` * Update src/locales/fr/starter-select-ui-handler.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> * Update src/locales/de/starter-select-ui-handler.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * update instruction container position and text offset for more longer instruction label. decrease size of fr instruction font * fixed de info font size * Update src/locales/pt_BR/starter-select-ui-handler.ts Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br> * Update src/locales/ko/starter-select-ui-handler.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update src/locales/zh_TW/starter-select-ui-handler.ts Co-authored-by: mercurius-00 <80205689+mercurius-00@users.noreply.github.com> * Update src/locales/zh_CN/starter-select-ui-handler.ts Co-authored-by: mercurius-00 <80205689+mercurius-00@users.noreply.github.com> * update font size, starterInfoXPos and starterInfoYOffset in zh. update starterInfoXPos in de * Update src/locales/es/starter-select-ui-handler.ts Co-authored-by: Asdar <asdargmng@gmail.com> --------- Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: José Ricardo Fleury Oliveira <josefleury@discente.ufg.br> Co-authored-by: Enoch <enoch.jwsong@gmail.com> Co-authored-by: mercurius-00 <80205689+mercurius-00@users.noreply.github.com> Co-authored-by: Asdar <asdargmng@gmail.com>
51 lines
1.6 KiB
TypeScript
51 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",
|
|
"goFilter": ": Ir a filtros",
|
|
"enablePassive": "Activar Pasiva",
|
|
"disablePassive": "Desactivar Pasiva",
|
|
"locked": "Bloqueado",
|
|
"disabled": "No disponible",
|
|
"uncaught": "No capturado"
|
|
};
|