validation.php 4.3 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" => "A(z) :attribute el kell legyen fogadva.",
  19. "active_url" => "A :attribute nem valós URL.",
  20. "after" => "A :attribute :date utáni dátum kell legyen.",
  21. "alpha" => "A(z) :attribute csak betűket tartalmazhat.",
  22. "alpha_dash" => "A(z) :attribute betűket, számokat és kötőjeleket tartalmazhat.",
  23. "alpha_num" => "A(z) :attribute csak betűket és számokat tartalmazhat.",
  24. "before" => "A :attribute :date előtti dátum kell legyen.",
  25. "between" => array(
  26. "numeric" => "A(z) :attribute :min - :max közötti érték kell legyen.",
  27. "file" => "A(z) :attribute :min - :max kilobyte között kell legyen.",
  28. "string" => "A(z) :attribute :min - :max karakterhossz között kell legyen",
  29. ),
  30. "confirmed" => "A(z) :attribute megerősítése nem egyezett meg.",
  31. "different" => "A(z) :attribute és :other különböző kell legyen.",
  32. "email" => "A(z) :attribute formátuma nem megfelelő.",
  33. "exists" => "A(z) választott :attribute nem megfelelő.",
  34. "image" => "A(z) :attribute kép kell legyen.",
  35. "in" => "A(z) választott :attribute nem megfelelő.",
  36. "integer" => "A :attribute szám kell legyen.",
  37. "ip" => "A :attribute valós IP cím kell legyen.",
  38. "match" => "A(z) :attribute formátuma nem megfelelő.",
  39. "max" => array(
  40. "numeric" => "A :attribute kevesebb kell legyen, mint :max.",
  41. "file" => "A :attribute kevesebb kell legyen :max kilobytenál.",
  42. "string" => "A :attribute kevesebb karakterből kell álljon, mint :max.",
  43. ),
  44. "mimes" => "A :attribute az alábbi tipusokból való kell legyen :values.",
  45. "min" => array(
  46. "numeric" => "A :attribute legalább :min kell legyen.",
  47. "file" => "A :attribute legalább :min kilobyte kell legyen.",
  48. "string" => "A :attribute legalább :min karakter hosszú kell legyen.",
  49. ),
  50. "not_in" => "A választott :attribute nem megfelelő.",
  51. "numeric" => "A :attribute szám kell legyen.",
  52. "required" => "A(z) :attribute megadása kötelező.",
  53. "same" => "A :attribute és a :other muszáj hogy megegyezzen.",
  54. "size" => array(
  55. "numeric" => "A(z) :attribute :size kell legyen.",
  56. "file" => "A(z) :attribute :size kilobyteos kell legyen.",
  57. "string" => "A(z) :attribute :size karakteres kell legyen.",
  58. ),
  59. "unique" => "A(z) :attribute már foglalt.",
  60. "url" => "A(z) :attribute formátuma nem megfelelő.",
  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. );