replace all instances of "department-{id}" with department.name (#34607)
replace all instances of "department-{id}" with department.name"
This commit is contained in:
committed by
GitHub
parent
5e7cc99555
commit
371b1f8012
@@ -839,7 +839,7 @@ namespace Content.Client.Lobby.UI
|
||||
|
||||
foreach (var department in departments)
|
||||
{
|
||||
var departmentName = Loc.GetString($"department-{department.ID}");
|
||||
var departmentName = Loc.GetString(department.Name);
|
||||
|
||||
if (!_jobCategories.TryGetValue(department.ID, out var category))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user