1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-13 13:04:03 +00:00

Change placeholders to TODOs

This commit is contained in:
EmeraldBlock 2020-12-06 15:39:42 -06:00
parent 6da6f5c679
commit b0ca219ea2

View File

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