]> BookStack Code Mirror - bookstack/blob - resources/lang/zh_CN/validation.php
add missing @param in method comment
[bookstack] / resources / lang / zh_CN / 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 并不是一个有效的网址',
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 KB。',
27         'string'  => ':attribute 必须在:min到:max个字符之间。',
28         'array'   => ':attribute 必须在:min到:max项之间.',
29     ],
30     'boolean'              => ':attribute 字段必须为真或假。',
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 必须是有效的电子邮件地址。',
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 KB。',
47         'string'  => ':attribute 不能超过:max个字符。',
48         'array'   => ':attribute 不能有超过:max项。',
49     ],
50     'mimes'                => ':attribute 必须是 :values 类型的文件。',
51     'min'                  => [
52         'numeric' => ':attribute 至少为:min。',
53         'file'    => ':attribute 至少为:min KB。',
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 KB。',
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 ];