mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-24 18:01:05 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
10 lines
296 B
TypeScript
10 lines
296 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const commandUiHandler: SimpleTranslationEntries = {
|
|
"fight": "싸운다",
|
|
"ball": "볼",
|
|
"pokemon": "포켓몬",
|
|
"run": "도망간다",
|
|
"actionMessage": "{{pokemonName}}[[는]] 무엇을 할까?",
|
|
} as const;
|