]> BookStack Code Mirror - bookstack/blob - resources/lang/ja/validation.php
Add footer element, styles, and associated settings
[bookstack] / resources / lang / ja / validation.php
1 <?php
2 /**
3  * Validation Lines
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.
7  */
8 return [
9
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     'before'               => ':attributeは:date以前である必要があります。',
19     'between'              => [
20         'numeric' => ':attributeは:min〜:maxである必要があります。',
21         'file'    => ':attributeは:min〜:maxキロバイトである必要があります。',
22         'string'  => ':attributeは:min〜:max文字である必要があります。',
23         'array'   => ':attributeは:min〜:max個である必要があります。',
24     ],
25     'boolean'              => ':attributeはtrueまたはfalseである必要があります。',
26     'confirmed'            => ':attributeの確認が一致しません。',
27     'date'                 => ':attributeは正しい日時ではありません。',
28     'date_format'          => ':attributeが:formatのフォーマットと一致しません。',
29     'different'            => ':attributeと:otherは異なる必要があります。',
30     'digits'               => ':attributeは:digitsデジットである必要があります',
31     'digits_between'       => ':attributeは:min〜:maxである必要があります。',
32     'email'                => ':attributeは正しいEメールアドレスである必要があります。',
33     'ends_with' => 'The :attribute must end with one of the following: :values',
34     'filled'               => ':attributeは必須です。',
35     'gt'                   => [
36         'numeric' => 'The :attribute must be greater than :value.',
37         'file'    => 'The :attribute must be greater than :value kilobytes.',
38         'string'  => 'The :attribute must be greater than :value characters.',
39         'array'   => 'The :attribute must have more than :value items.',
40     ],
41     'gte'                  => [
42         'numeric' => 'The :attribute must be greater than or equal :value.',
43         'file'    => 'The :attribute must be greater than or equal :value kilobytes.',
44         'string'  => 'The :attribute must be greater than or equal :value characters.',
45         'array'   => 'The :attribute must have :value items or more.',
46     ],
47     'exists'               => '選択された:attributeは不正です。',
48     'image'                => ':attributeは画像である必要があります。',
49     'image_extension'      => 'The :attribute must have a valid & supported image extension.',
50     'in'                   => '選択された:attributeは不正です。',
51     'integer'              => ':attributeは数値である必要があります。',
52     'ip'                   => ':attributeは正しいIPアドレスである必要があります。',
53     'ipv4'                 => 'The :attribute must be a valid IPv4 address.',
54     'ipv6'                 => 'The :attribute must be a valid IPv6 address.',
55     'json'                 => 'The :attribute must be a valid JSON string.',
56     'lt'                   => [
57         'numeric' => 'The :attribute must be less than :value.',
58         'file'    => 'The :attribute must be less than :value kilobytes.',
59         'string'  => 'The :attribute must be less than :value characters.',
60         'array'   => 'The :attribute must have less than :value items.',
61     ],
62     'lte'                  => [
63         'numeric' => 'The :attribute must be less than or equal :value.',
64         'file'    => 'The :attribute must be less than or equal :value kilobytes.',
65         'string'  => 'The :attribute must be less than or equal :value characters.',
66         'array'   => 'The :attribute must not have more than :value items.',
67     ],
68     'max'                  => [
69         'numeric' => ':attributeは:maxを越えることができません。',
70         'file'    => ':attributeは:maxキロバイトを越えることができません。',
71         'string'  => ':attributeは:max文字をこえることができません。',
72         'array'   => ':attributeは:max個を越えることができません。',
73     ],
74     'mimes'                => ':attributeのファイルタイプは以下のみが許可されています: :values.',
75     'min'                  => [
76         'numeric' => ':attributeは:min以上である必要があります。',
77         'file'    => ':attributeは:minキロバイト以上である必要があります。',
78         'string'  => ':attributeは:min文字以上である必要があります。',
79         'array'   => ':attributeは:min個以上である必要があります。',
80     ],
81     'no_double_extension'  => 'The :attribute must only have a single file extension.',
82     'not_in'               => '選択された:attributeは不正です。',
83     'not_regex'            => 'The :attribute format is invalid.',
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     'size'                 => [
94         'numeric' => ':attributeは:sizeである必要があります。',
95         'file'    => ':attributeは:sizeキロバイトである必要があります。',
96         'string'  => ':attributeは:size文字である必要があります。',
97         'array'   => ':attributeは:size個である必要があります。',
98     ],
99     'string'               => ':attributeは文字列である必要があります。',
100     'timezone'             => ':attributeは正しいタイムゾーンである必要があります。',
101     'unique'               => ':attributeは既に使用されています。',
102     'url'                  => ':attributeのフォーマットは不正です。',
103     'uploaded'             => 'The file could not be uploaded. The server may not accept files of this size.',
104
105     // Custom validation lines
106     'custom' => [
107         'password-confirm' => [
108             'required_with' => 'パスワードの確認は必須です。',
109         ],
110     ],
111
112     // Custom validation attributes
113     'attributes' => [],
114 ];