validation.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 يجب أن تكون مقبولة.",
  19. "active_url" => "القيمة :attribute تمثل عنوان موقع إنترنت غير صحيح.",
  20. "after" => "القيمة :attribute يجب أن تكون بعد تاريخ :date.",
  21. "alpha" => "القيمة :attribute يمكنها أن تحتوي على أحرف فقط.",
  22. "alpha_dash" => "القيمة :attribute يمكنها أن تحتوي على أحرف و أرقام و إشارة الناقص فقط.",
  23. "alpha_num" => "القيمة :attribute يمكنها أن تحتوي على أحرف و أرقام فقط.",
  24. "array" => "The :attribute must have selected elements.",
  25. "before" => "القيمة :attribute يجب أن تكون قبل تاريخ :date.",
  26. "between" => array(
  27. "numeric" => "القيمة :attribute يجب أن تكون بين :min و :max.",
  28. "file" => "الملف :attribute يجب أن يكون بحجم من :min إلى :max كيلوبايت.",
  29. "string" => "النص :attribute يجب أن يكون بطول من :min إلى :max حرف.",
  30. ),
  31. "confirmed" => "القيمة :attribute التأكيدية غير مطابقة.",
  32. "count" => "The :attribute must have exactly :count selected elements.",
  33. "countbetween" => "The :attribute must have between :min and :max selected elements.",
  34. "countmax" => "The :attribute must have less than :max selected elements.",
  35. "countmin" => "The :attribute must have at least :min selected elements.",
  36. "different" => "القيمتان :attribute و :other يجب أن تختلفان.",
  37. "email" => "القيمة :attribute تمثل بريد إلكتروني غير صحيح.",
  38. "exists" => "القيمة المختارة :attribute غير موجودة.",
  39. "image" => "القيمة :attribute يجب أن تكون صورة.",
  40. "in" => "القيمة المختارة :attribute غير موجودة.",
  41. "integer" => "القيمة :attribute يجب أن تكون رقماً.",
  42. "ip" => "القيمة :attribute يجب أن تمثل عنوان بروتوكول إنترنت صحيح.",
  43. "match" => "القيمة :attribute هي بتنسيق غير صحيح.",
  44. "max" => array(
  45. "numeric" => "القيمة :attribute يجب أن تكون أقل من :max.",
  46. "file" => "الملف :attribute يجب أن يكون بحجم أقل من :max كيلوبايت.",
  47. "string" => "النص :attribute يجب أن يكون بطول أقل من :max حرف.",
  48. ),
  49. "mimes" => "القيمة :attribute يجب أن تكون ملف من نوع: :values.",
  50. "min" => array(
  51. "numeric" => "القيمة :attribute يجب أن تساوي :min على الأقل.",
  52. "file" => "الملف :attribute يجب أن يكون بحجم :min كيلوبايت على الأقل.",
  53. "string" => "النص :attribute يجب أن يكون بطول :min حرف على الأقل.",
  54. ),
  55. "not_in" => "القيمة :attribute المختارة غير صحيحة.",
  56. "numeric" => "القيمة :attribute يجب أن تكون رقماً.",
  57. "required" => "القيمة :attribute مطلوبة.",
  58. "same" => "القيمتان :attribute و :other يجب أن تتطابقان.",
  59. "size" => array(
  60. "numeric" => "القيمة :attribute يجب أن تكون بحجم :size.",
  61. "file" => "الملف :attribute يجب أن يكون بحجم :size كيلوبايت.",
  62. "string" => "النص :attribute يجب أن يكون بطول :size حرف.",
  63. ),
  64. "unique" => "القيمة :attribute تم استخدامها من قبل.",
  65. "url" => "التنسيق :attribute غير صحيح.",
  66. /*
  67. |--------------------------------------------------------------------------
  68. | Custom Validation Language Lines
  69. |--------------------------------------------------------------------------
  70. |
  71. | Here you may specify custom validation messages for attributes using the
  72. | convention "attribute_rule" to name the lines. This helps keep your
  73. | custom validation clean and tidy.
  74. |
  75. | So, say you want to use a custom validation message when validating that
  76. | the "email" attribute is unique. Just add "email_unique" to this array
  77. | with your custom message. The Validator will handle the rest!
  78. |
  79. */
  80. 'custom' => array(),
  81. /*
  82. |--------------------------------------------------------------------------
  83. | Validation Attributes
  84. |--------------------------------------------------------------------------
  85. |
  86. | The following language lines are used to swap attribute place-holders
  87. | with something more reader friendly such as "E-Mail Address" instead
  88. | of "email". Your users will thank you.
  89. |
  90. | The Validator class will automatically search this array of lines it
  91. | is attempting to replace the :attribute place-holder in messages.
  92. | It's pretty slick. We think you'll like it.
  93. |
  94. */
  95. 'attributes' => array(),
  96. );