mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-13 09:06:07 +00:00
11 lines
322 B
TypeScript
11 lines
322 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
||
|
"ivBest": "Exceptionnel",
|
||
|
"ivFantastic": "Fantastique",
|
||
|
"ivVeryGood": "Très bon",
|
||
|
"ivPrettyGood": "Bon",
|
||
|
"ivDecent": "Passable…",
|
||
|
"ivNoGood": "Pas top…",
|
||
|
} as const;
|