Add export progress hint
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-01-06 13:03:05 +01:00
parent a3538f6470
commit 4fe589f0e2
3 changed files with 9 additions and 2 deletions

View File

@@ -2800,7 +2800,8 @@
"title": "Datenexporte",
"request": {
"title": "Exportanfrage",
"hint": "Exportiere Mandantendaten oder ein einzelnes Event-Archiv."
"hint": "Exportiere Mandantendaten oder ein einzelnes Event-Archiv.",
"progress": "Export läuft. Die Liste wird automatisch aktualisiert."
},
"fields": {
"scope": "Umfang",

View File

@@ -2804,7 +2804,8 @@
"title": "Data exports",
"request": {
"title": "Export request",
"hint": "Export tenant data or a specific event archive."
"hint": "Export tenant data or a specific event archive.",
"progress": "Export is running. This list refreshes automatically."
},
"fields": {
"scope": "Scope",

View File

@@ -213,6 +213,11 @@ export default function MobileDataExportsPage() {
<Switch.Thumb />
</Switch>
</XStack>
{hasInProgress ? (
<Text fontSize="$xs" color={muted}>
{t('dataExports.request.progress', 'Export is running. This list refreshes automatically.')}
</Text>
) : null}
</YStack>
<CTAButton
label={requesting ? t('dataExports.actions.requesting', 'Requesting...') : t('dataExports.actions.request', 'Request export')}