diff --git a/dashboard/public/translation/en.json b/dashboard/public/translation/en.json index 75bcab57e..90664fa9a 100644 --- a/dashboard/public/translation/en.json +++ b/dashboard/public/translation/en.json @@ -2061,5 +2061,10 @@ "settings": { "title": "Settings" } + }, + "archives": { + "listing": { + "placeholder": "No app archives" + } } } diff --git a/dashboard/src/views/BackupAppArchivesView.vue b/dashboard/src/views/BackupAppArchivesView.vue index 68c7cf1f5..8fcb8fea0 100644 --- a/dashboard/src/views/BackupAppArchivesView.vue +++ b/dashboard/src/views/BackupAppArchivesView.vue @@ -104,7 +104,7 @@ onMounted(async () => {

- + diff --git a/dashboard/src/views/BackupListView.vue b/dashboard/src/views/BackupListView.vue index c2a30b570..7ed5d46b0 100644 --- a/dashboard/src/views/BackupListView.vue +++ b/dashboard/src/views/BackupListView.vue @@ -418,7 +418,7 @@ onMounted(async () => { - + diff --git a/dashboard/src/views/BackupTargetsView.vue b/dashboard/src/views/BackupTargetsView.vue index 1025dbd28..b10ab97ea 100644 --- a/dashboard/src/views/BackupTargetsView.vue +++ b/dashboard/src/views/BackupTargetsView.vue @@ -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 () => {