Add UK/US translation
This commit is contained in:
@ -13,10 +13,10 @@
|
||||
|
||||
{{!-- Sheet Tab Navigation --}}
|
||||
<nav class="sheet-tabs tabs" data-group="primary">
|
||||
<a class="item" data-tab="principal">Attributs</a>
|
||||
<a class="item" data-tab="competences">Compétences</a>
|
||||
<a class="item" data-tab="equipement">Attaques</a>
|
||||
<a class="item" data-tab="biodata">Bio&Notes</a>
|
||||
<a class="item" data-tab="principal">{{localize "MNBL.attributes"}}</a>
|
||||
<a class="item" data-tab="competences">{{localize "MNBL.skills"}}</a>
|
||||
<a class="item" data-tab="equipement">{{localize "MNBL.attacks"}}</a>
|
||||
<a class="item" data-tab="biodata">{{localize "MNBL.bio"}}</a>
|
||||
</nav>
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
@ -33,7 +33,7 @@
|
||||
<li class="item flexrow " data-attr-key="{{key}}">
|
||||
<img class="item-name-img" src="systems/fvtt-mournblade/assets/icons/{{attr.labelnorm}}.webp">
|
||||
<span class="item-name-label competence-name item-field-label-medium"><a
|
||||
class="roll-attribut">{{attr.label}}</a></span>
|
||||
class="roll-attribut">{{localize attr.label}}</a></span>
|
||||
<select class="status-small-label color-class-common item-field-label-short" type="text"
|
||||
name="system.attributs.{{key}}.value" value="{{attr.value}}" data-dtype="Number">
|
||||
{{selectOptions @root.config.listeNiveauCreature selected=attr.value}}
|
||||
@ -42,7 +42,7 @@
|
||||
{{/each}}
|
||||
</ul>
|
||||
|
||||
<h4 class="item-name-label competence-name">Santé</h4>
|
||||
<h4 class="item-name-label competence-name">{{localize "MNBL.health"}}</h4>
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow">
|
||||
<label class="label-name">Total</label>
|
||||
@ -50,14 +50,14 @@
|
||||
data-dtype="Number" />
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<label class="label-name">Non létaux</label>
|
||||
<label class="label-name">{{localize "MNBL.nonlethal"}}</label>
|
||||
<a class="sante-modify plus-minus-button" data-type="nonletaux" data-value="-1">-</a>
|
||||
<input type="text" class="input-numeric-short" name="system.sante.nonletaux"
|
||||
value="{{data.sante.nonletaux}}" data-dtype="Number" />
|
||||
<a class="sante-modify plus-minus-button" data-type="nonletaux" data-value="+1">+</a>
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<label class="label-name">Létaux</label>
|
||||
<label class="label-name">{{localize "MNBL.lethal"}}</label>
|
||||
<a class="sante-modify plus-minus-button" data-type="letaux" data-value="-1">-</a>
|
||||
<input type="text" class="input-numeric-short" name="system.sante.letaux" value="{{data.sante.letaux}}"
|
||||
data-dtype="Number" />
|
||||
@ -67,7 +67,7 @@
|
||||
<label class="label-name">Malus</label>
|
||||
<input type="text" class="input-numeric-short" name="system.sante.malusmanuel"
|
||||
value="{{data.sante.malusmanuel}}" data-dtype="Number" />
|
||||
<label class="label-name">Malus auto</label>
|
||||
<label class="label-name">{{localize "MNBL.automalus"}}</label>
|
||||
<label class="label-name">{{santeMalus}}</label>
|
||||
</li>
|
||||
</ul>
|
||||
@ -76,17 +76,17 @@
|
||||
|
||||
<div class="sheet-box color-bg-archetype">
|
||||
|
||||
<h4 class="item-name-label competence-name">Ame</h4>
|
||||
<h4 class="item-name-label competence-name">{{localize "MNBL.soul"}}</h4>
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow">
|
||||
<label class="label-name">Max</label>
|
||||
<input type="text" class="input-numeric-short" name="system.ame.fullmax" value="{{data.ame.fullmax}}"
|
||||
data-dtype="Number" />
|
||||
<label class="label-name">Max Actuel</label>
|
||||
<label class="label-name">{{localize "MNBL.currentmax"}}</label>
|
||||
<input type="text" class="input-numeric-short" name="system.ame.currentmax"
|
||||
value="{{data.ame.currentmax}}" data-dtype="Number" />
|
||||
<li class="item flexrow">
|
||||
<label class="label-name">Consommé</label>
|
||||
<label class="label-name">{{localize "MNBL.consumed"}}</label>
|
||||
<a class="ame-modify plus-minus-button" data-value="-1">-</a>
|
||||
<input type="text" class="input-numeric-short" name="system.ame.value" value="{{data.ame.value}}"
|
||||
data-dtype="Number" />
|
||||
@ -94,7 +94,7 @@
|
||||
</li>
|
||||
|
||||
<li class="item flexrow">
|
||||
<label class="label-name">Malus auto</label>
|
||||
<label class="label-name">{{localize "MNBL.automalus"}}</label>
|
||||
<label class="label-name">{{ameMalus}}</label>
|
||||
|
||||
</li>
|
||||
@ -110,25 +110,25 @@
|
||||
<label class="competence-name">{{combat.initTotal}}</label>
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<label class="competence-name">Vitesse</label>
|
||||
<label class="competence-name">{{localize "MNBL.speed"}}</label>
|
||||
<label class="competence-name">{{combat.vitesseBase}}</label>
|
||||
<input type="text" class="input-numeric-short" name="system.combat.vitessebonus"
|
||||
value="{{data.combat.vitessebonus}}" data-dtype="Number" />
|
||||
<label class="competence-name">{{combat.vitesseTotal}}</label>
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<label class="competence-name">Défense</label>
|
||||
<label class="competence-name">{{localize "MNBL.defense"}}</label>
|
||||
<label class="competence-name">{{combat.defenseBase}}</label>
|
||||
<input type="text" class="input-numeric-short" name="system.combat.defensebonus"
|
||||
value="{{data.combat.defensebonus}}" data-dtype="Number" />
|
||||
<label class="competence-name">{{combat.defenseTotal}}</label>
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<label class="competence-name">Total protection</label>
|
||||
<label class="competence-name">{{localize "MNBL.totalprotection"}}</label>
|
||||
<label class="competence-name">{{protectionTotal}}</label>
|
||||
</li>
|
||||
<li class="item flexrow">
|
||||
<label class="competence-name">Ressources</label>
|
||||
<label class="competence-name">{{localize "MNBL.ressources"}}</label>
|
||||
<input type="text" class="input-numeric-short" name="system.ressources.value"
|
||||
value="{{data.ressources.value}}" data-dtype="Number" />
|
||||
</li>
|
||||
@ -141,13 +141,13 @@
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow list-item items-title-bg">
|
||||
<span class="item-name-label-header">
|
||||
<h3><label class="items-title-text">Modificateurs</label></h3>
|
||||
<h3><label class="items-title-text">{{localize "MNBL.modifier"}}</label></h3>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Type</label>
|
||||
<label class="short-label">{{localize "MNBL.type"}}</label>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Valeur</label>
|
||||
<label class="short-label">{{localize "MNBL.value"}}</label>
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
@ -180,10 +180,10 @@
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow">
|
||||
<span class="item-name-label-header">
|
||||
<h3><label class="items-title-text">Compétences</label></h3>
|
||||
<h3><label class="items-title-text">{{localize "MNBL.skills"}}</label></h3>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Niveau</label>
|
||||
<label class="short-label">{{localize "MNBL.level"}}</label>
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
</li>
|
||||
@ -247,16 +247,16 @@
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow list-item items-title-bg">
|
||||
<span class="item-name-label-header">
|
||||
<h3><label class="items-title-text">Armes/Capacités</label></h3>
|
||||
<h3><label class="items-title-text">{{localize "MNBL.weaponscapacities"}}</label></h3>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Attaque</label>
|
||||
<label class="short-label">{{localize "MNBL.attack"}}</label>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Défense</label>
|
||||
<label class="short-label">{{localize "MNBL.defense"}}</label>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Dégats</label>
|
||||
<label class="short-label">{{localize "MNBL.damage"}}</label>
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
@ -271,7 +271,7 @@
|
||||
|
||||
<span class="item-field-label-short">
|
||||
{{#if (eq arme.system.typearme "special")}}
|
||||
<button class="roll-arme-special button-sheet-roll">Utiliser</button>
|
||||
<button class="roll-arme-special button-sheet-roll">{{localize "MNBL.use"}}</button>
|
||||
{{else}}
|
||||
{{#if arme.system.equipped}}
|
||||
<button class="roll-arme-offensif button-sheet-roll">{{arme.system.totalOffensif}}</button>
|
||||
@ -350,7 +350,7 @@
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow list-item items-title-bg">
|
||||
<span class="item-name-label-header">
|
||||
<h3><label class="items-title-text">Traits d'espèce</label></h3>
|
||||
<h3><label class="items-title-text">{{localize "MNBL.speciestrait"}}</label></h3>
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
@ -380,10 +380,10 @@
|
||||
<h3><label class="items-title-text">Runes</label></h3>
|
||||
</span>
|
||||
<span class="item-field-label-long">
|
||||
<label class="short-label">Haut parler</label>
|
||||
<label class="short-label">{{localize "MNBL.highlanguage"}}</label>
|
||||
</span>
|
||||
<span class="item-field-label-short">
|
||||
<label class="short-label">Difficulté</label>
|
||||
<label class="short-label">{{localize "MNBL.difficulty"}}</label>
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
@ -411,7 +411,7 @@
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="item flexrow list-item items-title-bg">
|
||||
<span class="item-name-label-header">
|
||||
<h3><label class="items-title-text">Equipements</label></h3>
|
||||
<h3><label class="items-title-text">{{localize "MNBL.equipments"}}</label></h3>
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
@ -447,7 +447,7 @@
|
||||
<div>
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label">Multiplicateur d'âme</label>
|
||||
<label class="generic-label">{{localize "MNBL.soulmultiplier"}}</label>
|
||||
<input type="text" class="input-numeric-short" name="system.biodata.amemultiplier"
|
||||
value="{{data.biodata.amemultiplier}}" data-dtype="Number" />
|
||||
</li>
|
||||
@ -456,11 +456,11 @@
|
||||
<div>
|
||||
<ul class="item-list alternate-list">
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label">Ignore le malus de Santé ?</label>
|
||||
<label class="generic-label">{{localize "MNBL.ignorehealthmalus"}} ?</label>
|
||||
<input type="checkbox" name="system.biodata.ignoresantemalus" {{checked data.biodata.ignoresantemalus}} />
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label">Ignore le malus d'Ame ?</label>
|
||||
<label class="generic-label">{{localize "MNBL.ignoresoulmalus"}} ?</label>
|
||||
<input type="checkbox" name="system.biodata.ignoreamemalus" {{checked data.biodata.ignoreamemalus}} />
|
||||
</li>
|
||||
</ul>
|
||||
|
Reference in New Issue
Block a user