53 lines
3.1 KiB
TypeScript
53 lines
3.1 KiB
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const battle: SimpleTranslationEntries = {
|
|
"bossAppeared": "{{bossName}} erscheint.",
|
|
"trainerAppeared": "{{trainerName}}\nmöchte kämpfen!",
|
|
"singleWildAppeared": "Ein wildes {{pokemonName}} erscheint!",
|
|
"multiWildAppeared": "Ein wildes {{pokemonName1}}\nund {{pokemonName2}} erscheinen!",
|
|
"playerComeBack": "Komm zurück, {{pokemonName}}!",
|
|
"trainerComeBack": "{{trainerName}} ruft {{pokemonName}} zurück!",
|
|
"playerGo": "Los! {{pokemonName}}!",
|
|
"trainerGo": "{{trainerName}} sendet {{pokemonName}} raus!",
|
|
"switchQuestion": "Willst du\n{{pokemonName}} auswechseln?",
|
|
"trainerDefeated": `You defeated\n{{trainerName}}!`,
|
|
"pokemonCaught": "{{pokemonName}} was caught!",
|
|
"pokemon": "Pokémon",
|
|
"sendOutPokemon": "Los! {{pokemonName}}!",
|
|
"hitResultCriticalHit": "A critical hit!",
|
|
"hitResultSuperEffective": "It's super effective!",
|
|
"hitResultNotVeryEffective": "It's not very effective…",
|
|
"hitResultNoEffect": "It doesn't affect {{pokemonName}}!",
|
|
"hitResultOneHitKO": "It's a one-hit KO!",
|
|
"attackFailed": "But it failed!",
|
|
"attackHitsCount": `Hit {{count}} time(s)!`,
|
|
"expGain": "{{pokemonName}} gained\n{{exp}} EXP. Points!",
|
|
"levelUp": "{{pokemonName}} grew to\nLv. {{level}}!",
|
|
"learnMove": "{{pokemonName}} learned\n{{moveName}}!",
|
|
"learnMovePrompt": "{{pokemonName}} wants to learn the\nmove {{moveName}}.",
|
|
"learnMoveLimitReached": "However, {{pokemonName}} already\nknows four moves.",
|
|
"learnMoveReplaceQuestion": "Should a move be forgotten and\nreplaced with {{moveName}}?",
|
|
"learnMoveStopTeaching": "Stop trying to teach\n{{moveName}}?",
|
|
"learnMoveNotLearned": "{{pokemonName}} did not learn the\nmove {{moveName}}.",
|
|
"learnMoveForgetQuestion": "Which move should be forgotten?",
|
|
"learnMoveForgetSuccess": "{{pokemonName}} forgot how to\nuse {{moveName}}.",
|
|
"levelCapUp": "Das Levellimit\nhat sich zu {{levelCap}} erhöht!",
|
|
"moveNotImplemented": "{{moveName}} ist noch nicht implementiert und kann nicht ausgewählt werden.",
|
|
"moveNoPP": "There's no PP left for\nthis move!",
|
|
"moveDisabled": "{{moveName}} ist deaktiviert!",
|
|
"noPokeballForce": "Eine unsichtbare Kraft\nverhindert die Nutzung von Pokébällen.",
|
|
"noPokeballTrainer": "Du kannst das Pokémon\neines anderen Trainers nicht fangen!",
|
|
"noPokeballMulti": "Du kannst erst einen Pokéball werden,\nwenn nur noch ein Pokémon übrig ist!",
|
|
"noPokeballStrong": "Das Ziel-Pokémon ist zu stark, um gefangen zu werden!\nDu musst es zuerst schwächen!",
|
|
"noEscapeForce": "Eine unsichtbare Kraft\nverhindert die Flucht.",
|
|
"noEscapeTrainer": "Du kannst nicht\naus einem Trainerkampf fliehen!",
|
|
"noEscapePokemon": "{{pokemonName}}'s {{moveName}}\nverhindert {{escapeVerb}}!",
|
|
"runAwaySuccess": "You got away safely!",
|
|
"runAwayCannotEscape": 'You can\'t escape!',
|
|
"escapeVerbSwitch": "auswechseln",
|
|
"escapeVerbFlee": "flucht",
|
|
"notDisabled": "{{pokemonName}}'s {{moveName}} ist\nnicht mehr deaktiviert!",
|
|
"skipItemQuestion": "Are you sure you want to skip taking an item?",
|
|
"eggHatching": "Oh?",
|
|
"ivScannerUseQuestion": "Use IV Scanner on {{pokemonName}}?"
|
|
} as const; |