<?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| such as the size rules. Feel free to tweak each of these messages.
|
*/
"accepted" => "??????? :attribute ??????? ???? ???????",
"active_url" => "??????? :attribute ?? ????????? URL",
"after" => "??????? :attribute ??????? ???? ????? ????? ???? :date",
"alpha" => "??????? :attribute ???? ??????????? ?????? ??????",
"alpha_dash" => "??????? :attribute ???? ??????????? ?????? ??????, ????? ? ??????",
"alpha_num" => "??????? :attribute ???? ??????????? ?????? ?????? ? ?????",
"array" => "??????? :attribute ??????? ???? ???????",
"before" => "??????? :attribute ??????? ???? ????? ????? ????? :date",
"between" => [
"numeric" => "??????? :attribute ??????? ???? ????? :min - :max",
"file" => "??????? :attribute ??????? ???? ????? :min - :max ????????",
"string" => "??????? :attribute ??????? ???? ????? :min - :max ????????",
"array" => "??????? :attribute ??????? ???? ????? :min - :max ?????????",
],
"confirmed" => "???????????? ???????? :attribute ?? ???????",
"date" => "??????? :attribute ?? ?'???????? ?????????? ?????",
"date_format" => "?????? ???????? :attribute ?? ??????? ? ???????? :format",
"different" => "??????? :attribute ? ???? ??????? :other ??????? ???? ???????",
"digits" => "??????? :attribute ??????? ????????? ? :digits ??????",
"digits_between" => "??????? :attribute ??????? ???? ????? :min ? :max ???????",
"email" => "?????? ???????? :attribute ???????????",
"exists" => "?????? ??????? :attribute ???????????",
"image" => "??????? :attribute ??????? ???? ??????",
"in" => "?????? ??????? :attribute ???????????",
"integer" => "??????? :attribute ??????? ???? ????? ?????",
"ip" => "??????? :attribute ??????? ???? ?????????? IP ???????",
"max" => [
"numeric" => "??????? :attribute ?? ???? ???? ????? ?? :max",
"file" => "??????? :attribute ?? ???? ???? ????? ?? :max ????????",
"string" => "??????? :attribute ?? ???? ???? ????? ?? :max ????????",
"array" => "??????? :attribute ?? ???? ???? ????? ?? :max ?????????",
],
"mimes" => "??????? :attribute ??????? ???? ?????? ????: :values",
"extensions" => "??????? :attribute ??????? ???? ?????????: :values",
"min" => [
"numeric" => "??????? :attribute ??????? ???? ????? ?? :min",
"file" => "??????? :attribute ??????? ???? ????? ?? :min ????????",
"string" => "??????? :attribute ??????? ???? ????? ??? :min ????????",
"array" => "??????? :attribute ??????? ???? ????? ?? :min ?????????",
],
"not_in" => "?????? ??????? :attribute ???????????",
"numeric" => "??????? :attribute ??????? ???? ??????",
"regex" => "?????? ???????? :attribute ???????????",
"required" => "??????? :attribute ?'???????? ???????????",
"required_if" => "??????? :attribute ???????????, ???? ???? ???? :other ?????? :value.",
"required_with" => "??????? :attribute ???????????, ???? ???? :values",
"required_without" => "??????? :attribute ???????????, ???? ???? :values",
"same" => "??????? :attribute ? ???? ??????? :other ??????? ????????",
"size" => [
"numeric" => "??????? :attribute ??????? ???? ????? :size",
"file" => "??????? :attribute ??????? ???? :size ????????",
"string" => "??????? :attribute ??????? ???? :size ????????",
"array" => "??????? :attribute ??????? ???? :size ?????????",
],
"unique" => "??????? :attribute ??? ??????",
"url" => "?????? ???????? :attribute ???????????",
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap attribute place-holders
| with something more reader friendly such as E-Mail Address instead
| of "email". This simply helps us make messages a little cleaner.
|
*/
'attributes' => [],
];
|