mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 04:36:15 +00:00
d70dd16f8c
* I18n Cleaning * pr comments * appease typedoc * moved types into src
10 lines
280 B
TypeScript
10 lines
280 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const commandUiHandler: SimpleTranslationEntries = {
|
|
"fight": "Attaque",
|
|
"ball": "Ball",
|
|
"pokemon": "Pokémon",
|
|
"run": "Fuite",
|
|
"actionMessage": "Que doit faire\n{{pokemonName}} ?",
|
|
} as const;
|