validation.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Validation Attribute Language Lines
  6. |--------------------------------------------------------------------------
  7. |
  8. | The following language lines are used to swap attribute place-holders
  9. | with something more reader friendly, such as "E-Mail Address" instead
  10. | of "email".
  11. |
  12. | The Validator class will automatically search this array of lines when
  13. | attempting to replace the :attribute place-holder in error messages.
  14. |
  15. */
  16. 'attributes' => array(),
  17. /*
  18. |--------------------------------------------------------------------------
  19. | Validation Language Lines
  20. |--------------------------------------------------------------------------
  21. |
  22. | The following language lines contain the default error messages used
  23. | by the validator class. Some of the rules contain multiple versions,
  24. | such as the size (max, min, between) rules. These versions are used
  25. | for different input types such as strings and files.
  26. |
  27. | These language lines may be easily changed by the developer to provide
  28. | custom error messages in their application. Error messages for custom
  29. | validation rules may also be added to this file.
  30. |
  31. */
  32. "accepted" => "The :attribute must be accepted.",
  33. "active_url" => "The :attribute is not a valid URL.",
  34. "alpha" => "The :attribute may only contain letters.",
  35. "alpha_dash" => "The :attribute may only contain letters, numbers, and dashes.",
  36. "alpha_num" => "The :attribute may only contain letters and numbers.",
  37. "between" => "The :attribute must be between :min - :max.",
  38. "between.file" => "The :attribute must be between :min - :max kilobytes.",
  39. "between.string" => "The :attribute must be between :min - :max characters.",
  40. "confirmed" => "The :attribute confirmation does not match.",
  41. "email" => "The :attribute format is invalid.",
  42. "image" => "The :attribute must be an image.",
  43. "in" => "The selected :attribute is invalid.",
  44. "integer" => "The :attribute must be an integer.",
  45. "max" => "The :attribute must be less than :max.",
  46. "max.file" => "The :attribute must be less than :max kilobytes.",
  47. "max.string" => "The :attribute must be less than :max characters.",
  48. "mimes" => "The :attribute must be a file of type: :values.",
  49. "min" => "The :attribute must be at least :min.",
  50. "min.file" => "The :attribute must be at least :min kilobytes.",
  51. "min.string" => "The :attribute must be at least :min characters.",
  52. "not_in" => "The selected :attribute is invalid.",
  53. "numeric" => "The :attribute must be a number.",
  54. "required" => "The :attribute field is required.",
  55. "size" => "The :attribute must be :size.",
  56. "size.file" => "The :attribute must be :size kilobyte.",
  57. "size.string" => "The :attribute must be :size characters.",
  58. "unique" => "The :attribute has already been taken.",
  59. "url" => "The :attribute format is invalid.",
  60. );