Commit bd6289b1 authored by Evgeny Kovalev's avatar Evgeny Kovalev

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: 's avatarEvgeny Kovalev <Evgeny.Kovalev@gmail.com>
parent cffded66
......@@ -46,9 +46,9 @@ return array(
"ip" => "The :attribute must be a valid IP address.",
"match" => "The :attribute format is invalid.",
"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.",
"numeric" => "The :attribute may not be greater than :max.",
"file" => "The :attribute may not be greater than :max kilobytes.",
"string" => "The :attribute may not be greater than :max characters.",
),
"mimes" => "The :attribute must be a file of type: :values.",
"min" => array(
......
......@@ -45,9 +45,9 @@ return array(
"ip" => "Поле :attribute должно быть полным IP-адресом.",
"match" => "Поле :attribute имеет неверный формат.",
"max" => array(
"numeric" => "Поле :attribute должно быть меньше :max.",
"file" => "Поле :attribute должно быть меньше :max Килобайт.",
"string" => "Поле :attribute должно быть короче :max символов.",
"numeric" => "Поле :attribute должно быть не больше :max.",
"file" => "Поле :attribute должно быть не больше :max Килобайт.",
"string" => "Поле :attribute должно быть длиннее :max символов.",
),
"mimes" => "Поле :attribute должно быть файлом одного из типов: :values.",
"min" => array(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment