Skip to content

Commit 65842ae

Browse files
committed
Merge pull request laravel#2377 from rmobis/master
Tiny inconsistency between 'between' and 'digits_between' validation rules messages
2 parents b2ac319 + d734a41 commit 65842ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/lang/en/validation.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
"array" => "The :attribute must be an array.",
2323
"before" => "The :attribute must be a date before :date.",
2424
"between" => array(
25-
"numeric" => "The :attribute must be between :min - :max.",
26-
"file" => "The :attribute must be between :min - :max kilobytes.",
27-
"string" => "The :attribute must be between :min - :max characters.",
28-
"array" => "The :attribute must have between :min - :max items.",
25+
"numeric" => "The :attribute must be between :min and :max.",
26+
"file" => "The :attribute must be between :min and :max kilobytes.",
27+
"string" => "The :attribute must be between :min and :max characters.",
28+
"array" => "The :attribute must have between :min and :max items.",
2929
),
3030
"confirmed" => "The :attribute confirmation does not match.",
3131
"date" => "The :attribute is not a valid date.",

0 commit comments

Comments
 (0)