validation.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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" => "Campul :attribute trebuie sa fie acceptat.",
  19. "active_url" => "Campul :attribute nu este un URL valid.",
  20. "after" => "Campul :attribute trebuie sa fie o data dupa :date.",
  21. "alpha" => "Campul :attribute poate contine numai litere.",
  22. "alpha_dash" => "Campul :attribute poate contine numai litere, numere si liniute.",
  23. "alpha_num" => "Campul :attribute poate contine numai litere si numere.",
  24. "array" => "Campul :attribute trebuie sa aiba elemente selectate.",
  25. "before" => "Campul :attribute trebuie sa fie o data inainte de :date.",
  26. "between" => array(
  27. "numeric" => "Campul :attribute trebuie sa fie intre :min si :max.",
  28. "file" => "Campul :attribute trebuie sa fie intre :min si :max kilobytes.",
  29. "string" => "Campul :attribute trebuie sa fie intre :min si :max caractere.",
  30. ),
  31. "confirmed" => "Confirmarea :attribute nu se potriveste.",
  32. "count" => "Campul :attribute trebuie sa aiba exact :count elemente selectate.",
  33. "countbetween" => "Campul :attribute trebuie sa aiba intre :min si :max elemente selectate.",
  34. "countmax" => "Campul :attribute trebuie sa aiba mai putin de :max elemente selectate.",
  35. "countmin" => "Campul :attribute trebuie sa aiba cel putin :min elemente selectate.",
  36. "date_format" => "Campul :attribute trebuie sa fie intr-un format valid.",
  37. "different" => "Campurile :attribute si :other trebuie sa fie diferite.",
  38. "email" => "Formatul campului :attribute este invalid.",
  39. "exists" => "Campul :attribute selectat este invalid.",
  40. "image" => "Campul :attribute trebuie sa fie o imagine.",
  41. "in" => "Campul :attribute selectat este invalid.",
  42. "integer" => "Campul :attribute trebuie sa fie un numar intreg.",
  43. "ip" => "Campul :attribute trebuie sa fie o adresa IP valida.",
  44. "match" => "Formatul campului :attribute este invalid.",
  45. "max" => array(
  46. "numeric" => "Campul :attribute trebuie sa fie mai mic de :max.",
  47. "file" => "Campul :attribute trebuie sa fie mai mic de :max kilobytes.",
  48. "string" => "Campul :attribute trebuie sa fie mai mic de :max caractere.",
  49. ),
  50. "mimes" => "Campul :attribute trebuie sa fie un fisier de tipul: :values.",
  51. "min" => array(
  52. "numeric" => "Campul :attribute trebuie sa fie cel putin :min.",
  53. "file" => "Campul :attribute trebuie sa aiba cel putin :min kilobytes.",
  54. "string" => "Campul :attribute trebuie sa aiba cel putin :min caractere.",
  55. ),
  56. "not_in" => "Campul :attribute selectat este invalid.",
  57. "numeric" => "Campul :attribute trebuie sa fie un numar.",
  58. "required" => "Campul :attribute este obligatoriu.",
  59. "required_with" => "Campul :attribute este obligatoriu cu :field",
  60. "same" => "Campul :attribute si :other trebuie sa fie identice.",
  61. "size" => array(
  62. "numeric" => "Campul :attribute trebuie sa fie :size.",
  63. "file" => "Campul :attribute trebuie sa aiba :size kilobyte.",
  64. "string" => "Campul :attribute trebuie sa aiba :size caractere.",
  65. ),
  66. "unique" => "Campul :attribute a fost deja folosit.",
  67. "url" => "Campul :attribute nu este intr-un format valid.",
  68. /*
  69. |--------------------------------------------------------------------------
  70. | Custom Validation Language Lines
  71. |--------------------------------------------------------------------------
  72. |
  73. | Here you may specify custom validation messages for attributes using the
  74. | convention "attribute_rule" to name the lines. This helps keep your
  75. | custom validation clean and tidy.
  76. |
  77. | So, say you want to use a custom validation message when validating that
  78. | the "email" attribute is unique. Just add "email_unique" to this array
  79. | with your custom message. The Validator will handle the rest!
  80. |
  81. */
  82. 'custom' => array(),
  83. /*
  84. |--------------------------------------------------------------------------
  85. | Validation Attributes
  86. |--------------------------------------------------------------------------
  87. |
  88. | The following language lines are used to swap attribute place-holders
  89. | with something more reader friendly such as "E-Mail Address" instead
  90. | of "email". Your users will thank you.
  91. |
  92. | The Validator class will automatically search this array of lines it
  93. | is attempting to replace the :attribute place-holder in messages.
  94. | It's pretty slick. We think you'll like it.
  95. |
  96. */
  97. 'attributes' => array(),
  98. );