| 2418 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* System messages translation for CodeIgniter(tm)
|
|
|
4 |
* @author CodeIgniter community
|
|
|
5 |
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
|
|
6 |
* @license http://opensource.org/licenses/MIT MIT License
|
|
|
7 |
* @link https://codeigniter.com
|
|
|
8 |
*/
|
|
|
9 |
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
10 |
|
|
|
11 |
$lang['form_validation_required'] = "Le champ {field} est requis.";
|
|
|
12 |
$lang['form_validation_isset'] = "Le champ {field} doit avoir une valeur.";
|
|
|
13 |
$lang['form_validation_valid_email'] = "Le champ {field} doit contenir une adresse email valide.";
|
|
|
14 |
$lang['form_validation_valid_emails'] = "Le champ {field} ne peut contenir que des adresses email valides.";
|
|
|
15 |
$lang['form_validation_valid_url'] = "Le champ {field} doit contenir une URL valide.";
|
|
|
16 |
$lang['form_validation_valid_ip'] = "Le champ {field} doit contenir une IP valide.";
|
|
|
17 |
$lang['form_validation_min_length'] = "Le champ {field} doit contenir au moins {param} caractères.";
|
|
|
18 |
$lang['form_validation_max_length'] = "Le champ {field} ne peut contenir plus de {param} caractères.";
|
|
|
19 |
$lang['form_validation_exact_length'] = "Le champ {field} doit contenir exactement {param} caractères.";
|
|
|
20 |
$lang['form_validation_alpha'] = "Le champ {field} ne peut contenir que des caractères alphabétiques.";
|
|
|
21 |
$lang['form_validation_alpha_numeric'] = "Le champ {field} ne peut contenir que des caractères alphanumériques.";
|
|
|
22 |
$lang['form_validation_alpha_numeric_spaces'] = "Le champ {field} ne peut contenir que des caractères alphanumériques et des espaces.";
|
|
|
23 |
$lang['form_validation_alpha_dash'] = "Le champ {field} ne peut contenir que des caractères alphanumériques, des caractères de soulignement et des traits d'union.";
|
|
|
24 |
$lang['form_validation_numeric'] = "Le champ {field} doit contenir un nombre (caractères numériques).";
|
|
|
25 |
$lang['form_validation_is_numeric'] = "Le champ {field} ne peut contenir que de signes du type nombre.";
|
|
|
26 |
$lang['form_validation_integer'] = "Le champ {field} doit contenir un nombre entier.";
|
|
|
27 |
$lang['form_validation_regex_match'] = "Le champ {field} n'utilise pas le bon format.";
|
|
|
28 |
$lang['form_validation_matches'] = "Le champ {field} doit correspondre au champ {param}.";
|
|
|
29 |
$lang['form_validation_differs'] = "Le champ {field} doit être différent du champ {param}.";
|
|
|
30 |
$lang['form_validation_is_unique'] = "Le champ {field} doit contenir une valeur unique.";
|
|
|
31 |
$lang['form_validation_is_natural'] = "Le champ {field} ne peut contenir que des nombres positifs.";
|
|
|
32 |
$lang['form_validation_is_natural_no_zero'] = "Le champ {field} ne peut contenir que des nombres plus grands que zéro.";
|
|
|
33 |
$lang['form_validation_decimal'] = "Le champ {field} doit contenir un nombre décimal.";
|
|
|
34 |
$lang['form_validation_less_than'] = "Le champ {field} doit contenir un nombre inférieur à {param}.";
|
|
|
35 |
$lang['form_validation_less_than_equal_to'] = "Le champ {field} doit contenir un nombre inférieur ou égal à {param}.";
|
|
|
36 |
$lang['form_validation_greater_than'] = "Le champ {field} doit contenir un nombre supérieur à {param}.";
|
|
|
37 |
$lang['form_validation_greater_than_equal_to'] = "Le champ {field} doit contenir un nombre supérieur ou égal à {param}.";
|
|
|
38 |
$lang['form_validation_error_message_not_set'] = "Impossible d'accéder à un message d'erreur correspondant à votre champ nommé {field}.";
|
|
|
39 |
$lang['form_validation_in_list'] = "Le champ {field} doit avoir une de ces valeurs : {param}.";
|