mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-06 09:58:10 +00:00
* Fix locales punctuations In: en, es, fr, it, pt_BR, zh_CN, zh_TW, de, ko + Fix somes locales Co-authored-by: Dakurei <maxime.palanchini@gmail.com> * Update src/locales/ko/modifier-type.ts Shiny/Ability charm punctuation fix by MrWaterT Co-authored-by: MrWaterT <87186129+MrWaterT@users.noreply.github.com> --------- Co-authored-by: Dakurei <maxime.palanchini@gmail.com> Co-authored-by: MrWaterT <87186129+MrWaterT@users.noreply.github.com>
22 lines
991 B
TypeScript
22 lines
991 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
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"
|
|
} as const;
|