validation.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. 'uuid' => 'The :attribute must be a valid UUID.',
  84. /*
  85. |--------------------------------------------------------------------------
  86. | Custom Validation Language Lines
  87. |--------------------------------------------------------------------------
  88. |
  89. | Here you may specify custom validation messages for attributes using the
  90. | convention "attribute.rule" to name the lines. This makes it quick to
  91. | specify a specific custom language line for a given attribute rule.
  92. |
  93. */
  94. 'custom' => [
  95. 'attribute-name' => [
  96. 'rule-name' => 'custom-message',
  97. ],
  98. 'captcha_value' => [
  99. 'captcha_api' => '输入的图形验证码值有误'
  100. ],
  101. ],
  102. /*
  103. |--------------------------------------------------------------------------
  104. | Custom Validation Attributes
  105. |--------------------------------------------------------------------------
  106. |
  107. | The following language lines are used to swap our attribute placeholder
  108. | with something more reader friendly such as "E-Mail Address" instead
  109. | of "email". This simply helps us make our message more expressive.
  110. |
  111. */
  112. 'attributes' => [],
  113. ];