xref: /plugin/captcha/lang/en/settings.php (revision b546944f39a56e1171bcd1f3fcb405a85b651ec6)
142a27035SAndreas Gohr<?php
242a27035SAndreas Gohr/**
342a27035SAndreas Gohr * English language file
442a27035SAndreas Gohr *
542a27035SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
642a27035SAndreas Gohr */
742a27035SAndreas Gohr
842a27035SAndreas Gohr$lang['mode'] = "Which type of CAPTCHA to use?";
942a27035SAndreas Gohr$lang['mode_o_js'] = "Text (prefilled with JavaScript)";
1042a27035SAndreas Gohr$lang['mode_o_text'] = "Text (manual only)";
119e312724SAndreas Gohr$lang['mode_o_math'] = "Math Problem";
12df8afac4SAndreas Gohr$lang['mode_o_question'] = "Fixed Question";
1342a27035SAndreas Gohr$lang['mode_o_image'] = "Image (bad accessibility)";
145a7dc179SAndreas Gohr$lang['mode_o_audio'] = "Image+Audio (better accessibility)";
1508f248e4SAndreas Gohr$lang['mode_o_svg'] = "SVG (bad accessibility, readable)";
1608f248e4SAndreas Gohr$lang['mode_o_svgaudio'] = "SVG+Audio (better accessibility, readable)";
1752e95008SAndreas Gohr$lang['mode_o_figlet'] = "Figlet ASCII Art (bad accessibility)";
1842a27035SAndreas Gohr
1942a27035SAndreas Gohr$lang['forusers'] = "Use CAPTCHA for logged in users, too?";
2028c14643SAndreas Gohr$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.";
2142a27035SAndreas Gohr$lang['width'] = "Width of the CAPTCHA image (pixel)";
2242a27035SAndreas Gohr$lang['height'] = "Height of the CAPTCHA image (pixel)";
23df8afac4SAndreas Gohr$lang['question'] = "Question for fixed question mode";
24df8afac4SAndreas Gohr$lang['answer'] = "Answer for fixed question mode";
25969b14c4SAndreas Gohr
26969b14c4SAndreas Gohr$lang['loginprotect'] = "Require a CAPTCHA to login?";
27969b14c4SAndreas Gohr$lang['loginprotect_o_0'] = 'Never';
28969b14c4SAndreas Gohr$lang['loginprotect_o_1'] = 'Always';
29969b14c4SAndreas Gohr$lang['loginprotect_o_2'] = 'After 3 failed attempts';
30563fb566SAndreas Gohr
31*b546944fSAndreas Gohr$lang['logindenial'] = 'Use exponential wait time for failed logins. Base wait in seconds (0 to disable, doubles with each failure)';
32*b546944fSAndreas Gohr$lang['logindenial_max'] = 'Maximum wait time in seconds';
33