Capitalized initial system localization categories

This commit is contained in:
WBHarry 2025-07-06 17:26:02 +02:00
parent ea6b84fc4b
commit 0fe72669c8
125 changed files with 861 additions and 861 deletions

View file

@ -1,37 +1,37 @@
export const actionTypes = {
attack: {
id: 'attack',
name: 'DAGGERHEART.Actions.Types.attack.name',
name: 'DAGGERHEART.ACTIONS.TYPES.attack.name',
icon: 'fa-swords'
},
healing: {
id: 'healing',
name: 'DAGGERHEART.Actions.Types.healing.name',
name: 'DAGGERHEART.ACTIONS.TYPES.healing.name',
icon: 'fa-kit-medical'
},
damage: {
id: 'damage',
name: 'DAGGERHEART.Actions.Types.damage.name',
name: 'DAGGERHEART.ACTIONS.TYPES.damage.name',
icon: 'fa-bone-break'
},
summon: {
id: 'summon',
name: 'DAGGERHEART.Actions.Types.summon.name',
name: 'DAGGERHEART.ACTIONS.TYPES.summon.name',
icon: 'fa-ghost'
},
effect: {
id: 'effect',
name: 'DAGGERHEART.Actions.Types.effect.name',
name: 'DAGGERHEART.ACTIONS.TYPES.effect.name',
icon: 'fa-person-rays'
},
macro: {
id: 'macro',
name: 'DAGGERHEART.Actions.Types.macro.name',
name: 'DAGGERHEART.ACTIONS.TYPES.macro.name',
icon: 'fa-scroll'
},
beastform: {
id: 'beastform',
name: 'DAGGERHEART.Actions.Types.beastform.name',
name: 'DAGGERHEART.ACTIONS.TYPES.beastform.name',
icon: 'fa-paw'
}
};
@ -103,15 +103,15 @@ export const diceCompare = {
export const advandtageState = {
disadvantage: {
label: 'DAGGERHEART.General.Disadvantage.full',
label: 'DAGGERHEART.GENERAL.Disadvantage.full',
value: -1
},
neutral: {
label: 'DAGGERHEART.General.Neutral.full',
label: 'DAGGERHEART.GENERAL.Neutral.full',
value: 0
},
advantage: {
label: 'DAGGERHEART.General.Advantage.full',
label: 'DAGGERHEART.GENERAL.Advantage.full',
value: 1
}
};