Typo, redundant string interpolation, namespaces and imports cleanup (#2068)

* Readonly, typos and redundant string interpolations

* Namespaces

* Optimize imports

* Address reviews

* but actually

* Localize missing strings

* Remove redundant vars
This commit is contained in:
DrSmugleaf
2020-09-13 14:23:52 +02:00
committed by GitHub
parent 2e5838bb62
commit 74943a2770
213 changed files with 465 additions and 669 deletions

View File

@@ -187,9 +187,13 @@ namespace Content.Server.GameObjects.Components.Suspicion
return;
}
var tooltip = IsTraitor()
? Loc.GetString($"They were a [color=red]traitor[/color]!")
: Loc.GetString($"They were an [color=green]innocent[/color]!");
var traitor = IsTraitor();
var color = traitor ? "red" : "green";
var role = traitor ? "traitor" : "innocent";
var article = traitor ? "a" : "an";
var tooltip = Loc.GetString("They were {0} [color={1}]{2}[/color]!", Loc.GetString(article), color,
Loc.GetString(role));
message.AddMarkup(tooltip);
}