Improved beastform translation structure

This commit is contained in:
WBHarry 2026-04-12 11:33:49 +02:00
parent 882143c1bb
commit f66088971d
3 changed files with 4 additions and 5 deletions

View file

@ -87,9 +87,7 @@
}, },
"Config": { "Config": {
"beastform": { "beastform": {
"exact": "Beastform Max Tier", "exact": { "label": "Beastform Max Tier", "hint": "The Character's Tier is used if empty" }
"exactHint": "The Character's Tier is used if empty",
"label": "Beastform"
}, },
"countdown": { "countdown": {
"defaultOwnership": "Default Ownership", "defaultOwnership": "Default Ownership",

View file

@ -28,7 +28,8 @@ export default class BeastformField extends fields.SchemaField {
{ 1: game.i18n.localize('DAGGERHEART.GENERAL.Tiers.1') } { 1: game.i18n.localize('DAGGERHEART.GENERAL.Tiers.1') }
); );
}, },
hint: 'DAGGERHEART.ACTIONS.Config.beastform.exactHint' label: 'DAGGERHEART.ACTIONS.Config.beastform.exact.label',
hint: 'DAGGERHEART.ACTIONS.Config.beastform.exact.hint'
}) })
}) })
}; };

View file

@ -1,4 +1,4 @@
<fieldset> <fieldset>
<legend>{{localize "DAGGERHEART.ACTIONS.Config.beastform.label"}}</legend> <legend>{{localize "DAGGERHEART.ACTIONS.TYPES.beastform.name"}}</legend>
{{formGroup fields.tierAccess.fields.exact value=source.tierAccess.exact name="beastform.tierAccess.exact" labelAttr="label" valueAttr="key" localize=true blank=""}} {{formGroup fields.tierAccess.fields.exact value=source.tierAccess.exact name="beastform.tierAccess.exact" labelAttr="label" valueAttr="key" localize=true blank=""}}
</fieldset> </fieldset>