2024-05-06 17:02:45 +01:00
|
|
|
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 = {
|
2024-05-23 16:03:10 +01:00
|
|
|
"confirmStartTeam": "Mit diesen Pokémon losziehen?",
|
|
|
|
"gen1": "I",
|
|
|
|
"gen2": "II",
|
|
|
|
"gen3": "III",
|
|
|
|
"gen4": "IV",
|
|
|
|
"gen5": "V",
|
|
|
|
"gen6": "VI",
|
|
|
|
"gen7": "VII",
|
|
|
|
"gen8": "VIII",
|
|
|
|
"gen9": "IX",
|
|
|
|
"growthRate": "Wachstum:",
|
2024-06-02 00:53:13 +01:00
|
|
|
"ability": "Fähigkeit:",
|
2024-05-23 16:03:10 +01:00
|
|
|
"passive": "Passiv:",
|
|
|
|
"nature": "Wesen:",
|
|
|
|
"eggMoves": "Ei-Attacken",
|
|
|
|
"start": "Start",
|
2024-05-24 00:45:04 +01:00
|
|
|
"addToParty": "Zum Team hinzufügen",
|
2024-05-23 16:03:10 +01:00
|
|
|
"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",
|
2024-06-11 02:58:01 +01:00
|
|
|
"cycleShiny": ": Schillernd",
|
|
|
|
"cycleForm": ": Form",
|
|
|
|
"cycleGender": ": Geschlecht",
|
|
|
|
"cycleAbility": ": Fähigkeit",
|
|
|
|
"cycleNature": ": Wesen",
|
|
|
|
"cycleVariant": ": Seltenheit",
|
2024-05-23 16:03:10 +01:00
|
|
|
"enablePassive": "Passiv-Skill aktivieren",
|
|
|
|
"disablePassive": "Passiv-Skill deaktivieren",
|
|
|
|
"locked": "Gesperrt",
|
|
|
|
"disabled": "Deaktiviert",
|
|
|
|
"uncaught": "Ungefangen"
|
|
|
|
};
|