diff --git a/dashboard/public/translation/en.json b/dashboard/public/translation/en.json index 2a9c8b2ed..2ac688b3e 100644 --- a/dashboard/public/translation/en.json +++ b/dashboard/public/translation/en.json @@ -664,7 +664,8 @@ "automaticUpdates": { "title": "Backups of Automatic Updates", "description": "A backup is always created before applying automatic updates. Choose whether to store those backups on this site." - } + }, + "useEncryption": "Encrypt Backups" }, "check": { "noop": "Cloudron backups are disabled. Please ensure this server is backed up using alternate means. See https://docs.cloudron.io/backups/#storage-providers for more information.", @@ -708,7 +709,9 @@ "contentAction": "Content", "configureContent": { "title": "Configure Backup Content" - } + }, + "useFileAndFileNameEncryption": "File and filename encryption used", + "useFileEncryption": "File encryption used" }, "branding": { "title": "Branding", diff --git a/dashboard/src/components/BackupSiteAddDialog.vue b/dashboard/src/components/BackupSiteAddDialog.vue index 4d0ed46c7..7fa327ed4 100644 --- a/dashboard/src/components/BackupSiteAddDialog.vue +++ b/dashboard/src/components/BackupSiteAddDialog.vue @@ -366,7 +366,7 @@ defineExpose({ -->
- +
diff --git a/dashboard/src/views/BackupSitesView.vue b/dashboard/src/views/BackupSitesView.vue index 68faa6e2e..b1574ae0f 100644 --- a/dashboard/src/views/BackupSitesView.vue +++ b/dashboard/src/views/BackupSitesView.vue @@ -287,8 +287,14 @@ onMounted(async () => {
{{ site.name }}{{ prettyBackupContents(site.contents) }}
+ +
+ {{ $t('backups.useFileAndFileNameEncryption') }} + {{ $t('backups.useFileEncryption') }} + +
+
- Storage: {{ site.provider }} ({{ site.format }}) at {{ site.config.backupDir }}{{ (site.config.prefix ? `/${site.config.prefix}` : '') }}