diff options
author | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2018-01-30 17:36:32 +0900 |
---|---|---|
committer | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2018-01-30 17:36:32 +0900 |
commit | 035c36229d803161b9e5a29c3fabd0ddf9dd4917 (patch) | |
tree | 2d441ba60dbc5fa1d3f2989daed82cca52d6489d /Mailman/Cgi | |
parent | dabfa34e1bf83b73769665e2a35ff2d04e541889 (diff) | |
download | mailman2-035c36229d803161b9e5a29c3fabd0ddf9dd4917.tar.gz mailman2-035c36229d803161b9e5a29c3fabd0ddf9dd4917.tar.xz mailman2-035c36229d803161b9e5a29c3fabd0ddf9dd4917.zip |
Update Japanese translation (with msgid fix)
Diffstat (limited to 'Mailman/Cgi')
-rwxr-xr-x | Mailman/Cgi/subscribe.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Cgi/subscribe.py b/Mailman/Cgi/subscribe.py index 301d1733..f2ed8149 100755 --- a/Mailman/Cgi/subscribe.py +++ b/Mailman/Cgi/subscribe.py @@ -148,10 +148,10 @@ def process_form(mlist, doc, cgidata, lang): captcha_response = json.load(httpresp) httpresp.close() if not captcha_response['success']: - results.append(_('reCAPTCHA validation failed: %s' % - ', '.join(captcha_response['error-codes']))) + results.append(_('reCAPTCHA validation failed: %s') % + ', '.join(captcha_response['error-codes'])) except urllib2.URLError as e: - results.append(_('reCAPTCHA could not be validated: %s' % e.reason)) + results.append(_('reCAPTCHA could not be validated: %s') % e.reason) # Are we checking the hidden data? if mm_cfg.SUBSCRIBE_FORM_SECRET: |