validation.php 4.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" => "O :attribute deve ser aceito.",
  19. "active_url" => "O :attribute não é uma URL válida.",
  20. "after" => "O :attribute deve ser uma data após :date.",
  21. "alpha" => "O :attribute só pode conter letras.",
  22. "alpha_dash" => "O :attribute só pode conter letras, números e traços.",
  23. "alpha_num" => "O :attribute só pode conter letras e números.",
  24. "before" => "O :attribute deve ser uma data anterior à :date.",
  25. "between" => array(
  26. "numeric" => "O :attribute deve estar entre :min - :max.",
  27. "file" => "O :attribute deve estar entre :min - :max kilobytes.",
  28. "string" => "O :attribute deve estar entre :min - :max caracteres.",
  29. ),
  30. "confirmed" => "O :attribute confirmação não coincide.",
  31. "different" => "O :attribute e :other devem ser diferentes.",
  32. "email" => "O :attribute não é um e-mail válido",
  33. "exists" => "O :attribute selecionado é inválido.",
  34. "image" => "O :attribute deve ser uma imagem.",
  35. "in" => "O :attribute selecionado é inválido.",
  36. "integer" => "O :attribute deve ser um inteiro",
  37. "ip" => "O :attribute deve ser um endereço IP válido.",
  38. "match" => "O formato :attribute é inválido.",
  39. "max" => array(
  40. "numeric" => "O :attribute deve ser inferior a :max.",
  41. "file" => "O :attribute deve ser inferior a :max kilobytes.",
  42. "string" => "O :attribute deve ser inferior a :max caracteres.",
  43. ),
  44. "mimes" => "O :attribute deve ser um arquivo do tipo: :values.",
  45. "min" => array(
  46. "numeric" => "O :attribute deve conter pelo menos :min.",
  47. "file" => "O :attribute deve conter pelo menos :min kilobytes.",
  48. "string" => "O :attribute deve conter pelo menos :min caracteres.",
  49. ),
  50. "not_in" => "O :attribute selecionado é inválido.",
  51. "numeric" => "O :attribute deve ser um número.",
  52. "required" => "O campo :attribute deve ser preenchido.",
  53. "same" => "O :attribute e :other devem ser iguais",
  54. "size" => array(
  55. "numeric" => "O :attribute deve ser :size.",
  56. "file" => "O :attribute deve ter :size kilobyte.",
  57. "string" => "O :attribute deve ter :size caracteres.",
  58. ),
  59. "unique" => "O :attribute já existe",
  60. "url" => "O formato :attribute é inválido.",
  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. );