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

@@ -4,6 +4,7 @@ using Content.Shared.Notification.Managers;
using Content.Shared.Physics;
using JetBrains.Annotations;
using Robust.Shared.GameObjects;
using Robust.Shared.Localization;
using Robust.Shared.Map;
using Robust.Shared.Physics;
using Robust.Shared.Physics.Broadphase;
@@ -327,7 +328,7 @@ namespace Content.Shared.Interaction
if (!inRange && popup)
{
var message = Robust.Shared.Localization.Loc.GetString("You can't reach there!");
var message = Loc.GetString("shared-interaction-system-in-range-unobstructed-cannot-reach");
origin.PopupMessage(message);
}