mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-14 20:25:57 +00:00
9 lines
290 B
TypeScript
9 lines
290 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
||
|
|
||
|
export const commandUiHandler: SimpleTranslationEntries = {
|
||
|
"fight": "战斗",
|
||
|
"ball": "精灵球",
|
||
|
"pokemon": "宝可梦",
|
||
|
"run": "逃跑",
|
||
|
"actionMessage": "要让\n{{pokemonName}} 做什么?",
|
||
|
} as const;
|