validation.php 5.3 KB

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