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

Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
This commit is contained in:
Galactic Chimp
2021-06-21 02:13:54 +02:00
committed by GitHub
parent 4a46fbe6dd
commit 392b820796
523 changed files with 3082 additions and 1551 deletions

View File

@@ -1,4 +1,4 @@
using Robust.Client.UserInterface;
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.CustomControls;
using Robust.Shared.Localization;
@@ -13,7 +13,7 @@ namespace Content.Client.Cloning.UI
public AcceptCloningWindow()
{
Title = Loc.GetString("Cloning Machine");
Title = Loc.GetString("accept-cloning-window-title");
Contents.AddChild(new VBoxContainer
{
@@ -25,7 +25,7 @@ namespace Content.Client.Cloning.UI
{
(new Label()
{
Text = Loc.GetString("You are being cloned!\nTransfer your soul to the clone body?")
Text = Loc.GetString("accept-cloning-window-prompt-text-part")
}),
new HBoxContainer
{
@@ -34,7 +34,7 @@ namespace Content.Client.Cloning.UI
{
(AcceptButton = new Button
{
Text = Loc.GetString("Yes"),
Text = Loc.GetString("accept-cloning-window-accept-button"),
}),
(new Control()
@@ -44,7 +44,7 @@ namespace Content.Client.Cloning.UI
(DenyButton = new Button
{
Text = Loc.GetString("No"),
Text = Loc.GetString("accept-cloning-window-deny-button"),
})
}
},