xref: /plugin/captcha/lang/fr/settings.php (revision d787956ca69cdc0983afc30c2ebe40335c5e7fa2)
10a90fb7bSmanu<?php
2*d787956cSbruno
30a90fb7bSmanu/**
4*d787956cSbruno * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
50a90fb7bSmanu *
60a90fb7bSmanu * @author Emmanuel Dupin <seedfloyd@gmail.com>
7*d787956cSbruno * @author bruno <bruno@ninesys.fr>
80a90fb7bSmanu */
9*d787956cSbruno$lang['mode']                  = 'Quel type de CAPTCHA utiliser ?';
10*d787956cSbruno$lang['mode_o_js']             = 'Texte (prérempli avec JavaScript)';
11*d787956cSbruno$lang['mode_o_text']           = 'Texte (remplissage manuel)';
12*d787956cSbruno$lang['mode_o_math']           = 'Problème mathématique';
13*d787956cSbruno$lang['mode_o_question']       = 'Question fixe';
14*d787956cSbruno$lang['mode_o_image']          = 'Image (peu accessible)';
15*d787956cSbruno$lang['mode_o_audio']          = 'Image + Audio (meilleure accessibilité)';
16*d787956cSbruno$lang['mode_o_figlet']         = 'ASCII Art (peu accessible)';
17*d787956cSbruno$lang['regprotect']            = 'Protéger également le formulaire d\'inscription ?';
18*d787956cSbruno$lang['forusers']              = 'Utiliser également le CAPTCHA pour les utilisateurs connectés ?';
19*d787956cSbruno$lang['width']                 = 'Largeur du CAPTCHA image (en pixels)';
20*d787956cSbruno$lang['height']                = 'Hauteur du CAPTCHA image (en pixels)';
21*d787956cSbruno$lang['question']              = 'Question pour le mode question fixe';
22*d787956cSbruno$lang['answer']                = 'Réponse pour le mode question fixe';
23