validation.php 4.2 KB

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