diff --git a/resources/lang/nl-NL/validation.php b/resources/lang/nl-NL/validation.php index 55541862..6cacbb44 100644 --- a/resources/lang/nl-NL/validation.php +++ b/resources/lang/nl-NL/validation.php @@ -31,60 +31,60 @@ return [ 'array' => ':attribute moet een reeks zijn.', 'before' => ':attribute moet een datum vóór :date zijn.', 'between' => [ - 'numeric' => ':attribute moet tussen :min en de :max zijn.', - 'file' => ':attribute moet tussen de :min en de :max aantal kilobytes zijn.', - 'string' => ':attribute moet tussen de :min en :max karakters lang zijn.', + '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' => ':attribute moet tussen :min en :max items hebben.', ], - 'boolean' => 'Het :attribute veld moet waar of onwaar zijn.', - 'confirmed' => 'De :attribute bevestiging komt niet overeen.', - 'date' => ':attribute is geen geldige datum.', - 'date_format' => ':attribute komt niet overeen met het volgende formaat :format.', - 'different' => ':attribute en :other mogen niet hetzelfde zijn.', - 'digits' => ':attribute moet uit :digits cijfers bestaan.', - 'digits_between' => ':attribute moet tussen de :min en :max cijfers zijn.', - 'email' => ':attribute moet een geldig e-mail adres zijn.', - 'exists' => 'Het geselecteerde :attribute is ongeldig.', + '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.', + 'exists' => 'The selected :attribute is invalid.', 'distinct' => 'Het :attribute veld heeft een dubbele waarde.', - 'filled' => 'Het :attribute veld is verplicht.', + 'filled' => 'The :attribute field is required.', 'image' => ':attribute moet een afbeelding zijn.', - 'in' => 'Het geselecteerde :attribute is ongeldig.', + 'in' => 'The selected :attribute is invalid.', 'in_array' => 'Het :attribute veld bestaat niet in :other.', - 'integer' => ':attribute moet een geheel getal zijn.', - 'ip' => 'Het :attribute moet een geldig IP-adres zijn.', + 'integer' => 'The :attribute must be an integer.', + 'ip' => 'The :attribute must be a valid IP address.', 'json' => ':attribute moet een valide JSON tekst zijn.', 'max' => [ - '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.', + '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' => ':attribute mag niet meer dan :max items hebben.', ], - 'mimes' => ':attribute moet een :values bestand zijn.', + 'mimes' => 'The :attribute must be a file of type: :values.', 'min' => [ - 'numeric' => ':attribute moet tenminste :min zijn.', + 'numeric' => 'The :attribute must be at least :min.', 'file' => ':attribute moet minstens :min kilobytes groot zijn.', - 'string' => ':attribute moet minimaal :min tekens zijn.', - 'array' => ':attribute moet tenminste :min onderdelen hebben.', + 'string' => 'The :attribute must be at least :min characters.', + 'array' => 'The :attribute must have at least :min items.', ], - 'not_in' => 'Het geselecteerde :attribute is ongeldig.', - 'numeric' => ':attribute moet een getal zijn.', + 'not_in' => 'The selected :attribute is invalid.', + 'numeric' => 'The :attribute must be a number.', 'present' => 'Het :attribute veld moet aanwezig zijn.', 'regex' => 'Het :attribute-formaat is ongeldig.', - 'required' => 'Het :attribute veld is verplicht.', - 'required_if' => 'Het :attribute veld is verplicht als :other :value is.', + 'required' => 'The :attribute field is required.', + 'required_if' => 'The :attribute field is required when :other is :value.', 'required_unless' => 'Het :attribute veld is verplicht tenzij :other is in :values.', 'required_with' => ':attribute veld is verplicht wanneer :values aanwezig zijn.', 'required_with_all' => ':attribute veld is verplicht wanneer :values aanwezig zijn.', - 'required_without' => 'Het :attribute veld is verplicht als er geen :values zijn.', - 'required_without_all' => 'Het :attribute veld is verplicht als geen van :values aanwezig zijn.', - 'same' => ':attribute en :other moeten overeenkomen.', + '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.', 'size' => [ - 'numeric' => ':attribute moet :size zijn.', + 'numeric' => 'The :attribute must be :size.', 'file' => ':attribute moet :size kilobytes groot zijn.', 'string' => ':attribute moet :size karakters zijn.', - 'array' => ':attribute moet :size onderdelen bevatten.', + 'array' => 'The :attribute must contain :size items.', ], - 'string' => ':attribute moet een woord zijn.', + 'string' => 'The :attribute must be a string.', 'timezone' => ':attribute moet een geldige zone zijn.', 'unique' => ':attribute is reeds in gebruik.', 'url' => 'Het :attribute-formaat is ongeldig.',