Add missing localization to verb names (#1953)

This commit is contained in:
DrSmugleaf
2020-08-29 13:36:02 +02:00
committed by GitHub
parent 65a9a09049
commit 5a0f7d9316
14 changed files with 37 additions and 22 deletions

View File

@@ -6,6 +6,7 @@ using Robust.Server.Console;
using Robust.Server.Interfaces.GameObjects;
using Robust.Shared.Interfaces.GameObjects;
using Robust.Shared.IoC;
using Robust.Shared.Localization;
namespace Content.Server.GlobalVerbs
{
@@ -35,7 +36,7 @@ namespace Content.Server.GlobalVerbs
if (groupController.CanCommand(player.playerSession, "controlmob"))
{
data.Visibility = VerbVisibility.Visible;
data.Text = "Control Mob";
data.Text = Loc.GetString("Control Mob");
data.CategoryData = VerbCategories.Debug;
}
}