From b2591ce078bf35cf806017cb7a27199fef74ff8c Mon Sep 17 00:00:00 2001 From: AJ Fontaine Date: Tue, 11 Feb 2025 16:00:56 -0500 Subject: [PATCH] Fix inconsistent key name --- src/data/pokemon-species.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/pokemon-species.ts b/src/data/pokemon-species.ts index fe1506ed5b3..041632b183d 100644 --- a/src/data/pokemon-species.ts +++ b/src/data/pokemon-species.ts @@ -698,7 +698,7 @@ export default class PokemonSpecies extends PokemonSpeciesForm implements Locali if (this.speciesId < 2000) { return this.name; // Other special cases could be put here too } else { // Everything beyond this point essentially follows the pattern of FORMNAME_SPECIES - return i18next.t(`pokemonForm:appendForm.${Species[this.speciesId].split("_")[0]}`, { species: this.name }); + return i18next.t(`pokemonForm:appendForm.${Species[this.speciesId].split("_")[0]}`, { pokemonName: this.name }); } }