Update translations

This commit is contained in:
Johannes Zellner
2025-08-18 15:59:40 +02:00
parent fafa299ae1
commit 4d8b6c5ea7
5 changed files with 40 additions and 11 deletions
+2 -2
View File
@@ -83,13 +83,13 @@ function onActionMenu(domain, event) {
action: () => wellKnownDialog.value.open(domain),
}, {
icon: 'fa-solid fa-pencil-alt',
label: t('domains.tooltipEdit'),
label: t('main.action.edit'),
action: onEdit.bind(null, domain),
}, {
separator: true,
}, {
icon: 'fa-solid fa-trash-alt',
label: t('domains.tooltipRemove'),
label: t('main.action.remove'),
disabled: domain.domain.value === dashboardDomain.value,
action: onRemove.bind(null, domain),
}];