diff --git a/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs b/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs index b2320281ab..7a1792b598 100644 --- a/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/TransformableContainerSystem.cs @@ -53,7 +53,7 @@ namespace Content.Server.Chemistry.EntitySystems sprite?.LayerSetSprite(0, spriteSpec); } - string val = proto.LocalizedName + " glass"; + string val = Loc.GetString("transformable-container-component-glass", ("name", proto.LocalizedName)); EntityManager.GetComponent(owner).EntityName = val; EntityManager.GetComponent(owner).EntityDescription = proto.LocalizedDescription; component.CurrentReagent = proto; diff --git a/Resources/Locale/en-US/chemistry/components/transformable-container-component.ftl b/Resources/Locale/en-US/chemistry/components/transformable-container-component.ftl new file mode 100644 index 0000000000..21f096273d --- /dev/null +++ b/Resources/Locale/en-US/chemistry/components/transformable-container-component.ftl @@ -0,0 +1 @@ +transformable-container-component-glass = {$name} glass