validation.php 4.4 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" => ":attribute muss akzeptiert werden.",
  19. "active_url" => ":attribute ist keine g&uuml;ltige URL.",
  20. "after" => ":attribute muss ein Datum nach dem :date sein.",
  21. "alpha" => ":attribute darf nur Buchstaben beinhalten.",
  22. "alpha_dash" => ":attribute sollte nur aus Buchstaben, Nummern und Bindestrichen bestehen.",
  23. "alpha_num" => ":attribute sollte nur aus Buchstaben und Nummern bestehen.",
  24. "before" => ":attribute muss ein Datum vor dem :date sein.",
  25. "between" => array(
  26. "numeric" => ":attribute muss zwischen :min und :max liegen.",
  27. "file" => ":attribute muss zwischen :min und :max Kilobytes gro&szlig; sein.",
  28. "string" => ":attribute muss zwischen :min und :max Zeichen lang sein.",
  29. ),
  30. "confirmed" => ":attribute stimmt nicht mit der Best&auml;tigung &uuml;berein.",
  31. "different" => ":attribute und :other m&uuml;ssen verschieden sein.",
  32. "email" => ":attribute ist keine g&uuml;ltige Email-Adresse.",
  33. "exists" => "Der gew&auml;hlte Wert f&uuml;r :attribute ist ung&uuml;ltig.",
  34. "image" => ":attribute muss ein Bild sein.",
  35. "in" => "Der gew&auml;hlte Wert f&uuml;r :attribute ist ung&uuml;ltig.",
  36. "integer" => ":attribute muss eine ganze Zahl sein.",
  37. "ip" => ":attribute muss eine g&uuml;ltige IP-Adresse sein.",
  38. "match" => ":attribute hat ein ung&uuml;ltiges Format.",
  39. "max" => array(
  40. "numeric" => ":attribute muss kleiner als :max sein.",
  41. "file" => ":attribute muss kleiner als :max Kilobytes gro&szlig; sein.",
  42. "string" => ":attribute muss k&uuml;rzer als :max Zeichen sein.",
  43. ),
  44. "mimes" => ":attribute muss den Dateityp :values haben.",
  45. "min" => array(
  46. "numeric" => ":attribute muss gr&ouml;&szlig;er als :min sein.",
  47. "file" => ":attribute muss gr&ouml;&szlig;er als :min Kilobytes gro&szlig; sein.",
  48. "string" => ":attribute muss l&auml;nger als :min Zeichen sein.",
  49. ),
  50. "not_in" => "Der gew&auml;hlte Wert f&uuml;r :attribute ist ung&uuml;ltig.",
  51. "numeric" => ":attribute muss eine Zahl sein.",
  52. "required" => ":attribute muss aufgef&uuml;llt sein.",
  53. "same" => ":attribute und :other m&uuml;ssen &uuml;bereinstimmen.",
  54. "size" => array(
  55. "numeric" => ":attribute muss gleich :size sein.",
  56. "file" => ":attribute muss :size Kilobyte gro&szlig; sein.",
  57. "string" => ":attribute muss :size Zeichen lang sein.",
  58. ),
  59. "unique" => ":attribute ist schon vergeben.",
  60. "url" => "Das Format von :attribute ist ung&uuml;ltig.",
  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. );