validation.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. | Hebrew Translation:
  18. | Nir Lahad - www.nirlah.com
  19. |
  20. */
  21. "accepted" => "חובה להסכים ל-:attribute.",
  22. "active_url" => "הערך :attribute חייב להכיל כתובת אינטרנט פעילה.",
  23. "after" => "הערך :attribute חייב להכיל תאריך אחרי :date.",
  24. "alpha" => "הערך :attribute יכול להכיל רק אותיות.",
  25. "alpha_dash" => "הערך :attribute יכול להכיל רק אותיות, מספרים ומקפים.",
  26. "alpha_num" => "הערך :attribute יכול להכיל רק אותיות ומספרים.",
  27. "before" => "הערך :attribute חייב להכיל תאריך לפני :date.",
  28. "between" => array(
  29. "numeric" => "הערך :attribute חייב להיות בין :min ל-:max.",
  30. "file" => "הערך :attribute חייב לשקול בין :min ל-:max ק&quot;ב.",
  31. "string" => "הערך :attribute חייב להכיל בין :min ל-:max תווים.",
  32. ),
  33. "confirmed" => "הערכים של :attribute חייבים להיות זהים.",
  34. "different" => "הערכים של :attribute ו-:other חייבים להיות שונים.",
  35. "email" => "הערך :attribute חייב להכיל כתובת אימייל תקינה.",
  36. "exists" => "הערך :attribute לא קיים.",
  37. "image" => "הערך :attribute חייב להיות תמונה.",
  38. "in" => "הערך :attribute חייב להיות ברשימה המאשרת.",
  39. "integer" => "הערך :attribute חייב להיות מספר שלם.",
  40. "ip" => "הערך :attribute חייב להיות כתובת IP תקינה.",
  41. "match" => "התבנית של הערך :attribute אינה תקינה.",
  42. "max" => array(
  43. "numeric" => "הערך :attribute חייב להיות פחות מ-:max.",
  44. "file" => "הערך :attribute חייב לשקול פחות מ-:max ק&quotב.",
  45. "string" => "הערך :attribute חייב להכיל פחות מ-:max תווים.",
  46. ),
  47. "mimes" => "הערך :attribute חייב להיות קובץ מסוג: :values.",
  48. "min" => array(
  49. "numeric" => "הערך :attribute חייב להיות לפחות :min.",
  50. "file" => "הערך :attribute חייב לשקול לפחות :min ק&quot;ב.",
  51. "string" => "הערך :attribute חייב להכיל לפחות :min תווים.",
  52. ),
  53. "not_in" => "הערך :attribute נמצא ברשימה השחורה.",
  54. "numeric" => "הערך :attribute חייב להיות מספר.",
  55. "required" => "חובה למלא את הערך :attribute.",
  56. "same" => "הערכים :attribute ו-:other חייבים להיות זהים.",
  57. "size" => array(
  58. "numeric" => "הערך :attribute חייב להיות :size.",
  59. "file" => "הערך :attribute חייב לשקול :size ק&quot;ב.",
  60. "string" => "הערך :attribute חייב להכיל :size תווים.",
  61. ),
  62. "unique" => "הערך :attribute כבר קיים.",
  63. "url" => "הערך :attribute חייב להכיל כתובת אינטרנט תקינה.",
  64. /*
  65. |--------------------------------------------------------------------------
  66. | Custom Validation Language Lines
  67. |--------------------------------------------------------------------------
  68. |
  69. | Here you may specify custom validation messages for attributes using the
  70. | convention "attribute_rule" to name the lines. This helps keep your
  71. | custom validation clean and tidy.
  72. |
  73. | So, say you want to use a custom validation message when validating that
  74. | the "email" attribute is unique. Just add "email_unique" to this array
  75. | with your custom message. The Validator will handle the rest!
  76. |
  77. */
  78. 'custom' => array(),
  79. /*
  80. |--------------------------------------------------------------------------
  81. | Validation Attributes
  82. |--------------------------------------------------------------------------
  83. |
  84. | The following language lines are used to swap attribute place-holders
  85. | with something more reader friendly such as "E-Mail Address" instead
  86. | of "email". Your users will thank you.
  87. |
  88. | The Validator class will automatically search this array of lines it
  89. | is attempting to replace the :attribute place-holder in messages.
  90. | It's pretty slick. We think you'll like it.
  91. |
  92. */
  93. 'attributes' => array(),
  94. );