-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathzh-cn.php
40 lines (39 loc) · 1.54 KB
/
zh-cn.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
return array(
'required' => "不能为空",
'equals' => "必须和 '%s' 一致",
'different' => "必须和 '%s' 不一致",
'accepted' => "必须接受",
'numeric' => "只能是数字",
'integer' => "只能是整数",
'length' => "长度必须等于 %d",
'min' => "必须大于 %s",
'max' => "必须小于 %s",
'listContains' => "无效的值",
'in' => "无效的值",
'notIn' => "无效的值",
'ip' => "无效IP地址",
'email' => "无效邮箱地址",
'url' => "无效的URL",
'urlActive' => "必须是可用的域名",
'alpha' => "只能包括英文字母(a-z)",
'alphaNum' => "只能包括英文字母(a-z)和数字(0-9)",
'slug' => "只能包括英文字母(a-z)、数字(0-9)、破折号和下划线",
'regex' => "无效格式",
'date' => "无效的日期",
'dateFormat' => "日期的格式应该为 '%s'",
'dateBefore' => "日期必须在 '%s' 之前",
'dateAfter' => "日期必须在 '%s' 之后",
'contains' => "必须包含 %s",
'boolean' => "必须是真或假",
'lengthBetween' => "长度只能介于 %d 和 %d 之间",
'creditCard' => "信用卡号码不正确",
'lengthMin' => "长度必须大于 %d",
'lengthMax' => "长度必须小于 %d",
'instanceOf' => "必须是 '%s' 的实例",
'containsUnique' => "必须仅包含唯一的元素",
'requiredWith' => "是必须的",
'requiredWithout' => "是必须的",
'subset' => "包含不在列表中的项目",
'arrayHasKeys' => "不包含所有必需的键",
);