validation-inline.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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' => '您必须接受。',
  14. 'active_url' => '不是一个有效的网址。',
  15. 'after' => '必须要晚于 :date。',
  16. 'after_or_equal' => '必须要等于 :date 或更晚。',
  17. 'alpha' => '只能由字母组成。',
  18. 'alpha_dash' => '只能由字母、数字、短划线(-)和下划线(_)组成。',
  19. 'alpha_num' => '只能由字母和数字组成。',
  20. 'array' => '必须是一个数组。',
  21. 'attached' => 'This field is already attached.',
  22. 'before' => '必须要早于 :date。',
  23. 'before_or_equal' => '必须要等于 :date 或更早。',
  24. 'between' => [
  25. 'array' => '必须只有 :min - :max 个单元。',
  26. 'file' => '必须介于 :min - :max KB 之间。',
  27. 'numeric' => '必须介于 :min - :max 之间。',
  28. 'string' => '必须介于 :min - :max 个字符之间。',
  29. ],
  30. 'boolean' => '必须为布尔值。',
  31. 'confirmed' => '两次输入不一致。',
  32. 'date' => '不是一个有效的日期。',
  33. 'date_equals' => '必须要等于 :date。',
  34. 'date_format' => '格式必须为 :format。',
  35. 'different' => '必须和 :other 不同。',
  36. 'digits' => '必须是 :digits 位的数字。',
  37. 'digits_between' => '必须是介于 :min 和 :max 位的数字。',
  38. 'dimensions' => '图片尺寸不正确。',
  39. 'distinct' => '已经存在。',
  40. 'email' => '不是一个合法的邮箱。',
  41. 'ends_with' => '必须以 :values 为结尾。',
  42. 'exists' => '不存在。',
  43. 'file' => '必须是文件。',
  44. 'filled' => '不能为空。',
  45. 'gt' => [
  46. 'array' => '必须多于 :value 个元素。',
  47. 'file' => '必须大于 :value KB。',
  48. 'numeric' => '必须大于 :value。',
  49. 'string' => '必须多于 :value 个字符。',
  50. ],
  51. 'gte' => [
  52. 'array' => '必须多于或等于 :value 个元素。',
  53. 'file' => '必须大于或等于 :value KB。',
  54. 'numeric' => '必须大于或等于 :value。',
  55. 'string' => '必须多于或等于 :value 个字符。',
  56. ],
  57. 'image' => '必须是图片。',
  58. 'in' => '选项无效。',
  59. 'in_array' => '必须在 :other 中。',
  60. 'integer' => '必须是整数。',
  61. 'ip' => '必须是有效的 IP 地址。',
  62. 'ipv4' => '必须是有效的 IPv4 地址。',
  63. 'ipv6' => '必须是有效的 IPv6 地址。',
  64. 'json' => '必须是正确的 JSON 格式。',
  65. 'lt' => [
  66. 'array' => '必须少于 :value 个元素。',
  67. 'file' => '必须小于 :value KB。',
  68. 'numeric' => '必须小于 :value。',
  69. 'string' => '必须少于 :value 个字符。',
  70. ],
  71. 'lte' => [
  72. 'array' => '必须少于或等于 :value 个元素。',
  73. 'file' => '必须小于或等于 :value KB。',
  74. 'numeric' => '必须小于或等于 :value。',
  75. 'string' => '必须少于或等于 :value 个字符。',
  76. ],
  77. 'max' => [
  78. 'array' => '最多只有 :max 个单元。',
  79. 'file' => '不能大于 :max KB。',
  80. 'numeric' => '不能大于 :max。',
  81. 'string' => '不能大于 :max 个字符。',
  82. ],
  83. 'mimes' => '必须是一个 :values 类型的文件。',
  84. 'mimetypes' => '必须是一个 :values 类型的文件。',
  85. 'min' => [
  86. 'array' => '至少有 :min 个单元。',
  87. 'file' => '大小不能小于 :min KB。',
  88. 'numeric' => '必须大于等于 :min。',
  89. 'string' => '至少为 :min 个字符。',
  90. ],
  91. 'multiple_of' => '必须是 :value 中的多个值。',
  92. 'not_in' => '选项无效。',
  93. 'not_regex' => '格式错误。',
  94. 'numeric' => '必须是一个数字。',
  95. 'password' => '密码错误',
  96. 'present' => '必须存在。',
  97. 'prohibited' => 'This field is prohibited.',
  98. 'prohibited_if' => 'This field is prohibited when :other is :value.',
  99. 'prohibited_unless' => 'This field is prohibited unless :other is in :values.',
  100. 'regex' => '格式不正确。',
  101. 'relatable' => 'This field may not be associated with this resource.',
  102. 'required' => '不能为空。',
  103. 'required_if' => '当 :other 为 :value 时不能为空。',
  104. 'required_unless' => '当 :other 不为 :values 时不能为空。',
  105. 'required_with' => '当 :values 存在时不能为空。',
  106. 'required_with_all' => '当 :values 存在时不能为空。',
  107. 'required_without' => '当 :values 不存在时不能为空。',
  108. 'required_without_all' => '当 :values 都不存在时不能为空。',
  109. 'same' => '必须和 :other 相同。',
  110. 'size' => [
  111. 'array' => '必须为 :size 个单元。',
  112. 'file' => '大小必须为 :size KB。',
  113. 'numeric' => '大小必须为 :size。',
  114. 'string' => '必须是 :size 个字符。',
  115. ],
  116. 'starts_with' => '必须以 :values 为开头。',
  117. 'string' => '必须是一个字符串。',
  118. 'timezone' => '必须是一个合法的时区值。',
  119. 'unique' => '已经存在。',
  120. 'uploaded' => '上传失败。',
  121. 'url' => '格式不正确。',
  122. 'uuid' => '必须是有效的 UUID。',
  123. 'custom' => [
  124. 'attribute-name' => [
  125. 'rule-name' => 'custom-message',
  126. ],
  127. ],
  128. 'attributes' => [],
  129. ];