]> BookStack Code Mirror - bookstack/blob - resources/lang/ja/validation.php
Updated italian translation
[bookstack] / resources / lang / ja / validation.php
1 <?php
2
3 return [
4
5     /*
6     |--------------------------------------------------------------------------
7     | Validation Language Lines
8     |--------------------------------------------------------------------------
9     |
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.
13     |
14     */
15
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以前である必要があります。',
24     'between'              => [
25         'numeric' => ':attributeは:min〜:maxである必要があります。',
26         'file'    => ':attributeは:min〜:maxキロバイトである必要があります。',
27         'string'  => ':attributeは:min〜:max文字である必要があります。',
28         'array'   => ':attributeは:min〜:max個である必要があります。',
29     ],
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アドレスである必要があります。',
44     'max'                  => [
45         'numeric' => ':attributeは:maxを越えることができません。',
46         'file'    => ':attributeは:maxキロバイトを越えることができません。',
47         'string'  => ':attributeは:max文字をこえることができません。',
48         'array'   => ':attributeは:max個を越えることができません。',
49     ],
50     'mimes'                => ':attributeのファイルタイプは以下のみが許可されています: :values.',
51     'min'                  => [
52         'numeric' => ':attributeは:min以上である必要があります。',
53         'file'    => ':attributeは:minキロバイト以上である必要があります。',
54         'string'  => ':attributeは:min文字以上である必要があります。',
55         'array'   => ':attributeは:min個以上である必要があります。',
56     ],
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は一致している必要があります。',
67     'size'                 => [
68         'numeric' => ':attributeは:sizeである必要があります。',
69         'file'    => ':attributeは:sizeキロバイトである必要があります。',
70         'string'  => ':attributeは:size文字である必要があります。',
71         'array'   => ':attributeは:size個である必要があります。',
72     ],
73     'string'               => ':attributeは文字列である必要があります。',
74     'timezone'             => ':attributeは正しいタイムゾーンである必要があります。',
75     'unique'               => ':attributeは既に使用されています。',
76     'url'                  => ':attributeのフォーマットは不正です。',
77
78     /*
79     |--------------------------------------------------------------------------
80     | Custom Validation Language Lines
81     |--------------------------------------------------------------------------
82     |
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.
86     |
87     */
88
89     'custom' => [
90         'password-confirm' => [
91             'required_with' => 'パスワードの確認は必須です。',
92         ],
93     ],
94
95     /*
96     |--------------------------------------------------------------------------
97     | Custom Validation Attributes
98     |--------------------------------------------------------------------------
99     |
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.
103     |
104     */
105
106     'attributes' => [],
107
108 ];
Morty Proxy This is a proxified and sanitized view of the page, visit original site.