New upstream version 0.6.27
This commit is contained in:
@@ -1,33 +1,37 @@
|
||||
<?php defined('SYSPATH') OR die('No direct access allowed.');
|
||||
<?php
|
||||
|
||||
// phpcs:disable PSR1.Files.SideEffects
|
||||
defined('SYSPATH') or die('No direct access allowed.');
|
||||
// phpcs:enable PSR1.Files.SideEffects
|
||||
|
||||
$lang = array
|
||||
(
|
||||
'file_not_found' => 'Файл "%s" не найден. Убедитесь в наличии файлов функцией file_exists() перед их использованием.',
|
||||
'requires_GD2' => 'Библиотека Captcha нуждается в расширении GD2 с поддержкой FreeType. Подробности на http://php.net/gd_info .',
|
||||
|
||||
// Words of varying length for the Captcha_Word_Driver to pick from
|
||||
// Note: use only alphanumeric characters
|
||||
'words' => array
|
||||
(
|
||||
'cd', 'tv', 'it', 'to', 'be', 'or',
|
||||
'sun', 'car', 'dog', 'bed', 'kid', 'egg',
|
||||
'bike', 'tree', 'bath', 'roof', 'road', 'hair',
|
||||
'hello', 'world', 'earth', 'beard', 'chess', 'water',
|
||||
'barber', 'bakery', 'banana', 'market', 'purple', 'writer',
|
||||
'america', 'release', 'playing', 'working', 'foreign', 'general',
|
||||
'aircraft', 'computer', 'laughter', 'alphabet', 'kangaroo', 'spelling',
|
||||
'architect', 'president', 'cockroach', 'encounter', 'terrorism', 'cylinders',
|
||||
),
|
||||
// Words of varying length for the Captcha_Word_Driver to pick from
|
||||
// Note: use only alphanumeric characters
|
||||
'words' => array
|
||||
(
|
||||
'cd', 'tv', 'it', 'to', 'be', 'or',
|
||||
'sun', 'car', 'dog', 'bed', 'kid', 'egg',
|
||||
'bike', 'tree', 'bath', 'roof', 'road', 'hair',
|
||||
'hello', 'world', 'earth', 'beard', 'chess', 'water',
|
||||
'barber', 'bakery', 'banana', 'market', 'purple', 'writer',
|
||||
'america', 'release', 'playing', 'working', 'foreign', 'general',
|
||||
'aircraft', 'computer', 'laughter', 'alphabet', 'kangaroo', 'spelling',
|
||||
'architect', 'president', 'cockroach', 'encounter', 'terrorism', 'cylinders',
|
||||
),
|
||||
|
||||
// Riddles for the Captcha_Riddle_Driver to pick from
|
||||
// Note: use only alphanumeric characters
|
||||
'riddles' => array
|
||||
(
|
||||
array('Do you hate spam? (yes or no)', 'yes'),
|
||||
array('Are you a robot? (yes or no)', 'no'),
|
||||
array('Fire is... (hot or cold)', 'hot'),
|
||||
array('The season after fall is...', 'winter'),
|
||||
array('Which day of the week is it today?', strftime('%A')),
|
||||
array('Which month of the year are we in?', strftime('%B')),
|
||||
),
|
||||
// Riddles for the Captcha_Riddle_Driver to pick from
|
||||
// Note: use only alphanumeric characters
|
||||
'riddles' => array
|
||||
(
|
||||
array('Do you hate spam? (yes or no)', 'yes'),
|
||||
array('Are you a robot? (yes or no)', 'no'),
|
||||
array('Fire is... (hot or cold)', 'hot'),
|
||||
array('The season after fall is...', 'winter'),
|
||||
array('Which day of the week is it today?', strftime('%A')),
|
||||
array('Which month of the year are we in?', strftime('%B')),
|
||||
),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user