mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-29 04:07:09 +00:00
11 lines
319 B
TypeScript
11 lines
319 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
||
|
"ivBest": "Sensationell",
|
||
|
"ivFantastic": "Fantastisch",
|
||
|
"ivVeryGood": "Sehr Gut",
|
||
|
"ivPrettyGood": "Gut",
|
||
|
"ivDecent": "Nicht Übel",
|
||
|
"ivNoGood": "Schlecht",
|
||
|
} as const;
|