mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-13 00:56:08 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
11 lines
328 B
TypeScript
11 lines
328 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
|
"ivBest": "Exceptionnel",
|
|
"ivFantastic": "Fantastique",
|
|
"ivVeryGood": "Très bon",
|
|
"ivPrettyGood": "Bon",
|
|
"ivDecent": "Passable…",
|
|
"ivNoGood": "Pas top…",
|
|
} as const;
|