views:

258

answers:

1

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.

+6  A: 

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

Haim Evgi
OH! How did I missed that?
Alix Axel