diff --git a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs index 76f358bb8a..bea5d32763 100644 --- a/Content.Client/Construction/UI/ConstructionMenuPresenter.cs +++ b/Content.Client/Construction/UI/ConstructionMenuPresenter.cs @@ -272,7 +272,7 @@ namespace Content.Client.Construction.UI stepList.AddItem(Loc.GetString( "construction-presenter-tool-step", ("step-number", stepNumber++), - ("tool", _prototypeManager.Index(toolStep.Tool).ToolName)), + ("tool", Loc.GetString(_prototypeManager.Index(toolStep.Tool).ToolName))), icon); break; @@ -315,7 +315,7 @@ namespace Content.Client.Construction.UI ("step-number", stepNumber), ("parallel-number", parallelNumber), ("substep-number", subStepNumber++), - ("tool", _prototypeManager.Index(toolStep.Tool).ToolName)), + ("tool", Loc.GetString(_prototypeManager.Index(toolStep.Tool).ToolName))), icon); break;