validation.php 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. "different" => "The :attribute and :other must be different.",
  30. "email" => "The :attribute format is invalid.",
  31. "exists" => "The selected :attribute is invalid.",
  32. "image" => "The :attribute must be an image.",
  33. "in" => "The selected :attribute is invalid.",
  34. "integer" => "The :attribute must be an integer.",
  35. "ip" => "The :attribute must be a valid IP address.",
  36. "match" => "The :attribute format is invalid.",
  37. "max" => array(
  38. "numeric" => "The :attribute must be less than :max.",
  39. "file" => "The :attribute must be less than :max kilobytes.",
  40. "string" => "The :attribute must be less than :max characters.",
  41. ),
  42. "mimes" => "The :attribute must be a file of type: :values.",
  43. "min" => array(
  44. "numeric" => "The :attribute must be at least :min.",
  45. "file" => "The :attribute must be at least :min kilobytes.",
  46. "string" => "The :attribute must be at least :min characters.",
  47. ),
  48. "not_in" => "The selected :attribute is invalid.",
  49. "numeric" => "The :attribute must be a number.",
  50. "required" => "The :attribute field is required.",
  51. "same" => "The :attribute and :other must match.",
  52. "size" => array(
  53. "numeric" => "The :attribute must be :size.",
  54. "file" => "The :attribute must be :size kilobyte.",
  55. "string" => "The :attribute must be :size characters.",
  56. ),
  57. "unique" => "The :attribute has already been taken.",
  58. "url" => "The :attribute format is invalid.",
  59. /*
  60. |--------------------------------------------------------------------------
  61. | Custom Validation Language Lines
  62. |--------------------------------------------------------------------------
  63. |
  64. | Here you may specify custom validation messages for attributes using the
  65. | convention "attribute_rule" to name the lines. This helps keep your
  66. | custom validation clean and tidy.
  67. |
  68. | So, say you want to use a custom validation message when validating that
  69. | the "email" attribute is unique. Just add "email_unique" to this array
  70. | with your custom message. The Validator will handle the rest!
  71. |
  72. */
  73. 'custom' => array(),
  74. /*
  75. |--------------------------------------------------------------------------
  76. | Validation Attributes
  77. |--------------------------------------------------------------------------
  78. |
  79. | The following language lines are used to swap attribute place-holders
  80. | with something more reader friendly such as "E-Mail Address" instead
  81. | of "email". Your users will thank you.
  82. |
  83. | The Validator class will automatically search this array of lines it
  84. | is attempting to replace the :attribute place-holder in messages.
  85. | It's pretty slick. We think you'll like it.
  86. |
  87. */
  88. 'attributes' => array(),
  89. );