validation.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Validation Language Lines
  5. |--------------------------------------------------------------------------
  6. |
  7. | The following language lines contain the default error messages used by
  8. | the validator class. Some of these rules have multiple versions such
  9. | as the size rules. Feel free to tweak each of these messages here.
  10. |
  11. */
  12. return [
  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. 'attached' => 'This :attribute is already attached.',
  22. 'before' => ':attribute 必须要早于 :date。',
  23. 'before_or_equal' => ':attribute 必须要等于 :date 或更早。',
  24. 'between' => [
  25. 'array' => ':attribute 必须只有 :min - :max 个单元。',
  26. 'file' => ':attribute 必须介于 :min - :max KB 之间。',
  27. 'numeric' => ':attribute 必须介于 :min - :max 之间。',
  28. 'string' => ':attribute 必须介于 :min - :max 个字符之间。',
  29. ],
  30. 'boolean' => ':attribute 必须为布尔值。',
  31. 'confirmed' => ':attribute 两次输入不一致。',
  32. 'date' => ':attribute 不是一个有效的日期。',
  33. 'date_equals' => ':attribute 必须要等于 :date。',
  34. 'date_format' => ':attribute 的格式必须为 :format。',
  35. 'different' => ':attribute 和 :other 必须不同。',
  36. 'digits' => ':attribute 必须是 :digits 位数字。',
  37. 'digits_between' => ':attribute 必须是介于 :min 和 :max 位的数字。',
  38. 'dimensions' => ':attribute 图片尺寸不正确。',
  39. 'distinct' => ':attribute 已经存在。',
  40. 'email' => ':attribute 不是一个合法的邮箱。',
  41. 'ends_with' => ':attribute 必须以 :values 为结尾。',
  42. 'exists' => ':attribute 不存在。',
  43. 'file' => ':attribute 必须是文件。',
  44. 'filled' => ':attribute 不能为空。',
  45. 'gt' => [
  46. 'array' => ':attribute 必须多于 :value 个元素。',
  47. 'file' => ':attribute 必须大于 :value KB。',
  48. 'numeric' => ':attribute 必须大于 :value。',
  49. 'string' => ':attribute 必须多于 :value 个字符。',
  50. ],
  51. 'gte' => [
  52. 'array' => ':attribute 必须多于或等于 :value 个元素。',
  53. 'file' => ':attribute 必须大于或等于 :value KB。',
  54. 'numeric' => ':attribute 必须大于或等于 :value。',
  55. 'string' => ':attribute 必须多于或等于 :value 个字符。',
  56. ],
  57. 'image' => ':attribute 必须是图片。',
  58. 'in' => '已选的属性 :attribute 无效。',
  59. 'in_array' => ':attribute 必须在 :other 中。',
  60. 'integer' => ':attribute 必须是整数。',
  61. 'ip' => ':attribute 必须是有效的 IP 地址。',
  62. 'ipv4' => ':attribute 必须是有效的 IPv4 地址。',
  63. 'ipv6' => ':attribute 必须是有效的 IPv6 地址。',
  64. 'json' => ':attribute 必须是正确的 JSON 格式。',
  65. 'lt' => [
  66. 'array' => ':attribute 必须少于 :value 个元素。',
  67. 'file' => ':attribute 必须小于 :value KB。',
  68. 'numeric' => ':attribute 必须小于 :value。',
  69. 'string' => ':attribute 必须少于 :value 个字符。',
  70. ],
  71. 'lte' => [
  72. 'array' => ':attribute 必须少于或等于 :value 个元素。',
  73. 'file' => ':attribute 必须小于或等于 :value KB。',
  74. 'numeric' => ':attribute 必须小于或等于 :value。',
  75. 'string' => ':attribute 必须少于或等于 :value 个字符。',
  76. ],
  77. 'max' => [
  78. 'array' => ':attribute 最多只有 :max 个单元。',
  79. 'file' => ':attribute 不能大于 :max KB。',
  80. 'numeric' => ':attribute 不能大于 :max。',
  81. 'string' => ':attribute 不能大于 :max 个字符。',
  82. ],
  83. 'mimes' => ':attribute 必须是一个 :values 类型的文件。',
  84. 'mimetypes' => ':attribute 必须是一个 :values 类型的文件。',
  85. 'min' => [
  86. 'array' => ':attribute 至少有 :min 个单元。',
  87. 'file' => ':attribute 大小不能小于 :min KB。',
  88. 'numeric' => ':attribute 必须大于等于 :min。',
  89. 'string' => ':attribute 至少为 :min 个字符。',
  90. ],
  91. 'multiple_of' => ':attribute 必须是 :value 中的多个值。',
  92. 'not_in' => '已选的属性 :attribute 非法。',
  93. 'not_regex' => ':attribute 的格式错误。',
  94. 'numeric' => ':attribute 必须是一个数字。',
  95. 'password' => '密码错误',
  96. 'present' => ':attribute 必须存在。',
  97. 'prohibited' => 'The :attribute field is prohibited.',
  98. 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
  99. 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
  100. 'regex' => ':attribute 格式不正确。',
  101. 'relatable' => 'This :attribute may not be associated with this resource.',
  102. 'required' => ':attribute 不能为空。',
  103. 'required_if' => '当 :other 为 :value 时 :attribute 不能为空。',
  104. 'required_unless' => '当 :other 不为 :values 时 :attribute 不能为空。',
  105. 'required_with' => '当 :values 存在时 :attribute 不能为空。',
  106. 'required_with_all' => '当 :values 存在时 :attribute 不能为空。',
  107. 'required_without' => '当 :values 不存在时 :attribute 不能为空。',
  108. 'required_without_all' => '当 :values 都不存在时 :attribute 不能为空。',
  109. 'same' => ':attribute 和 :other 必须相同。',
  110. 'size' => [
  111. 'array' => ':attribute 必须为 :size 个单元。',
  112. 'file' => ':attribute 大小必须为 :size KB。',
  113. 'numeric' => ':attribute 大小必须为 :size。',
  114. 'string' => ':attribute 必须是 :size 个字符。',
  115. ],
  116. 'starts_with' => ':attribute 必须以 :values 为开头。',
  117. 'string' => ':attribute 必须是一个字符串。',
  118. 'timezone' => ':attribute 必须是一个合法的时区值。',
  119. 'unique' => ':attribute 已经存在。',
  120. 'uploaded' => ':attribute 上传失败。',
  121. 'url' => ':attribute 格式不正确。',
  122. 'uuid' => ':attribute 必须是有效的 UUID。',
  123. 'custom' => [
  124. 'attribute-name' => [
  125. 'rule-name' => 'custom-message',
  126. ],
  127. ],
  128. 'attributes' => [
  129. 'address' => '地址',
  130. 'age' => '年龄',
  131. 'available' => '可用的',
  132. 'city' => '城市',
  133. 'content' => '内容',
  134. 'country' => '国家',
  135. 'date' => '日期',
  136. 'day' => '天',
  137. 'description' => '描述',
  138. 'email' => '邮箱',
  139. 'excerpt' => '摘要',
  140. 'first_name' => '名',
  141. 'gender' => '性别',
  142. 'hour' => '时',
  143. 'last_name' => '姓',
  144. 'minute' => '分',
  145. 'mobile' => '手机',
  146. 'month' => '月',
  147. 'name' => '名称',
  148. 'password' => '密码',
  149. 'password_confirmation' => '确认密码',
  150. 'phone' => '电话',
  151. 'second' => '秒',
  152. 'sex' => '性别',
  153. 'size' => '大小',
  154. 'time' => '时间',
  155. 'title' => '标题',
  156. 'username' => '用户名',
  157. 'year' => '年',
  158. 'account' => '账号',
  159. 'id' => 'Id',
  160. 'pid' => '父Id',
  161. 'parent_id' => '父Id',
  162. 'sort' => '排序id',
  163. 'ids' => 'Ids',
  164. 'course_category_name' => '分类名',
  165. ],
  166. ];