validation.php 4.5 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" => "Le champ :attribute doit être accepté.",
  19. "active_url" => "Le champ :attribute n'est pas une URL valide.",
  20. "after" => "Le champ :attribute doit être une date après :date.",
  21. "alpha" => "Le champ :attribute ne doit contenir que des lettres.",
  22. "alpha_dash" => "Le champ :attribute ne doit contenir que des lettres, nombres et des tirets.",
  23. "alpha_num" => "Le champ :attribute ne doit contenir que des lettres et nombres.",
  24. "before" => "Le champ :attribute doit être une date avant :date.",
  25. "between" => array(
  26. "numeric" => "Le champ :attribute doit être entre :min - :max.",
  27. "file" => "Le champ :attribute doit être entre :min - :max kilo-octets.",
  28. "string" => "Le champ :attribute doit être entre :min - :max caractères.",
  29. ),
  30. "confirmed" => "Le champ :attribute confirmation est différent.",
  31. "different" => "Les champ :attribute et :other doivent être différents.",
  32. "email" => "Le format du champ :attribute est invalide.",
  33. "exists" => "Le champ sélectionné :attribute est invalide.",
  34. "image" => "Le champ :attribute doit être une image.",
  35. "in" => "Le champ sélectionné :attribute est invalide.",
  36. "integer" => "Le champ :attribute doit être un entier.",
  37. "ip" => "Le champ :attribute doit être une adresse IP valide.",
  38. "match" => "Le format du champ :attribute est invalide.",
  39. "max" => array(
  40. "numeric" => "Le :attribute doit être plus petit que :max.",
  41. "file" => "Le :attribute doit être plus petit que :max kilo-octets.",
  42. "string" => "Le :attribute doit être plus petit que :max caractères.",
  43. ),
  44. "mimes" => "Le champ :attribute doit être un fichier de type: :values.",
  45. "min" => array(
  46. "numeric" => "Le champ :attribute doit être au moins :min.",
  47. "file" => "Le champ :attribute doit être au moins :min kilo-octets.",
  48. "string" => "Le champ :attribute doit être au moins :min caractères.",
  49. ),
  50. "not_in" => "Le champ sélectionné :attribute est invalide.",
  51. "numeric" => "Le champ :attribute doit être un nombre.",
  52. "required" => "Le champ :attribute est requis",
  53. "same" => "Le champ :attribute et :other doivent être identique.",
  54. "size" => array(
  55. "numeric" => "Le champ :attribute doit être :size.",
  56. "file" => "Le champ :attribute doit être de :size kilo-octets.",
  57. "string" => "Le champ :attribute doit être de :size caractères.",
  58. ),
  59. "unique" => "Le champ :attribute est déjà utilisé.",
  60. "url" => "Le champ :attribute à un format invalide.",
  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. );