From 72281d2b448d77afde709929abaf3ab92883ccce Mon Sep 17 00:00:00 2001 From: Andy Staudacher Date: Thu, 2 Jul 2009 20:50:29 -0700 Subject: Fix for ticket 470. Replace ReCaptcha with reCAPTCHA in user visible strings. --- modules/recaptcha/helpers/recaptcha.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/recaptcha/helpers/recaptcha.php') diff --git a/modules/recaptcha/helpers/recaptcha.php b/modules/recaptcha/helpers/recaptcha.php index f0bf2aef..501dd972 100644 --- a/modules/recaptcha/helpers/recaptcha.php +++ b/modules/recaptcha/helpers/recaptcha.php @@ -21,7 +21,7 @@ class recaptcha_Core { static function get_configure_form() { $form = new Forge("admin/recaptcha", "", "post", array("id" => "gConfigureRecaptchaForm")); $group = $form->group("configure_recaptcha") - ->label(t("Configure Recaptcha")); + ->label(t("Configure reCAPTCHA")); $group->input("public_key") ->label(t("Public Key")) ->value(module::get_var("recaptcha", "public_key")); @@ -42,7 +42,7 @@ class recaptcha_Core { $private_key = module::get_var("recaptcha", "private_key"); if (empty($public_key) || empty($private_key)) { site_status::warning( - t("Recaptcha is not quite ready! Please configure the Recaptcha Keys", + t("reCAPTCHA is not quite ready! Please configure the reCAPTCHA Keys", array("url" => url::site("admin/recaptcha"))), "recaptcha_config"); } else { -- cgit v1.2.3