xref: /plugin/captcha/lang/es/settings.php (revision 77d306a756ecb1a5b0f0887e3117f563a417d272)
1<?php
2
3/**
4 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
5 *
6 * @author Domingo Redal <docxml@gmail.com>
7 * @author Antonio Castilla <antoniocastilla@trazoide.com>
8 */
9$lang['mode']                  = '¿Qué tipo de CAPTCHA usará?';
10$lang['mode_o_js']             = 'Texto (rellenados con JavaScript)';
11$lang['mode_o_text']           = 'Texto (manual)';
12$lang['mode_o_math']           = 'Problemas de matemáticas';
13$lang['mode_o_question']       = 'Pregunta fija';
14$lang['mode_o_image']          = 'Imagen (peor accesibilidad)';
15$lang['mode_o_audio']          = 'Imagen+Audio (mejor accesibilidad)';
16$lang['mode_o_svg']            = 'SVG (peor accesibilidad, legible)';
17$lang['mode_o_svgaudio']       = 'SVG+Audio (mejor accesibilidad, legible)';
18$lang['mode_o_figlet']         = 'Arte ASCII con Figlet (peor accesibilidad)';
19$lang['forusers']              = '¿Utilizar CAPTCHA para los usuarios registrados también?';
20$lang['loginprotect']          = '¿Requiere un CAPTCHA para iniciar sesión?';
21$lang['lettercount']           = 'Número de letras para usar (3-16). Si aumenta la cantidad, asegúrese de incrementar el ancho de la imagen de abajo también.';
22$lang['width']                 = 'Ancho de la imagen CAPTCHA (pixel)';
23$lang['height']                = 'Altura de la imagen CAPTCHA (pixel)';
24$lang['question']              = 'Pregunta para el modo de pregunta fija';
25$lang['answer']                = 'Responda al modo de pregunta fija';
26