From 1fe959b80329b403795b838b09bba3ae0f436901 Mon Sep 17 00:00:00 2001 From: Alya Abbott Date: Tue, 4 Nov 2025 11:14:59 -0800 Subject: [PATCH] imports: Explain how to return to import process. --- zerver/views/registration.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/zerver/views/registration.py b/zerver/views/registration.py index ea256a9317..cc44702a71 100644 --- a/zerver/views/registration.py +++ b/zerver/views/registration.py @@ -1081,7 +1081,14 @@ def realm_import_status( # process support writing updates to this for a better progress indicator. if preregistration_realm.data_import_metadata.get("is_import_work_queued"): return json_success( - request, {"status": _("Converting Slack data… This may take a while.")} + request, + { + "status": _( + "Converting Slack data… This may take a while. If you " + "close this tab, you can return here from the “Complete registration” " + "link in your email." + ) + }, ) elif preregistration_realm.data_import_metadata.get("invalid_file_error_message"): # Redirect user the file upload page if we have an error message to display.