Skip to content

Commit

Permalink
Merge pull request #77 from nshiro/update_validations
Browse files Browse the repository at this point in the history
Add missing validation messages
  • Loading branch information
askdkc authored Apr 5, 2023
2 parents 42ed21a + ee97453 commit 5acb68d
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions stubs/lang/ja/validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,11 @@
'digits_between' => ':attributeは:min桁から:max桁の間で指定してください。',
'dimensions' => ':attributeの図形サイズが正しくありません。',
'distinct' => ':attributeには異なった値を指定してください。',
'doesnt_end_with' => ':attributeは、:values以外の値で終わるように指定してください。',
'doesnt_start_with' => ':attributeは、:values以外の値で始まるように指定してください。',
'email' => ':attributeには、有効なメールアドレスを指定してください。',
'ends_with' => ':attributeには、:valuesのどれかで終わる値を指定してください。',
'enum' => '選択された:attributeは正しくありません。',
'exists' => '選択された:attributeは正しくありません。',
'file' => ':attributeにはファイルを指定してください。',
'filled' => ':attributeに値を指定してください。',
Expand Down Expand Up @@ -81,6 +84,7 @@
'string' => ':attributeは、:max文字以下で指定してください。',
'array' => ':attributeは:max個以下指定してください。',
],
'max_digits' => ':attributeは、:max桁以下で指定してください。',
'mimes' => ':attributeには:valuesタイプのファイルを指定してください。',
'mimetypes' => ':attributeには:valuesタイプのファイルを指定してください。',
'min' => [
Expand All @@ -89,6 +93,7 @@
'string' => ':attributeは、:min文字以上で指定してください。',
'array' => ':attributeは:min個以上指定してください。',
],
'min_digits' => ':attributeは、:min桁以上で指定してください。',
'missing' => ':attributeは存在してはいけません。',
'missing_if' => ':otherが:valueの場合、:attributeは存在してはいけません。',
'missing_unless' => ':otherが:valueでない場合、:attributeは存在してはいけません。',
Expand All @@ -98,20 +103,28 @@
'not_in' => '選択された:attributeは正しくありません。',
'not_regex' => ':attributeの形式が正しくありません。',
'numeric' => ':attributeには、数字を指定してください。',
'password' => '正しいパスワードを指定してください。',
'password' => [
'letters' => ':attributeは、最低1文字以上の文字を含めてください。',
'mixed' => ':attributeは、最低1文字以上の大文字と小文字をそれぞれ含めてください。',
'numbers' => ':attributeは、最低1文字以上の数字を含めてください。',
'symbols' => ':attributeは、最低1文字以上の記号を含めてください。',
'uncompromised' => '指定の:attributeは、漏洩している恐れがあります。他の:attributeを指定してください。',
],
'present' => ':attributeが存在していません。',
'prohibited' => ':attributeは入力禁止です。',
'prohibited_if' => ':otherが:valueの場合、:attributeは入力禁止です。',
'prohibited_unless' => ':otherが:valueでない場合、:attributeは入力禁止です。',
'prohibits' => 'attributeは:otherの入力を禁じています。',
'regex' => ':attributeに正しい形式を指定してください。',
'required' => ':attributeは必ず指定してください。',
'required_array_keys' => ':attributeは、:valuesの項目を含めてください。',
'required_if' => ':otherが:valueの場合、:attributeも指定してください。',
'required_if_accepted' => ':attributeは、:otherが承認された場合は、必ず指定してください。',
'required_unless' => ':otherが:valuesでない場合、:attributeを指定してください。',
'required_with' => ':valuesを指定する場合は、:attributeも指定してください。',
'required_with_all' => ':valuesを指定する場合は、:attributeも指定してください。',
'required_without' => ':valuesを指定しない場合は、:attributeを指定してください。',
'required_without_all' => ':valuesのどれも指定しない場合は、:attributeを指定してください。',
'prohibited' => ':attributeは入力禁止です。',
'prohibited_if' => ':otherが:valueの場合、:attributeは入力禁止です。',
'prohibited_unless' => ':otherが:valueでない場合、:attributeは入力禁止です。',
'prohibits' => 'attributeは:otherの入力を禁じています。',
'same' => ':attributeと:otherには同じ値を指定してください。',
'size' => [
'numeric' => ':attributeは:sizeを指定してください。',
Expand Down

0 comments on commit 5acb68d

Please sign in to comment.