diff --git a/langs/en-ca.json b/langs/en-ca.json index 06abf4b..af66f19 100644 --- a/langs/en-ca.json +++ b/langs/en-ca.json @@ -19,61 +19,62 @@ "HeroSkillsCardV1": "Hero Skill Card" }, "common": { - "ammo": "Ammo", - "quantity": "Quantity", - "equipped": "Equipped", - "edit": "Edit", - "delete": "Delete", - "empty": "---", - "move": "Move", - "run": "Run", - "fate": { - "North": "North", - "East": "East", - "South": "South", - "West": "West" - }, "ability": { "grit": "Grit", "gait": "Gait", "grip": "Grip", "glim": "Glim" }, - "traits": "Traits", - "range": "Range", - "weapon": { - "singular": "Weapon", - "plural": "Weapons" - }, - "armour": "Armour", - "wear": "Wear", - "damage": "Damage", - "guts": "Guts", - "glory": "Glory", - "step": "Step", - "rank": "Rank", - "gear": "Gear", - "slot": "Slot", - "currency": { - "gold": "Gold", - "silver": "Silver", - "copper": "Copper" - }, - "anatomy": { - "head": "Head", - "body": "Body", - "arms": "Arms", - "legs": "Legs" - }, - "shield": "Shield", "access": { "Common": "Common", "Uncommon": "Uncommon", "Rare": "Rare", "Scarce": "Scarce" }, + "ammo": "Ammo", + "anatomy": { + "head": "Head", + "body": "Body", + "arms": "Arms", + "legs": "Legs" + }, + "armour": "Armour", + "currency": { + "gold": "Gold", + "silver": "Silver", + "copper": "Copper" + }, + "damage": "Damage", + "delete": "Delete", + "edit": "Edit", + "empty": "---", + "equipped": "Equipped", + "fate": "Fate", + "gear": "Gear", + "glory": "Glory", + "guts": "Guts", + "location": "Location", + "move": "Move", + "path": { + "North": "North", + "East": "East", + "South": "South", + "West": "West" + }, "protection": "Protection", - "location": "Location" + "quantity": "Quantity", + "rank": "Rank", + "range": "Range", + "run": "Run", + "shield": "Shield", + "slot": "Slot", + "step": "Step", + "traits": "Traits", + "weapon": { + "singular": "Weapon", + "plural": "Weapons" + }, + "wear": "Wear" }, "setting": { "abbrAccess": { diff --git a/module/Apps/ActorSheets/HeroSummaryCardV1.mjs b/module/Apps/ActorSheets/HeroSummaryCardV1.mjs index 41d9191..e3883d3 100644 --- a/module/Apps/ActorSheets/HeroSummaryCardV1.mjs +++ b/module/Apps/ActorSheets/HeroSummaryCardV1.mjs @@ -114,7 +114,7 @@ export class HeroSummaryCardV1 extends GenericAppMixin(HandlebarsApplicationMixi ctx.fate.options = [ { label: `RipCrypt.common.empty`, v: `` }, ...gameTerms.FatePath - .map(v => ({ label: `RipCrypt.common.fate.${v}`, value: v })), + .map(v => ({ label: `RipCrypt.common.path.${v}`, value: v })), ]; return ctx; }; diff --git a/templates/Apps/HeroSummaryCardV1/content.hbs b/templates/Apps/HeroSummaryCardV1/content.hbs index 5649c57..5dcf3fc 100644 --- a/templates/Apps/HeroSummaryCardV1/content.hbs +++ b/templates/Apps/HeroSummaryCardV1/content.hbs @@ -98,7 +98,9 @@ {{!-- * Fate & Advancement --}}