From 570406516c9992d7c65a1c4ef009208f52d7e813 Mon Sep 17 00:00:00 2001 From: Dakurei Date: Wed, 24 Apr 2024 15:33:51 +0200 Subject: [PATCH] Missing usage of i18n --- src/phases.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phases.ts b/src/phases.ts index e6e72b355ac..3b3d3e7d94c 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -1185,7 +1185,7 @@ export class SummonPhase extends PartyMemberPokemonPhase { } if (this.player) { - this.scene.ui.showText(`Go! ${this.getPokemon().name}!`); + this.scene.ui.showText(i18next.t('menu:playerGo', {pokemonName: this.getPokemon().name})); if (this.player) this.scene.pbTray.hide(); this.scene.trainer.setTexture(`trainer_${this.scene.gameData.gender === PlayerGender.FEMALE ? 'f' : 'm'}_back_pb`);