From 22e77a79c12b23e1221e1a0c3195125743518688 Mon Sep 17 00:00:00 2001 From: fabske0 <192151969+fabske0@users.noreply.github.com> Date: Fri, 15 Aug 2025 20:49:03 +0200 Subject: [PATCH] change pokemon category locales use --- 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 7bfe02d9086..82cc14a87e9 100644 --- a/src/data/pokemon-species.ts +++ b/src/data/pokemon-species.ts @@ -880,7 +880,7 @@ export class PokemonSpecies extends PokemonSpeciesForm implements Localizable { localize(): void { this.name = i18next.t(`pokemon:${SpeciesId[this.speciesId].toLowerCase()}`); - this.category = i18next.t(`pokemonCategory:${SpeciesId[this.speciesId].toLowerCase()}_category`); + this.category = i18next.t(`pokemonCategory:${toCamelCase(SpeciesId[this.speciesId])}Category`); } getWildSpeciesForLevel(level: number, allowEvolving: boolean, isBoss: boolean, gameMode: GameMode): SpeciesId {