]> BookStack Code Mirror - bookstack/blob - resources/lang/zh_CN/validation.php
Fixes padding issues of the sidebar's items
[bookstack] / resources / lang / zh_CN / 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 并不是一个有效的网址',
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 前的日期。',
20     'between'              => [
21         'numeric' => ':attribute 必须在:min到:max之间。',
22         'file'    => ':attribute 必须为:min到:max KB。',
23         'string'  => ':attribute 必须在:min到:max个字符之间。',
24         'array'   => ':attribute 必须在:min到:max项之间.',
25     ],
26     'boolean'              => ':attribute 字段必须为真或假。',
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 必须是有效的电子邮件地址。',
34     'ends_with' => ' :attribute 必须以 :values 后缀结尾',
35     'filled'               => ':attribute 字段是必需的。',
36     'gt'                   => [
37         'numeric' => ':attribute必须大于 :value.',
38         'file'    => ':attribute 必须大于 :value k',
39         'string'  => ':attribute 必须大于 :value 字符。',
40         'array'   => ':attribute 必须包含多个 :value 项目。',
41     ],
42     'gte'                  => [
43         'numeric' => ':attribute 必须大于或等于 :value.',
44         'file'    => ':attribute 必须大于或等于 :value k。',
45         'string'  => ':attribute 必须大于或等于 :value 字符。',
46         'array'   => ':attribute 必须具有 :value 项或更多',
47     ],
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类型.',
57     'lt'                   => [
58         'numeric' => ':attribute 必须小于 :value.',
59         'file'    => ':attribute 必须小于 :value k。',
60         'string'  => ':attribute 必须小于 :value 字符。',
61         'array'   => ':attribute 必须小于 :value 项.',
62     ],
63     'lte'                  => [
64         'numeric' => ':attribute 必须小于或等于 :value.',
65         'file'    => ':attribute 必须小于或等于 :value k。',
66         'string'  => ':attribute 必须小于或等于 :value 字符。',
67         'array'   => ':attribute 不得超过 :value 项。',
68     ],
69     'max'                  => [
70         'numeric' => ':attribute 不能超过:max。',
71         'file'    => ':attribute 不能超过:max KB。',
72         'string'  => ':attribute 不能超过:max个字符。',
73         'array'   => ':attribute 不能有超过:max项。',
74     ],
75     'mimes'                => ':attribute 必须是 :values 类型的文件。',
76     'min'                  => [
77         'numeric' => ':attribute 至少为:min。',
78         'file'    => ':attribute 至少为:min KB。',
79         'string'  => ':attribute 至少为:min个字符。',
80         'array'   => ':attribute 至少有:min项。',
81     ],
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'             => '提供的链接可能不安全。',
94     'size'                 => [
95         'numeric' => ':attribute 必须为:size。',
96         'file'    => ':attribute 必须为:size KB。',
97         'string'  => ':attribute 必须为:size个字符。',
98         'array'   => ':attribute 必须包含:size项。',
99     ],
100     'string'               => ':attribute 必须是字符串。',
101     'timezone'             => ':attribute 必须是有效的区域。',
102     'totp'                 => '您输入的认证码无效或已过期。',
103     'unique'               => ':attribute 已经被使用。',
104     'url'                  => ':attribute 格式无效。',
105     'uploaded'             => '无法上传文件。 服务器可能不接受此大小的文件。',
106
107     // Custom validation lines
108     'custom' => [
109         'password-confirm' => [
110             'required_with' => '需要确认密码',
111         ],
112     ],
113
114     // Custom validation attributes
115     'attributes' => [],
116 ];