]> BookStack Code Mirror - bookstack/blob - resources/lang/zh_TW/validation.php
Added tests and translations for dark-mode components
[bookstack] / resources / lang / zh_TW / 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     'before'               => ':attribute 必須是在 :date 前的日期。',
19     'between'              => [
20         'numeric' => ':attribute 必須在:min到:max之間。',
21         'file'    => ':attribute 必須為:min到:max KB。',
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 必須是有效的電子郵件位址。',
33     'ends_with' => ':attribute必須以下列之一結尾::values',
34     'filled'               => ':attribute 字段是必需的。',
35     'gt'                   => [
36         'numeric' => ':attribute必須大於:value。',
37         'file'    => ':attribute必須大於:value千字節。',
38         'string'  => ':attribute必須大於:value字符。',
39         'array'   => ':attribute必須包含比:value多的項目。',
40     ],
41     'gte'                  => [
42         'numeric' => 'The :attribute必須大於或等於:value.',
43         'file'    => 'The :attribute必須大於或等於:value千字節。',
44         'string'  => 'The :attribute必須大於或等於:value字符。',
45         'array'   => 'The :attribute必須具有:value項或更多。',
46     ],
47     'exists'               => '選中的 :attribute 無效。',
48     'image'                => ':attribute 必須是一個圖片。',
49     'image_extension'      => 'The :attribute必須具有有效且受支持的圖像擴展名.',
50     'in'                   => '選中的 :attribute 無效。',
51     'integer'              => ':attribute 必須是一個整數。',
52     'ip'                   => ':attribute 必須是一個有效的IP位址。',
53     'ipv4'                 => 'The :attribute必須是有效的IPv4地址。',
54     'ipv6'                 => 'The :attribute必須是有效的IPv6地址。',
55     'json'                 => 'The :attribute必須是有效的JSON字符串。',
56     'lt'                   => [
57         'numeric' => 'The :attribute必須小於:value。',
58         'file'    => 'The :attribute必須小於:value千字節。',
59         'string'  => 'The :attribute必須小於:value字符。',
60         'array'   => 'The :attribute必須少於:value個項目。',
61     ],
62     'lte'                  => [
63         'numeric' => 'The :attribute必須小於或等於:value。',
64         'file'    => 'The :attribute必須小於或等於:value千字節。',
65         'string'  => 'The :attribute必須小於或等於:value字符。',
66         'array'   => 'The :attribute不得超過:value個項目。',
67     ],
68     'max'                  => [
69         'numeric' => ':attribute 不能超過:max。',
70         'file'    => ':attribute 不能超過:max KB。',
71         'string'  => ':attribute 不能超過:max個字元。',
72         'array'   => ':attribute 不能有超過:max項。',
73     ],
74     'mimes'                => ':attribute 必須是 :values 類型的檔案。',
75     'min'                  => [
76         'numeric' => ':attribute 至少為:min。',
77         'file'    => ':attribute 至少為:min KB。',
78         'string'  => ':attribute 至少為:min個字元。',
79         'array'   => ':attribute 至少有:min項。',
80     ],
81     'no_double_extension'  => 'The :attribute必須僅具有一個文件擴展名。',
82     'not_in'               => '選中的 :attribute 無效。',
83     'not_regex'            => 'The :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     'size'                 => [
94         'numeric' => ':attribute 必須為:size。',
95         'file'    => ':attribute 必須為:size KB。',
96         'string'  => ':attribute 必須為:size個字元。',
97         'array'   => ':attribute 必須包含:size項。',
98     ],
99     'string'               => ':attribute 必須是字元串。',
100     'timezone'             => ':attribute 必須是有效的區域。',
101     'unique'               => ':attribute 已經被使用。',
102     'url'                  => ':attribute 格式無效。',
103     'uploaded'             => '無法上傳文件, 服務器可能不接受此大小的文件。',
104
105     // Custom validation lines
106     'custom' => [
107         'password-confirm' => [
108             'required_with' => '需要確認密碼',
109         ],
110     ],
111
112     // Custom validation attributes
113     'attributes' => [],
114 ];