Removed old Loc.GetString() use instances (#4155)
Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
This commit is contained in:
@@ -21,7 +21,7 @@ namespace Content.Server.Rotation.Components
|
||||
{
|
||||
if (physics.BodyType == BodyType.Static)
|
||||
{
|
||||
Owner.PopupMessage(user, Loc.GetString("It's stuck."));
|
||||
Owner.PopupMessage(user, Loc.GetString("rotatable-component-try-rotate-stuck"));
|
||||
return;
|
||||
}
|
||||
}
|
||||
@@ -41,7 +41,7 @@ namespace Content.Server.Rotation.Components
|
||||
}
|
||||
|
||||
data.CategoryData = VerbCategories.Rotate;
|
||||
data.Text = Loc.GetString("Rotate clockwise");
|
||||
data.Text = Loc.GetString("rotate-verb-get-data-text");
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/rotate_cw.svg.192dpi.png";
|
||||
}
|
||||
|
||||
@@ -63,7 +63,7 @@ namespace Content.Server.Rotation.Components
|
||||
}
|
||||
|
||||
data.CategoryData = VerbCategories.Rotate;
|
||||
data.Text = Loc.GetString("Rotate counter-clockwise");
|
||||
data.Text = Loc.GetString("rotate-counter-verb-get-data-text");
|
||||
data.IconTexture = "/Textures/Interface/VerbIcons/rotate_ccw.svg.192dpi.png";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user