validation.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Validation Language Lines
  5. |--------------------------------------------------------------------------
  6. |
  7. | The following language lines contain the default error messages used by
  8. | the validator class. Some of these rules have multiple versions such
  9. | as the size rules. Feel free to tweak each of these messages here.
  10. |
  11. */
  12. return [
  13. 'accepted' => ':attribute को स्वीकार किया जाना चाहिए।',
  14. 'accepted_if' => 'The :attribute must be accepted when :other is :value.',
  15. 'active_url' => ':attribute एक मान्य URL नहीं है।',
  16. 'after' => ':attribute, :date के बाद की एक तारीख होनी चाहिए।',
  17. 'after_or_equal' => ':attribute, :date के बाद या उसके बराबर की तारीख होनी चाहिए।',
  18. 'alpha' => ':attribute में केवल अक्षर हो सकते हैं।',
  19. 'alpha_dash' => ':attribute में केवल अक्षर, संख्या, और डैश हो सकते हैं।',
  20. 'alpha_num' => ':attribute में केवल अक्षर और संख्याएं हो सकती हैं।',
  21. 'array' => ':attribute एक सरणी होनी चाहिए।',
  22. 'attached' => 'यह :attribute पहले से ही संलग्न है । ',
  23. 'before' => ':attribute, :date से पहले की एक तारीख होनी चाहिए।',
  24. 'before_or_equal' => ':attribute, :date इससे पहले या उसके बराबर की तारीख होनी चाहिए।',
  25. 'between' => [
  26. 'array' => ':attribute, :min और :max आइटमों के बीच होनी चाहिए।',
  27. 'file' => ':attribute, :min और :max किलोबाइट के बीच होना चाहिए।',
  28. 'numeric' => ':attribute, :min और :max के बीच होना चाहिए।',
  29. 'string' => ':attribute, :min और :max वर्णों के बीच होना चाहिए।',
  30. ],
  31. 'boolean' => ':attribute फील्ड सही या गलत होना चाहिए।',
  32. 'confirmed' => ':attribute पुष्टिकरण मेल नहीं खा रहा है।',
  33. 'current_password' => 'The password is incorrect.',
  34. 'date' => ':attribute एक मान्य दिनांक नहीं है।',
  35. 'date_equals' => ':attribute, :date के बराबर तारीख होनी चाहिए।',
  36. 'date_format' => ':attribute फॉर्मेट :format से मेल नहीं खा रहा है।',
  37. 'declined' => 'The :attribute must be declined.',
  38. 'declined_if' => 'The :attribute must be declined when :other is :value.',
  39. 'different' => ':attribute और :other अलग होना चाहिए।',
  40. 'digits' => ':attribute, :digits अंक होना चाहिए।',
  41. 'digits_between' => ':attribute, :min और :max अंकों के बीच होना चाहिए।',
  42. 'dimensions' => ':attribute का अमान्य चित्त माप है।',
  43. 'distinct' => ':attribute फील्ड का एक डुप्लिकेट मान होता है।',
  44. 'email' => ':attribute एक मान्य ईमेल पता होना चाहिए।',
  45. 'ends_with' => ':attribute को निम्नलिखित में से एक के साथ समाप्त होना चाहिए: :values । ',
  46. 'exists' => 'चुना गया :attribute अमान्य है।',
  47. 'file' => ':attribute एक फ़ाइल होनी चाहिए।',
  48. 'filled' => ':attribute फील्ड आवश्यक होता है।',
  49. 'gt' => [
  50. 'array' => ':attribute, :value मद से अधिक होना चाहिए।',
  51. 'file' => ':attribute, :value kilobytes से अधिक होना चाहिए।',
  52. 'numeric' => ':attribute, :value से अधिक होना चाहिए।',
  53. 'string' => ':attribute, :value characters से अधिक होना चाहिए।',
  54. ],
  55. 'gte' => [
  56. 'array' => 'The :attribute must have :value items or more.',
  57. 'file' => 'The :attribute must be greater than or equal :value kilobytes.',
  58. 'numeric' => 'The :attribute must be greater than or equal :value.',
  59. 'string' => 'The :attribute must be greater than or equal :value characters.',
  60. ],
  61. 'image' => ':attribute एक छवि होनी चाहिए।',
  62. 'in' => 'चुना गया :attribute अमान्य है।',
  63. 'in_array' => ':attribute फील्ड, :other में मौजूद नहीं है।',
  64. 'integer' => ':attribute एक पूर्णांक होना चाहिए।',
  65. 'ip' => ':attribute एक मान्य IP address होना चाहिए।',
  66. 'ipv4' => ':attribute एक वैध IPv4 address होना चाहिए।',
  67. 'ipv6' => ':attribute एक वैध IPv6 address होना चाहिए।',
  68. 'json' => ':attribute एक मान्य JSON स्ट्रिंग होना चाहिए।',
  69. 'lt' => [
  70. 'array' => 'The :attribute must have less than :value items.',
  71. 'file' => 'The :attribute must be less than :value kilobytes.',
  72. 'numeric' => 'The :attribute must be less than :value.',
  73. 'string' => 'The :attribute must be less than :value characters.',
  74. ],
  75. 'lte' => [
  76. 'array' => 'The :attribute must not have more than :value items.',
  77. 'file' => 'The :attribute must be less than or equal :value kilobytes.',
  78. 'numeric' => 'The :attribute must be less than or equal :value.',
  79. 'string' => 'The :attribute must be less than or equal :value characters.',
  80. ],
  81. 'max' => [
  82. 'array' => ':attribute, :max आइटमों से अधिक नहीं हो सकता है।',
  83. 'file' => ':attribute :max किलोबाइट से बड़ा नहीं हो सकता है।',
  84. 'numeric' => ':attribute, :max से बड़ा नहीं हो सकता है।',
  85. 'string' => ':attribute, :max वर्णों से बड़ा नहीं हो सकता है।',
  86. ],
  87. 'mimes' => ':attribute एक प्रकार की फ़ाइल: :values होना चाहिए।',
  88. 'mimetypes' => ':attribute एक प्रकार की फ़ाइल: :values होना चाहिए।',
  89. 'min' => [
  90. 'array' => ':attribute कम से कम :min आइटम होना चाहिए।',
  91. 'file' => ':attribute कम से कम :min किलोबाइट होना चाहिए।',
  92. 'numeric' => ':attribute कम से कम :min होना चाहिए।',
  93. 'string' => ':attribute कम से कम :min वर्ण होना चाहिए।',
  94. ],
  95. 'multiple_of' => ':attribute :value का एक बहु होना चाहिए',
  96. 'not_in' => 'चुना गया :attribute अमान्य है।',
  97. 'not_regex' => ':attribute प्रारूप अमान्य है।',
  98. 'numeric' => ':attribute एक संख्या होनी चाहिए।',
  99. 'password' => 'पासवर्ड गलत है । ',
  100. 'present' => ':attribute फील्ड मौजूद होना चाहिए।',
  101. 'prohibited' => ':attribute क्षेत्र निषिद्ध है । ',
  102. 'prohibited_if' => ':attribute क्षेत्र निषिद्ध है जब :other :value है । ',
  103. 'prohibited_unless' => ':attribute क्षेत्र तब तक निषिद्ध है जब तक कि :other :values में न हो । ',
  104. 'prohibits' => 'The :attribute field prohibits :other from being present.',
  105. 'regex' => ':attribute फॉर्मेट अमान्य है।',
  106. 'relatable' => 'यह :attribute इस संसाधन से संबद्ध नहीं हो सकता है । ',
  107. 'required' => ':attribute फील्ड आवश्यक होता है।',
  108. 'required_if' => ':attribute फ़ील्ड आवश्यक होता है जब :other :value होता है।',
  109. 'required_unless' => ':attribute फील्ड आवश्यक होता है जब :other, :values में नहीं होता है।',
  110. 'required_with' => ':attribute फ़ील्ड आवश्यक होता है जब :values मौजूद होता है।',
  111. 'required_with_all' => ':attribute फ़ील्ड आवश्यक होता है जब :values मौजूद होता है।',
  112. 'required_without' => ':attribute फील्ड आवश्यक होता है जब :values मौजूद नहीं होता है।',
  113. 'required_without_all' => ':attribute फील्ड आवश्यक होता है जब एक भी :values मौजूद नहीं होता है।',
  114. 'same' => ':attribute और :other मेल खाना चाहिए।',
  115. 'size' => [
  116. 'array' => ':attribute में :size आइटम होने चाहिए।',
  117. 'file' => ':attribute, :size किलोबाइट होना चाहिए।',
  118. 'numeric' => ':attribute, :size होना चाहिए।',
  119. 'string' => ':attribute, :size वर्ण होना चाहिए।',
  120. ],
  121. 'starts_with' => ':attribute निम्नलिखित में से किसी एक से शुरू करना चाहिए: :values',
  122. 'string' => ':attribute एक स्ट्रिंग होनी चाहिए।',
  123. 'timezone' => ':attribute एक मान्य क्षेत्र होना चाहिए।',
  124. 'unique' => ':attribute को पहले ही ले लिया गया है।',
  125. 'uploaded' => ':attribute अपलोड करने में विफल।',
  126. 'url' => ':attribute फॉर्मेट अमान्य है।',
  127. 'uuid' => ':attribute एक वैध UUID होना चाहिए।',
  128. 'custom' => [
  129. 'attribute-name' => [
  130. 'rule-name' => 'अनुकूल-संदेश',
  131. ],
  132. ],
  133. ];