mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 20:56:09 +00:00
111cfd686d
* Update French ability-trigger.ts * Update French fight-ui-handler.ts * Update French menu.ts * Update French settings.ts * Update French egg.ts * Update French modifier-type.ts * Update modifier-type.ts * Update modifier-type.ts
10 lines
339 B
TypeScript
10 lines
339 B
TypeScript
import { SimpleTranslationEntries } from "#app/interfaces/locales";
|
|
|
|
export const fightUiHandler: SimpleTranslationEntries = {
|
|
"pp": "PP",
|
|
"power": "Puissance",
|
|
"accuracy": "Précision",
|
|
"abilityFlyInText": " {{passive}}{{abilityName}}\nde {{pokemonName}}",
|
|
"passive": "Passif ", // The space at the end is important
|
|
} as const;
|