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.`}