40 lines
1.5 KiB
PHP
40 lines
1.5 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default Laravel Validation Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines contain the default error messages used by
|
|
| the Laravel validator class. Some of these rules have multiple versions such
|
|
| as the size rules. Feel free to tweak each of these messages here.
|
|
|
|
|
*/
|
|
'file' => 'Le champ :attribute doit être un fichier.',
|
|
'image' => 'Le champ :attribute doit être une image.',
|
|
'required' => 'Le champ :attribute est obligatoire.',
|
|
'max' => [
|
|
'array' => 'Le champ :attribute ne doit pas contenir plus de :max éléments.',
|
|
'file' => 'Le champ :attribute ne doit pas dépasser :max kilo-octets.',
|
|
'numeric' => 'Le champ :attribute ne doit pas être supérieur à :max.',
|
|
'string' => 'Le champ :attribute ne doit pas dépasser :max caractères.',
|
|
],
|
|
'mimes' => 'Le champ :attribute doit être un fichier de type : :values.',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Custom Validation Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may specify custom validation messages for attributes using the
|
|
| convention "attribute.rule" to name the lines. This makes it quick to
|
|
| specify a specific custom language line for a given attribute rule.
|
|
|
|
|
*/
|
|
|
|
'custom' => [],
|
|
|
|
];
|