if (!LocalizedNames.TryGetValue(netEntity, out var name))
name = "Unknown";
- var message = name + "\nLocation: [x = " + MathF.Round(blip.Coordinates.X) + ", y = " + MathF.Round(blip.Coordinates.Y) + "]";
+ var message = name + "\n" + Loc.GetString("navmap-location",
+ ("x", MathF.Round(blip.Coordinates.X)),
+ ("y", MathF.Round(blip.Coordinates.Y)));
_trackedEntityLabel.Text = message;
_trackedEntityPanel.Visible = true;
navmap-zoom = Zoom: {$value}x
navmap-recenter = Recenter
navmap-toggle-beacons = Show departments
+navmap-location = Location: [x = {$x}, y = {$y}]