<?php
-
+/**
+ * Validation Lines
+ * The following language lines contain the default error messages used by
+ * the validator class. Some of these rules have multiple versions such
+ * as the size rules. Feel free to tweak each of these messages here.
+ */
return [
- /*
- |--------------------------------------------------------------------------
- | Validation Language Lines
- |--------------------------------------------------------------------------
- |
- | The following language lines contain the default error messages used by
- | the validator class. Some of these rules have multiple versions such
- | as the size rules. Feel free to tweak each of these messages here.
- |
- */
-
- 'accepted' => 'The :attribute must be accepted.',
- 'active_url' => 'The :attribute is not a valid URL.',
- 'after' => 'The :attribute must be a date after :date.',
- 'alpha' => 'The :attribute may only contain letters.',
- 'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
- 'alpha_num' => 'The :attribute may only contain letters and numbers.',
- 'array' => 'The :attribute must be an array.',
- 'before' => 'The :attribute must be a date before :date.',
+ // Standard laravel validation lines
+ 'accepted' => 'Het :attribute moet geaccepteerd worden.',
+ 'active_url' => 'Het :attribute is geen geldige URL.',
+ 'after' => ':attribute moet een datum zijn later dan :date.',
+ 'alpha' => ':attribute mag alleen letters bevatten.',
+ 'alpha_dash' => ':attribute mag alleen letters, cijfers, streepjes en liggende streepjes bevatten.',
+ 'alpha_num' => ':attribute mag alleen letters en nummers bevatten.',
+ 'array' => ':attribute moet een reeks zijn.',
+ 'backup_codes' => 'De opgegeven code is niet geldig of eerder al gebruikt.',
+ 'before' => ':attribute moet een datum zijn voor :date.',
'between' => [
- 'numeric' => 'The :attribute must be between :min and :max.',
- 'file' => 'The :attribute must be between :min and :max kilobytes.',
- 'string' => 'The :attribute must be between :min and :max characters.',
- 'array' => 'The :attribute must have between :min and :max items.',
+ 'numeric' => ':attribute moet tussen de :min en :max zijn.',
+ 'file' => ':attribute moet tussen de :min en :max kilobytes zijn.',
+ 'string' => ':attribute moet tussen de :min en :max tekens zijn.',
+ 'array' => ':attribute moet tussen de :min en :max items bevatten.',
+ ],
+ 'boolean' => ':attribute moet ja of nee zijn.',
+ 'confirmed' => ':attribute bevestiging komt niet overeen.',
+ 'date' => ':attribute is geen geldige datum.',
+ 'date_format' => ':attribute komt niet overeen met het formaat :format.',
+ 'different' => ':attribute en :other moeten verschillend zijn.',
+ 'digits' => ':attribute moet bestaan uit :digits cijfers.',
+ 'digits_between' => ':attribute moet tussen de :min en :max cijfers zijn.',
+ 'email' => ':attribute is geen geldig e-mailadres.',
+ 'ends_with' => ':attribute moet eindigen met een van de volgende: :values',
+ 'file' => 'Het :attribute moet als een geldig bestand opgegeven worden.',
+ 'filled' => ':attribute is verplicht.',
+ 'gt' => [
+ 'numeric' => ':attribute moet groter zijn dan :value.',
+ 'file' => ':attribute moet groter zijn dan :value kilobytes.',
+ 'string' => ':attribute moet meer dan :value tekens bevatten.',
+ 'array' => ':attribute moet meer dan :value items bevatten.',
+ ],
+ 'gte' => [
+ 'numeric' => ':attribute moet groter of gelijk zijn aan :value.',
+ 'file' => ':attribute moet groter of gelijk zijn aan :value kilobytes.',
+ 'string' => ':attribute moet :value of meer tekens bevatten.',
+ 'array' => ':attribute moet :value items of meer bevatten.',
+ ],
+ 'exists' => ':attribute is ongeldig.',
+ 'image' => ':attribute moet een afbeelding zijn.',
+ 'image_extension' => ':attribute moet een geldige en ondersteunde afbeeldings-extensie hebben.',
+ 'in' => ':attribute is ongeldig.',
+ 'integer' => ':attribute moet een getal zijn.',
+ 'ip' => ':attribute moet een geldig IP-adres zijn.',
+ 'ipv4' => ':attribute moet een geldig IPv4-adres zijn.',
+ 'ipv6' => ':attribute moet een geldig IPv6-adres zijn.',
+ 'json' => ':attribute moet een geldige JSON-string zijn.',
+ 'lt' => [
+ 'numeric' => ':attribute moet kleiner zijn dan :value.',
+ 'file' => ':attribute moet kleiner zijn dan :value kilobytes.',
+ 'string' => ':attribute moet minder dan :value tekens bevatten.',
+ 'array' => ':attribute moet minder dan :value items bevatten.',
+ ],
+ 'lte' => [
+ 'numeric' => ':attribute moet kleiner of gelijk zijn aan :value.',
+ 'file' => ':attribute moet kleiner of gelijk zijn aan :value kilobytes.',
+ 'string' => ':attribute moet :value tekens of minder bevatten.',
+ 'array' => ':attribute mag niet meer dan :value items bevatten.',
],
- 'boolean' => 'The :attribute field must be true or false.',
- 'confirmed' => 'The :attribute confirmation does not match.',
- 'date' => 'The :attribute is not a valid date.',
- 'date_format' => 'The :attribute does not match the format :format.',
- 'different' => 'The :attribute and :other must be different.',
- 'digits' => 'The :attribute must be :digits digits.',
- 'digits_between' => 'The :attribute must be between :min and :max digits.',
- 'email' => 'The :attribute must be a valid email address.',
- 'filled' => 'The :attribute field is required.',
- 'exists' => 'The selected :attribute is invalid.',
- 'image' => 'The :attribute must be an image.',
- 'in' => 'The selected :attribute is invalid.',
- 'integer' => 'The :attribute must be an integer.',
- 'ip' => 'The :attribute must be a valid IP address.',
'max' => [
- 'numeric' => 'The :attribute may not be greater than :max.',
- 'file' => 'The :attribute may not be greater than :max kilobytes.',
- 'string' => 'The :attribute may not be greater than :max characters.',
- 'array' => 'The :attribute may not have more than :max items.',
+ 'numeric' => ':attribute mag niet groter zijn dan :max.',
+ 'file' => ':attribute mag niet groter zijn dan :max kilobytes.',
+ 'string' => ':attribute mag niet groter zijn dan :max tekens.',
+ 'array' => ':attribute mag niet meer dan :max items bevatten.',
],
- 'mimes' => 'The :attribute must be a file of type: :values.',
+ 'mimes' => ':attribute moet een bestand zijn van het type: :values.',
'min' => [
- 'numeric' => 'The :attribute must be at least :min.',
- 'file' => 'The :attribute must be at least :min kilobytes.',
- 'string' => 'The :attribute must be at least :min characters.',
- 'array' => 'The :attribute must have at least :min items.',
+ 'numeric' => ':attribute moet minstens :min zijn.',
+ 'file' => ':attribute moet minstens :min kilobytes zijn.',
+ 'string' => ':attribute moet minstens :min karakters bevatten.',
+ 'array' => ':attribute moet minstens :min items bevatten.',
],
- 'not_in' => 'The selected :attribute is invalid.',
- 'numeric' => 'The :attribute must be a number.',
- 'regex' => 'The :attribute format is invalid.',
- 'required' => 'The :attribute field is required.',
- 'required_if' => 'The :attribute field is required when :other is :value.',
- 'required_with' => 'The :attribute field is required when :values is present.',
- 'required_with_all' => 'The :attribute field is required when :values is present.',
- 'required_without' => 'The :attribute field is required when :values is not present.',
- 'required_without_all' => 'The :attribute field is required when none of :values are present.',
- 'same' => 'The :attribute and :other must match.',
+ 'not_in' => ':attribute is ongeldig.',
+ 'not_regex' => ':attribute formaat is ongeldig.',
+ 'numeric' => ':attribute moet een getal zijn.',
+ 'regex' => ':attribute formaat is ongeldig.',
+ 'required' => ':attribute veld is verplicht.',
+ 'required_if' => ':attribute veld is verplicht als :other gelijk is aan :value.',
+ 'required_with' => ':attribute veld is verplicht wanneer :values ingesteld is.',
+ 'required_with_all' => ':attribute veld is verplicht wanneer :values ingesteld is.',
+ 'required_without' => ':attribute veld is verplicht wanneer :values niet ingesteld is.',
+ 'required_without_all' => ':attribute veld is verplicht wanneer geen van :values ingesteld zijn.',
+ 'same' => ':attribute en :other moeten overeenkomen.',
+ 'safe_url' => 'De opgegeven link is mogelijk niet veilig.',
'size' => [
- 'numeric' => 'The :attribute must be :size.',
- 'file' => 'The :attribute must be :size kilobytes.',
- 'string' => 'The :attribute must be :size characters.',
- 'array' => 'The :attribute must contain :size items.',
+ 'numeric' => ':attribute moet :size zijn.',
+ 'file' => ':attribute moet :size kilobytes zijn.',
+ 'string' => ':attribute moet :size tekens bevatten.',
+ 'array' => ':attribute moet :size items bevatten.',
],
- 'string' => 'The :attribute must be a string.',
- 'timezone' => 'The :attribute must be a valid zone.',
- 'unique' => 'The :attribute has already been taken.',
- 'url' => 'The :attribute format is invalid.',
-
- /*
- |--------------------------------------------------------------------------
- | 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.
- |
- */
+ 'string' => ':attribute moet tekst zijn.',
+ 'timezone' => ':attribute moet een geldige zone zijn.',
+ 'totp' => 'De opgegeven code is niet geldig of verlopen.',
+ 'unique' => ':attribute is al in gebruik.',
+ 'url' => ':attribute formaat is ongeldig.',
+ 'uploaded' => 'Het bestand kon niet worden geüpload. De server accepteert mogelijk geen bestanden van deze grootte.',
+ // Custom validation lines
'custom' => [
'password-confirm' => [
- 'required_with' => 'Password confirmation required',
+ 'required_with' => 'Wachtwoord bevestiging verplicht',
],
],
- /*
- |--------------------------------------------------------------------------
- | Custom Validation Attributes
- |--------------------------------------------------------------------------
- |
- | The following language lines are used to swap attribute place-holders
- | with something more reader friendly such as E-Mail Address instead
- | of "email". This simply helps us make messages a little cleaner.
- |
- */
-
+ // Custom validation attributes
'attributes' => [],
-
];