mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-03-01 07:28:05 +00:00
* Added german egg localization * Changed pull back to english since there isnt enough space for a german word that makes sense and most if not all german players understand "pull" * This comma was too much
21 lines
986 B
TypeScript
21 lines
986 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; |