From 124ef7065f9e670410a982531f80d05d834f29fc Mon Sep 17 00:00:00 2001 From: Bastien <44358760+BJulliot@users.noreply.github.com> Date: Wed, 12 Jun 2024 15:28:10 +0200 Subject: [PATCH] [Localization][fr] Update battle.ts (#2130) Add French translation for "regainHealth" and "fainted" that was still in english --- src/locales/fr/battle.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/locales/fr/battle.ts b/src/locales/fr/battle.ts index 1593bd3b21f..9a4650fadc4 100644 --- a/src/locales/fr/battle.ts +++ b/src/locales/fr/battle.ts @@ -60,6 +60,6 @@ export const battle: SimpleTranslationEntries = { "foePokemonWithAffix": "{{pokemonName}} ennemi", "useMove": "{{pokemonNameWithAffix}} utilise\n{{moveName}} !", "drainMessage": "{{pokemonName}} had its\nenergy drained!", - "regainHealth": "{{pokemonName}} regained\nhealth!", - "fainted": "{{pokemonNameWithAffix}} fainted!" + "regainHealth": "{{pokemonName}} a récupéré\ndes PV!", + "fainted": "{{pokemonNameWithAffix}} est tombé KO!" } as const;