mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-30 05:28:49 +01:00
* Translate missing fr keys for acheviements * Translate missing fr keys for ability triggers * Translate missing fr keys for battle * Translate missing fr keys for fight ui handler * Translate missing fr keys for challenge * Translate missing fr keys for party ui handler * Translate missing fr keys for pokémon infos container * Translate missing fr keys for trainers
10 lines
332 B
TypeScript
10 lines
332 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
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;
|