validation.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Dutch validation language file
  6. |--------------------------------------------------------------------------
  7. |
  8. */
  9. "accepted" => "Het :attribute moet geaccepteerd zijn.",
  10. "active_url" => "Het :attribute is geen geldig URL.",
  11. "after" => "Het :attribute moet een datum na :date zijn.",
  12. "alpha" => "Het :attribute mag alleen letters bevatten.",
  13. "alpha_dash" => "Het :attribute mag alleen letters, nummers, onderstreep(_) en strepen(-) bevatten.",
  14. "alpha_num" => "Het :attribute mag alleen letters en nummers",
  15. "before" => "Het :attribute moet een datum voor :date zijn.",
  16. "between" => array(
  17. "numeric" => "Het :attribute moet tussen :min en :max zijn.",
  18. "file" => "Het :attribute moet tussen :min en :max kilobytes zijn.",
  19. "string" => "Het :attribute moet tussen :min en :max tekens zijn.",
  20. ),
  21. "confirmed" => "Het :attribute bevestiging komt niet overeen.",
  22. "different" => "Het :attribute en :other moeten verschillend zijn.",
  23. "email" => "Het :attribute formaat is ongeldig.",
  24. "exists" => "Het gekozen :attribute is al ingebruik.",
  25. "image" => "Het :attribute moet een afbeelding zijn.",
  26. "in" => "Het gekozen :attribute is ongeldig.",
  27. "integer" => "Het :attribute moet een getal zijn.",
  28. "ip" => "Het :attribute moet een geldig IP adres bevatten.",
  29. "match" => "Het :attribute formaat is ongeldig.",
  30. "max" => array(
  31. "numeric" => "Het :attribute moet minder dan :max zijn.",
  32. "file" => "Het :attribute moet minder dan :max kilobytes zijn.",
  33. "string" => "Het :attribute moet minder dan :max tekens zijn.",
  34. ),
  35. "mimes" => "Het :attribute moet een bestand zijn van het bestandstype :values.",
  36. "min" => array(
  37. "numeric" => "Het :attribute moet minimaal :min zijn.",
  38. "file" => "Het :attribute moet minimaal :min kilobytes zijn.",
  39. "string" => "Het :attribute moet minimaal :min characters zijn.",
  40. ),
  41. "not_in" => "Het :attribute formaat is ongeldig.",
  42. "numeric" => "Het :attribute moet een nummer zijn.",
  43. "required" => "Het :attribute veld is verplicht.",
  44. "same" => "Het :attribute en :other moeten overeenkomen.",
  45. "size" => array(
  46. "numeric" => "Het :attribute moet :size zijn.",
  47. "file" => "Het :attribute moet :size kilobyte zijn.",
  48. "string" => "Het :attribute moet :size characters zijn.",
  49. ),
  50. "unique" => "Het :attribute is al in gebruik.",
  51. "url" => "Het :attribute formaat is ongeldig.",
  52. /*
  53. |--------------------------------------------------------------------------
  54. | Custom Validation Language Lines
  55. |--------------------------------------------------------------------------
  56. |
  57. | Here you may specify custom validation messages for attributes using the
  58. | convention "attribute_rule" to name the lines. This helps keep your
  59. | custom validation clean and tidy.
  60. |
  61. | So, say you want to use a custom validation message when validating that
  62. | the "email" attribute is unique. Just add "email_unique" to this array
  63. | with your custom message. The Validator will handle the rest!
  64. |
  65. */
  66. 'custom' => array(),
  67. /*
  68. |--------------------------------------------------------------------------
  69. | Validation Attributes
  70. |--------------------------------------------------------------------------
  71. |
  72. | The following language lines are used to swap attribute place-holders
  73. | with something more reader friendly such as "E-Mail Address" instead
  74. | of "email". Your users will thank you.
  75. |
  76. | The Validator class will automatically search this array of lines it
  77. | is attempting to replace the :attribute place-holder in messages.
  78. | It's pretty slick. We think you'll like it.
  79. |
  80. */
  81. 'attributes' => array(),
  82. );