Fixed localization

This commit is contained in:
WBHarry 2026-06-10 15:25:15 +02:00
parent 114123ac50
commit 3effc2a0b2
5 changed files with 11 additions and 10 deletions

View file

@ -189,7 +189,7 @@ export default class DhCountdowns extends HandlebarsApplicationMixin(Application
context.typeToggles =
Object.values(CONFIG.DH.GENERAL.countdownType).map(type => ({
type: type.id,
label: game.i18n.localize(type.label),
label: game.i18n.localize(type.shortLabel),
active: context.userCountdownTypes.includes(type.id)
}));