Skip to content

Commit

Permalink
Localization of the title of the job (space-wizards#30353)
Browse files Browse the repository at this point in the history
  • Loading branch information
chavonadelal authored Jul 26, 2024
1 parent b1d5436 commit 582e6d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/CharacterInfo/CharacterInfoSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ private void OnRequestCharacterInfoEvent(RequestCharacterInfoEvent msg, EntitySe
var entity = args.SenderSession.AttachedEntity.Value;

var objectives = new Dictionary<string, List<ObjectiveInfo>>();
var jobTitle = "No Profession";
var jobTitle = Loc.GetString("character-info-no-profession");
string? briefing = null;
if (_minds.TryGetMind(entity, out var mindId, out var mind))
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
character-info-title = Character
character-info-roles-antagonist-text = Antagonist Roles
character-info-objectives-label = Objectives
character-info-no-profession = No Profession

0 comments on commit 582e6d2

Please sign in to comment.