diff options
author | Mickaël Rémond <mremond@process-one.net> | 2019-05-25 11:30:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-25 11:30:04 +0200 |
commit | a06bdb172158d534306967984c71df3bdb1e692e (patch) | |
tree | e2861ce7130bcb1f0956d9486af90162f8967610 /src | |
parent | Improve captcha.sh script documentation (diff) |
Improve captcha blocking alert wording
Diffstat (limited to 'src')
-rw-r--r-- | src/ejabberd_captcha.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ejabberd_captcha.erl b/src/ejabberd_captcha.erl index 385aa07b2..84317eb55 100644 --- a/src/ejabberd_captcha.erl +++ b/src/ejabberd_captcha.erl @@ -101,8 +101,8 @@ create_captcha(SID, From, To, Lang, Limiter, Args) -> mk_ocr_field(Lang, CID, Type)], X = #xdata{type = form, fields = Fs}, Captcha = #xcaptcha{xdata = X}, - BodyString = {<<"Your messages to ~s are being blocked. " - "To unblock them, visit ~s">>, [JID, get_url(Id)]}, + BodyString = {<<"Your subscription request and/or messages to ~s have been blocked. " + "To unblock your subscription request, visit ~s">>, [JID, get_url(Id)]}, Body = xmpp:mk_text(BodyString, Lang), OOB = #oob_x{url = get_url(Id)}, Hint = #hint{type = 'no-store'}, |