From b0ca219ea2debfe3a3db7deee6a8e8cd1fa9617e Mon Sep 17 00:00:00 2001 From: EmeraldBlock Date: Sun, 6 Dec 2020 15:39:42 -0600 Subject: [PATCH] Change placeholders to TODOs --- src/js/game/hud/parts/waypoints.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/js/game/hud/parts/waypoints.js b/src/js/game/hud/parts/waypoints.js index 79ddb8cd..8bdd362d 100644 --- a/src/js/game/hud/parts/waypoints.js +++ b/src/js/game/hud/parts/waypoints.js @@ -316,7 +316,8 @@ export class HUDWaypoints extends BaseHUDPart { console.log(waypoint && waypoint.hasCompass); const compassInput = new FormElementCheckbox({ id: "compassChoice", - label: "[PLACEHOLDER] Add a compass that points to the marker:", + // @TODO: Add translation (T.dialogs.createMarker.descCompass) + label: "Add a compass that points to the marker:", defaultValue: waypoint ? waypoint.hasCompass : false, }); const dialog = new DialogWithForm({ @@ -432,7 +433,8 @@ export class HUDWaypoints extends BaseHUDPart { // Show notification about renamed this.root.hud.signals.notification.dispatch( - "[PLACEHOLDER] Marker has been edited.", + // @TODO: Add translation (T.ingame.waypoints.editSuccessNotification) + "Marker has been edited.", enumNotificationType.success );