slight wording change

This commit is contained in:
Girish Ramakrishnan
2026-01-14 15:57:06 +01:00
parent 124076ed72
commit 11a33455ce
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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(`<a href="#/app/${appId}/info">${label}</a>`);
@@ -79,7 +79,7 @@ function prettyBackupContents(contents) {
}
if (contents.exclude) {
return `Exclude ${links.join(', ')}`;
return `Everything except ${links.join(', ')}`;
}
return '';