]> BookStack Code Mirror - bookstack/blob - resources/lang/fr/validation.php
Added Swedish locale to config
[bookstack] / resources / lang / fr / validation.php
1 <?php
2
3 return [
4
5     /*
6     |--------------------------------------------------------------------------
7     | Validation Language Lines
8     |--------------------------------------------------------------------------
9     |
10     | The following language lines contain the default error messages used by
11     | the validator class. Some of these rules have multiple versions such
12     | as the size rules. Feel free to tweak each of these messages here.
13     |
14     */
15
16     'accepted'             => ':attribute doit être accepté.',
17     'active_url'           => ':attribute n\'est pas une URL valide.',
18     'after'                => ':attribute doit être supérieur à :date.',
19     'alpha'                => ':attribute ne doit contenir que des lettres.',
20     'alpha_dash'           => ':attribute doit contenir uniquement des lettres, chiffres et traits d\'union.',
21     'alpha_num'            => ':attribute doit contenir uniquement des chiffres et des lettres.',
22     'array'                => ':attribute doit être un tableau.',
23     'before'               => ':attribute doit être inférieur à :date.',
24     'between'              => [
25         'numeric' => ':attribute doit être compris entre :min et :max.',
26         'file'    => ':attribute doit être compris entre :min et :max kilobytes.',
27         'string'  => ':attribute doit être compris entre :min et :max caractères.',
28         'array'   => ':attribute doit être compris entre :min et :max éléments.',
29     ],
30     'boolean'              => ':attribute doit être vrai ou faux.',
31     'confirmed'            => ':attribute la confirmation n\'est pas valide.',
32     'date'                 => ':attribute n\'est pas une date valide.',
33     'date_format'          => ':attribute ne correspond pas au format :format.',
34     'different'            => ':attribute et :other doivent être différents l\'un de l\'autre.',
35     'digits'               => ':attribute doit être de longueur :digits.',
36     'digits_between'       => ':attribute doit avoir une longueur entre :min et :max.',
37     'email'                => ':attribute doit être une adresse e-mail valide.',
38     'filled'               => ':attribute est un champ requis.',
39     'exists'               => 'L\'attribut :attribute est invalide.',
40     'image'                => ':attribute doit être une image.',
41     'in'                   => 'L\'attribut :attribute est invalide.',
42     'integer'              => ':attribute doit être un chiffre entier.',
43     'ip'                   => ':attribute doit être une adresse IP valide.',
44     'max'                  => [
45         'numeric' => ':attribute ne doit pas excéder :max.',
46         'file'    => ':attribute ne doit pas excéder :max kilobytes.',
47         'string'  => ':attribute ne doit pas excéder :max caractères.',
48         'array'   => ':attribute ne doit pas contenir plus de :max éléments.',
49     ],
50     'mimes'                => ':attribute doit être un fichier de type :values.',
51     'min'                  => [
52         'numeric' => ':attribute doit être au moins :min.',
53         'file'    => ':attribute doit faire au moins :min kilobytes.',
54         'string'  => ':attribute doit contenir au moins :min caractères.',
55         'array'   => ':attribute doit contenir au moins :min éléments.',
56     ],
57     'not_in'               => 'L\'attribut sélectionné :attribute est invalide.',
58     'numeric'              => ':attribute doit être un nombre.',
59     'regex'                => ':attribute a un format invalide.',
60     'required'             => ':attribute est un champ requis.',
61     'required_if'          => ':attribute est requis si :other est :value.',
62     'required_with'        => ':attribute est requis si :values est présent.',
63     'required_with_all'    => ':attribute est requis si :values est présent.',
64     'required_without'     => ':attribute est requis si:values n\'est pas présent.',
65     'required_without_all' => ':attribute est requis si aucun des valeurs :values n\'est présente.',
66     'same'                 => ':attribute et :other doivent être identiques.',
67     'size'                 => [
68         'numeric' => ':attribute doit avoir la taille :size.',
69         'file'    => ':attribute doit peser :size kilobytes.',
70         'string'  => ':attribute doit contenir :size caractères.',
71         'array'   => ':attribute doit contenir :size éléments.',
72     ],
73     'string'               => ':attribute doit être une chaîne de caractères.',
74     'timezone'             => ':attribute doit être une zone valide.',
75     'unique'               => ':attribute est déjà utilisé.',
76     'url'                  => ':attribute a un format invalide.',
77
78     /*
79     |--------------------------------------------------------------------------
80     | Custom Validation Language Lines
81     |--------------------------------------------------------------------------
82     |
83     | Here you may specify custom validation messages for attributes using the
84     | convention "attribute.rule" to name the lines. This makes it quick to
85     | specify a specific custom language line for a given attribute rule.
86     |
87     */
88
89     'custom' => [
90         'password-confirm' => [
91             'required_with' => 'La confirmation du mot de passe est requise',
92         ],
93     ],
94
95     /*
96     |--------------------------------------------------------------------------
97     | Custom Validation Attributes
98     |--------------------------------------------------------------------------
99     |
100     | The following language lines are used to swap attribute place-holders
101     | with something more reader friendly such as E-Mail Address instead
102     | of "email". This simply helps us make messages a little cleaner.
103     |
104     */
105
106     'attributes' => [],
107
108 ];
Morty Proxy This is a proxified and sanitized view of the page, visit original site.