diff options
author | Romain LE DISEZ <romain.git@ledisez.net> | 2009-07-16 17:31:20 +0200 |
---|---|---|
committer | Romain LE DISEZ <romain.git@ledisez.net> | 2009-07-16 17:31:20 +0200 |
commit | 7f5030ac208c30a7dc576a57cd9e665022ccbde5 (patch) | |
tree | 6b23e78aa8cc2dd363def46e083217e3c9b52f1b /modules/recaptcha/helpers | |
parent | 923732ca4dca6db218f6252a7133cd72f98fa086 (diff) | |
parent | 85b0f580291e375a2c5ec21b8210e59023ee24c2 (diff) |
Merge commit 'upstream/master'
Diffstat (limited to 'modules/recaptcha/helpers')
-rw-r--r-- | modules/recaptcha/helpers/recaptcha.php | 4 | ||||
-rw-r--r-- | modules/recaptcha/helpers/recaptcha_menu.php | 2 |
2 files changed, 3 insertions, 3 deletions
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 <a href=\"%url\">Recaptcha Keys</a>", + t("reCAPTCHA is not quite ready! Please configure the <a href=\"%url\">reCAPTCHA Keys</a>", array("url" => url::site("admin/recaptcha"))), "recaptcha_config"); } else { diff --git a/modules/recaptcha/helpers/recaptcha_menu.php b/modules/recaptcha/helpers/recaptcha_menu.php index ba3c8b78..047abf8f 100644 --- a/modules/recaptcha/helpers/recaptcha_menu.php +++ b/modules/recaptcha/helpers/recaptcha_menu.php @@ -22,7 +22,7 @@ class recaptcha_menu_Core { $menu->get("settings_menu") ->append(Menu::factory("link") ->id("recaptcha") - ->label(t("Recaptcha")) + ->label(t("reCAPTCHA")) ->url(url::site("admin/recaptcha"))); } } |