more translation fixes

This commit is contained in:
Girish Ramakrishnan
2025-11-06 16:52:34 +01:00
parent 829512dd13
commit 0cf911bcdd
17 changed files with 59 additions and 60 deletions
+4 -2
View File
@@ -42,10 +42,12 @@ const inputDialog = useTemplateRef('inputDialog');
async function onRemove(domain) {
const yes = await inputDialog.value.confirm({
message: t('domains.removeDialog.title', { domain: domain.domain }),
title: t('domains.removeDialog.title'),
message: t('domains.removeDialog.description', { domain: domain.domain }),
confirmStyle: 'danger',
confirmLabel: t('domains.removeDialog.removeAction'),
rejectLabel: t('main.dialog.cancel')
rejectLabel: t('main.dialog.cancel'),
rejectStyle: 'secondary'
});
if (!yes) return;