Update en.php

add a verb to the lengthMin error
This commit is contained in:
Willem Wollebrants 2016-07-31 11:57:12 +02:00 committed by GitHub
parent 0c9feabe0e
commit fc6f5c138e

View File

@ -28,7 +28,7 @@ return array(
'boolean' => "must be a boolean", 'boolean' => "must be a boolean",
'lengthBetween' => "must be between %d and %d characters", 'lengthBetween' => "must be between %d and %d characters",
'creditCard' => "must be a valid credit card number", 'creditCard' => "must be a valid credit card number",
'lengthMin' => "must at least %d characters long", 'lengthMin' => "must be at least %d characters long",
'lengthMax' => "must not exceed %d characters", 'lengthMax' => "must not exceed %d characters",
'instanceOf' => "must be an instance of '%s'" 'instanceOf' => "must be an instance of '%s'"
); );