Fixes error messages. Validation allows max number.
Fix for both Russian and English. NB The bug is fixed for English version V4 already. No language files for other languages for V4. Signed-off-by: Evgeny Kovalev <Evgeny.Kovalev@gmail.com>
This commit is contained in:
parent
cffded660c
commit
bd6289b118
|
@ -46,9 +46,9 @@
|
||||||
"ip" => "The :attribute must be a valid IP address.",
|
"ip" => "The :attribute must be a valid IP address.",
|
||||||
"match" => "The :attribute format is invalid.",
|
"match" => "The :attribute format is invalid.",
|
||||||
"max" => array(
|
"max" => array(
|
||||||
"numeric" => "The :attribute must be less than :max.",
|
"numeric" => "The :attribute may not be greater than :max.",
|
||||||
"file" => "The :attribute must be less than :max kilobytes.",
|
"file" => "The :attribute may not be greater than :max kilobytes.",
|
||||||
"string" => "The :attribute must be less than :max characters.",
|
"string" => "The :attribute may not be greater than :max characters.",
|
||||||
),
|
),
|
||||||
"mimes" => "The :attribute must be a file of type: :values.",
|
"mimes" => "The :attribute must be a file of type: :values.",
|
||||||
"min" => array(
|
"min" => array(
|
||||||
|
|
|
@ -45,9 +45,9 @@
|
||||||
"ip" => "Поле :attribute должно быть полным IP-адресом.",
|
"ip" => "Поле :attribute должно быть полным IP-адресом.",
|
||||||
"match" => "Поле :attribute имеет неверный формат.",
|
"match" => "Поле :attribute имеет неверный формат.",
|
||||||
"max" => array(
|
"max" => array(
|
||||||
"numeric" => "Поле :attribute должно быть меньше :max.",
|
"numeric" => "Поле :attribute должно быть не больше :max.",
|
||||||
"file" => "Поле :attribute должно быть меньше :max Килобайт.",
|
"file" => "Поле :attribute должно быть не больше :max Килобайт.",
|
||||||
"string" => "Поле :attribute должно быть короче :max символов.",
|
"string" => "Поле :attribute должно быть длиннее :max символов.",
|
||||||
),
|
),
|
||||||
"mimes" => "Поле :attribute должно быть файлом одного из типов: :values.",
|
"mimes" => "Поле :attribute должно быть файлом одного из типов: :values.",
|
||||||
"min" => array(
|
"min" => array(
|
||||||
|
@ -101,4 +101,4 @@
|
||||||
|
|
||||||
'attributes' => array(),
|
'attributes' => array(),
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue