6 |--------------------------------------------------------------------------
7 | Validation Language Lines
8 |--------------------------------------------------------------------------
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.
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 前的日期。',
25 'numeric' => ':attribute 必須在:min到:max之間。',
26 'file' => ':attribute 必須為:min到:max KB。',
27 'string' => ':attribute 必須在:min到:max個字元之間。',
28 'array' => ':attribute 必須在:min到:max項之間.',
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 必須是有效的電子郵件位址。',
38 'filled' => ':attribute 字段是必需的。',
39 'exists' => '選中的 :attribute 無效。',
40 'image' => ':attribute 必須是一個圖片。',
41 'in' => '選中的 :attribute 無效。',
42 'integer' => ':attribute 必須是一個整數。',
43 'ip' => ':attribute 必須是一個有效的IP位址。',
45 'numeric' => ':attribute 不能超過:max。',
46 'file' => ':attribute 不能超過:max KB。',
47 'string' => ':attribute 不能超過:max個字元。',
48 'array' => ':attribute 不能有超過:max項。',
50 'mimes' => ':attribute 必須是 :values 類型的檔案。',
52 'numeric' => ':attribute 至少為:min。',
53 'file' => ':attribute 至少為:min KB。',
54 'string' => ':attribute 至少為:min個字元。',
55 'array' => ':attribute 至少有:min項。',
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 必須匹配。',
68 'numeric' => ':attribute 必須為:size。',
69 'file' => ':attribute 必須為:size KB。',
70 'string' => ':attribute 必須為:size個字元。',
71 'array' => ':attribute 必須包含:size項。',
73 'string' => ':attribute 必須是字元串。',
74 'timezone' => ':attribute 必須是有效的區域。',
75 'unique' => ':attribute 已經被使用。',
76 'url' => ':attribute 格式無效。',
79 |--------------------------------------------------------------------------
80 | Custom Validation Language Lines
81 |--------------------------------------------------------------------------
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.
90 'password-confirm' => [
91 'required_with' => '需要確認密碼',
96 |--------------------------------------------------------------------------
97 | Custom Validation Attributes
98 |--------------------------------------------------------------------------
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.