-
-
Save sutara79/46c0d5e1e5eab0a1bbdfee021ad6d692 to your computer and use it in GitHub Desktop.
Laravel 5.4, 5.5 日本語メッセージ: バリデーション
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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は正しいURLではありません。', | |
'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以前の日付にしてください。', | |
'between' => [ | |
'numeric' => ':attributeは:min〜:maxまでにしてください。', | |
'file' => ':attributeは:min〜:max KBまでのファイルにしてください。', | |
'string' => ':attributeは:min〜:max文字にしてください。', | |
'array' => ':attributeは:min〜:max個までにしてください。', | |
], | |
'boolean' => ':attributeはtrueかfalseにしてください。', | |
'confirmed' => ':attributeは確認用項目と一致していません。', | |
'date' => ':attributeは正しい日付ではありません。', | |
'date_format' => ':attributeは":format"書式と一致していません。', | |
'different' => ':attributeは:otherと違うものにしてください。', | |
'digits' => ':attributeは:digits桁にしてください', | |
'digits_between' => ':attributeは:min〜:max桁にしてください。', | |
'dimensions' => ':attributeは無効な画像サイズです。', | |
'distinct' => ':attributeは値が重複しています。', | |
'email' => ':attributeを正しいメールアドレスにしてください。', | |
'exists' => '選択された:attributeは正しくありません。', | |
'file' => ':attributeはファイルにしてください。', | |
'filled' => ':attributeは必須です。', | |
'image' => ':attributeは画像にしてください。', | |
'in' => '選択された:attributeは正しくありません。', | |
'in_array' => ':attributeは:otherの中から選んでください。', | |
'integer' => ':attributeは整数にしてください。', | |
'ip' => ':attributeを正しいIPアドレスにしてください。', | |
'ipv4' => ':attributeを正しいIPv4アドレスにしてください。', | |
'ipv6' => ':attributeを正しいIPv6アドレスにしてください。', | |
'json' => ':attributeを正しいJSONにしてください。', | |
'max' => [ | |
'numeric' => ':attributeは:max以下にしてください。', | |
'file' => ':attributeは:max KB以下のファイルにしてください。.', | |
'string' => ':attributeは:max文字以下にしてください。', | |
'array' => ':attributeは:max個以下にしてください。', | |
], | |
'mimes' => ':attributeは:valuesタイプのファイルにしてください。', | |
'mimetypes' => ':attributeは:valuesタイプのファイルにしてください。', | |
'min' => [ | |
'numeric' => ':attributeは:min以上にしてください。', | |
'file' => ':attributeは:min KB以上のファイルにしてください。.', | |
'string' => ':attributeは:min文字以上にしてください。', | |
'array' => ':attributeは:min個以上にしてください。', | |
], | |
'not_in' => '選択された:attributeは正しくありません。', | |
'numeric' => ':attributeは数字にしてください。', | |
'present' => ':attributeは存在する必要があります。', | |
'regex' => ':attributeの書式が正しくありません。', | |
'required' => ':attributeは必須です。', | |
'required_if' => ':otherが:valueの場合、:attributeは必須です。', | |
'required_unless' => ':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個にしてください。', | |
], | |
'string' => ':attributeは文字列にしてください。', | |
'timezone' => ':attributeは正しいタイムゾーンをしていしてください。', | |
'unique' => ':attributeは既に存在します。', | |
'uploaded' => ':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' => [ | |
'attribute-name' => [ | |
'rule-name' => 'custom-message', | |
], | |
], | |
/* | |
|-------------------------------------------------------------------------- | |
| 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' => [], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment