summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/recaptcha/views/form_recaptcha.html.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/recaptcha/views/form_recaptcha.html.php b/modules/recaptcha/views/form_recaptcha.html.php
index abdf8428..d4031586 100644
--- a/modules/recaptcha/views/form_recaptcha.html.php
+++ b/modules/recaptcha/views/form_recaptcha.html.php
@@ -6,7 +6,12 @@
Recaptcha.create(
"<?= $public_key ?>",
"gRecaptcha",
- { theme: "white", callback: Recaptcha.focus_response_field });
+ {
+ theme: "white",
+ custom_translations : { instructions_visual : "<?= t("Type words to check:") ?>"},
+ callback: Recaptcha.focus_response_field
+ }
+ );
}, 0);
</script>