Localization fixes

This commit is contained in:
WBHarry 2026-04-11 02:28:49 +02:00
parent 4fedb42d44
commit 7e54ed1218
3 changed files with 2 additions and 15 deletions

View file

@ -550,18 +550,6 @@
}, },
"takeDowntime": "Take Downtime" "takeDowntime": "Take Downtime"
}, },
"GroupRoll": {
"title": "Group Roll",
"leader": "Leader",
"partyTeam": "Party Team",
"team": "Team",
"selectLeader": "Select a Leader",
"selectMember": "Select a Member",
"rerollTitle": "Reroll Group Roll",
"rerollContent": "Are you sure you want to reroll your {trait} roll?",
"rerollTooltip": "Reroll",
"wholePartySelected": "The whole party is selected"
},
"HUD": { "HUD": {
"tokenHUD": { "tokenHUD": {
"genericEffects": "Foundry Effects", "genericEffects": "Foundry Effects",
@ -2413,7 +2401,6 @@
}, },
"maxWithThing": "Max {thing}", "maxWithThing": "Max {thing}",
"missingDragDropThing": "Drop {thing} here", "missingDragDropThing": "Drop {thing} here",
"modifier": "Modifier",
"multiclass": "Multiclass", "multiclass": "Multiclass",
"newCategory": "New Category", "newCategory": "New Category",
"newThing": "New {thing}", "newThing": "New {thing}",

View file

@ -30,7 +30,7 @@ export default class GroupRollDialog extends HandlebarsApplicationMixin(Applicat
} }
get title() { get title() {
return game.i18n.localize('DAGGERHEART.APPLICATIONS.GroupRoll.title'); return game.i18n.localize('DAGGERHEART.APPLICATIONS.GroupRollSelect.title');
} }
static DEFAULT_OPTIONS = { static DEFAULT_OPTIONS = {

View file

@ -76,7 +76,7 @@
</div> </div>
{{/if}} {{/if}}
<div class="roll-success-modifier {{#if successfull}}success{{else if (not (isNullish successfull))}}failure{{/if}}"> <div class="roll-success-modifier {{#if successfull}}success{{else if (not (isNullish successfull))}}failure{{/if}}">
{{localize "DAGGERHEART.GENERAL.modifier"}}{{#if successfull}} + 1{{else if (isNullish successfull)}} + ?{{else}} - 1{{/if}} {{localize "DAGGERHEART.GENERAL.Modifier.single"}}{{#if successfull}} + 1{{else if (isNullish successfull)}} + ?{{else}} - 1{{/if}}
</div> </div>
</div> </div>
{{/if}} {{/if}}