支付宝记账本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

285 lines
16 KiB

5 months ago
  1. <?php
  2. declare(strict_types=1);
  3. return [
  4. 'accepted' => '您必须接受 :attribute。',
  5. 'accepted_if' => '当 :other 为 :value 时,必须接受 :attribute。',
  6. 'active_url' => ':attribute 不是一个有效的网址。',
  7. 'after' => ':attribute 必须要晚于 :date。',
  8. 'after_or_equal' => ':attribute 必须要等于 :date 或更晚。',
  9. 'alpha' => ':attribute 只能由字母组成。',
  10. 'alpha_dash' => ':attribute 只能由字母、数字、短划线(-)和下划线(_)组成。',
  11. 'alpha_num' => ':attribute 只能由字母和数字组成。',
  12. 'any_of' => 'The :attribute field is invalid.',
  13. 'array' => ':attribute 必须是一个数组。',
  14. 'ascii' => ':attribute 必须仅包含单字节字母数字字符和符号。',
  15. 'before' => ':attribute 必须要早于 :date。',
  16. 'before_or_equal' => ':attribute 必须要等于 :date 或更早。',
  17. 'between' => [
  18. 'array' => ':attribute 必须只有 :min - :max 个单元。',
  19. 'file' => ':attribute 必须介于 :min - :max KB 之间。',
  20. 'numeric' => ':attribute 必须介于 :min - :max 之间。',
  21. 'string' => ':attribute 必须介于 :min - :max 个字符之间。',
  22. ],
  23. 'boolean' => ':attribute 必须为布尔值。',
  24. 'can' => ':attribute 字段包含未经授权的值。',
  25. 'confirmed' => ':attribute 两次输入不一致。',
  26. 'contains' => ':attribute 字段缺少必填值。',
  27. 'current_password' => '密码错误。',
  28. 'date' => ':attribute 不是一个有效的日期。',
  29. 'date_equals' => ':attribute 必须要等于 :date。',
  30. 'date_format' => ':attribute 的格式必须为 :format。',
  31. 'decimal' => ':attribute 必须有 :decimal 位小数。',
  32. 'declined' => ':attribute 必须是拒绝的。',
  33. 'declined_if' => '当 :other 为 :value 时字段 :attribute 必须是拒绝的。',
  34. 'different' => ':attribute 和 :other 必须不同。',
  35. 'digits' => ':attribute 必须是 :digits 位数字。',
  36. 'digits_between' => ':attribute 必须是介于 :min 和 :max 位的数字。',
  37. 'dimensions' => ':attribute 图片尺寸不正确。',
  38. 'distinct' => ':attribute 已经存在。',
  39. 'doesnt_contain' => 'The :attribute field must not contain any of the following: :values.',
  40. 'doesnt_end_with' => ':attribute 不能以以下之一结尾: :values。',
  41. 'doesnt_start_with' => ':attribute 不能以下列之一开头: :values。',
  42. 'email' => ':attribute 不是一个合法的邮箱。',
  43. 'ends_with' => ':attribute 必须以 :values 为结尾。',
  44. 'enum' => ':attribute 值不正确。',
  45. 'exists' => ':attribute 不存在。',
  46. 'extensions' => ':attribute 字段必须具有以下扩展名之一::values。',
  47. 'file' => ':attribute 必须是文件。',
  48. 'filled' => ':attribute 不能为空。',
  49. 'gt' => [
  50. 'array' => ':attribute 必须多于 :value 个元素。',
  51. 'file' => ':attribute 必须大于 :value KB。',
  52. 'numeric' => ':attribute 必须大于 :value。',
  53. 'string' => ':attribute 必须多于 :value 个字符。',
  54. ],
  55. 'gte' => [
  56. 'array' => ':attribute 必须多于或等于 :value 个元素。',
  57. 'file' => ':attribute 必须大于或等于 :value KB。',
  58. 'numeric' => ':attribute 必须大于或等于 :value。',
  59. 'string' => ':attribute 必须多于或等于 :value 个字符。',
  60. ],
  61. 'hex_color' => ':attribute 字段必须是有效的十六进制颜色。',
  62. 'image' => ':attribute 必须是图片。',
  63. 'in' => '已选的属性 :attribute 无效。',
  64. 'in_array' => ':attribute 必须在 :other 中。',
  65. 'in_array_keys' => 'The :attribute field must contain at least one of the following keys: :values.',
  66. 'integer' => ':attribute 必须是整数。',
  67. 'ip' => ':attribute 必须是有效的 IP 地址。',
  68. 'ipv4' => ':attribute 必须是有效的 IPv4 地址。',
  69. 'ipv6' => ':attribute 必须是有效的 IPv6 地址。',
  70. 'json' => ':attribute 必须是正确的 JSON 格式。',
  71. 'list' => ':attribute 字段必须是一个列表。',
  72. 'lowercase' => ':attribute 必须小写。',
  73. 'lt' => [
  74. 'array' => ':attribute 必须少于 :value 个元素。',
  75. 'file' => ':attribute 必须小于 :value KB。',
  76. 'numeric' => ':attribute 必须小于 :value。',
  77. 'string' => ':attribute 必须少于 :value 个字符。',
  78. ],
  79. 'lte' => [
  80. 'array' => ':attribute 必须少于或等于 :value 个元素。',
  81. 'file' => ':attribute 必须小于或等于 :value KB。',
  82. 'numeric' => ':attribute 必须小于或等于 :value。',
  83. 'string' => ':attribute 必须少于或等于 :value 个字符。',
  84. ],
  85. 'mac_address' => ':attribute 必须是一个有效的 MAC 地址。',
  86. 'max' => [
  87. 'array' => ':attribute 最多只有 :max 个单元。',
  88. 'file' => ':attribute 不能大于 :max KB。',
  89. 'numeric' => ':attribute 不能大于 :max。',
  90. 'string' => ':attribute 不能大于 :max 个字符。',
  91. ],
  92. 'max_digits' => ':attribute 不能超过 :max 位数。',
  93. 'mimes' => ':attribute 必须是一个 :values 类型的文件。',
  94. 'mimetypes' => ':attribute 必须是一个 :values 类型的文件。',
  95. 'min' => [
  96. 'array' => ':attribute 至少有 :min 个单元。',
  97. 'file' => ':attribute 大小不能小于 :min KB。',
  98. 'numeric' => ':attribute 必须大于等于 :min。',
  99. 'string' => ':attribute 至少为 :min 个字符。',
  100. ],
  101. 'min_digits' => ':attribute 必须至少有 :min 位数。',
  102. 'missing' => '必须缺少 :attribute 字段。',
  103. 'missing_if' => '当 :other 为 :value 时,必须缺少 :attribute 字段。',
  104. 'missing_unless' => '必须缺少 :attribute 字段,除非 :other 是 :value。',
  105. 'missing_with' => '存在 :values 时,必须缺少 :attribute 字段。',
  106. 'missing_with_all' => '存在 :values 时,必须缺少 :attribute 字段。',
  107. 'multiple_of' => ':attribute 必须是 :value 中的多个值。',
  108. 'not_in' => '已选的属性 :attribute 非法。',
  109. 'not_regex' => ':attribute 的格式错误。',
  110. 'numeric' => ':attribute 必须是一个数字。',
  111. 'password' => [
  112. 'letters' => ':attribute 必须至少包含一个字母。',
  113. 'mixed' => ':attribute 必须至少包含一个大写字母和一个小写字母。',
  114. 'numbers' => ':attribute 必须至少包含一个数字。',
  115. 'symbols' => ':attribute 必须至少包含一个符号。',
  116. 'uncompromised' => '给定的 :attribute 出现在已经泄漏的密码中。请选择不同的 :attribute。',
  117. ],
  118. 'present' => ':attribute 必须存在。',
  119. 'present_if' => '当 :other 等于 :value 时,必须存在 :attribute 字段。',
  120. 'present_unless' => '除非 :other 等于 :value,否则 :attribute 字段必须存在。',
  121. 'present_with' => '当 :values 存在时,:attribute 字段必须存在。',
  122. 'present_with_all' => '当存在 :values 时,必须存在 :attribute 字段。',
  123. 'prohibited' => ':attribute 字段被禁止。',
  124. 'prohibited_if' => '当 :other 为 :value 时,禁止 :attribute 字段。',
  125. 'prohibited_if_accepted' => ':attribute 字段在 :other 被接受时禁止。',
  126. 'prohibited_if_declined' => ':attribute 字段在 :other 被拒绝时禁止。',
  127. 'prohibited_unless' => ':attribute 字段被禁止,除非 :other 位于 :values 中。',
  128. 'prohibits' => ':attribute 字段禁止出现 :other。',
  129. 'regex' => ':attribute 格式不正确。',
  130. 'required' => ':attribute 不能为空。',
  131. 'required_array_keys' => ':attribute 至少包含指定的键::values.',
  132. 'required_if' => '当 :other 为 :value 时 :attribute 不能为空。',
  133. 'required_if_accepted' => '当 :other 存在时,:attribute 不能为空。',
  134. 'required_if_declined' => '当 :other 不存在时,:attribute 不能为空。',
  135. 'required_unless' => '当 :other 不为 :values 时 :attribute 不能为空。',
  136. 'required_with' => '当 :values 存在时 :attribute 不能为空。',
  137. 'required_with_all' => '当 :values 存在时 :attribute 不能为空。',
  138. 'required_without' => '当 :values 不存在时 :attribute 不能为空。',
  139. 'required_without_all' => '当 :values 都不存在时 :attribute 不能为空。',
  140. 'same' => ':attribute 和 :other 必须相同。',
  141. 'size' => [
  142. 'array' => ':attribute 必须为 :size 个单元。',
  143. 'file' => ':attribute 大小必须为 :size KB。',
  144. 'numeric' => ':attribute 大小必须为 :size。',
  145. 'string' => ':attribute 必须是 :size 个字符。',
  146. ],
  147. 'starts_with' => ':attribute 必须以 :values 为开头。',
  148. 'string' => ':attribute 必须是一个字符串。',
  149. 'timezone' => ':attribute 必须是一个合法的时区值。',
  150. 'ulid' => ':attribute 必须是有效的 ULID。',
  151. 'unique' => ':attribute 已经存在。',
  152. 'uploaded' => ':attribute 上传失败。',
  153. 'uppercase' => ':attribute 必须大写',
  154. 'url' => ':attribute 格式不正确。',
  155. 'uuid' => ':attribute 必须是有效的 UUID。',
  156. 'attributes' => [
  157. 'address' => '地址',
  158. 'affiliate_url' => '附属网址',
  159. 'age' => '年龄',
  160. 'amount' => '数额',
  161. 'announcement' => '公告',
  162. 'area' => '区域',
  163. 'audience_prize' => '观众奖',
  164. 'audience_winner' => 'audience winner',
  165. 'available' => '可用的',
  166. 'birthday' => '生日',
  167. 'body' => '身体',
  168. 'city' => '城市',
  169. 'company' => 'company',
  170. 'compilation' => '汇编',
  171. 'concept' => '概念',
  172. 'conditions' => '状况',
  173. 'content' => '内容',
  174. 'contest' => 'contest',
  175. 'country' => '国家',
  176. 'cover' => '覆盖',
  177. 'created_at' => '创建于',
  178. 'creator' => '创建者',
  179. 'currency' => '货币',
  180. 'current_password' => '当前密码',
  181. 'customer' => '顾客',
  182. 'date' => '日期',
  183. 'date_of_birth' => '出生日期',
  184. 'dates' => '日期',
  185. 'day' => '天',
  186. 'deleted_at' => '删除于',
  187. 'description' => '描述',
  188. 'display_type' => '显示类型',
  189. 'district' => '地区',
  190. 'duration' => '期间',
  191. 'email' => '邮箱',
  192. 'excerpt' => '摘要',
  193. 'filter' => '过滤',
  194. 'finished_at' => '完成于',
  195. 'first_name' => '名',
  196. 'gender' => '性别',
  197. 'grand_prize' => '大奖',
  198. 'group' => '组',
  199. 'hour' => '时',
  200. 'image' => '图像',
  201. 'image_desktop' => '桌面图像',
  202. 'image_main' => '主图',
  203. 'image_mobile' => '移动图像',
  204. 'images' => '图片',
  205. 'is_audience_winner' => '是观众赢家',
  206. 'is_hidden' => '被隐藏',
  207. 'is_subscribed' => '已订阅',
  208. 'is_visible' => '是可见的',
  209. 'is_winner' => '是赢家',
  210. 'items' => '项目',
  211. 'key' => '钥匙',
  212. 'last_name' => '姓',
  213. 'lesson' => '课程',
  214. 'line_address_1' => '线路地址 1',
  215. 'line_address_2' => '线路地址 2',
  216. 'login' => '登录',
  217. 'message' => '信息',
  218. 'middle_name' => '中间名字',
  219. 'minute' => '分',
  220. 'mobile' => '手机',
  221. 'month' => '月',
  222. 'name' => '名称',
  223. 'national_code' => '国家代码',
  224. 'number' => '数字',
  225. 'password' => '密码',
  226. 'password_confirmation' => '确认密码',
  227. 'phone' => '电话',
  228. 'photo' => '照片',
  229. 'portfolio' => '文件夹',
  230. 'postal_code' => '邮政编码',
  231. 'preview' => '预览',
  232. 'price' => '价格',
  233. 'product_id' => '产品编号',
  234. 'product_uid' => '产品UID',
  235. 'product_uuid' => '产品UUID',
  236. 'promo_code' => '促销代码',
  237. 'province' => '省',
  238. 'quantity' => '数量',
  239. 'reason' => '原因',
  240. 'recaptcha_response_field' => '重复验证码响应字段',
  241. 'referee' => '裁判',
  242. 'referees' => '裁判员',
  243. 'reject_reason' => '拒绝理由',
  244. 'remember' => '记住',
  245. 'restored_at' => '恢复于',
  246. 'result_text_under_image' => '图像下的结果文本',
  247. 'role' => '角色',
  248. 'rule' => '规则',
  249. 'rules' => '规则',
  250. 'second' => '秒',
  251. 'sex' => '性别',
  252. 'shipment' => '运输',
  253. 'short_text' => '短文本',
  254. 'size' => '大小',
  255. 'skills' => '技能',
  256. 'slug' => '蛞蝓',
  257. 'specialization' => '专业化',
  258. 'started_at' => '开始于',
  259. 'state' => '状态',
  260. 'status' => '地位',
  261. 'street' => '街道',
  262. 'student' => '学生',
  263. 'subject' => '主题',
  264. 'tag' => '标签',
  265. 'tags' => '标签',
  266. 'teacher' => '教师',
  267. 'terms' => '条款',
  268. 'test_description' => '测试说明',
  269. 'test_locale' => '测试语言环境',
  270. 'test_name' => '测试名称',
  271. 'text' => '文本',
  272. 'time' => '时间',
  273. 'title' => '标题',
  274. 'type' => '类型',
  275. 'updated_at' => '更新于',
  276. 'user' => '用户',
  277. 'username' => '用户名',
  278. 'value' => '价值',
  279. 'winner' => 'winner',
  280. 'work' => 'work',
  281. 'year' => '年',
  282. ],
  283. ];