如何更改reCAPTCHA的默认消息?

时间:2012-01-30 14:08:19

标签: php recaptcha

我想从“不正确的安全图像响应”更改reCAPTCHA插件的默认错误消息。我怎么能这样做? 我正在使用PHP和CI框架。

1 个答案:

答案 0 :(得分:4)

您可以定义custom translation来替换文字。

<script type= "text/javascript">
var RecaptchaOptions = {
   custom_translations : { incorrect_try_again : "You did it wrong, try again." }
};
</script>