From e841bd5442534b6d7c087371ccbd2da364d6202b Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Mon, 7 Oct 2019 12:43:07 +0100 Subject: [PATCH] Update src/components/views/auth/InteractiveAuthEntryComponents.js Co-Authored-By: J. Ryan Stinnett --- src/components/views/auth/InteractiveAuthEntryComponents.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/auth/InteractiveAuthEntryComponents.js b/src/components/views/auth/InteractiveAuthEntryComponents.js index eaff2d0543..4541ce15f7 100644 --- a/src/components/views/auth/InteractiveAuthEntryComponents.js +++ b/src/components/views/auth/InteractiveAuthEntryComponents.js @@ -195,7 +195,7 @@ export const RecaptchaAuthEntry = createReactClass({ const CaptchaForm = sdk.getComponent("views.auth.CaptchaForm"); let sitePublicKey; if (!this.props.stageParams || !this.props.stageParams.public_key) { - errorText = _t("Missing captcha public key - check your server configuration"); + errorText = _t("Missing captcha public key in homeserver configuration. Please report this to your homeserver administrator."); } else { sitePublicKey = this.props.stageParams.public_key; }