mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-03 22:57:24 +00:00
04d456a60e
* Localization: Localized Gacha Machine Names * Update src/locales/zh_TW/egg.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * Update src/locales/zh_TW/egg.ts Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update src/locales/de/egg.ts Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> * Update src/locales/fr/egg.ts Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> * Update src/locales/ko/egg.ts Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> * Update src/locales/zh_TW/egg.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * Update src/locales/zh_CN/egg.ts Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> * Update src/locales/es/egg.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> * Update Brazilian Portuguese translation for egg.ts * added smaller text size option * update egg.ts translations for German and Brazilian Portuguese * some updates * update egg.ts translations for Spanish and Brazilian Portuguese * Update EggGachaUiHandler to use array.includes for language check * update German translation for legendary egg gatcha * Update src/locales/es/egg.ts Co-authored-by: InnocentGameDev <asdargmng@gmail.com> * update translations for egg.ts in Spanish and Brazilian Portuguese --------- Co-authored-by: Yonmaru40 <47717431+40chyan@users.noreply.github.com> Co-authored-by: Enoch <enoch.jwsong@gmail.com> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: Lugiad' <adrien.grivel@hotmail.fr> Co-authored-by: sodam <66295123+sodaMelon@users.noreply.github.com> Co-authored-by: InnocentGameDev <asdargmng@gmail.com>
29 lines
1.3 KiB
TypeScript
29 lines
1.3 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const egg: SimpleTranslationEntries = {
|
|
"egg": "Huevo",
|
|
"greatTier": "Raro",
|
|
"ultraTier": "Épico",
|
|
"masterTier": "Legendario",
|
|
"defaultTier": "Común",
|
|
"hatchWavesMessageSoon": "Se escuchan sonidos. ¡Pronto saldrá!",
|
|
"hatchWavesMessageClose": "A veces se mueve. Debe estar a punto de salir.",
|
|
"hatchWavesMessageNotClose": "¿Qué habrá dentro? Tendrás que esperar un poco más.",
|
|
"hatchWavesMessageLongTime": "Parece que a este huevo le va a costar mucho abrirse.",
|
|
"gachaTypeLegendary": "Mayor tasa de Legendario",
|
|
"gachaTypeMove": "Mayor tasa de Movimiento Huevo Raro",
|
|
"gachaTypeShiny": "Mayor tasa de Shiny",
|
|
"selectMachine": "Seleccione una máquina.",
|
|
"notEnoughVouchers": "¡No tienes suficientes vales!",
|
|
"tooManyEggs": "¡No tienes suficiente espacio!",
|
|
"pull": "Tirada",
|
|
"pulls": "Tiradas",
|
|
"sameSpeciesEgg": "{{species}} will hatch from this egg!",
|
|
"hatchFromTheEgg": "¡Ha salido un {{pokemonName}} del Huevo!",
|
|
"eggMoveUnlock": "Mov. Huevo desbloqueado:\n{{moveName}}",
|
|
"rareEggMoveUnlock": "Mov. Huevo Raro desbloqueado:\n{{moveName}}",
|
|
"moveUPGacha": "¡Más Mov.\nHuevo Raro!",
|
|
"shinyUPGacha": "¡Más Shiny!",
|
|
"legendaryUPGacha": ", ¡mayor\nprob.!",
|
|
} as const;
|