mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-04 00:48:09 +00:00
* Updated spanish translations * Updated tutorial.ts * Updated translations feedback * Update tutorial.ts
22 lines
921 B
TypeScript
22 lines
921 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
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"
|
|
} as const;
|