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,7 +1,7 @@
<section class="dnc-chat-card dnc-chat-card-usage">
<header class="chat-card-header">
<div class="chat-card-heading">
<p class="chat-card-kicker">Usure</p>
<p class="chat-card-kicker">{{localize "DNC.Chat.Kicker.Wear"}}</p>
<h2>{{title}}</h2>
</div>
<div class="chat-card-seal {{#if degraded}}failure{{else}}success{{/if}}">
@@ -10,17 +10,17 @@
</header>
<div class="chat-pill-row">
{{#if modeLabel}}<span class="chat-pill">{{modeLabel}}</span>{{/if}}
<span class="chat-pill">Resultat {{value}}</span>
<span class="chat-pill">Avant {{before}}</span>
<span class="chat-pill">Apres {{after}}</span>
<span class="chat-pill">{{localize "DNC.Chat.Result"}} {{value}}</span>
<span class="chat-pill">{{localize "DNC.Chat.Before"}} {{before}}</span>
<span class="chat-pill">{{localize "DNC.Chat.After"}} {{after}}</span>
</div>
{{#if values.[1]}}
<div class="chat-keyline">
<span class="chat-keyline-label">Lancers</span>
<span class="chat-keyline-label">{{localize "DNC.Chat.Rolls"}}</span>
<p class="roll-values">{{#each values}}<span>{{this}}</span>{{/each}}</p>
</div>
{{/if}}
{{#if protectionStored}}<p class="chat-note">Protection stockee pour ce combat : <strong>{{protectionStored}}</strong>.</p>{{/if}}
{{#if degraded}}<p class="chat-note">La ressource s'amenuise.</p>{{else}}<p class="chat-note">La ressource tient bon.</p>{{/if}}
{{#if exhausted}}<p class="warning">La ressource est epuisee.</p>{{/if}}
{{#if protectionStored}}<p class="chat-note">{{localize "DNC.Chat.StoredProtection"}} : <strong>{{protectionStored}}</strong>.</p>{{/if}}
{{#if degraded}}<p class="chat-note">{{localize "DNC.Chat.ResourceWearsDown"}}</p>{{else}}<p class="chat-note">{{localize "DNC.Chat.ResourceStable"}}</p>{{/if}}
{{#if exhausted}}<p class="warning">{{localize "DNC.Chat.ResourceExhausted"}}</p>{{/if}}
</section>