Skip to content

Commit d734a41

Browse files
committed
Replace dash for 'and' in between validation rules. Fixes laravel#2377
1 parent b2ac319 commit d734a41

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)