From d734a416e07f0d20bcfeb22e9e26591250d9819d Mon Sep 17 00:00:00 2001 From: Raphael Mobis Tacla Date: Sat, 26 Oct 2013 18:31:29 -0200 Subject: [PATCH] Replace dash for 'and' in `between` validation rules. Fixes #2377 --- app/lang/en/validation.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/lang/en/validation.php b/app/lang/en/validation.php index 5a24a40c..4fc83ff1 100644 --- a/app/lang/en/validation.php +++ b/app/lang/en/validation.php @@ -22,10 +22,10 @@ "array" => "The :attribute must be an array.", "before" => "The :attribute must be a date before :date.", "between" => array( - "numeric" => "The :attribute must be between :min - :max.", - "file" => "The :attribute must be between :min - :max kilobytes.", - "string" => "The :attribute must be between :min - :max characters.", - "array" => "The :attribute must have between :min - :max items.", + "numeric" => "The :attribute must be between :min and :max.", + "file" => "The :attribute must be between :min and :max kilobytes.", + "string" => "The :attribute must be between :min and :max characters.", + "array" => "The :attribute must have between :min and :max items.", ), "confirmed" => "The :attribute confirmation does not match.", "date" => "The :attribute is not a valid date.",