mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-22 07:23:37 +02:00
Fixed translation
This commit is contained in:
parent
62ec3fba38
commit
679b5ea069
2 changed files with 12 additions and 7 deletions
|
|
@ -2312,6 +2312,7 @@
|
||||||
"plurial": "Players"
|
"plurial": "Players"
|
||||||
},
|
},
|
||||||
"portrait": "Portrait",
|
"portrait": "Portrait",
|
||||||
|
"preview": "Preview",
|
||||||
"proficiency": "Proficiency",
|
"proficiency": "Proficiency",
|
||||||
"quantity": "Quantity",
|
"quantity": "Quantity",
|
||||||
"range": "Range",
|
"range": "Range",
|
||||||
|
|
@ -2734,6 +2735,10 @@
|
||||||
"label": "Appearance Settings",
|
"label": "Appearance Settings",
|
||||||
"hint": "Modify the look of various parts of the system",
|
"hint": "Modify the look of various parts of the system",
|
||||||
"duality": "Duality Rolls",
|
"duality": "Duality Rolls",
|
||||||
|
"globalAnimations": "Global Animations",
|
||||||
|
"diceAppearance": "Dice Appearance",
|
||||||
|
"animations": "Animations",
|
||||||
|
"previewAnimation": "Preview Animation",
|
||||||
"diceSoNice": {
|
"diceSoNice": {
|
||||||
"title": "Dice So Nice",
|
"title": "Dice So Nice",
|
||||||
"hint": "Coloration of Duality dice if the Dice So Nice module is used.",
|
"hint": "Coloration of Duality dice if the Dice So Nice module is used.",
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<div class="title-hint">{{localize "DAGGERHEART.SETTINGS.Menu.appearance.diceSoNice.hint"}}</div>
|
<div class="title-hint">{{localize "DAGGERHEART.SETTINGS.Menu.appearance.diceSoNice.hint"}}</div>
|
||||||
|
|
||||||
<h3>{{localize "Global Animations"}}</h3>
|
<h3>{{localize "DAGGERHEART.SETTINGS.Menu.appearance.globalAnimations"}}</h3>
|
||||||
<div class="split-section">
|
<div class="split-section">
|
||||||
<div class="label-container full-width">
|
<div class="label-container full-width">
|
||||||
<label>{{localize "Critical"}}</label>
|
<label>{{localize "DAGGERHEART.CONFIG.DaggerheartDiceAnimationEvents.critical.name"}}</label>
|
||||||
{{formInput fields.diceSoNice.fields.sfx.fields.critical.fields.class value=setting.diceSoNice.sfx.critical.class blank="" localize=true}}
|
{{formInput fields.diceSoNice.fields.sfx.fields.critical.fields.class value=setting.diceSoNice.sfx.critical.class blank="" localize=true}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -28,7 +28,7 @@
|
||||||
{{#each dsnTabs as |dsnTab|}}
|
{{#each dsnTabs as |dsnTab|}}
|
||||||
<section class="tab {{#if dsnTab.active}} active{{/if}}" data-group="{{dsnTab.group}}" data-tab="{{dsnTab.id}}">
|
<section class="tab {{#if dsnTab.active}} active{{/if}}" data-group="{{dsnTab.group}}" data-tab="{{dsnTab.id}}">
|
||||||
<div class="field-section">
|
<div class="field-section">
|
||||||
<h3>{{localize "Dice Appearance"}}</h3>
|
<h3>{{localize "DAGGERHEART.SETTINGS.Menu.appearance.diceAppearance"}}</h3>
|
||||||
|
|
||||||
<div class="label-container full-width">
|
<div class="label-container full-width">
|
||||||
<label>{{localize "DAGGERHEART.SETTINGS.Menu.appearance.diceSoNice.system"}}</label>
|
<label>{{localize "DAGGERHEART.SETTINGS.Menu.appearance.diceSoNice.system"}}</label>
|
||||||
|
|
@ -70,21 +70,21 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{#if dsnTab.animations}}
|
{{#if dsnTab.animations}}
|
||||||
<h3>{{localize "Animations"}}</h3>
|
<h3>{{localize "DAGGERHEART.SETTINGS.Menu.appearance.animations"}}</h3>
|
||||||
<div class="label-container full-width">
|
<div class="label-container full-width">
|
||||||
<label>{{localize "Highest Roll"}}</label>
|
<label>{{localize "DAGGERHEART.CONFIG.DaggerheartDiceAnimationEvents.higher.name"}}</label>
|
||||||
{{formInput fields.sfx.fields.higher.fields.class value=values.sfx.higher.class blank="" localize=true}}
|
{{formInput fields.sfx.fields.higher.fields.class value=values.sfx.higher.class blank="" localize=true}}
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<div class="diceSoNice-footer">
|
<div class="diceSoNice-footer">
|
||||||
<label>{{localize "Preview Animation"}}</label>
|
<label>{{localize "DAGGERHEART.SETTINGS.Menu.appearance.previewAnimation"}}</label>
|
||||||
<select name="{{concat dsnTab.id "PreviewAnimation"}}">
|
<select name="{{concat dsnTab.id "PreviewAnimation"}}">
|
||||||
{{selectOptions @root.animationEvents selected=@root.previewAnimation blank="" localize=true }}
|
{{selectOptions @root.animationEvents selected=@root.previewAnimation blank="" localize=true }}
|
||||||
</select>
|
</select>
|
||||||
<button type="button" data-action="preview" data-key="{{dsnTab.id}}">
|
<button type="button" data-action="preview" data-key="{{dsnTab.id}}">
|
||||||
<i class="fa-solid fa-dice"></i>
|
<i class="fa-solid fa-dice"></i>
|
||||||
<span>{{localize "Preview"}}</span>
|
<span>{{localize "DAGGERHEART.GENERAL.preview"}}</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue