mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-03 04:06:09 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
11 lines
325 B
TypeScript
11 lines
325 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
|
"ivBest": "Sensationell",
|
|
"ivFantastic": "Fantastisch",
|
|
"ivVeryGood": "Sehr Gut",
|
|
"ivPrettyGood": "Gut",
|
|
"ivDecent": "Nicht Übel",
|
|
"ivNoGood": "Schlecht",
|
|
} as const;
|