From 6febaff100015f5bd2f4aff13acc8f315c067a73 Mon Sep 17 00:00:00 2001 From: tobspr Date: Sat, 13 Jun 2020 13:22:20 +0200 Subject: [PATCH] Fix untranslated button --- src/js/game/hud/parts/unlock_notification.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/game/hud/parts/unlock_notification.js b/src/js/game/hud/parts/unlock_notification.js index 20a4482f..7a5c923b 100644 --- a/src/js/game/hud/parts/unlock_notification.js +++ b/src/js/game/hud/parts/unlock_notification.js @@ -39,7 +39,7 @@ export class HUDUnlockNotification extends BaseHUDPart { this.btnClose = document.createElement("button"); this.btnClose.classList.add("close", "styledButton"); - this.btnClose.innerText = "Next level"; + this.btnClose.innerText = T.ingame.levelCompleteNotification.buttonNextLevel; dialog.appendChild(this.btnClose); this.trackClicks(this.btnClose, this.requestClose);