From 2a16b1514045c36420f2d0660b6494e106b39642 Mon Sep 17 00:00:00 2001 From: WBHarry Date: Sun, 14 Jun 2026 21:17:40 +0200 Subject: [PATCH] Lang cleanup --- lang/en.json | 4 ++-- module/config/generalConfig.mjs | 20 ++++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/lang/en.json b/lang/en.json index 1c7b1827..5bab0e64 100755 --- a/lang/en.json +++ b/lang/en.json @@ -1161,7 +1161,7 @@ "autoAppliedByLabel": "Max Stress" } }, - "CountdownType": { + "CountdownProgressType": { "actionRoll": "Action Roll", "characterAttack": "Character Attack", "characterSpotlight": "Character Spotlight", @@ -1169,7 +1169,7 @@ "fear": "Fear", "spotlight": "Spotlight" }, - "CountdownBaseType": { + "CountdownType": { "encounter": { "label": "Short Term", "shortLabel": "Short" }, "narrative": { "label": "Long Term", "shortLabel": "Long" } }, diff --git a/module/config/generalConfig.mjs b/module/config/generalConfig.mjs index 3c251437..d2b8dd64 100644 --- a/module/config/generalConfig.mjs +++ b/module/config/generalConfig.mjs @@ -867,27 +867,27 @@ export const abilityCosts = { export const countdownProgressionTypes = { actionRoll: { id: 'actionRoll', - label: 'DAGGERHEART.CONFIG.CountdownType.actionRoll' + label: 'DAGGERHEART.CONFIG.CountdownProgressType.actionRoll' }, characterAttack: { id: 'characterAttack', - label: 'DAGGERHEART.CONFIG.CountdownType.characterAttack' + label: 'DAGGERHEART.CONFIG.CountdownProgressType.characterAttack' }, characterSpotlight: { id: 'characterSpotlight', - label: 'DAGGERHEART.CONFIG.CountdownType.characterSpotlight' + label: 'DAGGERHEART.CONFIG.CountdownProgressType.characterSpotlight' }, custom: { id: 'custom', - label: 'DAGGERHEART.CONFIG.CountdownType.custom' + label: 'DAGGERHEART.CONFIG.CountdownProgressType.custom' }, fear: { id: 'fear', - label: 'DAGGERHEART.CONFIG.CountdownType.fear' + label: 'DAGGERHEART.CONFIG.CountdownProgressType.fear' }, spotlight: { id: 'spotlight', - label: 'DAGGERHEART.CONFIG.CountdownType.spotlight' + label: 'DAGGERHEART.CONFIG.CountdownProgressType.spotlight' } }; export const rollTypes = { @@ -962,13 +962,13 @@ export const countdownAppMode = { export const countdownType = { encounter: { id: 'encounter', - label: 'DAGGERHEART.CONFIG.CountdownBaseType.encounter.label', - shortLabel: 'DAGGERHEART.CONFIG.CountdownBaseType.encounter.shortLabel' + label: 'DAGGERHEART.CONFIG.CountdownType.encounter.label', + shortLabel: 'DAGGERHEART.CONFIG.CountdownType.encounter.shortLabel' }, narrative: { id: 'narrative', - label: 'DAGGERHEART.CONFIG.CountdownBaseType.narrative.label', - shortLabel: 'DAGGERHEART.CONFIG.CountdownBaseType.narrative.shortLabel' + label: 'DAGGERHEART.CONFIG.CountdownType.narrative.label', + shortLabel: 'DAGGERHEART.CONFIG.CountdownType.narrative.shortLabel' } };