diff --git a/apps/authentication/views/dingtalk.py b/apps/authentication/views/dingtalk.py index 60b82c2cd..6ec625e0d 100644 --- a/apps/authentication/views/dingtalk.py +++ b/apps/authentication/views/dingtalk.py @@ -53,7 +53,7 @@ class DingTalkQRMixin(PermissionsMixin, View): return True def get_verify_state_failed_response(self, redirect_uri): - msg = _("You've been hacked") + msg = _("The system configuration is incorrect. Please contact your administrator") return self.get_failed_reponse(redirect_uri, msg, msg) def get_qr_url(self, redirect_uri): diff --git a/apps/authentication/views/feishu.py b/apps/authentication/views/feishu.py index 33f503c0d..ac18cde40 100644 --- a/apps/authentication/views/feishu.py +++ b/apps/authentication/views/feishu.py @@ -49,7 +49,7 @@ class FeiShuQRMixin(PermissionsMixin, View): return True def get_verify_state_failed_response(self, redirect_uri): - msg = _("You've been hacked") + msg = _("The system configuration is incorrect. Please contact your administrator") return self.get_failed_reponse(redirect_uri, msg, msg) def get_qr_url(self, redirect_uri): diff --git a/apps/authentication/views/wecom.py b/apps/authentication/views/wecom.py index b7b2a707b..a55fb2704 100644 --- a/apps/authentication/views/wecom.py +++ b/apps/authentication/views/wecom.py @@ -53,7 +53,7 @@ class WeComQRMixin(PermissionsMixin, View): return True def get_verify_state_failed_response(self, redirect_uri): - msg = _("You've been hacked") + msg = _("The system configuration is incorrect. Please contact your administrator") return self.get_failed_reponse(redirect_uri, msg, msg) def get_qr_url(self, redirect_uri):