Yet more translation fixes
This commit is contained in:
@@ -223,10 +223,12 @@ async function onSubmit() {
|
||||
|
||||
async function onRemove(volume) {
|
||||
const yes = await inputDialog.value.confirm({
|
||||
message: `Really remove volume ${volume.name}?`,
|
||||
title: t('volumes.removeVolumeDialog.title'),
|
||||
message: t('volumes.removeVolumeDialog.description', { volumeName: volume.name }),
|
||||
confirmStyle: 'danger',
|
||||
confirmLabel: t('volumes.removeVolumeDialog.removeAction'),
|
||||
rejectLabel: t('main.dialog.cancel')
|
||||
rejectLabel: t('main.dialog.cancel'),
|
||||
rejectStyle: 'secondary'
|
||||
});
|
||||
|
||||
if (!yes) return;
|
||||
|
||||
Reference in New Issue
Block a user