validation.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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" => "Вы должны принять :attribute.",
  19. "active_url" => "Поле :attribute должно быть полным URL.",
  20. "after" => "Поле :attribute должно быть датой после :date.",
  21. "alpha" => "Поле :attribute может содержать только буквы.",
  22. "alpha_dash" => "Поле :attribute может содержать только буквы, цифры и тире.",
  23. "alpha_num" => "Поле :attribute может содержать только буквы и цифры.",
  24. "before" => "Поле :attribute должно быть датой перед :date.",
  25. "between" => array(
  26. "numeric" => "Поле :attribute должно быть между :min и :max.",
  27. "file" => "Поле :attribute должно быть от :min до :max Килобайт.",
  28. "string" => "Поле :attribute должно быть от :min до :max символов.",
  29. ),
  30. "confirmed" => "Поле :attribute не совпадает с подтверждением.",
  31. "different" => "Поля :attribute и :other должны различаться.",
  32. "email" => "Поле :attribute имеет неверный формат.",
  33. "exists" => "Выбранное значение для :attribute уже существует.",
  34. "image" => "Поле :attribute должно быть картинкой.",
  35. "in" => "Выбранное значение для :attribute не верно.",
  36. "integer" => "Поле :attribute должно быть целым числом.",
  37. "ip" => "Поле :attribute должно быть полным IP-адресом.",
  38. "match" => "Поле :attribute имеет неверный формат.",
  39. "max" => array(
  40. "numeric" => "Поле :attribute должно быть меньше :max.",
  41. "file" => "Поле :attribute должно быть меньше :max Килобайт.",
  42. "string" => "Поле :attribute должно быть короче :max символов.",
  43. ),
  44. "mimes" => "Поле :attribute должно быть файлом одного из типов: :values.",
  45. "min" => array(
  46. "numeric" => "Поле :attribute должно быть не менее :min.",
  47. "file" => "Поле :attribute должно быть не менее :min Килобайт.",
  48. "string" => "Поле :attribute должно быть не короче :min символов.",
  49. ),
  50. "not_in" => "Выбранное значение для :attribute не верно.",
  51. "numeric" => "Поле :attribute должно быть числом.",
  52. "required" => "Поле :attribute обязательно для заполнения.",
  53. "same" => "Значение :attribute должно совпадать с :other.",
  54. "size" => array(
  55. "numeric" => "Поле :attribute должно быть :size.",
  56. "file" => "Поле :attribute должно быть :size Килобайт.",
  57. "string" => "Поле :attribute должно быть длиной :size символов.",
  58. ),
  59. "unique" => "Такое значение поля :attribute уже существует.",
  60. "url" => "Поле :attribute имеет неверный формат.",
  61. /*
  62. |--------------------------------------------------------------------------
  63. | Custom Validation Language Lines
  64. |--------------------------------------------------------------------------
  65. |
  66. | Here you may specify custom validation messages for attributes using the
  67. | convention "attribute_rule" to name the lines. This helps keep your
  68. | custom validation clean and tidy.
  69. |
  70. | So, say you want to use a custom validation message when validating that
  71. | the "email" attribute is unique. Just add "email_unique" to this array
  72. | with your custom message. The Validator will handle the rest!
  73. |
  74. */
  75. 'custom' => array(),
  76. /*
  77. |--------------------------------------------------------------------------
  78. | Validation Attributes
  79. |--------------------------------------------------------------------------
  80. |
  81. | The following language lines are used to swap attribute place-holders
  82. | with something more reader friendly such as "E-Mail Address" instead
  83. | of "email". Your users will thank you.
  84. |
  85. | The Validator class will automatically search this array of lines it
  86. | is attempting to replace the :attribute place-holder in messages.
  87. | It's pretty slick. We think you'll like it.
  88. |
  89. */
  90. 'attributes' => array(),
  91. );