diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2011-05-10 23:32:27 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-05-10 23:32:27 -0400 |
commit | 3f9e9b581b8aad15ccfa01128c0dac8fd648e6ac (patch) | |
tree | 8e71f1bc77b0a6727f8e3f97f153171d574ddb3f /phpBB/language/en/captcha_recaptcha.php | |
parent | 6ac6680639fc892141fa6c846c63cbdea12c166a (diff) | |
parent | f670aefd3694ad0de804414e8d9880dfa1c920b3 (diff) | |
download | forums-3f9e9b581b8aad15ccfa01128c0dac8fd648e6ac.tar forums-3f9e9b581b8aad15ccfa01128c0dac8fd648e6ac.tar.gz forums-3f9e9b581b8aad15ccfa01128c0dac8fd648e6ac.tar.bz2 forums-3f9e9b581b8aad15ccfa01128c0dac8fd648e6ac.tar.xz forums-3f9e9b581b8aad15ccfa01128c0dac8fd648e6ac.zip |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/10170] Fix broken recaptcha verification host.
[ticket/10170] Include www in hostname in language strings.
[ticket/10170] Update language entries
[ticket/10170] reCaptcha API has been moved.
Diffstat (limited to 'phpBB/language/en/captcha_recaptcha.php')
-rw-r--r-- | phpBB/language/en/captcha_recaptcha.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/language/en/captcha_recaptcha.php b/phpBB/language/en/captcha_recaptcha.php index 3dad7a7409..e0550ffcfb 100644 --- a/phpBB/language/en/captcha_recaptcha.php +++ b/phpBB/language/en/captcha_recaptcha.php @@ -37,14 +37,14 @@ if (empty($lang) || !is_array($lang)) $lang = array_merge($lang, array( 'RECAPTCHA_LANG' => 'en', - 'RECAPTCHA_NOT_AVAILABLE' => 'In order to use reCaptcha, you must create an account on <a href="http://recaptcha.net">reCaptcha.net</a>.', + 'RECAPTCHA_NOT_AVAILABLE' => 'In order to use reCaptcha, you must create an account on <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.', 'CAPTCHA_RECAPTCHA' => 'reCaptcha', 'RECAPTCHA_INCORRECT' => 'The visual confirmation code you submitted was incorrect', 'RECAPTCHA_PUBLIC' => 'Public reCaptcha key', - 'RECAPTCHA_PUBLIC_EXPLAIN' => 'Your public reCaptcha key. Keys can be obtained on <a href="http://recaptcha.net">reCaptcha.net</a>.', + 'RECAPTCHA_PUBLIC_EXPLAIN' => 'Your public reCaptcha key. Keys can be obtained on <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.', 'RECAPTCHA_PRIVATE' => 'Private reCaptcha key', - 'RECAPTCHA_PRIVATE_EXPLAIN' => 'Your private reCaptcha key. Keys can be obtained on <a href="http://recaptcha.net">reCaptcha.net</a>.', + 'RECAPTCHA_PRIVATE_EXPLAIN' => 'Your private reCaptcha key. Keys can be obtained on <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.', 'RECAPTCHA_EXPLAIN' => 'In an effort to prevent automatic submissions, we require that you enter both of the words displayed into the text field underneath.', )); |