mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-02-01 13:47:05 +00:00
10 lines
273 B
TypeScript
10 lines
273 B
TypeScript
|
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
||
|
|
||
|
export const commandUiHandler: SimpleTranslationEntries = {
|
||
|
"fight": "Fight",
|
||
|
"ball": "Ball",
|
||
|
"pokemon": "Pokémon",
|
||
|
"run": "Run",
|
||
|
"actionMessage": "What will\n{{pokemonName}} do?",
|
||
|
} as const;
|