Update en.php

Changed the error messages for min and max. If I set a min value of 1 the error message says the value has to be greater than 1 - changed the error message to say the value must be at least 1. If I set a max value of 10 the error message says the value has to be less than 10 - changed the error message to say the value must be no more than 10.
This commit is contained in:
geoffs3310 2014-07-18 16:36:07 +01:00
parent 839cad4284
commit 93ecbcf211

View File

@ -8,8 +8,8 @@ return array(
'numeric' => "must be numeric",
'integer' => "must be an integer (0-9)",
'length' => "must be longer than %d",
'min' => "must be greater than %s",
'max' => "must be less than %s",
'min' => "must be at least than %s",
'max' => "must be no more than %s",
'in' => "contains invalid value",
'notIn' => "contains invalid value",
'ip' => "is not a valid IP address",