Skip to content

Commit 78e1d56

Browse files
Update validation.php (laravel#5699)
modify the grammar for lte and gte validation to have a parallel structure
1 parent 4578193 commit 78e1d56

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

resources/lang/en/validation.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
'array' => 'The :attribute must have more than :value items.',
5454
],
5555
'gte' => [
56-
'numeric' => 'The :attribute must be greater than or equal :value.',
57-
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
58-
'string' => 'The :attribute must be greater than or equal :value characters.',
56+
'numeric' => 'The :attribute must be greater than or equal to :value.',
57+
'file' => 'The :attribute must be greater than or equal to :value kilobytes.',
58+
'string' => 'The :attribute must be greater than or equal to :value characters.',
5959
'array' => 'The :attribute must have :value items or more.',
6060
],
6161
'image' => 'The :attribute must be an image.',
@@ -73,9 +73,9 @@
7373
'array' => 'The :attribute must have less than :value items.',
7474
],
7575
'lte' => [
76-
'numeric' => 'The :attribute must be less than or equal :value.',
77-
'file' => 'The :attribute must be less than or equal :value kilobytes.',
78-
'string' => 'The :attribute must be less than or equal :value characters.',
76+
'numeric' => 'The :attribute must be less than or equal to :value.',
77+
'file' => 'The :attribute must be less than or equal to :value kilobytes.',
78+
'string' => 'The :attribute must be less than or equal to :value characters.',
7979
'array' => 'The :attribute must not have more than :value items.',
8080
],
8181
'max' => [

0 commit comments

Comments
 (0)