Yet more translation fixes
This commit is contained in:
@@ -78,11 +78,12 @@ async function refreshArchives() {
|
||||
const inputDialog = useTemplateRef('inputDialog');
|
||||
async function onRemove(archive) {
|
||||
const yes = await inputDialog.value.confirm({
|
||||
title: t('backups.deleteArchiveDialog.title', { appTitle: archive.appConfig?.manifest?.title, fqdn: archive.appConfig?.fqdn }),
|
||||
message: t('backups.deleteArchiveDialog.description'),
|
||||
title: t('backups.deleteArchiveDialog.title'),
|
||||
message: t('backups.deleteArchiveDialog.description', { appTitle: archive.appConfig?.manifest?.title, appFqdn: archive.appConfig?.fqdn }),
|
||||
confirmStyle: 'danger',
|
||||
confirmLabel: t('backups.deleteArchive.deleteAction'),
|
||||
rejectLabel: t('main.dialog.cancel')
|
||||
rejectLabel: t('main.dialog.cancel'),
|
||||
rejectStyle: 'secondary'
|
||||
});
|
||||
|
||||
if (!yes) return;
|
||||
|
||||
@@ -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