Add some missing translations
This commit is contained in:
@@ -131,17 +131,17 @@ function onActionMenu(target, event) {
|
||||
visible: target.provider === 'sshfs' || target.provider === 'cifs' || target.provider === 'nfs' || target.provider === 'ext4' || target.provider === 'xfs',
|
||||
}, {
|
||||
icon: 'fa-solid fa-clock',
|
||||
label: 'Schedule and Retention',
|
||||
label: t('backups.schedule.title'),
|
||||
action: onEditSchedule.bind(null, target),
|
||||
}, {
|
||||
icon: 'fa-solid fa-pencil-alt',
|
||||
label: 'Edit',
|
||||
label: t('main.dialog.edit'),
|
||||
action: onEdit.bind(null, target),
|
||||
}, {
|
||||
separator: true
|
||||
}, {
|
||||
icon: 'fa-solid fa-trash',
|
||||
label: 'Remove',
|
||||
label: t('volumes.removeVolumeDialog.removeAction'),
|
||||
disabled: target.primary,
|
||||
action: onRemoveTarget.bind(null, target),
|
||||
}];
|
||||
@@ -182,6 +182,7 @@ onMounted(async () => {
|
||||
</template>
|
||||
|
||||
<template #name="target">
|
||||
<!-- TODO translate -->
|
||||
{{ target.name }} <span v-if="target.primary" class="text-muted">- used for updates</span>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user