Page 1 of 1

Change language for reCaptcha

Posted: Wed Apr 23, 2008 6:12 pm
by Barberousse
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

Code: Select all

						echo "\n<script>\n var RecaptchaOptions = { theme : '".$theme."'};\n</script>";
to

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>";
						}
Barberousse.

Re: Change language for reCaptcha

Posted: Wed Apr 23, 2008 8:32 pm
by garvinhicking
Hi!

Thanks for telling, I committed your patch to the plugin.

Regards,
Garvin