validation.php 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Validation Language Lines
  6. |--------------------------------------------------------------------------
  7. |
  8. | The following language lines contain the default error messages used
  9. | by the validator class. Some of the rules contain multiple versions,
  10. | such as the size (max, min, between) rules. These versions are used
  11. | for different input types such as strings and files.
  12. |
  13. | These language lines may be easily changed to provide custom error
  14. | messages in your application. Error messages for custom validation
  15. | rules may also be added to this file.
  16. |
  17. */
  18. "accepted" => "The :attribute must be accepted.",
  19. "active_url" => "The :attribute is not a valid URL.",
  20. "alpha" => "The :attribute may only contain letters.",
  21. "alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.",
  22. "alpha_num" => "The :attribute may only contain letters and numbers.",
  23. "between" => array(
  24. "numeric" => "The :attribute must be between :min - :max.",
  25. "file" => "The :attribute must be between :min - :max kilobytes.",
  26. "string" => "The :attribute must be between :min - :max characters.",
  27. ),
  28. "confirmed" => "The :attribute confirmation does not match.",
  29. "email" => "The :attribute format is invalid.",
  30. "exists" => "The selected :attribute is invalid.",
  31. "image" => "The :attribute must be an image.",
  32. "in" => "The selected :attribute is invalid.",
  33. "integer" => "The :attribute must be an integer.",
  34. "ip" => "The :attribute must be a valid IP address.",
  35. "max" => array(
  36. "numeric" => "The :attribute must be less than :max.",
  37. "file" => "The :attribute must be less than :max kilobytes.",
  38. "string" => "The :attribute must be less than :max characters.",
  39. ),
  40. "mimes" => "The :attribute must be a file of type: :values.",
  41. "min" => array(
  42. "numeric" => "The :attribute must be at least :min.",
  43. "file" => "The :attribute must be at least :min kilobytes.",
  44. "string" => "The :attribute must be at least :min characters.",
  45. ),
  46. "not_in" => "The selected :attribute is invalid.",
  47. "numeric" => "The :attribute must be a number.",
  48. "required" => "The :attribute field is required.",
  49. "size" => array(
  50. "numeric" => "The :attribute must be :size.",
  51. "file" => "The :attribute must be :size kilobyte.",
  52. "string" => "The :attribute must be :size characters.",
  53. ),
  54. "unique" => "The :attribute has already been taken.",
  55. "url" => "The :attribute format is invalid.",
  56. /*
  57. |--------------------------------------------------------------------------
  58. | Custom Validation Language Lines
  59. |--------------------------------------------------------------------------
  60. |
  61. | Here you may specify custom validation messages for attributes using the
  62. | convention "attribute_rule" to name the lines. This helps keep your
  63. | custom validation clean and tidy.
  64. |
  65. | So, say you want to use a custom validation message when validating that
  66. | the "email" attribute is unique. Just add "email_unique" to this array
  67. | with your custom message. The Validator will handle the rest!
  68. |
  69. */
  70. 'custom' => array(),
  71. /*
  72. |--------------------------------------------------------------------------
  73. | Validation Attributes
  74. |--------------------------------------------------------------------------
  75. |
  76. | The following language lines are used to swap attribute place-holders
  77. | with something more reader friendly such as "E-Mail Address" instead
  78. | of "email". Your users will thank you.
  79. |
  80. | The Validator class will automatically search this array of lines it
  81. | is attempting to replace the :attribute place-holder in messages.
  82. | It's pretty slick. We think you'll like it.
  83. |
  84. */
  85. 'attributes' => array(),
  86. );