<?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
| as the size rules. Feel free to tweak each of these messages here.
|
*/
'accepted' => ':attribute ??? ?? ???? ???????.',
'active_url' => ':attribute ??? ????? ??? ????.',
'after' => ':attribute ??? ?? ???? ????? ??? :date.',
'after_or_equal' => ':attribute ??? ?? ???? ???? ?? ?? ????? :date.',
'alpha' => ':attribute ??? ?? ????? ??? ???? ???.',
'alpha_dash' => ':attribute ??? ?? ????? ??? ???? ?????? ??????? ????.',
'alpha_num' => ':attribute ??? ?? ????? ??? ???? ?????? ???.',
'array' => ':attribute ??? ?? ???? ??????.',
'before' => ':attribute ??? ?? ???? ??? ????? :date.',
'before_or_equal' => ':attribute ??? ?? ???? ???? ?? ?? ????? :date.',
'date' => ':attribute ??? ????? ????.',
'date_format' => ':attribute ?? ????? ???? ??????? :format.',
'distinct' => ':attribute ?? ???? ?????.',
'email' => ':attribute ??? ?? ???? ???? ???????? ????.',
'filled' => ':attribute ?? ???? ?? ???? ??????.',
'required' => ':attribute ?????.',
'string' => ':attribute ??? ?? ???? ????.',
'unique' => ':attribute ????? ??????.',
'uploaded' => '??? ????? :attribute.',
'url' => '???? ????? :attribute ??? ?????.',
];
|