Laravel 中 validation 验证 返回中文提示 全局设置

举报
lxw1844912514 发表于 2022/03/27 01:43:30 2022/03/27
【摘要】 <?php return [ /*|--------------------------------------------------------------------------| Validation Language Lines|---------------------------------------...

    
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Validation Language Lines
  6. |--------------------------------------------------------------------------
  7. |
  8. | The following language lines contain the default error messages used by
  9. | the validator class. Some of these rules have multiple versions such
  10. | as the size rules. Feel free to tweak each of these messages here.
  11. |
  12. */
  13. 'accepted' => ':attribute必须接受',
  14. 'active_url' => ':attribute必须是一个合法的 URL',
  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 到 :max KB 之间',
  26. 'string' => ':attribute 必须在 :min 到 :max 个字符之间',
  27. 'array' => ':attribute 必须在 :min 到 :max 项之间',
  28. ],
  29. 'boolean' => ':attribute 字符必须是 true 或 false',
  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. 'image' => ':attribute必须是 jpeg, png, bmp 或者 gif 格式的图片',
  43. 'in' => '选定的 :attribute 是无效的',
  44. 'in_array' => ':attribute 字段不存在于 :other',
  45. 'integer' => ':attribute 必须是个整数',
  46. 'ip' => ':attribute必须是一个合法的 IP 地址。',
  47. 'json' => ':attribute必须是一个合法的 JSON 字符串',
  48. 'max' => [
  49. 'numeric' => ':attribute 的最大长度为 :max 位',
  50. 'file' => ':attribute 的最大为 :max',
  51. 'string' => ':attribute 的最大长度为 :max 字符',
  52. 'array' => ':attribute 的最大个数为 :max 个.',
  53. ],
  54. 'mimes' => ':attribute 的文件类型必须是 :values',
  55. 'min' => [
  56. 'numeric' => ':attribute 的最小长度为 :min 位',
  57. 'file' => ':attribute 大小至少为 :min KB',
  58. 'string' => ':attribute 的最小长度为 :min 字符',
  59. 'array' => ':attribute 至少有 :min 项',
  60. ],
  61. 'not_in' => '选定的 :attribute 是无效的',
  62. 'numeric' => ':attribute 必须是数字',
  63. 'present' => ':attribute 字段必须存在',
  64. 'regex' => ':attribute 格式是无效的',
  65. 'required' => ':attribute 字段是必须的',
  66. 'required_if' => ':attribute 字段是必须的当 :other 是 :value',
  67. 'required_unless' => ':attribute 字段是必须的,除非 :other 是在 :values 中',
  68. 'required_with' => ':attribute 字段是必须的当 :values 是存在的',
  69. 'required_with_all' => ':attribute 字段是必须的当 :values 是存在的',
  70. 'required_without' => ':attribute 字段是必须的当 :values 是不存在的',
  71. 'required_without_all' => ':attribute 字段是必须的当 没有一个 :values 是存在的',
  72. 'same' => ':attribute和:other必须匹配',
  73. 'size' => [
  74. 'numeric' => ':attribute 必须是 :size 位',
  75. 'file' => ':attribute 必须是 :size KB',
  76. 'string' => ':attribute 必须是 :size 个字符',
  77. 'array' => ':attribute 必须包括 :size 项',
  78. ],
  79. 'string' => ':attribute 必须是一个字符串',
  80. 'timezone' => ':attribute 必须是个有效的时区.',
  81. 'unique' => ':attribute 已存在',
  82. 'url' => ':attribute 无效的格式',
  83. /*
  84. |--------------------------------------------------------------------------
  85. | Custom Validation Language Lines
  86. |--------------------------------------------------------------------------
  87. |
  88. | Here you may specify custom validation messages for attributes using the
  89. | convention "attribute.rule" to name the lines. This makes it quick to
  90. | specify a specific custom language line for a given attribute rule.
  91. |
  92. */
  93. 'custom' => [
  94. 'attribute-name' => [
  95. 'rule-name' => 'custom-message',
  96. ],
  97. ],
  98. /*
  99. |--------------------------------------------------------------------------
  100. | Custom Validation Attributes
  101. |--------------------------------------------------------------------------
  102. |
  103. | The following language lines are used to swap attribute place-holders
  104. | with something more reader friendly such as E-Mail Address instead
  105. | of "email". This simply helps us make messages a little cleaner.
  106. |
  107. */
  108. 'attributes' => [
  109. // 'name' => '名字',
  110. // 'age' => '年龄',
  111. ],
  112. ];

 

文章来源: blog.csdn.net,作者:lxw1844912514,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/lxw1844912514/article/details/100028527

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。