From a00cc43889bf61a0ee41124fa397f9eaf95d14d7 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Fri, 8 Oct 2021 13:42:54 +0200 Subject: [PATCH] Add missing localization to ConstructionMenuPresenter. --- Content.Client/Construction/UI/ConstructionMenuPresenter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;