Fixed some missing translations (#1386)

This commit is contained in:
WBHarry 2025-12-08 01:22:28 +01:00 committed by GitHub
parent 28976bb4b8
commit d6b1c7a36c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 25 additions and 18 deletions

View file

@ -386,7 +386,8 @@
"hideNewCountdowns": "Hide New Countdowns" "hideNewCountdowns": "Hide New Countdowns"
}, },
"DaggerheartMenu": { "DaggerheartMenu": {
"title": "GM Tools" "title": "GM Tools",
"refreshFeatures": "Refresh Features"
}, },
"DeleteConfirmation": { "DeleteConfirmation": {
"title": "Delete {type} - {name}", "title": "Delete {type} - {name}",
@ -504,6 +505,7 @@
}, },
"navigateLevel": "To Level {level}", "navigateLevel": "To Level {level}",
"navigateToLevelup": "Return To Levelup", "navigateToLevelup": "Return To Levelup",
"finishLevelup": "Finish Levelup",
"navigateToSummary": "To Summary", "navigateToSummary": "To Summary",
"options": { "options": {
"trait": "Gain a +1 bonus to two unmarked character traits and mark them.", "trait": "Gain a +1 bonus to two unmarked character traits and mark them.",
@ -2105,6 +2107,7 @@
}, },
"hope": "Hope", "hope": "Hope",
"hordeHp": "Horde HP", "hordeHp": "Horde HP",
"icon": "Icon",
"identify": "Identity", "identify": "Identity",
"imagePath": "Image Path", "imagePath": "Image Path",
"inactiveEffects": "Inactive Effects", "inactiveEffects": "Inactive Effects",
@ -2141,6 +2144,7 @@
"recovery": "Recovery", "recovery": "Recovery",
"refresh": "Refresh", "refresh": "Refresh",
"reroll": "Reroll", "reroll": "Reroll",
"rerolled": "Rerolled",
"rerollThing": "Reroll {thing}", "rerollThing": "Reroll {thing}",
"resource": "Resource", "resource": "Resource",
"roll": "Roll", "roll": "Roll",
@ -2240,7 +2244,9 @@
"evolvedDrag": "Drag a form here to evolve it.", "evolvedDrag": "Drag a form here to evolve it.",
"hybridize": "Hybridize", "hybridize": "Hybridize",
"hybridizeFeatureTitle": "Hybrid Features", "hybridizeFeatureTitle": "Hybrid Features",
"hybridizeDrag": "Drag a form here to hybridize it." "hybridizeDrag": "Drag a form here to hybridize it.",
"mainTrait": "Main Trait",
"traitBonus": "Trait Bonus"
}, },
"Class": { "Class": {
"hopeFeatures": "Hope Features", "hopeFeatures": "Hope Features",
@ -2583,7 +2589,8 @@
"selectMember": "Select a Member", "selectMember": "Select a Member",
"rerollTitle": "Reroll Group Roll", "rerollTitle": "Reroll Group Roll",
"rerollContent": "Are you sure you want to reroll your {trait} check?", "rerollContent": "Are you sure you want to reroll your {trait} check?",
"rerollTooltip": "Reroll" "rerollTooltip": "Reroll",
"wholePartySelected": "The whole party is selected"
}, },
"healingRoll": { "healingRoll": {
"title": "Heal - {damage}", "title": "Heal - {damage}",

View file

@ -14,7 +14,7 @@
<div class="suggested-trait-container">{{this}}</div> <div class="suggested-trait-container">{{this}}</div>
{{/each}} {{/each}}
</div> </div>
<button class="action-button" data-action="useSuggestedTraits">{{localize "Use"}}</button> <button class="action-button" data-action="useSuggestedTraits">{{localize "DAGGERHEART.GENERAL.use"}}</button>
</fieldset> </fieldset>
<div class="traits-inner-container"> <div class="traits-inner-container">
{{#each traits.values}} {{#each traits.values}}

View file

@ -93,13 +93,13 @@
<footer class="padded"> <footer class="padded">
<button type="button" data-action="takeDamage"> <button type="button" data-action="takeDamage">
{{localize "Take"}} {{localize "DAGGERHEART.GENERAL.take"}}
<div class="damage-value {{#if this.reducedDamage}}reduced-value{{/if}}">{{this.damage}}</div> <div class="damage-value {{#if this.reducedDamage}}reduced-value{{/if}}">{{this.damage}}</div>
{{#if this.reducedDamage}} {{#if this.reducedDamage}}
<i class="fa-solid fa-arrow-right-long"></i> <i class="fa-solid fa-arrow-right-long"></i>
<div class="damage-value">{{this.reducedDamage}}</div> <div class="damage-value">{{this.reducedDamage}}</div>
{{/if}} {{/if}}
{{localize "Damage"}} {{localize "DAGGERHEART.GENERAL.damage"}}
</button> </button>
</footer> </footer>
</div> </div>

View file

@ -16,7 +16,7 @@
{{#if (and @root.hasRoll @root.activeTagTeamRoll)}} {{#if (and @root.hasRoll @root.activeTagTeamRoll)}}
<div class="tag-team-controller {{#if @root.tagTeamSelected}}selected{{/if}}" data-action="toggleTagTeamRoll"> <div class="tag-team-controller {{#if @root.tagTeamSelected}}selected{{/if}}" data-action="toggleTagTeamRoll">
<span><i class="{{ifThen @root.tagTeamSelected "fa-solid" "fa-regular"}} fa-circle"></i></span> <span><i class="{{ifThen @root.tagTeamSelected "fa-solid" "fa-regular"}} fa-circle"></i></span>
<span class="label">{{localize "Tag Team Roll"}}</span> <span class="label">{{localize "DAGGERHEART.APPLICATIONS.TagTeamSelect.title"}}</span>
</div> </div>
{{/if}} {{/if}}
</header> </header>

View file

@ -40,7 +40,7 @@
<fieldset class="one-column"> <fieldset class="one-column">
<legend>{{localize "DAGGERHEART.UI.Chat.groupRoll.partyTeam"}}</legend> <legend>{{localize "DAGGERHEART.UI.Chat.groupRoll.partyTeam"}}</legend>
<span class="tooltip-container" {{#if allSelected}}data-tooltip="{{localize "The whole party is selected"}}"{{/if}}> <span class="tooltip-container" {{#if allSelected}}data-tooltip="{{localize "DAGGERHEART.UI.Chat.groupRoll.wholePartySelected"}}"{{/if}}>
<input type="text" class="team-push-input" {{disabled @root.allSelected}}/> <input type="text" class="team-push-input" {{disabled @root.allSelected}}/>
</span> </span>
{{#if (gt this.members.length 0)}} {{#if (gt this.members.length 0)}}

View file

@ -1,4 +1,4 @@
<footer> <footer>
<button type="button" data-action="doReroll" {{disabled disabledReroll}}>{{localize "Reroll"}} <i class="fa-solid fa-dice"></i></button> <button type="button" data-action="doReroll" {{disabled disabledReroll}}>{{localize "DAGGERHEART.GENERAL.reroll"}} <i class="fa-solid fa-dice"></i></button>
<button type="button" data-action="save" {{disabled saveDisabled}}>{{localize "DAGGERHEART.APPLICATIONS.RerollDialog.acceptCurrentRolls"}}</button> <button type="button" data-action="save" {{disabled saveDisabled}}>{{localize "DAGGERHEART.APPLICATIONS.RerollDialog.acceptCurrentRolls"}}</button>
</footer> </footer>

View file

@ -3,7 +3,7 @@
<div class="levelup-navigation-actions {{#if (not this.showTabs)}}test{{/if}}"> <div class="levelup-navigation-actions {{#if (not this.showTabs)}}test{{/if}}">
{{#if this.navigate.previous.fromSummary}} {{#if this.navigate.previous.fromSummary}}
<button data-action="activatePart" data-part="advancements">{{localize "DAGGERHEART.APPLICATIONS.Levelup.navigateToLevelup"}}</button> <button data-action="activatePart" data-part="advancements">{{localize "DAGGERHEART.APPLICATIONS.Levelup.navigateToLevelup"}}</button>
<button data-action="save" {{#if (not this.levelup.allLevelsFinished)}}disabled{{/if}}>{{localize "Finish Levelup"}}</button> <button data-action="save" {{#if (not this.levelup.allLevelsFinished)}}disabled{{/if}}>{{localize "DAGGERHEART.APPLICATIONS.Levelup.finishLevelup"}}</button>
{{else}} {{else}}
{{#if (not this.navigate.previous.disabled)}} {{#if (not this.navigate.previous.disabled)}}
<button data-action="updateCurrentLevel" >{{this.navigate.previous.label}}</button> <button data-action="updateCurrentLevel" >{{this.navigate.previous.label}}</button>

View file

@ -5,14 +5,14 @@
> >
{{#if hasIcon}} {{#if hasIcon}}
<fieldset class="one-column"> <fieldset class="one-column">
<legend>{{localize "Icon"}}</legend> <legend>{{localize "DAGGERHEART.GENERAL.icon"}}</legend>
<input type="text" name="icon" value="{{move.icon}}" /> <input type="text" name="icon" value="{{move.icon}}" />
</fieldset> </fieldset>
{{/if}} {{/if}}
<fieldset class="one-column"> <fieldset class="one-column">
<legend>{{localize "Description"}}</legend> <legend>{{localize "DAGGERHEART.GENERAL.description"}}</legend>
<prose-mirror name="description" value="{{move.description}}"> <prose-mirror name="description" value="{{move.description}}">
{{{ move.enrichedDescription }}} {{{ move.enrichedDescription }}}

View file

@ -2,7 +2,7 @@
<h2>{{localize "DAGGERHEART.APPLICATIONS.DaggerheartMenu.title"}}</h2> <h2>{{localize "DAGGERHEART.APPLICATIONS.DaggerheartMenu.title"}}</h2>
<fieldset> <fieldset>
<legend>{{localize "Refresh Features"}}</legend> <legend>{{localize "DAGGERHEART.APPLICATIONS.DaggerheartMenu.refreshFeatures"}}</legend>
<div class="menu-refresh-container"> <div class="menu-refresh-container">
<div class="menu-refresh-inner-container"> <div class="menu-refresh-inner-container">

View file

@ -33,7 +33,7 @@
class="dice reroll-button {{../dice}}" class="dice reroll-button {{../dice}}"
data-die-index="0" data-type="damage" data-damage-type="{{@../../../key}}" data-part="{{@../../key}}" data-dice="{{@../key}}" data-result="{{@key}}" data-die-index="0" data-type="damage" data-damage-type="{{@../../../key}}" data-part="{{@../../key}}" data-dice="{{@../key}}" data-result="{{@key}}"
> >
{{#if hasRerolls}}<i class="fa-solid fa-dice dice-rerolled" data-tooltip="{{localize "Rerolled"}}"></i>{{/if}} {{#if hasRerolls}}<i class="fa-solid fa-dice dice-rerolled" data-tooltip="{{localize "DAGGERHEART.GENERAL.rerolled"}}"></i>{{/if}}
{{result}} {{result}}
</div> </div>
</div> </div>

View file

@ -9,19 +9,19 @@
<div class="tooltip-information-section spaced"> <div class="tooltip-information-section spaced">
{{#with item.system.beastformAttackData}} {{#with item.system.beastformAttackData}}
<div class="tooltip-information"> <div class="tooltip-information">
<label>{{localize "Main Trait"}}</label> <label>{{localize "DAGGERHEART.ITEMS.Beastform.mainTrait"}}</label>
<div>{{this.trait}}</div> <div>{{this.trait}}</div>
</div> </div>
<div class="tooltip-information"> <div class="tooltip-information">
<label>{{localize "Trait Bonus"}}</label> <label>{{localize "DAGGERHEART.ITEMS.Beastform.traitBonus"}}</label>
<div>{{this.traitBonus}}</div> <div>{{this.traitBonus}}</div>
</div> </div>
<div class="tooltip-information"> <div class="tooltip-information">
<label>{{localize "Evasion"}}</label> <label>{{localize "DAGGERHEART.GENERAL.evasion"}}</label>
<div>{{this.evasionBonus}}</div> <div>{{this.evasionBonus}}</div>
</div> </div>
<div class="tooltip-information"> <div class="tooltip-information">
<label>{{localize "Damage"}}</label> <label>{{localize "DAGGERHEART.GENERAL.damage"}}</label>
<div>{{concat this.damageDice ' ' this.damageBonus}} <i class="fa-solid fa-hand-fist"></i></div> <div>{{concat this.damageDice ' ' this.damageBonus}} <i class="fa-solid fa-hand-fist"></i></div>
</div> </div>
{{/with}} {{/with}}