validation.php 4.2 KB

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