validation.php 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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' => 'The :attribute must be accepted.',
  14. 'active_url' => 'The :attribute is not a valid URL.',
  15. 'after' => 'The :attribute must be a date after :date.',
  16. 'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
  17. 'alpha' => 'The :attribute may only contain letters.',
  18. 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.',
  19. 'alpha_num' => 'The :attribute may only contain letters and numbers.',
  20. 'array' => 'The :attribute must be an array.',
  21. 'before' => 'The :attribute must be a date before :date.',
  22. 'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
  23. 'between' => [
  24. 'numeric' => 'The :attribute must be between :min and :max.',
  25. 'file' => 'The :attribute must be between :min and :max kilobytes.',
  26. 'string' => 'The :attribute must be between :min and :max characters.',
  27. 'array' => 'The :attribute must have between :min and :max items.',
  28. ],
  29. 'boolean' => 'The :attribute field must be true or false.',
  30. 'confirmed' => 'The :attribute confirmation does not match.',
  31. 'date' => 'The :attribute is not a valid date.',
  32. 'date_equals' => 'The :attribute must be a date equal to :date.',
  33. 'date_format' => 'The :attribute does not match the format :format.',
  34. 'different' => 'The :attribute and :other must be different.',
  35. 'digits' => 'The :attribute must be :digits digits.',
  36. 'digits_between' => 'The :attribute must be between :min and :max digits.',
  37. 'dimensions' => 'The :attribute has invalid image dimensions.',
  38. 'distinct' => 'The :attribute field has a duplicate value.',
  39. 'email' => 'The :attribute must be a valid email address.',
  40. 'exists' => 'The selected :attribute is invalid.',
  41. 'file' => 'The :attribute must be a file.',
  42. 'filled' => 'The :attribute field must have a value.',
  43. 'gt' => [
  44. 'numeric' => 'The :attribute must be greater than :value.',
  45. 'file' => 'The :attribute must be greater than :value kilobytes.',
  46. 'string' => 'The :attribute must be greater than :value characters.',
  47. 'array' => 'The :attribute must have more than :value items.',
  48. ],
  49. 'gte' => [
  50. 'numeric' => 'The :attribute must be greater than or equal :value.',
  51. 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
  52. 'string' => 'The :attribute must be greater than or equal :value characters.',
  53. 'array' => 'The :attribute must have :value items or more.',
  54. ],
  55. 'image' => 'The :attribute must be an image.',
  56. 'in' => 'The selected :attribute is invalid.',
  57. 'in_array' => 'The :attribute field does not exist in :other.',
  58. 'integer' => 'The :attribute must be an integer.',
  59. 'ip' => 'The :attribute must be a valid IP address.',
  60. 'ipv4' => 'The :attribute must be a valid IPv4 address.',
  61. 'ipv6' => 'The :attribute must be a valid IPv6 address.',
  62. 'json' => 'The :attribute must be a valid JSON string.',
  63. 'lt' => [
  64. 'numeric' => 'The :attribute must be less than :value.',
  65. 'file' => 'The :attribute must be less than :value kilobytes.',
  66. 'string' => 'The :attribute must be less than :value characters.',
  67. 'array' => 'The :attribute must have less than :value items.',
  68. ],
  69. 'lte' => [
  70. 'numeric' => 'The :attribute must be less than or equal :value.',
  71. 'file' => 'The :attribute must be less than or equal :value kilobytes.',
  72. 'string' => 'The :attribute must be less than or equal :value characters.',
  73. 'array' => 'The :attribute must not have more than :value items.',
  74. ],
  75. 'max' => [
  76. 'numeric' => 'The :attribute may not be greater than :max.',
  77. 'file' => 'The :attribute may not be greater than :max kilobytes.',
  78. 'string' => 'The :attribute may not be greater than :max characters.',
  79. 'array' => 'The :attribute may not have more than :max items.',
  80. ],
  81. 'mimes' => 'The :attribute must be a file of type: :values.',
  82. 'mimetypes' => 'The :attribute must be a file of type: :values.',
  83. 'min' => [
  84. 'numeric' => 'The :attribute must be at least :min.',
  85. 'file' => 'The :attribute must be at least :min kilobytes.',
  86. 'string' => 'The :attribute must be at least :min characters.',
  87. 'array' => 'The :attribute must have at least :min items.',
  88. ],
  89. 'not_in' => 'The selected :attribute is invalid.',
  90. 'not_regex' => 'The :attribute format is invalid.',
  91. 'numeric' => 'The :attribute must be a number.',
  92. 'present' => 'The :attribute field must be present.',
  93. 'regex' => 'The :attribute format is invalid.',
  94. 'required' => 'The :attribute field is required.',
  95. 'required_if' => 'The :attribute field is required when :other is :value.',
  96. 'required_unless' => 'The :attribute field is required unless :other is in :values.',
  97. 'required_with' => 'The :attribute field is required when :values is present.',
  98. 'required_with_all' => 'The :attribute field is required when :values are present.',
  99. 'required_without' => 'The :attribute field is required when :values is not present.',
  100. 'required_without_all' => 'The :attribute field is required when none of :values are present.',
  101. 'same' => 'The :attribute and :other must match.',
  102. 'size' => [
  103. 'numeric' => 'The :attribute must be :size.',
  104. 'file' => 'The :attribute must be :size kilobytes.',
  105. 'string' => 'The :attribute must be :size characters.',
  106. 'array' => 'The :attribute must contain :size items.',
  107. ],
  108. 'starts_with' => 'The :attribute must start with one of the following: :values',
  109. 'string' => 'The :attribute must be a string.',
  110. 'timezone' => 'The :attribute must be a valid zone.',
  111. 'unique' => 'The :attribute has already been taken.',
  112. 'uploaded' => 'The :attribute failed to upload.',
  113. 'url' => 'The :attribute format is invalid.',
  114. 'uuid' => 'The :attribute must be a valid UUID.',
  115. /*
  116. |--------------------------------------------------------------------------
  117. | Custom Validation Language Lines
  118. |--------------------------------------------------------------------------
  119. |
  120. | Here you may specify custom validation messages for attributes using the
  121. | convention "attribute.rule" to name the lines. This makes it quick to
  122. | specify a specific custom language line for a given attribute rule.
  123. |
  124. */
  125. 'custom' => [
  126. 'attribute-name' => [
  127. 'rule-name' => 'custom-message',
  128. ],
  129. ],
  130. /*
  131. |--------------------------------------------------------------------------
  132. | Custom Validation Attributes
  133. |--------------------------------------------------------------------------
  134. |
  135. | The following language lines are used to swap our attribute placeholder
  136. | with something more reader friendly such as "E-Mail Address" instead
  137. | of "email". This simply helps us make our message more expressive.
  138. |
  139. */
  140. 'attributes' => [],
  141. ];