From f1e59e593138acc3cd5545c887d355daa81fb94a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Tr=C3=A1vn=C3=ADk?= Date: Mon, 1 Dec 2025 17:44:07 +0100 Subject: [PATCH] Custom message for Full export --- app/client/components/export-dialog.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/client/components/export-dialog.tsx b/app/client/components/export-dialog.tsx index 12682b36..4d44c023 100644 --- a/app/client/components/export-dialog.tsx +++ b/app/client/components/export-dialog.tsx @@ -330,9 +330,11 @@ export function ExportDialog({ Export {entityLabel} - {isSingleItem - ? `Export the configuration for this ${config.label.toLowerCase()}.` - : `Export all ${config.labelPlural.toLowerCase()} configurations.`} + {isFullExport + ? "Export the complete Zerobyte configuration including all volumes, repositories, backup schedules, and notifications." + : isSingleItem + ? `Export the configuration for this ${config.label.toLowerCase()}.` + : `Export all ${config.labelPlural.toLowerCase()} configurations.`}