More translation fixes
This commit is contained in:
@@ -179,11 +179,12 @@ function onInvitation(user) {
|
||||
|
||||
async function onRemoveUser(user) {
|
||||
const yes = await inputDialog.value.confirm({
|
||||
title: t('users.deleteUserDialog.title', { username: (user.username || user.email) }),
|
||||
message: t('users.deleteUserDialog.description'),
|
||||
title: t('users.deleteUserDialog.title'),
|
||||
message: t('users.deleteUserDialog.description', { username: (user.username || user.email) }),
|
||||
confirmStyle: 'danger',
|
||||
confirmLabel: t('users.deleteUserDialog.deleteAction'),
|
||||
rejectLabel: t('main.dialog.cancel')
|
||||
rejectLabel: t('main.dialog.cancel'),
|
||||
rejectStyle: 'secondary'
|
||||
});
|
||||
|
||||
if (!yes) return;
|
||||
|
||||
Reference in New Issue
Block a user