1<?php
2/**
3 * English language file
4 *
5 * @author Andreas Gohr <andi@splitbrain.org>
6 */
7
8$lang['mode'] = "Which type of CAPTCHA to use?";
9$lang['mode_o_js'] = "Text (prefilled with JavaScript)";
10$lang['mode_o_text'] = "Text (manual only)";
11$lang['mode_o_math'] = "Math Problem";
12$lang['mode_o_question'] = "Fixed Question";
13$lang['mode_o_image'] = "Image (bad accessibility)";
14$lang['mode_o_audio'] = "Image+Audio (better accessibility)";
15$lang['mode_o_svg'] = "SVG (bad accessibility, readable)";
16$lang['mode_o_svgaudio'] = "SVG+Audio (better accessibility, readable)";
17$lang['mode_o_figlet'] = "Figlet ASCII Art (bad accessibility)";
18
19$lang['forusers'] = "Use CAPTCHA for logged in users, too?";
20$lang['lettercount'] = "Number of letters to use (3-16). If you increase the amount, be sure to increase the width of the image below as well.";
21$lang['width'] = "Width of the CAPTCHA image (pixel)";
22$lang['height'] = "Height of the CAPTCHA image (pixel)";
23$lang['question'] = "Question for fixed question mode";
24$lang['answer'] = "Answer for fixed question mode";
25
26$lang['loginprotect'] = "Require a CAPTCHA to login?";
27$lang['loginprotect_o_0'] = 'Never';
28$lang['loginprotect_o_1'] = 'Always';
29$lang['loginprotect_o_2'] = 'After 3 failed attempts';
30