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