6 |--------------------------------------------------------------------------
7 | Validation Language Lines
8 |--------------------------------------------------------------------------
10 | The following language lines contain the default error messages used by
11 | the validator class. Some of these rules have multiple versions such
12 | as the size rules. Feel free to tweak each of these messages here.
16 'accepted' => ':attributeに同意する必要があります。',
17 'active_url' => ':attributeは正しいURLではありません。',
18 'after' => ':attributeは:date以降である必要があります。',
19 'alpha' => ':attributeは文字のみが含められます。',
20 'alpha_dash' => ':attributeは文字, 数値, ハイフンのみが含められます。',
21 'alpha_num' => ':attributeは文字と数値のみが含められます。',
22 'array' => ':attributeは配列である必要があります。',
23 'before' => ':attributeは:date以前である必要があります。',
25 'numeric' => ':attributeは:min〜:maxである必要があります。',
26 'file' => ':attributeは:min〜:maxキロバイトである必要があります。',
27 'string' => ':attributeは:min〜:max文字である必要があります。',
28 'array' => ':attributeは:min〜:max個である必要があります。',
30 'boolean' => ':attributeはtrueまたはfalseである必要があります。',
31 'confirmed' => ':attributeの確認が一致しません。',
32 'date' => ':attributeは正しい日時ではありません。',
33 'date_format' => ':attributeが:formatのフォーマットと一致しません。',
34 'different' => ':attributeと:otherは異なる必要があります。',
35 'digits' => ':attributeは:digitsデジットである必要があります',
36 'digits_between' => ':attributeは:min〜:maxである必要があります。',
37 'email' => ':attributeは正しいEメールアドレスである必要があります。',
38 'filled' => ':attributeは必須です。',
39 'exists' => '選択された:attributeは不正です。',
40 'image' => ':attributeは画像である必要があります。',
41 'in' => '選択された:attributeは不正です。',
42 'integer' => ':attributeは数値である必要があります。',
43 'ip' => ':attributeは正しいIPアドレスである必要があります。',
45 'numeric' => ':attributeは:maxを越えることができません。',
46 'file' => ':attributeは:maxキロバイトを越えることができません。',
47 'string' => ':attributeは:max文字をこえることができません。',
48 'array' => ':attributeは:max個を越えることができません。',
50 'mimes' => ':attributeのファイルタイプは以下のみが許可されています: :values.',
52 'numeric' => ':attributeは:min以上である必要があります。',
53 'file' => ':attributeは:minキロバイト以上である必要があります。',
54 'string' => ':attributeは:min文字以上である必要があります。',
55 'array' => ':attributeは:min個以上である必要があります。',
57 'not_in' => '選択された:attributeは不正です。',
58 'numeric' => ':attributeは数値である必要があります。',
59 'regex' => ':attributeのフォーマットは不正です。',
60 'required' => ':attributeは必須です。',
61 'required_if' => ':otherが:valueである場合、:attributeは必須です。',
62 'required_with' => ':valuesが設定されている場合、:attributeは必須です。',
63 'required_with_all' => ':valuesが設定されている場合、:attributeは必須です。',
64 'required_without' => ':valuesが設定されていない場合、:attributeは必須です。',
65 'required_without_all' => ':valuesが設定されていない場合、:attributeは必須です。',
66 'same' => ':attributeと:otherは一致している必要があります。',
68 'numeric' => ':attributeは:sizeである必要があります。',
69 'file' => ':attributeは:sizeキロバイトである必要があります。',
70 'string' => ':attributeは:size文字である必要があります。',
71 'array' => ':attributeは:size個である必要があります。',
73 'string' => ':attributeは文字列である必要があります。',
74 'timezone' => ':attributeは正しいタイムゾーンである必要があります。',
75 'unique' => ':attributeは既に使用されています。',
76 'url' => ':attributeのフォーマットは不正です。',
79 |--------------------------------------------------------------------------
80 | Custom Validation Language Lines
81 |--------------------------------------------------------------------------
83 | Here you may specify custom validation messages for attributes using the
84 | convention "attribute.rule" to name the lines. This makes it quick to
85 | specify a specific custom language line for a given attribute rule.
90 'password-confirm' => [
91 'required_with' => 'パスワードの確認は必須です。',
96 |--------------------------------------------------------------------------
97 | Custom Validation Attributes
98 |--------------------------------------------------------------------------
100 | The following language lines are used to swap attribute place-holders
101 | with something more reader friendly such as E-Mail Address instead
102 | of "email". This simply helps us make messages a little cleaner.