capcha control now has reCAPTCHA mode

This commit is contained in:
Graham Knop 2009-02-10 21:41:19 +00:00
parent 5d8ede926c
commit b088299eb0
6 changed files with 127 additions and 9 deletions

View file

@ -13,6 +13,14 @@ our $I18N = {
lastUpdated => 1131394072,
},
'captcha failure' => {
message => q|You need to type in the six characters you see in the image to prove that you are human.|,
},
'recaptcha failure' => {
message => q|You need to correctly enter the words you see in the image to prove that you are human.|,
},
};
1;

View file

@ -4325,6 +4325,19 @@ Users may override this setting in their profile.
lastUpdated => 1230930518,
},
'use recaptcha' => {
message => q{Use reCAPTCHA?}
},
'use recaptcha description' => {
message => q{reCAPTCHA is a free CAPTCHA service that helps to digitize books. It requires a key set generated for your domain, available from <a href="http://recaptcha.net/">http://recaptcha.net/</a>.}
},
'recaptcha private key' => {
message => 'reCAPTCHA Private Key'
},
'recaptcha public key' => {
message => 'reCAPTCHA Public Key'
},
};
1;