More translation fixes
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user