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 'file' => ':attributeは有効なファイルである必要があります。',
36 'filled' => ':attributeは必須です。',
38 'numeric' => ':attributeは:valueより大きな値である必要があります。',
39 'file' => ':attributeは:valueキロバイトより大きなファイルである必要があります。',
40 'string' => ':attributeは:value文字より長い必要があります。',
41 'array' => ':attributeには:value個より多くのアイテムを指定する必要があります。',
44 'numeric' => ':attributeは:value以上の値である必要があります。',
45 'file' => ':attributeは:valueキロバイト以上のファイルである必要があります。',
46 'string' => ':attributeは:value文字以上である必要があります。',
47 'array' => ':attributeには:value個以上のアイテムを指定する必要があります。',
49 'exists' => '選択された:attributeは不正です。',
50 'image' => ':attributeは画像である必要があります。',
51 'image_extension' => ':attributeは有効かつサポートされている拡張子の画像である必要があります。',
52 'in' => '選択された:attributeは不正です。',
53 'integer' => ':attributeは数値である必要があります。',
54 'ip' => ':attributeは正しいIPアドレスである必要があります。',
55 'ipv4' => ':attributeは有効なIPv4アドレスである必要があります。',
56 'ipv6' => ':attributeは有効なIPv6アドレスである必要があります。',
57 'json' => ':attributeは有効なJSON文字列である必要があります。',
59 'numeric' => ':attributeは:valueより小さな値である必要があります。',
60 'file' => ':attributeは:valueキロバイトより小さなファイルである必要があります。',
61 'string' => ':attributeは:value文字より短い必要があります。',
62 'array' => ':attributeには:value個より少ないアイテムを指定する必要があります。',
65 'numeric' => ':attributeは:value以下の値である必要があります。',
66 'file' => ':attributeは:valueキロバイト以下のファイルである必要があります。',
67 'string' => ':attributeは:value文字以下である必要があります。',
68 'array' => ':attributeには:value個以下のアイテムを指定する必要があります。',
71 'numeric' => ':attributeは:maxを越えることができません。',
72 'file' => ':attributeは:maxキロバイトを越えることができません。',
73 'string' => ':attributeは:max文字をこえることができません。',
74 'array' => ':attributeは:max個を越えることができません。',
76 'mimes' => ':attributeのファイルタイプは以下のみが許可されています: :values.',
78 'numeric' => ':attributeは:min以上である必要があります。',
79 'file' => ':attributeは:minキロバイト以上である必要があります。',
80 'string' => ':attributeは:min文字以上である必要があります。',
81 'array' => ':attributeは:min個以上である必要があります。',
83 'not_in' => '選択された:attributeは不正です。',
84 'not_regex' => ':attributeの形式は不正です。',
85 'numeric' => ':attributeは数値である必要があります。',
86 'regex' => ':attributeのフォーマットは不正です。',
87 'required' => ':attributeは必須です。',
88 'required_if' => ':otherが:valueである場合、:attributeは必須です。',
89 'required_with' => ':valuesが設定されている場合、:attributeは必須です。',
90 'required_with_all' => ':valuesが設定されている場合、:attributeは必須です。',
91 'required_without' => ':valuesが設定されていない場合、:attributeは必須です。',
92 'required_without_all' => ':valuesが設定されていない場合、:attributeは必須です。',
93 'same' => ':attributeと:otherは一致している必要があります。',
94 'safe_url' => '提供されたリンクは安全ではない可能性があります。',
96 'numeric' => ':attributeは:sizeである必要があります。',
97 'file' => ':attributeは:sizeキロバイトである必要があります。',
98 'string' => ':attributeは:size文字である必要があります。',
99 'array' => ':attributeは:size個である必要があります。',
101 'string' => ':attributeは文字列である必要があります。',
102 'timezone' => ':attributeは正しいタイムゾーンである必要があります。',
103 'totp' => '提供されたコードが無効または期限切れです。',
104 'unique' => ':attributeは既に使用されています。',
105 'url' => ':attributeのフォーマットは不正です。',
106 'uploaded' => 'ファイルをアップロードできませんでした。サーバーがこのサイズのファイルを受け付けていない可能性があります。',
108 'zip_file' => ':attribute はZIP 内のファイルを参照する必要があります。',
109 'zip_file_mime' => ':attribute は種別 :validType のファイルを参照する必要がありますが、種別 :foundType となっています。',
110 'zip_model_expected' => 'データオブジェクトが期待されますが、":type" が見つかりました。',
111 'zip_unique' => 'ZIP内のオブジェクトタイプに :attribute が一意である必要があります。',
113 // Custom validation lines
115 'password-confirm' => [
116 'required_with' => 'パスワードの確認は必須です。',
120 // Custom validation attributes