mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-03 22:57:24 +00:00
11 lines
331 B
TypeScript
11 lines
331 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
||
|
"ivBest": "최고",
|
||
|
"ivFantastic": "훌륭하다",
|
||
|
"ivVeryGood": "굉장히 좋다",
|
||
|
"ivPrettyGood": "상당히 좋다",
|
||
|
"ivDecent": "적당하다",
|
||
|
"ivNoGood": "별로인 듯",
|
||
|
} as const;
|