From 11a33455ce83ef45eac680b5d1591242bd01fa01 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 14 Jan 2026 15:57:06 +0100 Subject: [PATCH] slight wording change --- dashboard/src/components/BackupSiteContentDialog.vue | 2 +- dashboard/src/views/BackupSitesView.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dashboard/src/components/BackupSiteContentDialog.vue b/dashboard/src/components/BackupSiteContentDialog.vue index e936115a0..e610def67 100644 --- a/dashboard/src/components/BackupSiteContentDialog.vue +++ b/dashboard/src/components/BackupSiteContentDialog.vue @@ -83,7 +83,7 @@ defineExpose({ contentOptions.value = [{ id: 'box', - label: 'Platform (System & Email)', + label: 'System & email', }]; result.forEach(a => { diff --git a/dashboard/src/views/BackupSitesView.vue b/dashboard/src/views/BackupSitesView.vue index 3ccd486cd..13eece531 100644 --- a/dashboard/src/views/BackupSitesView.vue +++ b/dashboard/src/views/BackupSitesView.vue @@ -67,7 +67,7 @@ function prettyBackupContents(contents) { const links = []; for (const appId of (contents.include || contents.exclude)) { if (appId === 'box') { - links.unshift('Platform (System & Email)'); // keep this as first item + links.unshift('System & email'); // keep this as first item } else { const label = allApps[appId] ? (allApps[appId].label || allApps[appId].fqdn) : appId; links.push(`${label}`); @@ -79,7 +79,7 @@ function prettyBackupContents(contents) { } if (contents.exclude) { - return `Exclude ${links.join(', ')}`; + return `Everything except ${links.join(', ')}`; } return '';