Corrections sur les clés de label manquantes
Some checks failed
Release Creation / build (release) Failing after 54s

This commit is contained in:
2026-04-16 21:52:56 +02:00
parent 56ed6c7567
commit 1d6e6dd44e
25 changed files with 252 additions and 161 deletions

View File

@@ -1,18 +1,18 @@
<div class="dnc-dialog-form">
<p><strong>{{actorName}}</strong> effectue un jet de <strong>{{characteristic.label}}</strong>.</p>
<label>
<span>Mode</span>
<span>{{localize "DNC.UI.Mode"}}</span>
<select name="mode">
<option value="normal">Normal</option>
<option value="avantage">Avantage</option>
<option value="desavantage">Desavantage</option>
<option value="normal">{{localize "DNC.UI.ModeNormal"}}</option>
<option value="avantage">{{localize "DNC.UI.ModeAdvantage"}}</option>
<option value="desavantage">{{localize "DNC.UI.ModeDisadvantage"}}</option>
</select>
</label>
{{#if hasFavorOptions}}
<label>
<span>Coup de pouce</span>
<span>{{localize "DNC.UI.FavorBoost"}}</span>
<select name="favorDepartment">
<option value="">Aucune faveur</option>
<option value="">{{localize "DNC.UI.NoFavor"}}</option>
{{selectOptions favorOptions selected="" labelAttr="label" valueAttr="value" localize=false}}
</select>
</label>

View File

@@ -1,12 +1,12 @@
<div class="dnc-dialog-form">
<p><strong>{{item.name}}</strong> inflige <strong>{{item.system.degats}}</strong>.</p>
<p>Bonus de degats de l'acteur : <strong>{{actorBonus}}</strong></p>
<p>{{localize "DNC.Dialog.ActorDamageBonus"}} : <strong>{{actorBonus}}</strong></p>
<label>
<span>Mode</span>
<span>{{localize "DNC.UI.Mode"}}</span>
<select name="mode">
<option value="normal">Normal</option>
<option value="avantage">Avantage</option>
<option value="desavantage">Desavantage</option>
<option value="normal">{{localize "DNC.UI.ModeNormal"}}</option>
<option value="avantage">{{localize "DNC.UI.ModeAdvantage"}}</option>
<option value="desavantage">{{localize "DNC.UI.ModeDisadvantage"}}</option>
</select>
</label>
</div>

View File

@@ -1,12 +1,12 @@
<div class="dnc-dialog-form">
<p><strong>{{actorName}}</strong> lance l'initiative.</p>
<p>DEX actuelle : <strong>{{dex}}</strong>, bonus de fiche : <strong>{{initiativeBonus}}</strong></p>
<p>{{localize "DNC.Dialog.InitiativeIntro" actorName=actorName}}</p>
<p>{{localize "DNC.Dialog.InitiativeCurrent" dex=dex initiativeBonus=initiativeBonus}}</p>
<label>
<span>Mode</span>
<span>{{localize "DNC.UI.Mode"}}</span>
<select name="mode">
<option value="normal">Normal</option>
<option value="avantage">Avantage</option>
<option value="desavantage">Desavantage</option>
<option value="normal">{{localize "DNC.UI.ModeNormal"}}</option>
<option value="avantage">{{localize "DNC.UI.ModeAdvantage"}}</option>
<option value="desavantage">{{localize "DNC.UI.ModeDisadvantage"}}</option>
</select>
</label>
</div>

View File

@@ -1,47 +1,47 @@
<div class="dnc-dialog-form">
<p><strong>{{actorName}}</strong> lance <strong>{{item.name}}</strong>.</p>
<label>
<span>Caracteristique</span>
<span>{{localize "DNC.UI.Characteristic"}}</span>
<input type="text" value="{{characteristic.label}} ({{characteristic.value}})" readonly>
</label>
<label>
<span>Cout</span>
<span>{{localize "DNC.UI.Cost"}}</span>
<input type="text" value="{{item.system.coutPv}} PV" readonly>
</label>
<label>
<span>PV actuels</span>
<span>{{localize "DNC.UI.CurrentHp"}}</span>
<input type="text" value="{{currentPv}}" readonly>
</label>
<label>
<span>Rang</span>
<span>{{localize "DNC.UI.Rank"}}</span>
<input type="text" value="{{rank}}" readonly>
</label>
<label>
<span>Focus</span>
<span>{{localize "DNC.UI.Focus"}}</span>
<input type="text" value="{{#if focusIsActive}}{{focusDisplay}}{{else}}{{focusLabel}}{{/if}}" readonly>
</label>
<label>
<span>Chaos</span>
<span>{{localize "DNC.UI.Chaos"}}</span>
<input type="text" value="{{chaosLabel}}" readonly>
</label>
<label>
<span>Mode</span>
<span>{{localize "DNC.UI.Mode"}}</span>
<select name="mode">
<option value="normal">Normal</option>
<option value="avantage">Avantage</option>
<option value="desavantage">Desavantage</option>
<option value="normal">{{localize "DNC.UI.ModeNormal"}}</option>
<option value="avantage">{{localize "DNC.UI.ModeAdvantage"}}</option>
<option value="desavantage">{{localize "DNC.UI.ModeDisadvantage"}}</option>
</select>
</label>
{{#if hasFavorOptions}}
<label>
<span>Coup de pouce</span>
<span>{{localize "DNC.UI.FavorBoost"}}</span>
<select name="favorDepartment">
<option value="">Aucune faveur</option>
<option value="">{{localize "DNC.UI.NoFavor"}}</option>
{{selectOptions favorOptions selected="" labelAttr="label" valueAttr="value" localize=false}}
</select>
</label>
{{/if}}
{{#if autoDisadvantage}}
<p class="dialog-help warning">Le cout depasse le rang du lanceur : le jet se fera automatiquement avec desavantage.</p>
<p class="dialog-help warning">{{localize "DNC.Dialog.SpellAutoDisadvantage"}}</p>
{{/if}}
</div>

View File

@@ -1,12 +1,12 @@
<div class="dnc-dialog-form">
<p>Utiliser <strong>{{item.name}}</strong> et lancer son de d'usage actuel.</p>
<p>Valeur actuelle : <strong>Δ{{item.system.delta}}</strong></p>
<p>{{localize "DNC.Dialog.UseUsageDie" itemName=item.name}}</p>
<p>{{localize "DNC.Dialog.CurrentValue"}} : <strong>Δ{{item.system.delta}}</strong></p>
<label>
<span>Mode</span>
<span>{{localize "DNC.UI.Mode"}}</span>
<select name="mode">
<option value="normal">Normal</option>
<option value="avantage">Avantage</option>
<option value="desavantage">Desavantage</option>
<option value="normal">{{localize "DNC.UI.ModeNormal"}}</option>
<option value="avantage">{{localize "DNC.UI.ModeAdvantage"}}</option>
<option value="desavantage">{{localize "DNC.UI.ModeDisadvantage"}}</option>
</select>
</label>
</div>

View File

@@ -1,19 +1,19 @@
<div class="dnc-dialog-form">
<p><strong>{{actorName}}</strong> attaque avec <strong>{{item.name}}</strong>.</p>
<p>Caracteristique utilisee : <strong>{{characteristicLabel}}</strong> (<strong>{{characteristicValue}}</strong>).</p>
<p>{{localize "DNC.Dialog.CharacteristicUsed"}} : <strong>{{characteristicLabel}}</strong> (<strong>{{characteristicValue}}</strong>).</p>
<label>
<span>Mode</span>
<span>{{localize "DNC.UI.Mode"}}</span>
<select name="mode">
<option value="normal">Normal</option>
<option value="avantage">Avantage</option>
<option value="desavantage">Desavantage</option>
<option value="normal">{{localize "DNC.UI.ModeNormal"}}</option>
<option value="avantage">{{localize "DNC.UI.ModeAdvantage"}}</option>
<option value="desavantage">{{localize "DNC.UI.ModeDisadvantage"}}</option>
</select>
</label>
{{#if hasFavorOptions}}
<label>
<span>Coup de pouce</span>
<span>{{localize "DNC.UI.FavorBoost"}}</span>
<select name="favorDepartment">
<option value="">Aucune faveur</option>
<option value="">{{localize "DNC.UI.NoFavor"}}</option>
{{selectOptions favorOptions selected="" labelAttr="label" valueAttr="value" localize=false}}
</select>
</label>