Removed old Loc.GetString() use instances (#1814)

Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
This commit is contained in:
Galactic Chimp
2021-06-21 02:12:53 +02:00
committed by GitHub
co-authored by Pieter-Jan Briers
parent 22ac34c7a1
commit e1a199e060
13 changed files with 48 additions and 38 deletions
@@ -1,6 +1,5 @@
using Robust.Client.Graphics;
using Robust.Client.UserInterface.Controls;
using Robust.Shared.Localization;
using Robust.Shared.Maths;
namespace Robust.Client.UserInterface.CustomControls
@@ -37,9 +36,9 @@ namespace Robust.Client.UserInterface.CustomControls
(InputBar = new HistoryLineEdit
{
HorizontalExpand = true,
PlaceHolder = Loc.GetString("Your C# code here.")
PlaceHolder = "Your C# code here."
}),
(RunButton = new Button {Text = Loc.GetString("Run")})
(RunButton = new Button {Text = "Run"})
}
},
}