Initial commit

This commit is contained in:
Ronald Huynen
2026-03-23 21:37:59 +01:00
commit 2547717edb
2193 changed files with 972171 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<?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' => [],
];