mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-30 05:28:49 +01:00
10 lines
338 B
TypeScript
10 lines
338 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const fightUiHandler: SimpleTranslationEntries = {
|
|
"pp": "PP",
|
|
"power": "Puissance",
|
|
"accuracy": "Précision",
|
|
"abilityFlyInText": " {{passive}}{{abilityName}} de {{pokemonName}}",
|
|
"passive": "Passif ", // The space at the end is important
|
|
} as const;
|