diff --git a/langs/en-ca.json b/langs/en-ca.json index 35e28e1..65bb80d 100644 --- a/langs/en-ca.json +++ b/langs/en-ca.json @@ -67,6 +67,7 @@ "hard": "Hard", "random": "Random Condition" }, + "difficulty": "Difficulty", "drag": "Drag", "edit": "Edit", "edge": "Edge", @@ -78,11 +79,23 @@ "guts": "Guts", "location": "Location", "move": "Move", - "path": { - "North": "North", - "East": "East", - "South": "South", - "West": "West" + "ordinals": { + "North": { + "full": "North", + "abbv": "N" + }, + "East": { + "full": "East", + "abbv": "E" + }, + "South": { + "full": "South", + "abbv": "S" + }, + "West": { + "full": "West", + "abbv": "W" + } }, "protection": "Protection", "quantity": "Quantity", @@ -171,7 +184,11 @@ } }, "tooltips": { - "shield-bonus": "Shield Bonus: {value}" + "shield-bonus": "Shield Bonus: {value}", + "set-fate-to": "Set Fate to {ordinal}", + "current-tour": "Current Delve Tour", + "next-tour": "Next Delve Tour", + "prev-tour": "Previous Delve Tour" } } } diff --git a/module/Apps/ActorSheets/HeroSummaryCardV1.mjs b/module/Apps/ActorSheets/HeroSummaryCardV1.mjs index 0dc19bd..3b7ad93 100644 --- a/module/Apps/ActorSheets/HeroSummaryCardV1.mjs +++ b/module/Apps/ActorSheets/HeroSummaryCardV1.mjs @@ -117,7 +117,7 @@ export class HeroSummaryCardV1 extends GenericAppMixin(HandlebarsApplicationMixi ctx.fate.options = [ { label: `RipCrypt.common.empty`, v: `` }, ...Object.values(gameTerms.FatePath) - .map(v => ({ label: `RipCrypt.common.path.${v}`, value: v })), + .map(v => ({ label: `RipCrypt.common.ordinals.${v}.full`, value: v })), ]; return ctx; }; diff --git a/templates/Apps/DelveDiceHUD/difficulty.hbs b/templates/Apps/DelveDiceHUD/difficulty.hbs index 74b1434..bf5704f 100644 --- a/templates/Apps/DelveDiceHUD/difficulty.hbs +++ b/templates/Apps/DelveDiceHUD/difficulty.hbs @@ -1,7 +1,7 @@