<?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??????('A-Z','a-z','0-9')????????('-','_')????????",
"alpha_num" => ":attribute??????('A-Z','a-z','0-9')????????",
"array" => ":attribute???????????????",
"before" => ":attribute???:date???????????????",
"between" => [
"numeric" => ":attribute???:min???:max???????????????",
"file" => ":attribute???:min KB??:max KB?????????????????????",
"string" => ":attribute??:min????:max??????????",
"array" => ":attribute?????:min???:max?????????",
],
"boolean" => ":attribute???'true'?'false'??????????",
"confirmed" => ":attribute?: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 KB?????????????????",
"string" => ":attribute??:max????????????",
"array" => ":attribute?????:max???????????",
],
"mimes" => ":attribute???:values??????????????????",
"min" => [
"numeric" => ":attribute???:min???????????????",
"file" => ":attribute???:min KB?????????????????",
"string" => ":attribute??:min????????????",
"array" => ":attribute?????:max???????????",
],
"not_in" => "?????:attribute????????????",
"numeric" => ":attribute???????????????",
"regex" => ":attribute????????????????????",
"required" => ":attribute?????????????",
"required_if" => ":other?:value????:attribute?????????",
"required_with" => ":values???????????:attribute??????????",
"required_with_all" => ":values?????????????:attribute??????????",
"required_without" => ":values????????????:attribute??????????",
"required_without_all" => ":values??????????????:attribute??????????",
"same" => ":attribute?:other????????",
"size" => [
"numeric" => ":attribute???:size??????????",
"file" => ":attribute???:size KB???????????????",
"string" => ":attribute??:size??????????",
"array" => ":attribute?????:size?????????",
],
"unique" => "???:attribute????????????",
"url" => ":attribute?????URL????????????",
"timezone" => ":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' => [
'phone.regex' => '?????????????????',
],
/*
|--------------------------------------------------------------------------
| 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' => [
'name' => '??',
'email' => '???????',
'phone' => '????',
'subject' => '??????????????',
'body' => '?????',
],
];
|