mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-02 03:36:16 +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.4 KiB
TypeScript
29 lines
1.4 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const egg: SimpleTranslationEntries = {
|
|
"egg": "Ei",
|
|
"greatTier": "Selten",
|
|
"ultraTier": "Episch",
|
|
"masterTier": "Legendär",
|
|
"defaultTier": "Gewöhnlich",
|
|
"hatchWavesMessageSoon": "Man kann schon etwas hören! Es wird wohl bald schlüpfen!",
|
|
"hatchWavesMessageClose": "Manchmal bewegt es sich! Es braucht wohl noch ein Weilchen.",
|
|
"hatchWavesMessageNotClose": "Was wird da wohl schlüpfen? Es wird sicher noch lange dauern.",
|
|
"hatchWavesMessageLongTime": "Dieses Ei braucht sicher noch sehr viel Zeit.",
|
|
"gachaTypeLegendary": "Erhöhte Chance auf legendäre Eier.",
|
|
"gachaTypeMove": "Erhöhte Chance auf Eier mit seltenen Attacken.",
|
|
"gachaTypeShiny": "Erhöhte Chance auf schillernde Eier.",
|
|
"selectMachine": "Wähle eine Maschine.",
|
|
"notEnoughVouchers": "Du hast nicht genug Ei-Gutscheine!",
|
|
"tooManyEggs": "Du hast schon zu viele Eier!",
|
|
"pull": "Pull",
|
|
"pulls": "Pulls",
|
|
"sameSpeciesEgg": "{{species}} wird aus dem Ei schlüpfen!",
|
|
"hatchFromTheEgg": "Ein {{pokemonName}} ist aus dem Ei geschlüpft!",
|
|
"eggMoveUnlock": "Ei-Attacke freigeschaltet: {{moveName}}",
|
|
"rareEggMoveUnlock": "Seltene Ei-Attacke freigeschaltet: {{moveName}}",
|
|
"moveUPGacha": "Mehr\nEi-Attacken!",
|
|
"shinyUPGacha": "Mehr\nSchillernde!",
|
|
"legendaryUPGacha": "erscheint\nöfter!",
|
|
} as const;
|