Custom message for Full export

This commit is contained in:
Jakub Trávník 2025-12-01 17:44:07 +01:00
parent 2b6cd7af2c
commit f1e59e5931

View file

@ -330,9 +330,11 @@ export function ExportDialog({
<DialogHeader>
<DialogTitle>Export {entityLabel}</DialogTitle>
<DialogDescription>
{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.`}
</DialogDescription>
</DialogHeader>