1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Update translations

This commit is contained in:
tobspr
2022-06-17 09:51:19 +02:00
parent 5ef7749a09
commit 8f6ccc0d67
34 changed files with 69 additions and 38 deletions

View File

@@ -1,4 +1,5 @@
import { makeDiv } from "../../../core/utils";
import { T } from "../../../translations";
import { BaseHUDPart } from "../base_hud_part";
export class HUDDemoTimer extends BaseHUDPart {
@@ -6,7 +7,7 @@ export class HUDDemoTimer extends BaseHUDPart {
this.mainElement = makeDiv(parent, "ingame_HUD_DemoTimer", [], "");
this.timerElement = makeDiv(this.mainElement, null, ["timer"], "12:00");
this.descElement = makeDiv(this.mainElement, null, ["description"], "Until end of demo");
this.descElement = makeDiv(this.mainElement, null, ["description"], T.demoBanners.untilEndOfDemo);
this.currentValue = "";
}