Change language for reCaptcha
Posted: Wed Apr 23, 2008 6:12 pm
Hello,
For those who are interested, you can change the reCaptcha plugin language by changing line 281 of serendipity/plugins/serendipity_event_recaptcha/serendipity_event_recaptcha.php from to
Barberousse.
For those who are interested, you can change the reCaptcha plugin language by changing line 281 of serendipity/plugins/serendipity_event_recaptcha/serendipity_event_recaptcha.php from
Code: Select all
echo "\n<script>\n var RecaptchaOptions = { theme : '".$theme."'};\n</script>";Code: Select all
if (isset($serendipity['lang'])) {
echo "\n<script>\n var RecaptchaOptions = { theme : '".$theme."' , lang : '".$serendipity['lang']."'};\n</script>";
}
else {
echo "\n<script>\n var RecaptchaOptions = { theme : '".$theme."'};\n</script>";
}