From 127a4a9b7a9242520fe3a30ee5b2685068195914 Mon Sep 17 00:00:00 2001 From: Chris Ryan Date: Mon, 1 Sep 2025 13:41:55 +1000 Subject: [PATCH] Fix the missing translation keys --- module/config/generalConfig.mjs | 29 ++++------------------------- 1 file changed, 4 insertions(+), 25 deletions(-) diff --git a/module/config/generalConfig.mjs b/module/config/generalConfig.mjs index d4e6318e..60b3a2f1 100644 --- a/module/config/generalConfig.mjs +++ b/module/config/generalConfig.mjs @@ -561,19 +561,6 @@ export const refreshTypes = { } }; -export const itemAbilityCosts = { - resource: { - id: 'resource', - label: 'DAGGERHEART.GENERAL.resource', - group: 'Global' - }, - quantity: { - id: 'quantity', - label: 'DAGGERHEART.GENERAL.quantity', - group: 'Global' - } -}; - export const abilityCosts = { hitPoints: { id: 'hitPoints', @@ -587,20 +574,19 @@ export const abilityCosts = { }, hope: { id: 'hope', - label: 'Hope', + label: 'DAGGERHEART.CONFIG.HealingType.hope.name', group: 'TYPES.Actor.character' }, armor: { id: 'armor', - label: 'Armor Slot', + label: 'DAGGERHEART.CONFIG.HealingType.armor.name', group: 'TYPES.Actor.character' }, fear: { id: 'fear', - label: 'Fear', + label: 'DAGGERHEART.CONFIG.HealingType.fear.name', group: 'TYPES.Actor.adversary' - }, - resource: itemAbilityCosts.resource + } }; export const countdownTypes = { @@ -638,13 +624,6 @@ export const rollTypes = { } }; -export const attributionSources = { - daggerheart: { - label: 'Daggerheart', - values: [{ label: 'Daggerheart SRD' }] - } -}; - export const fearDisplay = { token: { value: 'token', label: 'DAGGERHEART.SETTINGS.Appearance.fearDisplay.token' }, bar: { value: 'bar', label: 'DAGGERHEART.SETTINGS.Appearance.fearDisplay.bar' },