From 853752292ae0d953eed4c83eb3215e23aeaa910e Mon Sep 17 00:00:00 2001 From: Aman Agrawal Date: Thu, 12 Jun 2025 11:33:21 +0530 Subject: [PATCH] registration: Indicate that slack import can take a while. --- zerver/views/registration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/views/registration.py b/zerver/views/registration.py index 9bda4dcd64..66e71027e7 100644 --- a/zerver/views/registration.py +++ b/zerver/views/registration.py @@ -1055,7 +1055,7 @@ def realm_import_status( # TODO: Either store the path to the temporary conversion directory on # preregistration_realm.data_import_metadata, or have the conversion # process support writing updates to this for a better progress indicator. - return json_success(request, {"status": _("Converting Slack data…")}) + return json_success(request, {"status": _("Converting Slack data… This may take a while.")}) if realm.deactivated: # These "if" cases are in the inverse order than they're done