fix(i18n): synchronise et complète les clés FR/EN
Release Creation / build (release) Failing after 1m17s

- EN : ajoute les clés top-level NAME/NONE/ORIGIN/PROFILE/THEME/TOTEM
  utilisées par les fiches PNJ (légacy et appv2), VERMINE.skills/skill/
  specificLevel/competence/modes/traits_selector, VERMINE.add/delete/
  learning, COMBAT.Begin/Delete/End/NotStarted/TurnEnd.
- FR : ajoute VERMINE.add/delete/learning et COMBAT.Delete.
- Rareté alignée : EN rarity_1 Peu commun/Uncommon, rarity_2 Rare,
  rarity_3 Très rare/Very rare (était décalée).
- Chat cards ability/rite : UI.effects (objet) -> UI.effects.name.
This commit is contained in:
2026-08-09 15:00:57 +02:00
parent f9ef1d48a4
commit be43913ae3
4 changed files with 30 additions and 5 deletions
+24 -3
View File
@@ -1,4 +1,10 @@
{
"NAME": "Name",
"NONE": "None",
"ORIGIN": "Origin",
"PROFILE": "Profile",
"THEME": "Concept",
"TOTEM": "Totem",
"SETTINGS": {
"world": {
"game_mode": {
@@ -199,9 +205,15 @@
"unequip": "Unequip",
"abilities": "Characteristics",
"ability": "Characteristic",
"skills": "Skills",
"skill": "Skill",
"skills_title": "Skills",
"skill_title": "Skill",
"skill_mastery": "Mastery",
"specificLevel": "Specific level",
"competence": "Skill",
"modes": "Game modes",
"traits_selector": "Trait selector",
"bonus": "Bonus",
"bonus_supplementary": "Supplementary bonus",
"penalty": "Penalty",
@@ -212,6 +224,9 @@
"techniques": "Techniques",
"difficulty": "Difficulty",
"help": "Help",
"add": "Add",
"delete": "Delete",
"learning": "Learning",
"tooling": "Equipment",
"quantity": "Quantity",
"qty": "Qty",
@@ -597,8 +612,9 @@
"prohibits": "Prohibits",
"prohibits_placeholder": "eg: Fire, Water",
"rarity_0": "Common",
"rarity_1": "Rare",
"rarity_2": "Very Rare",
"rarity_1": "Uncommon",
"rarity_2": "Rare",
"rarity_3": "Very rare",
"reserves": "Reserves",
"ritual": "Ritual",
"sexes": {
@@ -1054,9 +1070,14 @@
"female": "Feminine"
},
"COMBAT": {
"Begin": "Start Combat",
"Delete": "Delete",
"Encounter": "Encounter",
"End": "End Combat",
"None": "None",
"Round": "Round"
"NotStarted": "Not Started",
"Round": "Round",
"TurnEnd": "End Turn"
},
"SIZE_LEVELS": {
"tiny": "Insect",
+4
View File
@@ -292,6 +292,9 @@
"techniques": "Techniques",
"difficulty": "Difficulté",
"help": "Entraide",
"add": "Ajouter",
"delete": "Supprimer",
"learning": "Apprentissage",
"tooling": "Equipement",
"quantity": "Quantité",
"qty": "Qté",
@@ -1072,6 +1075,7 @@
},
"COMBAT": {
"Begin": "Commencer",
"Delete": "Supprimer",
"Encounter": "Rencontre",
"End": "Terminer",
"None": "Aucun",
+1 -1
View File
@@ -38,7 +38,7 @@
{{#if item.system.effects}}
<div class="resource flexcol">
<span class="resource-label">{{ localize 'UI.effects' }}:</span>
<span class="resource-label">{{ localize 'UI.effects.name' }}:</span>
<ul class="unstyled">
{{#each item.system.effects as |effect|}}
<li>{{effect}}</li>
+1 -1
View File
@@ -26,7 +26,7 @@
{{#if item.system.effect}}
<div class="resource flexrow">
<span class="resource-label">{{ localize 'UI.effects' }}:</span>
<span class="resource-label">{{ localize 'UI.effects.name' }}:</span>
<span>{{item.system.effect}}</span>
</div>
{{/if}}