validation.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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, and dashes.',
  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_format' => 'The :attribute does not match the format :format.',
  33. 'different' => 'The :attribute and :other must be different.',
  34. 'digits' => 'The :attribute must be :digits digits.',
  35. 'digits_between' => 'The :attribute must be between :min and :max digits.',
  36. 'dimensions' => 'The :attribute has invalid image dimensions.',
  37. 'distinct' => 'The :attribute field has a duplicate value.',
  38. 'email' => 'The :attribute must be a valid email address.',
  39. 'exists' => 'The selected :attribute is invalid.',
  40. 'file' => 'The :attribute must be a file.',
  41. 'filled' => 'The :attribute field is required.',
  42. 'image' => 'The :attribute must be an image.',
  43. 'in' => 'The selected :attribute is invalid.',
  44. 'in_array' => 'The :attribute field does not exist in :other.',
  45. 'integer' => 'The :attribute must be an integer.',
  46. 'ip' => 'The :attribute must be a valid IP address.',
  47. 'json' => 'The :attribute must be a valid JSON string.',
  48. 'max' => [
  49. 'numeric' => 'The :attribute may not be greater than :max.',
  50. 'file' => 'The :attribute may not be greater than :max kilobytes.',
  51. 'string' => 'The :attribute may not be greater than :max characters.',
  52. 'array' => 'The :attribute may not have more than :max items.',
  53. ],
  54. 'mimes' => 'The :attribute must be a file of type: :values.',
  55. 'mimetypes' => 'The :attribute must be a file of type: :values.',
  56. 'min' => [
  57. 'numeric' => 'The :attribute must be at least :min.',
  58. 'file' => 'The :attribute must be at least :min kilobytes.',
  59. 'string' => 'The :attribute must be at least :min characters.',
  60. 'array' => 'The :attribute must have at least :min items.',
  61. ],
  62. 'not_in' => 'The selected :attribute is invalid.',
  63. 'numeric' => 'The :attribute must be a number.',
  64. 'present' => 'The :attribute field must be present.',
  65. 'regex' => 'The :attribute format is invalid.',
  66. 'required' => 'The :attribute field is required.',
  67. 'required_if' => 'The :attribute field is required when :other is :value.',
  68. 'required_unless' => 'The :attribute field is required unless :other is in :values.',
  69. 'required_with' => 'The :attribute field is required when :values is present.',
  70. 'required_with_all' => 'The :attribute field is required when :values is present.',
  71. 'required_without' => 'The :attribute field is required when :values is not present.',
  72. 'required_without_all' => 'The :attribute field is required when none of :values are present.',
  73. 'same' => 'The :attribute and :other must match.',
  74. 'size' => [
  75. 'numeric' => 'The :attribute must be :size.',
  76. 'file' => 'The :attribute must be :size kilobytes.',
  77. 'string' => 'The :attribute must be :size characters.',
  78. 'array' => 'The :attribute must contain :size items.',
  79. ],
  80. 'string' => 'The :attribute must be a string.',
  81. 'timezone' => 'The :attribute must be a valid zone.',
  82. 'unique' => 'The :attribute has already been taken.',
  83. 'uploaded' => 'The :attribute failed to upload.',
  84. 'url' => 'The :attribute format is invalid.',
  85. /*
  86. |--------------------------------------------------------------------------
  87. | Custom Validation Language Lines
  88. |--------------------------------------------------------------------------
  89. |
  90. | Here you may specify custom validation messages for attributes using the
  91. | convention "attribute.rule" to name the lines. This makes it quick to
  92. | specify a specific custom language line for a given attribute rule.
  93. |
  94. */
  95. 'custom' => [
  96. 'attribute-name' => [
  97. 'rule-name' => 'custom-message',
  98. ],
  99. ],
  100. /*
  101. |--------------------------------------------------------------------------
  102. | Custom Validation Attributes
  103. |--------------------------------------------------------------------------
  104. |
  105. | The following language lines are used to swap attribute place-holders
  106. | with something more reader friendly such as E-Mail Address instead
  107. | of "email". This simply helps us make messages a little cleaner.
  108. |
  109. */
  110. 'attributes' => [],
  111. ];