Update companion subtitles

This commit is contained in:
Carlos Fernandez 2025-11-26 03:16:49 -05:00
parent 24ec7673b5
commit 470337b00a
2 changed files with 4 additions and 3 deletions

View file

@ -2705,7 +2705,8 @@
"actorDirectory": {
"tier": "Tier {tier} {type}",
"character": "Level {level} Character",
"companion": "{partner}'s Companion"
"companion": "Level {level} - {partner}",
"companionNoPartner": "No Partner"
},
"daggerheartMenu": {
"title": "Daggerheart Menu",

View file

@ -10,9 +10,9 @@
<span class="entry-subtitle">{{localize "DAGGERHEART.UI.Sidebar.actorDirectory.character" level=system.levelData.level.current}}</span>
{{else if (eq type "companion")}}
{{#if system.partner}}
<span class="entry-subtitle">{{localize "DAGGERHEART.UI.Sidebar.actorDirectory.companion" partner=system.partner.name}}</span>
<span class="entry-subtitle">{{localize "DAGGERHEART.UI.Sidebar.actorDirectory.companion" level=system.levelData.level.current partner=system.partner.name}}</span>
{{else}}
<span class="entry-subtitle">{{localize "TYPES.Actor.companion"}}</span>
<span class="entry-subtitle">{{localize "DAGGERHEART.UI.Sidebar.actorDirectory.companionNoPartner"}}</span>
{{/if}}
{{/if}}
</a>