<?php
/**
*
* nucaptcha [English]
*
* @package language
* @copyright (c) 2011 Patrick Webster
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array(
'CAPTCHA_NUCAPTCHA' => 'NuCaptcha',
'NUCAPTCHA_EXPLAIN' => 'In an effort to prevent automatic submissions, we require that you enter the letters that are written in <span style="color: red; font-weight: bold">red</span>.',
//ACP
'NUCAPTCHA_CLIENTKEY' => 'NuCaptcha client key',
'NUCAPTCHA_CLIENTKEY_EXPLAIN' => 'Your NuCaptcha client key. Keys can be obtained on your dashboard at <a href="http://www.nucaptcha.com">NuCaptcha.com</a>.',
'NUCAPTCHA_SSL' => 'Enable SSL',
'NUCAPTCHA_SSL_EXPLAIN' => 'Force NuCaptcha to always connect over SSL? This setting is ignored if the board already connects over HTTPS.',
//Errors
'NUCAPTCHA_ERROR' => 'NuCaptcha Error',
'NUCAPTCHA_ERROR_TRANSACTION' => 'NuCaptcha transaction has failed: %s',
'NUCAPTCHA_INCORRECT' => 'The visual confirmation code you submitted was incorrect',
'NUCAPTCHA_NOT_AVAILABLE' => 'In order to use NuCaptcha, you must meet the following requirements: <br /><ol><li>Create an account on <a href="http://www.nucaptcha.com">NuCaptcha.com</a></li><li>Use PHP 5.1.0+ (PHP 5.3.0+ on Windows)</li><li>Have the <a href="http://php.net/mcrypt">mcrypt</a> module installed</li></ol>',
));
?>