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' => 'Het :attribute veld moet een bestand zijn.',
|
|
'image' => 'Het :attribute veld moet een afbeelding zijn.',
|
|
'required' => 'Het :attribute veld is verplicht.',
|
|
'max' => [
|
|
'array' => 'Het :attribute veld mag niet meer dan :max items bevatten.',
|
|
'file' => 'Het :attribute veld mag niet groter zijn dan :max kilobytes.',
|
|
'numeric' => 'Het :attribute veld mag niet groter zijn dan :max.',
|
|
'string' => 'Het :attribute veld mag niet langer zijn dan :max karakters.',
|
|
],
|
|
'mimes' => 'Het :attribute moet een bestand zijn van 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' => [],
|
|
|
|
];
|