Skip to content

Commit 3f92cf6

Browse files
authored
Merge pull request laravel#4656 from caouecs/patch-1
fix: alphabetical order
2 parents 83dc947 + 7d8e91a commit 3f92cf6

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

resources/lang/en/validation.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -48,24 +48,12 @@
4848
'string' => 'The :attribute must be greater than :value characters.',
4949
'array' => 'The :attribute must have more than :value items.',
5050
],
51-
'lt' => [
52-
'numeric' => 'The :attribute must be less than :value.',
53-
'file' => 'The :attribute must be less than :value kilobytes.',
54-
'string' => 'The :attribute must be less than :value characters.',
55-
'array' => 'The :attribute must have less than :value items.',
56-
],
5751
'gte' => [
5852
'numeric' => 'The :attribute must be greater than or equal :value.',
5953
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
6054
'string' => 'The :attribute must be greater than or equal :value characters.',
6155
'array' => 'The :attribute must have :value items or more.',
6256
],
63-
'lte' => [
64-
'numeric' => 'The :attribute must be less than or equal :value.',
65-
'file' => 'The :attribute must be less than or equal :value kilobytes.',
66-
'string' => 'The :attribute must be less than or equal :value characters.',
67-
'array' => 'The :attribute must not have more than :value items.',
68-
],
6957
'image' => 'The :attribute must be an image.',
7058
'in' => 'The selected :attribute is invalid.',
7159
'in_array' => 'The :attribute field does not exist in :other.',
@@ -74,6 +62,18 @@
7462
'ipv4' => 'The :attribute must be a valid IPv4 address.',
7563
'ipv6' => 'The :attribute must be a valid IPv6 address.',
7664
'json' => 'The :attribute must be a valid JSON string.',
65+
'lt' => [
66+
'numeric' => 'The :attribute must be less than :value.',
67+
'file' => 'The :attribute must be less than :value kilobytes.',
68+
'string' => 'The :attribute must be less than :value characters.',
69+
'array' => 'The :attribute must have less than :value items.',
70+
],
71+
'lte' => [
72+
'numeric' => 'The :attribute must be less than or equal :value.',
73+
'file' => 'The :attribute must be less than or equal :value kilobytes.',
74+
'string' => 'The :attribute must be less than or equal :value characters.',
75+
'array' => 'The :attribute must not have more than :value items.',
76+
],
7777
'max' => [
7878
'numeric' => 'The :attribute may not be greater than :max.',
7979
'file' => 'The :attribute may not be greater than :max kilobytes.',

0 commit comments

Comments
 (0)