Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 23, 2024
1 parent 81e8b80 commit d55df5a
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
tools: composer:v2, supportpal/language-tools

- name: PHP Syntax Check
uses: overtrue/phplint@9.1
uses: overtrue/phplint@9.4
with:
path: .
options: --exclude=vendor
Expand Down
74 changes: 37 additions & 37 deletions Lang/nl/validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"numeric" => "De :attribute moet een waarde zijn tussen :min en :max.",
"file" => "De :attribute moet tussen de :min en :max kilobytes zijn.",
"string" => "De :attribute moet tussen de :min en :max tekens lang zijn.",
"array" => "De :attribute moet tussen de :min en :max items bevatten.",
"array" => "The :attribute must have between :min and :max items.",
),
"boolean" => "De :attribute veld moet waar of niet waar zijn.",
"confirmed" => "De :attribute bevestiging matcht niet.",
Expand All @@ -41,20 +41,20 @@
"integer" => "De :attribute moet een geheel getal zijn.",
"ip" => "De :attribute moet een geldig ipadres zijn.",
"max" => array(
"numeric" => "De :attribute mag niet groter zijn dan :max.",
"file" => "De :attribute mag niet groter zijn dan :max kilobytes.",
"string" => "De :attribute mag niet langer zijn dan :max tekens.",
"array" => "De :attribute mag niet groter zijn dan :max items.",
"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.",
),
"mimes" => "De :attribute moet van bestandtype :values zijn.",
"min" => array(
"numeric" => "De :attribute moet minimaal :min zijn.",
"file" => "De :attribute moet minstens :min kilobytes zijn.",
"string" => "De :attribute moest minstens :min tekens zijn.",
"array" => "De :attribute moet miminaal :min items zijn.",
"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.",
),
"not_in" => "De geselecteerde :attribute is ongeldig.",
"numeric" => "De :attribute moet een nummer zijn.",
"numeric" => "The :attribute must be a number.",
"regex" => "De :attribute formaat is ongeldig.",
"required" => "Het :attribute veld is required.",
"required_if" => "Het :attribute veld is verplicht wanneer :other :value is.",
Expand All @@ -64,10 +64,10 @@
"required_without_all" => "Het :attribute veld is verplicht wanneer geen van :values is ingesteld.",
"same" => "De :attribute en :other moeten hetzelfde zijn.",
"size" => array(
"numeric" => "De :attribute moet :size zijn.",
"file" => "De :attribute moet :size kilobytes zijn.",
"string" => "De :attribute moet :size tekens zijn.",
"array" => "De :attribute moet :size items bevatten.",
"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.",
),
"unique" => "Het :attribute is al bezet.",
"url" => "Het :attribute formaat is onjuist.",
Expand Down Expand Up @@ -109,41 +109,41 @@
"before_or_equal" => "De :attribute moet een datum voor of gelijk zijn aan :date.",
"dimensions" => "De :attribute heeft ongeldige afbeeldingsafmetingen.",
"distinct" => "Het :attribute veld heeft een dubbele waarde.",
"file" => "Het :attribute moet een bestand zijn.",
"file" => "The :attribute must be a file.",
"filled" => "Het :attribute veld moet een waarde hebben.",
"gt" => array(
"numeric" => "Het :attribute moet groter zijn dan :value.",
"file" => "Het :attribute moet groter zijn dan :value kilobytes.",
"string" => "De :attribute moet groter zijn dan :value characters.",
"array" => "De :attribute moet groter zijn dan :value items.",
"numeric" => "The :attribute must be greater than :value.",
"file" => "The :attribute must be greater than :value kilobytes.",
"string" => "The :attribute must be greater than :value characters.",
"array" => "The :attribute must have more than :value items.",
),
"gte" => array(
"numeric" => "Het :attribute moet groter zijn dan of gelijk zijn aan :value.",
"file" => "Het :attribute moet groter zijn dan of gelijk zijn aan :value kilobytes.",
"string" => "De :attribute moet groter zijn dan of gelijk zijn aan :value characters.",
"array" => "De :attribute moet :value items bevatten of meer.",
"numeric" => "The :attribute must be greater than or equal :value.",
"file" => "The :attribute must be greater than or equal :value kilobytes.",
"string" => "The :attribute must be greater than or equal :value characters.",
"array" => "The :attribute must have :value items or more.",
),
"in_array" => "Het :attribute veld bestaat niet in :other.",
"ipv4" => "Het :attribute moet een geldig IPv4 adres zijn.",
"ipv6" => "Het :attribute moet een geldig IPv6 adres zijn.",
"json" => "Het :attribute moet een geldige JSON string zijn.",
"lt" => array(
"numeric" => "Het :attribute moet kleiner zijn dan :value.",
"file" => "Het :attribute moet kleiner zijn dan :value kilobytes.",
"string" => "De :attribute moet kleiner zijn dan :value characters.",
"array" => "De :attribute moet kleiner zijn dan :value items.",
"numeric" => "The :attribute must be less than :value.",
"file" => "The :attribute must be less than :value kilobytes.",
"string" => "The :attribute must be less than :value characters.",
"array" => "The :attribute must have less than :value items.",
),
"lte" => array(
"numeric" => "Het :attribute moet kleiner zijn dan of gelijk zijn :value.",
"file" => "Het :attribute moet kleiner zijn dan of gelijk zijn :value kilobytes.",
"string" => "De :attribute moet kleiner zijn dan of gelijk zijn :value characters.",
"array" => "De :attribute moet kleiner zijn dan of gelijk zijn :value items.",
"numeric" => "The :attribute must be less than or equal :value.",
"file" => "The :attribute must be less than or equal :value kilobytes.",
"string" => "The :attribute must be less than or equal :value characters.",
"array" => "The :attribute must not have more than :value items.",
),
"mimetypes" => "Het :attribute moet een bestand zijn van type: :values.",
"not_regex" => "Het :attribute formaat is onjuist.",
"present" => "Het :attribute veld moet aanwezig zijn.",
"required_unless" => "Het :attribute veld is verplicht, tenzij :other aanwezig is in :values.",
"string" => "Het :attribute moet een string zijn.",
"string" => "The :attribute must be a string.",
"timezone" => "Het :attribute moet een geldige zone zijn.",
"uploaded" => "Het uploaden van :attribute is mislukt.",

Expand Down Expand Up @@ -193,17 +193,17 @@

"custom" => array(
"roles.*" => array(
"exists" => "De geselecteerde rol is ongeldig.",
"exists" => "The selected role is invalid.",
),
"category.*.type" => array(
"required" => "Er moeten een of meer zelfbedieningstypen worden geselecteerd.",
"required" => "One or more self-service types must be selected.",
),
"category.*.categories" => array(
"required" => "Een of meer categorieën zijn vereist wanneer een zelfbedieningstype is geselecteerd .",
"exists" => "Een of meer van de geselecteerde categorieën is ongeldig.",
"required" => "One or more categories are required when a self-service type has been selected.",
"exists" => "One or more of the selected categories is invalid.",
),
"brand.*" => array(
"exists" => "Het geselecteerde merk is ongeldig.",
"exists" => "The selected brand is invalid.",
),
),

Expand Down

0 comments on commit d55df5a

Please sign in to comment.