Search code examples
localizationcustomizationcaptcharecaptchapersonalization

How to change text localization “I'm not a robot” in recaptcha?


On different PC I see different localizations for I'm not a robot lable although I locates within one city. Aim - always to show same test distincts from I'm not a robot

I have wrote following code to change label I'm not a robot in recaptcha.

<script type="text/javascript">
    $(document).ready(function () {
        $("#recaptcha-anchor-label").text("Something different.");
    });
</script>

maybe problem related with Iframe?

Can you help to fix my problem?


Solution

  • It is possible to force language if use following url:

    <script src='https://www.google.com/recaptcha/api.js?hl=YOUR_LOCALE'></script>