Localization of the title of the job (#30353)

This commit is contained in:
chavonadelal
2024-07-26 21:47:07 +03:00
committed by GitHub
parent b1d5436bcd
commit 582e6d2010
2 changed files with 2 additions and 1 deletions

View File

@@ -31,7 +31,7 @@ public sealed class CharacterInfoSystem : EntitySystem
var entity = args.SenderSession.AttachedEntity.Value; var entity = args.SenderSession.AttachedEntity.Value;
var objectives = new Dictionary<string, List<ObjectiveInfo>>(); var objectives = new Dictionary<string, List<ObjectiveInfo>>();
var jobTitle = "No Profession"; var jobTitle = Loc.GetString("character-info-no-profession");
string? briefing = null; string? briefing = null;
if (_minds.TryGetMind(entity, out var mindId, out var mind)) if (_minds.TryGetMind(entity, out var mindId, out var mind))
{ {

View File

@@ -1,3 +1,4 @@
character-info-title = Character character-info-title = Character
character-info-roles-antagonist-text = Antagonist Roles character-info-roles-antagonist-text = Antagonist Roles
character-info-objectives-label = Objectives character-info-objectives-label = Objectives
character-info-no-profession = No Profession