validation.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 deve essere accettato.",
  19. "active_url" => ":attribute non &egrave; un URL valido.",
  20. "after" => ":attribute deve essere una data successiva al :date.",
  21. "alpha" => ":attribute pu&ograve; contenere solo lettere.",
  22. "alpha_dash" => ":attribute pu&ograve; contenere solo numeri lettere e dashes.",
  23. "alpha_num" => ":attribute pu&ograve; contenere solo lettere e numeri.",
  24. "array" => ":attribute deve avere almeno un elemento selezionato.",
  25. "before" => ":attribute deve essere una data che precede :date.",
  26. "between" => array(
  27. "numeric" => ":attribute deve trovarsi tra :min - :max.",
  28. "file" => ":attribute deve trovarsi tra :min - :max kilobytes.",
  29. "string" => ":attribute deve trovarsi tra :min - :max caratteri.",
  30. ),
  31. "confirmed" => "Il campo di conferma per :attribute non coincide.",
  32. "count" => ":attribute deve avere esattamente :count elementi selezionati.",
  33. "countbetween" => ":attribute deve avere esattamente almeno :min o al pi&ugrave; :max elementi selezionati.",
  34. "countmax" => ":attribute deve avere meno di :max elementi selezionati.",
  35. "countmin" => ":attribute deve avere almeno :min elementi selezionati.",
  36. "different" => ":attribute e :other devono essere differenti.",
  37. "email" => ":attribute non &egrave; valido.",
  38. "exists" => ":attribute selezionato/a non &egrave; valido.",
  39. "image" => ":attribute deve essere un'immagine.",
  40. "in" => ":attribute selezionato non &egrave; valido.",
  41. "integer" => ":attribute deve essere intero.",
  42. "ip" => ":attribute deve essere un indirizzo IP valido.",
  43. "match" => ":attribute non &egrave; valido.",
  44. "max" => array(
  45. "numeric" => ":attribute deve essere minore di :max.",
  46. "file" => ":attribute non deve essere pi&ugrave grande di :max kilobytes.",
  47. "string" => ":attribute non pu&ograve; contenere pi&ugrave; di :max caratteri.",
  48. ),
  49. "mimes" => ":attribute deve essere del tipo: :values.",
  50. "min" => array(
  51. "numeric" => ":attribute deve valere almeno :min.",
  52. "file" => ":attribute deve essere pi&ugrave; grande di :min kilobytes.",
  53. "string" => ":attribute deve contenere almeno :min caratteri.",
  54. ),
  55. "not_in" => "Il valore selezionato per :attribute non &egrave; valido.",
  56. "numeric" => ":attribute deve essere un numero.",
  57. "required" => ":attribute non pu&ograve; essere omesso.",
  58. "same" => ":attribute e :other devono coincidere.",
  59. "size" => array(
  60. "numeric" => ":attribute deve valere :size.",
  61. "file" => ":attribute deve essere grande :size kilobyte.",
  62. "string" => ":attribute deve contenere :size caratteri.",
  63. ),
  64. "unique" => ":attribute &egrave; stato gi&agrave; usato.",
  65. "url" => ":attribute deve essere un URL.",
  66. /*
  67. |--------------------------------------------------------------------------
  68. | Custom Validation Language Lines
  69. |--------------------------------------------------------------------------
  70. |
  71. | Here you may specify custom validation messages for attributes using the
  72. | convention "attribute_rule" to name the lines. This helps keep your
  73. | custom validation clean and tidy.
  74. |
  75. | So, say you want to use a custom validation message when validating that
  76. | the "email" attribute is unique. Just add "email_unique" to this array
  77. | with your custom message. The Validator will handle the rest!
  78. |
  79. */
  80. 'custom' => array(),
  81. /*
  82. |--------------------------------------------------------------------------
  83. | Validation Attributes
  84. |--------------------------------------------------------------------------
  85. |
  86. | The following language lines are used to swap attribute place-holders
  87. | with something more reader friendly such as "E-Mail Address" instead
  88. | of "email". Your users will thank you.
  89. |
  90. | The Validator class will automatically search this array of lines it
  91. | is attempting to replace the :attribute place-holder in messages.
  92. | It's pretty slick. We think you'll like it.
  93. |
  94. */
  95. 'attributes' => array(),
  96. );