More translation fixes

This commit is contained in:
Girish Ramakrishnan
2025-11-07 10:45:21 +01:00
parent 232bce0a2d
commit 9ed5f43ea1
17 changed files with 73 additions and 60 deletions
+4 -3
View File
@@ -110,11 +110,12 @@ function onEditOrAddGroup(group = null) {
async function onRemoveGroup(group) {
const yes = await inputDialog.value.confirm({
title: t('users.deleteGroupDialog.title', { name: group.name }),
message: t('users.deleteGroupDialog.description', { memberCount: group.userIds.length }),
title: t('users.deleteGroupDialog.title'),
message: t('users.deleteGroupDialog.description', { name: group.name, memberCount: group.userIds.length }),
confirmStyle: 'danger',
confirmLabel: t('users.deleteGroupDialog.deleteAction'),
rejectLabel: t('main.dialog.cancel')
rejectLabel: t('main.dialog.cancel'),
rejectStyle: 'secondary'
});
if (!yes) return;