mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-25 02:11:05 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
11 lines
337 B
TypeScript
11 lines
337 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const battleMessageUiHandler: SimpleTranslationEntries = {
|
|
"ivBest": "최고",
|
|
"ivFantastic": "훌륭하다",
|
|
"ivVeryGood": "굉장히 좋다",
|
|
"ivPrettyGood": "상당히 좋다",
|
|
"ivDecent": "적당하다",
|
|
"ivNoGood": "별로인 듯",
|
|
} as const;
|