validation.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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" => array(
  38. "numeric" => "The :attribute must be between :min - :max.",
  39. "file" => "The :attribute must be between :min - :max kilobytes.",
  40. "string" => "The :attribute must be between :min - :max characters.",
  41. ),
  42. "confirmed" => "The :attribute confirmation does not match.",
  43. "email" => "The :attribute format is invalid.",
  44. "image" => "The :attribute must be an image.",
  45. "in" => "The selected :attribute is invalid.",
  46. "integer" => "The :attribute must be an integer.",
  47. "max" => array(
  48. "numeric" => "The :attribute must be less than :max.",
  49. "file" => "The :attribute must be less than :max kilobytes.",
  50. "string" => "The :attribute must be less than :max characters.",
  51. ),
  52. "mimes" => "The :attribute must be a file of type: :values.",
  53. "min" => array(
  54. "numeric" => "The :attribute must be at least :min.",
  55. "file" => "The :attribute must be at least :min kilobytes.",
  56. "string" => "The :attribute must be at least :min characters.",
  57. ),
  58. "not_in" => "The selected :attribute is invalid.",
  59. "numeric" => "The :attribute must be a number.",
  60. "required" => "The :attribute field is required.",
  61. "size" => array(
  62. "numeric" => "The :attribute must be :size.",
  63. "file" => "The :attribute must be :size kilobyte.",
  64. "string" => "The :attribute must be :size characters.",
  65. ),
  66. "unique" => "The :attribute has already been taken.",
  67. "url" => "The :attribute format is invalid.",
  68. );