Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

reCAPTCHA-like Web Service in other Languages

Is there a CAPTCHA web service like reCAPTCHA that supports languages other than English?

It would be nice to have localized CAPTCHAs for non-English users.

like image 455
Alix Axel Avatar asked Dec 29 '09 12:12

Alix Axel


People also ask

How do I change the language on reCAPTCHA?

Just open the functions. php file of your current theme and paste the below mentioned code, you can modify it to any of the language, just look at the above code we are using 'hl' => 'es' where “es” is the language code for Spanish language.

How can I change CAPTCHA to English?

Updating the Recaptcha language from English to another language is possible by adding a small script at the header section of your form. Recaptcha with updated language. 2.) In the Header/Footer dialog box, select HTML, click on the "Source" button in Header, and paste in all of the code from the attached text (.

What else is reCAPTCHA used for?

reCAPTCHA is a free service that protects your website from spam and abuse. reCAPTCHA uses an advanced risk analysis engine and adaptive CAPTCHAs to keep automated software from engaging in abusive activities on your site. It does this while letting your valid users pass through with ease.

What reCAPTCHA called?

reCAPTCHA is a CAPTCHA system that enables web hosts to distinguish between human and automated access to websites.


1 Answers

recaptcha support other languages see link

http://code.google.com/apis/recaptcha/docs/customization.html

English en 
Dutch nl 
French fr 
German de 
Portuguese pt 
Russian ru 
Spanish es 
Turkish tr 

use it like :

<script>
var RecaptchaOptions = {       
   lang : 'fr'
};
</script>

if the languages you looking is not supported , you can build your own translation ,

look in this link :

http://wiki.recaptcha.net/index.php/I18n

like image 146
Haim Evgi Avatar answered Oct 16 '22 04:10

Haim Evgi