35 lines
1.4 KiB
TypeScript
35 lines
1.4 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
/**
|
|
* The menu namespace holds most miscellaneous text that isn't directly part of the game's
|
|
* contents or directly related to Pokemon data. This includes menu navigation, settings,
|
|
* account interactions, descriptive text, etc.
|
|
*/
|
|
export const starterSelectUiHandler: SimpleTranslationEntries = {
|
|
"confirmStartTeam": "Mit diesen Pokémon losziehen?",
|
|
"growthRate": "Wachstum:",
|
|
"ability": "Fhgkeit:",
|
|
"passive": "Passiv:",
|
|
"nature": "Wesen:",
|
|
"eggMoves": "Ei-Attacken",
|
|
"start": "Start",
|
|
"addToParty": "Zum Team hinzufügen",
|
|
"toggleIVs": "DVs anzeigen/verbergen",
|
|
"manageMoves": "Attacken ändern",
|
|
"useCandies": "Bonbons verwenden",
|
|
"selectMoveSwapOut": "Wähle die zu ersetzende Attacke.",
|
|
"selectMoveSwapWith": "Wähle die gewünschte Attacke.",
|
|
"unlockPassive": "Passiv-Skill freischalten",
|
|
"reduceCost": "Preis reduzieren",
|
|
"cycleShiny": "R: Schillernd Ja/Nein",
|
|
"cycleForm": "F: Form ändern",
|
|
"cycleGender": "G: Geschlecht ändern",
|
|
"cycleAbility": "E: Fähigkeit ändern",
|
|
"cycleNature": "N: Wesen Ändern",
|
|
"cycleVariant": "V: Seltenheit ändern",
|
|
"enablePassive": "Passiv-Skill aktivieren",
|
|
"disablePassive": "Passiv-Skill deaktivieren",
|
|
"locked": "Gesperrt",
|
|
"disabled": "Deaktiviert",
|
|
"uncaught": "Uncaught"
|
|
} |