4 * The following language lines contain the default error messages used by
5 * the validator class. Some of these rules have multiple versions such
6 * as the size rules. Feel free to tweak each of these messages here.
10 // Standard laravel validation lines
11 'accepted' => ':attributeに同意する必要があります。',
12 'active_url' => ':attributeは正しいURLではありません。',
13 'after' => ':attributeは:date以降である必要があります。',
14 'alpha' => ':attributeは文字のみが含められます。',
15 'alpha_dash' => ':attributeは文字, 数値, ハイフンのみが含められます。',
16 'alpha_num' => ':attributeは文字と数値のみが含められます。',
17 'array' => ':attributeは配列である必要があります。',
18 'backup_codes' => '提供されたコードは無効か、またはすでに使用されています。',
19 'before' => ':attributeは:date以前である必要があります。',
21 'numeric' => ':attributeは:min〜:maxである必要があります。',
22 'file' => ':attributeは:min〜:maxキロバイトである必要があります。',
23 'string' => ':attributeは:min〜:max文字である必要があります。',
24 'array' => ':attributeは:min〜:max個である必要があります。',
26 'boolean' => ':attributeはtrueまたはfalseである必要があります。',
27 'confirmed' => ':attributeの確認が一致しません。',
28 'date' => ':attributeは正しい日時ではありません。',
29 'date_format' => ':attributeが:formatのフォーマットと一致しません。',
30 'different' => ':attributeと:otherは異なる必要があります。',
31 'digits' => ':attributeは:digitsデジットである必要があります',
32 'digits_between' => ':attributeは:min〜:maxである必要があります。',
33 'email' => ':attributeは正しいEメールアドレスである必要があります。',
34 'ends_with' => ':attributeは:valuesのいずれかで終わる必要があります。',
35 'filled' => ':attributeは必須です。',
37 'numeric' => ':attributeは:valueより大きな値である必要があります。',
38 'file' => ':attributeは:valueキロバイトより大きなファイルである必要があります。',
39 'string' => ':attributeは:value文字より長い必要があります。',
40 'array' => ':attributeには:value個より多くのアイテムを指定する必要があります。',
43 'numeric' => ':attributeは:value以上の値である必要があります。',
44 'file' => ':attributeは:valueキロバイト以上のファイルである必要があります。',
45 'string' => ':attributeは:value文字以上である必要があります。',
46 'array' => ':attributeには:value個以上のアイテムを指定する必要があります。',
48 'exists' => '選択された:attributeは不正です。',
49 'image' => ':attributeは画像である必要があります。',
50 'image_extension' => ':attributeは有効かつサポートされている拡張子の画像である必要があります。',
51 'in' => '選択された:attributeは不正です。',
52 'integer' => ':attributeは数値である必要があります。',
53 'ip' => ':attributeは正しいIPアドレスである必要があります。',
54 'ipv4' => ':attributeは有効なIPv4アドレスである必要があります。',
55 'ipv6' => ':attributeは有効なIPv6アドレスである必要があります。',
56 'json' => ':attributeは有効なJSON文字列である必要があります。',
58 'numeric' => ':attributeは:valueより小さな値である必要があります。',
59 'file' => ':attributeは:valueキロバイトより小さなファイルである必要があります。',
60 'string' => ':attributeは:value文字より短い必要があります。',
61 'array' => ':attributeには:value個より少ないアイテムを指定する必要があります。',
64 'numeric' => ':attributeは:value以下の値である必要があります。',
65 'file' => ':attributeは:valueキロバイト以下のファイルである必要があります。',
66 'string' => ':attributeは:value文字以下である必要があります。',
67 'array' => ':attributeには:value個以下のアイテムを指定する必要があります。',
70 'numeric' => ':attributeは:maxを越えることができません。',
71 'file' => ':attributeは:maxキロバイトを越えることができません。',
72 'string' => ':attributeは:max文字をこえることができません。',
73 'array' => ':attributeは:max個を越えることができません。',
75 'mimes' => ':attributeのファイルタイプは以下のみが許可されています: :values.',
77 'numeric' => ':attributeは:min以上である必要があります。',
78 'file' => ':attributeは:minキロバイト以上である必要があります。',
79 'string' => ':attributeは:min文字以上である必要があります。',
80 'array' => ':attributeは:min個以上である必要があります。',
82 'not_in' => '選択された:attributeは不正です。',
83 'not_regex' => ':attributeの形式は不正です。',
84 'numeric' => ':attributeは数値である必要があります。',
85 'regex' => ':attributeのフォーマットは不正です。',
86 'required' => ':attributeは必須です。',
87 'required_if' => ':otherが:valueである場合、:attributeは必須です。',
88 'required_with' => ':valuesが設定されている場合、:attributeは必須です。',
89 'required_with_all' => ':valuesが設定されている場合、:attributeは必須です。',
90 'required_without' => ':valuesが設定されていない場合、:attributeは必須です。',
91 'required_without_all' => ':valuesが設定されていない場合、:attributeは必須です。',
92 'same' => ':attributeと:otherは一致している必要があります。',
93 'safe_url' => '提供されたリンクは安全ではない可能性があります。',
95 'numeric' => ':attributeは:sizeである必要があります。',
96 'file' => ':attributeは:sizeキロバイトである必要があります。',
97 'string' => ':attributeは:size文字である必要があります。',
98 'array' => ':attributeは:size個である必要があります。',
100 'string' => ':attributeは文字列である必要があります。',
101 'timezone' => ':attributeは正しいタイムゾーンである必要があります。',
102 'totp' => '提供されたコードが無効または期限切れです。',
103 'unique' => ':attributeは既に使用されています。',
104 'url' => ':attributeのフォーマットは不正です。',
105 'uploaded' => 'ファイルをアップロードできませんでした。サーバーがこのサイズのファイルを受け付けていない可能性があります。',
107 // Custom validation lines
109 'password-confirm' => [
110 'required_with' => 'パスワードの確認は必須です。',
114 // Custom validation attributes