aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/Cgi/subscribe.py
diff options
context:
space:
mode:
authorYasuhito FUTATSUKI at POEM <futatuki@poem.co.jp>2018-01-30 17:36:32 +0900
committerYasuhito FUTATSUKI at POEM <futatuki@poem.co.jp>2018-01-30 17:36:32 +0900
commit035c36229d803161b9e5a29c3fabd0ddf9dd4917 (patch)
tree2d441ba60dbc5fa1d3f2989daed82cca52d6489d /Mailman/Cgi/subscribe.py
parentdabfa34e1bf83b73769665e2a35ff2d04e541889 (diff)
downloadmailman2-035c36229d803161b9e5a29c3fabd0ddf9dd4917.tar.gz
mailman2-035c36229d803161b9e5a29c3fabd0ddf9dd4917.tar.xz
mailman2-035c36229d803161b9e5a29c3fabd0ddf9dd4917.zip
Update Japanese translation (with msgid fix)
Diffstat (limited to 'Mailman/Cgi/subscribe.py')
-rwxr-xr-xMailman/Cgi/subscribe.py6
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: