validation.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. |ValidationLanguageLines
  6. |--------------------------------------------------------------------------
  7. |
  8. |Thefollowinglanguagelinescontainthedefaulterrormessagesusedby
  9. |thevalidatorclass.Someoftheseruleshavemultipleversionssuch
  10. |asthesizerules.Feelfreetotweakeachofthesemessages.
  11. |
  12. */
  13. 'accepted' => ':attribute必须接受',
  14. 'active_url' => ':attribute不是一个有效的网址',
  15. 'after' => ':attribute必须要晚于:date',
  16. 'after_or_equal' => ':attribute必须要等于:date或更晚',
  17. 'alpha' => ':attribute只能由字母组成',
  18. 'alpha_dash' => ':attribute只能由字母、数字和斜杠组成',
  19. 'alpha_num' => ':attribute只能由字母和数字组成',
  20. 'array' => ':attribute必须是一个数组',
  21. 'before' => ':attribute必须要早于:date',
  22. 'before_or_equal' => ':attribute必须要等于:date或更早',
  23. 'between' => [
  24. 'numeric' => ':attribute必须介于:min-:max之间',
  25. 'file' => ':attribute必须介于:min-:maxKB之间',
  26. 'string' => ':attribute必须介于:min-:max个字符之间',
  27. 'array' => ':attribute必须只有:min-:max个单元',
  28. ],
  29. 'boolean' => ':attribute必须为布尔值',
  30. 'confirmed' => ':attribute两次输入不一致',
  31. 'date' => ':attribute不是一个有效的日期',
  32. 'date_format' => ':attribute的格式必须为:format',
  33. 'different' => ':attribute和:other必须不同',
  34. 'digits' => ':attribute必须是:digits位的数字',
  35. 'digits_between' => ':attribute必须是介于:min和:max位的数字',
  36. 'dimensions' => ':attribute图片尺寸不正确',
  37. 'distinct' => ':attribute已经存在',
  38. 'email' => ':attribute不是一个合法的邮箱',
  39. 'exists' => ':attribute不存在',
  40. 'file' => ':attribute必须是文件',
  41. 'filled' => ':attribute不能为空',
  42. 'gt' => [
  43. 'numeric' => ':attribute必须大于:value',
  44. 'file' => ':attribute必须大于:valueKB',
  45. 'string' => ':attribute必须多于:value个字符',
  46. 'array' => ':attribute必须多于:value个元素',
  47. ],
  48. 'gte' => [
  49. 'numeric' => ':attribute必须大于或等于:value',
  50. 'file' => ':attribute必须大于或等于:valueKB',
  51. 'string' => ':attribute必须多于或等于:value个字符',
  52. 'array' => ':attribute必须多于或等于:value个元素',
  53. ],
  54. 'image' => ':attribute必须是图片',
  55. 'in' => '已选的属性:attribute非法',
  56. 'in_array' => ':attribute没有在:other中',
  57. 'integer' => ':attribute必须是整数',
  58. 'ip' => ':attribute必须是有效的IP地址',
  59. 'ipv4' => ':attribute必须是有效的IPv4地址',
  60. 'ipv6' => ':attribute必须是有效的IPv6地址',
  61. 'json' => ':attribute必须是正确的JSON格式',
  62. 'lt' => [
  63. 'numeric' => ':attribute必须小于:value',
  64. 'file' => ':attribute必须小于:valueKB',
  65. 'string' => ':attribute必须少于:value个字符',
  66. 'array' => ':attribute必须少于:value个元素',
  67. ],
  68. 'lte' => [
  69. 'numeric' => ':attribute必须小于或等于:value',
  70. 'file' => ':attribute必须小于或等于:valueKB',
  71. 'string' => ':attribute必须少于或等于:value个字符',
  72. 'array' => ':attribute必须少于或等于:value个元素',
  73. ],
  74. 'max' => [
  75. 'numeric' => ':attribute不能大于:max',
  76. 'file' => ':attribute不能大于:maxKB',
  77. 'string' => ':attribute不能大于:max个字符',
  78. 'array' => ':attribute最多只有:max个单元',
  79. ],
  80. 'mimes' => ':attribute必须是一个:values类型的文件',
  81. 'mimetypes' => ':attribute必须是一个:values类型的文件',
  82. 'min' => [
  83. 'numeric' => ':attribute必须大于等于:min',
  84. 'file' => ':attribute大小不能小于:minKB',
  85. 'string' => ':attribute至少为:min个字符',
  86. 'array' => ':attribute至少有:min个单元',
  87. ],
  88. 'not_in' => '已选的属性:attribute非法',
  89. 'not_regex' => ':attribute的格式错误',
  90. 'numeric' => ':attribute必须是一个数字',
  91. 'present' => ':attribute必须存在',
  92. 'regex' => ':attribute格式不正确',
  93. 'required' => ':attribute不能为空',
  94. 'required_if' => '当:other为:value时:attribute不能为空',
  95. 'required_unless' => '当:other不为:value时:attribute不能为空',
  96. 'required_with' => '当:values存在时:attribute不能为空',
  97. 'required_with_all' => '当:values存在时:attribute不能为空',
  98. 'required_without' => '当:values不存在时:attribute不能为空',
  99. 'required_without_all' => '当:values都不存在时:attribute不能为空',
  100. 'same' => ':attribute和:other必须相同',
  101. 'size' => [
  102. 'numeric' => ':attribute大小必须为:size',
  103. 'file' => ':attribute大小必须为:sizeKB',
  104. 'string' => ':attribute必须是:size个字符',
  105. 'array' => ':attribute必须为:size个单元',
  106. ],
  107. 'string' => ':attribute必须是一个字符串',
  108. 'timezone' => ':attribute必须是一个合法的时区值',
  109. 'unique' => ':attribute已经存在',
  110. 'uploaded' => ':attribute上传失败',
  111. 'url' => ':attribute格式不正确',
  112. 'captcha' => ':attribute输入错误',
  113. /*
  114. |--------------------------------------------------------------------------
  115. |CustomValidationLanguageLines
  116. |--------------------------------------------------------------------------
  117. |
  118. |Hereyoumayspecifycustomvalidationmessagesforattributesusingthe
  119. |convention'attribute.rule'tonamethelines.Thismakesitquickto
  120. |specifyaspecificcustomlanguagelineforagivenattributerule.
  121. |
  122. */
  123. 'custom' => [
  124. 'attribute-name' => [
  125. 'rule-name' => 'custom-message',
  126. ],
  127. ],
  128. /*
  129. |--------------------------------------------------------------------------
  130. |CustomValidationAttributes
  131. |--------------------------------------------------------------------------
  132. |
  133. |Thefollowinglanguagelinesareusedtoswapattributeplace-holders
  134. |withsomethingmorereaderfriendlysuchasE-MailAddressinstead
  135. |of'email'.Thissimplyhelpsusmakemessagesalittlecleaner.
  136. |
  137. */
  138. 'attributes' => [
  139. 'name' => '名称',
  140. 'username' => '用户名',
  141. 'email' => '邮箱',
  142. 'first_name' => '名',
  143. 'last_name' => '姓',
  144. 'password' => '密码',
  145. 'password_confirmation' => '确认密码',
  146. 'city' => '城市',
  147. 'country' => '国家',
  148. 'address' => '地址',
  149. 'phone' => '电话',
  150. 'mobile' => '手机',
  151. 'age' => '年龄',
  152. 'sex' => '性别',
  153. 'gender' => '性别',
  154. 'day' => '天',
  155. 'month' => '月',
  156. 'year' => '年',
  157. 'hour' => '时',
  158. 'minute' => '分',
  159. 'second' => '秒',
  160. 'title' => '标题',
  161. 'content' => '内容',
  162. 'description' => '描述',
  163. 'excerpt' => '摘要',
  164. 'date' => '日期',
  165. 'time' => '时间',
  166. 'available' => '可用的',
  167. 'size' => '大小',
  168. 'role_id' => '用户组',
  169. 'sort' => '排序',
  170. 'captcha' => '验证码',
  171. ],
  172. ];