mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-20 16:42:45 +02:00
* 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.2 KiB
TypeScript
29 lines
1.2 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const egg: SimpleTranslationEntries = {
|
|
"egg": "Egg",
|
|
"greatTier": "Rare",
|
|
"ultraTier": "Epic",
|
|
"masterTier": "Legendary",
|
|
"defaultTier": "Common",
|
|
"hatchWavesMessageSoon": "Sounds can be heard coming from inside! It will hatch soon!",
|
|
"hatchWavesMessageClose": "It appears to move occasionally. It may be close to hatching.",
|
|
"hatchWavesMessageNotClose": "What will hatch from this? It doesn't seem close to hatching.",
|
|
"hatchWavesMessageLongTime": "It looks like this Egg will take a long time to hatch.",
|
|
"gachaTypeLegendary": "Legendary Rate Up",
|
|
"gachaTypeMove": "Rare Egg Move Rate Up",
|
|
"gachaTypeShiny": "Shiny Rate Up",
|
|
"selectMachine": "Select a machine.",
|
|
"notEnoughVouchers": "You don't have enough vouchers!",
|
|
"tooManyEggs": "You have too many eggs!",
|
|
"pull": "Pull",
|
|
"pulls": "Pulls",
|
|
"sameSpeciesEgg": "{{species}} will hatch from this egg!",
|
|
"hatchFromTheEgg": "{{pokemonName}} hatched from the egg!",
|
|
"eggMoveUnlock": "Egg Move unlocked: {{moveName}}",
|
|
"rareEggMoveUnlock": "Rare Egg Move unlocked: {{moveName}}",
|
|
"moveUPGacha": "Move UP!",
|
|
"shinyUPGacha": "Shiny UP!",
|
|
"legendaryUPGacha": "UP!",
|
|
} as const;
|