Initial Kohana install
[speedfreak] / Server / system / i18n / en_US / captcha.php
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2
3 $lang = array
4 (
5         'file_not_found' => 'The specified file, %s, was not found. Please verify that files exist by using file_exists() before using them.',
6         'requires_GD2'   => 'The Captcha library requires GD2 with FreeType support. Please see http://php.net/gd_info for more information.',
7
8         // Words of varying length for the Captcha_Word_Driver to pick from
9         // Note: use only alphanumeric characters
10         'words' => array
11         (
12                 'cd', 'tv', 'it', 'to', 'be', 'or',
13                 'sun', 'car', 'dog', 'bed', 'kid', 'egg',
14                 'bike', 'tree', 'bath', 'roof', 'road', 'hair',
15                 'hello', 'world', 'earth', 'beard', 'chess', 'water',
16                 'barber', 'bakery', 'banana', 'market', 'purple', 'writer',
17                 'america', 'release', 'playing', 'working', 'foreign', 'general',
18                 'aircraft', 'computer', 'laughter', 'alphabet', 'kangaroo', 'spelling',
19                 'architect', 'president', 'cockroach', 'encounter', 'terrorism', 'cylinders',
20         ),
21
22         // Riddles for the Captcha_Riddle_Driver to pick from
23         // Note: use only alphanumeric characters
24         'riddles' => array
25         (
26                 array('Do you hate spam? (yes or no)', 'yes'),
27                 array('Are you a robot? (yes or no)', 'no'),
28                 array('Fire is... (hot or cold)', 'hot'),
29                 array('The season after fall is...', 'winter'),
30                 array('Which day of the week is it today?', strftime('%A')),
31                 array('Which month of the year are we in?', strftime('%B')),
32         ),
33 );