mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/12960] Adjust incomplete captcha to fix tests
PHPBB3-12960
This commit is contained in:
parent
716c1ca8eb
commit
e333d96eef
4 changed files with 4 additions and 4 deletions
|
@ -304,11 +304,11 @@ $lang = array_merge($lang, array(
|
|||
|
||||
// Visual Confirmation Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_VC_SETTINGS_EXPLAIN' => 'Here you can select and configure plugins, which are designed to block automated form submissions by spambots. These plugins typically work by challenging the user with a <em>CAPTCHA</em>, a test which is designed to be difficult for computers to solve.',
|
||||
'ACP_VC_SETTINGS_EXPLAIN' => 'Here you can select and configure plugins, which are designed to block automated form submissions by spambots. These plugins typically work by challenging the user with a <em>CAPTCHA</em>, a test which is designed to be difficult for computers to solve. phpBB defaults to "Incomplete Captcha," disabling verification and preventing functionality like registration that require CAPTCHA verification.',
|
||||
'ACP_VC_EXT_GET_MORE' => 'For additional (and possibly better) anti-spam plugins, visit the <a href="https://www.phpbb.com/go/anti-spam-ext"><strong>phpBB.com Extensions Database</strong></a>. For more information on preventing spam on your board, visit the <a href="https://www.phpbb.com/go/anti-spam"><strong>phpBB.com Knowledge Base</strong></a>.',
|
||||
'AVAILABLE_CAPTCHAS' => 'Available plugins',
|
||||
'CAPTCHA_UNAVAILABLE' => 'The plugin cannot be selected as its requirements are not met.',
|
||||
'CAPTCHA_INCOMPLETE' => 'Incomplete Captcha (Disabled Registration)',
|
||||
'CAPTCHA_INCOMPLETE' => 'Incomplete Captcha (Not configured)',
|
||||
'CAPTCHA_PREVIEW_MSG' => 'Your changes have not been saved, this is just a preview.',
|
||||
'CAPTCHA_PREVIEW_EXPLAIN' => 'The plugin as it would look like using the current selection.',
|
||||
|
||||
|
|
|
@ -173,6 +173,7 @@ $lang = array_merge($lang, array(
|
|||
'CONFIRM_CODE' => 'Confirmation code',
|
||||
'CONFIRM_CODE_EXPLAIN' => 'Enter the code exactly as it appears. All letters are case insensitive.',
|
||||
'CONFIRM_CODE_WRONG' => 'The confirmation code you entered was incorrect.',
|
||||
'CONFIRM_INCOMPLETE' => 'To prevent automated registrations the board requires you to enter a confirmation code. This has not been configured yet and hence cannot be used. Please try again later or contact the %sBoard Administrator%s.',
|
||||
'CONFIRM_OPERATION' => 'Are you sure you wish to carry out this operation?',
|
||||
'CONFIRM_AVATAR_DELETE' => 'Are you sure you wish to delete this avatar?',
|
||||
'CONGRATULATIONS' => 'Congratulations to',
|
||||
|
|
|
@ -136,7 +136,6 @@ $lang = array_merge($lang, array(
|
|||
'CONFIRMATION' => 'Confirmation of registration',
|
||||
'CONFIRM_CHANGES' => 'Confirm changes',
|
||||
'CONFIRM_EXPLAIN' => 'To prevent automated registrations the board requires you to enter a confirmation code. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the %sBoard Administrator%s.',
|
||||
'CONFIRM_INCOMPLETE' => 'To prevent automated registrations the board requires you to enter a confirmation code. This has not been configured yet and hence cannot be used. Please try again later or contact the %sBoard Administrator%s.',
|
||||
'VC_REFRESH' => 'Refresh confirmation code',
|
||||
'VC_REFRESH_EXPLAIN' => 'If you cannot read the code you can request a new one by clicking the button.',
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<div class="panel captcha-panel">
|
||||
<div class="inner">
|
||||
|
||||
<h3 class="captcha-title">{{ lang('CONFIRMATION') }}</h3>
|
||||
<h3 class="captcha-title">{{ lang('CONFIRM_CODE') }}</h3>
|
||||
<p class="error">{{ lang(CONFIRM_LANG, '<a href="' ~ CONTACT_LINK ~ '">', '</a>') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue