1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2024-10-27 20:34:29 +00:00

Fix untranslated button

This commit is contained in:
tobspr 2020-06-13 13:22:20 +02:00
parent a2d0024cb1
commit 6febaff100

View File

@ -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);