|
23 | 23 | 'before' => 'Le champ :attribute doit être une date antérieure au :date.',
|
24 | 24 | 'between' => [
|
25 | 25 | 'numeric' => 'La valeur de :attribute doit être comprise entre :min et :max.',
|
26 |
| - 'file' => 'Le fichier :attribute doit avoir une taille entre :min et :max kilo-octets.', |
27 |
| - 'string' => 'Le texte :attribute doit avoir entre :min et :max caractères.', |
28 |
| - 'array' => 'Le tableau :attribute doit avoir entre :min et :max éléments.', |
| 26 | + 'file' => 'La taille du fichier de :attribute doit être comprise entre :min et :max kilo-octets.', |
| 27 | + 'string' => 'Le texte :attribute doit contenir entre :min et :max caractères.', |
| 28 | + 'array' => 'Le tableau :attribute doit contenir entre :min et :max éléments.', |
29 | 29 | ],
|
30 | 30 | 'boolean' => 'Le champ :attribute doit être vrai ou faux.',
|
31 | 31 | 'confirmed' => 'Le champ de confirmation :attribute ne correspond pas.',
|
32 | 32 | 'date' => "Le champ :attribute n'est pas une date valide.",
|
33 | 33 | 'date_format' => 'Le champ :attribute ne correspond pas au format :format.',
|
34 | 34 | 'different' => 'Les champs :attribute et :other doivent être différents.',
|
35 |
| - 'digits' => 'Le champ :attribute doit avoir :digits chiffres.', |
36 |
| - 'digits_between' => 'Le champ :attribute doit avoir entre :min et :max chiffres.', |
| 35 | + 'digits' => 'Le champ :attribute doit contenir :digits chiffres.', |
| 36 | + 'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.', |
37 | 37 | 'distinct' => 'Le champ :attribute a une valeur dupliquée.',
|
38 |
| - 'email' => 'Le champ :attribute doit être une adresse email valide.', |
| 38 | + 'email' => 'Le champ :attribute doit être une adresse e-mail valide.', |
39 | 39 | 'exists' => 'Le champ :attribute sélectionné est invalide.',
|
40 | 40 | 'filled' => 'Le champ :attribute est obligatoire.',
|
41 | 41 | 'image' => 'Le champ :attribute doit être une image.',
|
|
46 | 46 | 'json' => 'Le champ :attribute doit être un document JSON valide.',
|
47 | 47 | 'max' => [
|
48 | 48 | 'numeric' => 'La valeur de :attribute ne peut être supérieure à :max.',
|
49 |
| - 'file' => 'Le fichier :attribute ne peut être plus gros que :max kilo-octets.', |
| 49 | + 'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.', |
50 | 50 | 'string' => 'Le texte de :attribute ne peut contenir plus de :max caractères.',
|
51 |
| - 'array' => 'Le tableau :attribute ne peut avoir plus de :max éléments.', |
| 51 | + 'array' => 'Le tableau :attribute ne peut contenir plus de :max éléments.', |
52 | 52 | ],
|
53 | 53 | 'mimes' => 'Le champ :attribute doit être un fichier de type : :values.',
|
54 | 54 | 'min' => [
|
55 | 55 | 'numeric' => 'La valeur de :attribute doit être supérieure à :min.',
|
56 |
| - 'file' => 'Le fichier :attribute doit être plus gros que :min kilo-octets.', |
| 56 | + 'file' => 'La taille du fichier de :attribute doit être supérieure à :min kilo-octets.', |
57 | 57 | 'string' => 'Le texte :attribute doit contenir au moins :min caractères.',
|
58 |
| - 'array' => 'Le tableau :attribute doit avoir au moins :min éléments.', |
| 58 | + 'array' => 'Le tableau :attribute doit contenir au moins :min éléments.', |
59 | 59 | ],
|
60 | 60 | 'not_in' => "Le champ :attribute sélectionné n'est pas valide.",
|
61 | 61 | 'numeric' => 'Le champ :attribute doit contenir un nombre.',
|
|
111 | 111 | 'attributes' => [
|
112 | 112 | 'name' => 'Nom',
|
113 | 113 | 'username' => 'Pseudo',
|
114 |
| - 'email' => 'E-mail', |
| 114 | + 'email' => 'Adresse e-mail', |
115 | 115 | 'first_name' => 'Prénom',
|
116 | 116 | 'last_name' => 'Nom',
|
117 | 117 | 'password' => 'Mot de passe',
|
|
0 commit comments