Clarify preview export button label

This commit is contained in:
2026-06-12 11:53:28 +02:00
parent 34c5b635d3
commit c48b3082ff

View File

@@ -71,7 +71,7 @@ Preview and filters
Export modes Export modes
- Create zip builds a ZIP archive. - Create zip builds a ZIP archive.
- Create folders on file system writes the export as folders and files. - Create folders on file system writes the export as folders and files.
- Export preview exports only the emails currently visible in the filtered preview. - Export visible emails exports only the emails currently visible in the filtered preview.
Notes Notes
- Classic Outlook for Windows must already be installed and configured on this PC. - Classic Outlook for Windows must already be installed and configured on this PC.
@@ -1745,7 +1745,7 @@ class OutlookExporterApp(ctk.CTk):
) )
self.btn_export_preview = ctk.CTkButton( self.btn_export_preview = ctk.CTkButton(
preview_actions, preview_actions,
text="Export preview", text="Export visible emails",
width=150, width=150,
command=self.export_preview_subset, command=self.export_preview_subset,
state="disabled", state="disabled",
@@ -2291,7 +2291,7 @@ class OutlookExporterApp(ctk.CTk):
labels = { labels = {
EXPORT_MODE_ALL: "Export all", EXPORT_MODE_ALL: "Export all",
EXPORT_MODE_WITH_ATTACHMENTS: "Export emails with attachments only", EXPORT_MODE_WITH_ATTACHMENTS: "Export emails with attachments only",
EXPORT_MODE_FILTER: "Export preview", EXPORT_MODE_FILTER: "Export visible emails",
} }
return labels.get(export_mode, export_mode) return labels.get(export_mode, export_mode)