xref: /plugin/captcha/lang/en/settings.php (revision 42a2703562299943bcc8eae0ecff13d55fd9061c)
1*42a27035SAndreas Gohr<?php
2*42a27035SAndreas Gohr/**
3*42a27035SAndreas Gohr * English language file
4*42a27035SAndreas Gohr *
5*42a27035SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
6*42a27035SAndreas Gohr */
7*42a27035SAndreas Gohr
8*42a27035SAndreas Gohr$lang['mode']       = "Which type of CAPTCHA to use?";
9*42a27035SAndreas Gohr$lang['mode_o_js']    = "Text (prefilled with JavaScript)";
10*42a27035SAndreas Gohr$lang['mode_o_text']  = "Text (manual only)";
11*42a27035SAndreas Gohr$lang['mode_o_image'] = "Image (bad accessibility)";
12*42a27035SAndreas Gohr$lang['mode_o_audio'] = "Image (better accessibility)";
13*42a27035SAndreas Gohr
14*42a27035SAndreas Gohr$lang['regprotect'] = "Protect the registration form as well?";
15*42a27035SAndreas Gohr$lang['forusers']   = "Use CAPTCHA for logged in users, too?";
16*42a27035SAndreas Gohr$lang['width']      = "Width of the CAPTCHA image (pixel)";
17*42a27035SAndreas Gohr$lang['height']     = "Height of the CAPTCHA image (pixel)";
18*42a27035SAndreas Gohr
19