mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-03 06:37:12 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
|
"ivBest": "Best",
|
|
"ivFantastic": "Fantastic",
|
|
"ivVeryGood": "Very Good",
|
|
"ivPrettyGood": "Pretty Good",
|
|
"ivDecent": "Decent",
|
|
"ivNoGood": "No Good",
|
|
} as const;
|