mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-03 04:06:09 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const pokeball: SimpleTranslationEntries = {
|
|
"pokeBall": "몬스터볼",
|
|
"greatBall": "슈퍼볼",
|
|
"ultraBall": "하이퍼볼",
|
|
"rogueBall": "로그볼",
|
|
"masterBall": "마스터볼",
|
|
"luxuryBall": "럭셔리볼",
|
|
} as const;
|