|
@@ -39,27 +39,35 @@ return array(
|
|
|
"alpha" => "The :attribute may only contain letters.",
|
|
|
"alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.",
|
|
|
"alpha_num" => "The :attribute may only contain letters and numbers.",
|
|
|
- "between" => "The :attribute must be between :min - :max.",
|
|
|
- "between.file" => "The :attribute must be between :min - :max kilobytes.",
|
|
|
- "between.string" => "The :attribute must be between :min - :max characters.",
|
|
|
+ "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.",
|
|
|
+ ),
|
|
|
"confirmed" => "The :attribute confirmation does not match.",
|
|
|
"email" => "The :attribute format is invalid.",
|
|
|
"image" => "The :attribute must be an image.",
|
|
|
"in" => "The selected :attribute is invalid.",
|
|
|
"integer" => "The :attribute must be an integer.",
|
|
|
- "max" => "The :attribute must be less than :max.",
|
|
|
- "max.file" => "The :attribute must be less than :max kilobytes.",
|
|
|
- "max.string" => "The :attribute must be less than :max characters.",
|
|
|
+ "max" => array(
|
|
|
+ "numeric" => "The :attribute must be less than :max.",
|
|
|
+ "file" => "The :attribute must be less than :max kilobytes.",
|
|
|
+ "string" => "The :attribute must be less than :max characters.",
|
|
|
+ ),
|
|
|
"mimes" => "The :attribute must be a file of type: :values.",
|
|
|
- "min" => "The :attribute must be at least :min.",
|
|
|
- "min.file" => "The :attribute must be at least :min kilobytes.",
|
|
|
- "min.string" => "The :attribute must be at least :min characters.",
|
|
|
+ "min" => array(
|
|
|
+ "numeric" => "The :attribute must be at least :min.",
|
|
|
+ "file" => "The :attribute must be at least :min kilobytes.",
|
|
|
+ "string" => "The :attribute must be at least :min characters.",
|
|
|
+ ),
|
|
|
"not_in" => "The selected :attribute is invalid.",
|
|
|
"numeric" => "The :attribute must be a number.",
|
|
|
"required" => "The :attribute field is required.",
|
|
|
- "size" => "The :attribute must be :size.",
|
|
|
- "size.file" => "The :attribute must be :size kilobyte.",
|
|
|
- "size.string" => "The :attribute must be :size characters.",
|
|
|
+ "size" => array(
|
|
|
+ "numeric" => "The :attribute must be :size.",
|
|
|
+ "file" => "The :attribute must be :size kilobyte.",
|
|
|
+ "string" => "The :attribute must be :size characters.",
|
|
|
+ ),
|
|
|
"unique" => "The :attribute has already been taken.",
|
|
|
"url" => "The :attribute format is invalid.",
|
|
|
|