Update validation.php

This commit is contained in:
Sagnik Sahoo 2022-11-04 20:03:17 +05:30 committed by GitHub
parent 6b47cf4dbe
commit bc5e83533a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 21 deletions

View File

@ -75,30 +75,30 @@ return [
'array' => ':attribute অবশ্যই :value আইটেমের বেশি থাকা উচিত নয়।', 'array' => ':attribute অবশ্যই :value আইটেমের বেশি থাকা উচিত নয়।',
], ],
'max' => [ 'max' => [
'numeric' => 'The :attribute may not be greater than :max.', 'numeric' => ':attribute :max এর থেকে বেশি নাও হতে পারে।',
'file' => 'The :attribute may not be greater than :max kilobytes.', 'file' => ':attribute :max kilobytes এর থেকে বেশি নাও হতে পারে৷',
'string' => 'The :attribute may not be greater than :max characters.', 'string' => ':attributeটি :max অক্ষরের চেয়ে বেশি নাও হতে পারে।.',
'array' => 'The :attribute may not have more than :max items.', 'array' => ':attribute এ :max এর বেশি আইটেম নাও থাকতে পারে।',
], ],
'mimes' => 'The :attribute must be a file of type: :values.', 'mimes' => ':attribute টাইপের ফাইল হতে হবে: :values.',
'mimetypes' => 'The :attribute must be a file of type: :values.', 'mimetypes' => ':attribute টাইপের একটি ফাইল হতে হবে: :values.',
'min' => [ 'min' => [
'numeric' => 'The :attribute must be at least :min.', 'numeric' => ':attribute অন্তত :min হতে হবে।',
'file' => 'The :attribute must be at least :min kilobytes.', 'file' => ':attribute অবশ্যই কমপক্ষে :min কিলোবাইট হতে হবে৷',
'string' => 'The :attribute must be at least :min characters.', 'string' => ':attribute অন্তত :min অক্ষর হতে হবে।',
'array' => 'The :attribute must have at least :min items.', 'array' => ':attribute কমপক্ষে :min আইটেম থাকতে হবে।',
], ],
'not_in' => 'The selected :attribute is invalid.', 'not_in' => 'নির্বাচিত :attribute টি অবৈধ।',
'not_regex' => 'The :attribute format is invalid.', 'not_regex' => ':attribute বিন্যাসটি অবৈধ।',
'numeric' => 'The :attribute must be a number.', 'numeric' => ':attribute একটি সংখ্যা হতে হবে।',
'present' => 'The :attribute field must be present.', 'present' => ':attribute ক্ষেত্রটি অবশ্যই উপস্থিত থাকতে হবে।',
'regex' => 'The :attribute format is invalid.', 'regex' => ':attribute বিন্যাসটি অবৈধ।',
'required' => 'The :attribute field is required.', 'required' => ':attribute ক্ষেত্র প্রয়োজন।',
'required_if' => 'The :attribute field is required when :other is :value.', 'required_if' => ':attribute ফিল্ডের প্রয়োজন হয় যখন :other হয় :value ।',
'required_unless' => 'The :attribute field is required unless :other is in :values.', 'required_unless' => ':attribute ক্ষেত্রটি আবশ্যক যদি না :other :value থাকে।',
'required_with' => 'The :attribute field is required when :values is present.', 'required_with' => 'যখন :values ​​উপস্থিত থাকে তখন :attribute ফিল্ডের প্রয়োজন হয়।',
'required_with_all' => 'The :attribute field is required when :values is present.', 'required_with_all' => 'যখন :values ​​উপস্থিত থাকে তখন :attribute ফিল্ডের প্রয়োজন হয়।',
'required_without' => 'The :attribute field is required when :values is not present.', 'required_without' => 'যখন :values ​​উপস্থিত না থাকে তখন :attribute ফিল্ডের প্রয়োজন হয়।',
'required_without_all' => ':value র কোনোটি উপস্থিত না থাকলে :attribute ক্ষেত্রের প্রয়োজন হয়৷', 'required_without_all' => ':value র কোনোটি উপস্থিত না থাকলে :attribute ক্ষেত্রের প্রয়োজন হয়৷',
'same' => ':attribute এবং :other অবশ্যই মিলবে।', 'same' => ':attribute এবং :other অবশ্যই মিলবে।',
'size' => [ 'size' => [