2020-01-04 12:51:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Validation Language Lines
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The following language lines contain the default error messages used by
|
|
|
|
| the validator class. Some of these rules have multiple versions such
|
|
|
|
| as the size rules. Feel free to tweak each of these messages here.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'accepted' => ':attribute باید پذیرفته شده باشد.',
|
2021-06-10 08:59:26 +00:00
|
|
|
'active_url' => 'نشانی :attribute معتبر نیست',
|
2020-01-04 12:51:57 +00:00
|
|
|
'after' => ':attribute باید تاریخی بعد از :date باشد.',
|
|
|
|
'after_or_equal' => ':attribute باید تاریخی بعد از :date، یا مطابق با آن باشد.',
|
|
|
|
'alpha' => ':attribute باید فقط حروف الفبا باشد.',
|
|
|
|
'alpha_dash' => ':attribute باید فقط حروف الفبا، عدد و خط تیره(-) باشد.',
|
|
|
|
'alpha_num' => ':attribute باید فقط حروف الفبا و عدد باشد.',
|
|
|
|
'array' => ':attribute باید آرایه باشد.',
|
|
|
|
'before' => ':attribute باید تاریخی قبل از :date باشد.',
|
|
|
|
'before_or_equal' => ':attribute باید تاریخی قبل از :date، یا مطابق با آن باشد.',
|
|
|
|
'between' => [
|
|
|
|
'numeric' => ':attribute باید بین :min و :max باشد.',
|
|
|
|
'file' => ':attribute باید بین :min و :max کیلوبایت باشد.',
|
2021-06-10 08:59:26 +00:00
|
|
|
'string' => ':attribute باید بین :min و :max حرف باشد.',
|
|
|
|
'array' => ':attribute باید بین :min و :max مورد باشد.',
|
2020-01-04 12:51:57 +00:00
|
|
|
],
|
|
|
|
'boolean' => 'فیلد :attribute فقط میتواند صحیح و یا غلط باشد',
|
|
|
|
'confirmed' => ':attribute با فیلد تکرار مطابقت ندارد.',
|
|
|
|
'date' => ':attribute یک تاریخ معتبر نیست.',
|
|
|
|
'date_format' => ':attribute با الگوی :format مطاقبت ندارد.',
|
|
|
|
'different' => ':attribute و :other باید متفاوت باشند.',
|
|
|
|
'digits' => ':attribute باید :digits رقم باشد.',
|
|
|
|
'digits_between' => ':attribute باید بین :min و :max رقم باشد.',
|
|
|
|
'dimensions' => 'ابعاد تصویر :attribute قابل قبول نیست.',
|
|
|
|
'distinct' => 'فیلد :attribute تکراری است.',
|
2021-06-10 08:59:26 +00:00
|
|
|
'email' => ':attribute باید ایمیلی معتبر باشد',
|
|
|
|
'exists' => ':attribute انتخاب شده معتبر نیست.',
|
|
|
|
'file' => ':attribute باید یک پرونده باشد',
|
2020-01-04 12:51:57 +00:00
|
|
|
'filled' => 'فیلد :attribute الزامی است',
|
|
|
|
'image' => ':attribute باید تصویر باشد.',
|
2021-06-10 08:59:26 +00:00
|
|
|
'in' => ':attribute انتخاب شده معتبر نیست.',
|
2020-01-04 12:51:57 +00:00
|
|
|
'in_array' => 'فیلد :attribute در :other وجود ندارد.',
|
2021-06-10 08:59:26 +00:00
|
|
|
'integer' => ':attribute باید عددی صحیح باشد.',
|
2020-01-04 12:51:57 +00:00
|
|
|
'ip' => ':attribute باید IP معتبر باشد.',
|
2021-06-10 08:59:26 +00:00
|
|
|
'ipv4' => ':attribute باید یک نشانی معتبر از نوع IPv4 باشد.',
|
|
|
|
'ipv6' => ':attribute باید یک نشانی معتبر از نوع IPv6 باشد.',
|
2020-01-04 12:51:57 +00:00
|
|
|
'json' => 'فیلد :attribute باید یک رشته از نوع JSON باشد.',
|
|
|
|
'max' => [
|
|
|
|
'numeric' => ':attribute نباید بزرگتر از :max باشد.',
|
|
|
|
'file' => ':attribute نباید بزرگتر از :max کیلوبایت باشد.',
|
2021-06-10 08:59:26 +00:00
|
|
|
'string' => ':attribute نباید بیشتر از :max حرف باشد.',
|
|
|
|
'array' => ':attribute نباید بیشتر از :max مورد باشد.',
|
2020-01-04 12:51:57 +00:00
|
|
|
],
|
2021-06-10 08:59:26 +00:00
|
|
|
'mimes' => ':attribute باید یکی از قالبهای :values باشد.',
|
|
|
|
'mimetypes' => ':attribute باید یکی از قالبهای :values باشد.',
|
2020-01-04 12:51:57 +00:00
|
|
|
'min' => [
|
|
|
|
'numeric' => ':attribute نباید کوچکتر از :min باشد.',
|
|
|
|
'file' => ':attribute نباید کوچکتر از :min کیلوبایت باشد.',
|
2021-06-10 08:59:26 +00:00
|
|
|
'string' => ':attribute نباید کمتر از :min حرف باشد.',
|
|
|
|
'array' => ':attribute نباید کمتر از :min مورد باشد.',
|
2020-01-04 12:51:57 +00:00
|
|
|
],
|
2021-06-10 08:59:26 +00:00
|
|
|
'not_in' => ':attribute انتخاب شده معتبر نیست.',
|
2020-01-04 12:51:57 +00:00
|
|
|
'not_regex' => ':attribute نامعتبر است.',
|
|
|
|
'numeric' => ':attribute باید عدد باشد.',
|
|
|
|
'present' => 'فیلد :attribute باید در پارامترهای ارسالی وجود داشته باشد.',
|
2021-06-10 08:59:26 +00:00
|
|
|
'regex' => 'قالب :attribute معتبر نیست',
|
2020-01-04 12:51:57 +00:00
|
|
|
'required' => 'فیلد :attribute الزامی است',
|
2021-06-10 08:59:26 +00:00
|
|
|
'required_if' => 'هنگامی که :other برابر با :value باشد، فیلد :attribute الزامی است.',
|
2020-01-04 12:51:57 +00:00
|
|
|
'required_unless' => 'فیلد :attribute ضروری است، مگر آنکه :other در :values موجود باشد.',
|
|
|
|
'required_with' => 'در صورت وجود فیلد :values، فیلد :attribute الزامی است.',
|
|
|
|
'required_with_all' => 'در صورت وجود فیلدهای :values، فیلد :attribute الزامی است.',
|
|
|
|
'required_without' => 'در صورت عدم وجود فیلد :values، فیلد :attribute الزامی است.',
|
|
|
|
'required_without_all' => 'در صورت عدم وجود هر یک از فیلدهای :values، فیلد :attribute الزامی است.',
|
|
|
|
'same' => ':attribute و :other باید مانند هم باشند.',
|
|
|
|
'size' => [
|
|
|
|
'numeric' => ':attribute باید برابر با :size باشد.',
|
|
|
|
'file' => ':attribute باید برابر با :size کیلوبایت باشد.',
|
2021-06-10 08:59:26 +00:00
|
|
|
'string' => ':attribute باید برابر با :size حرف باشد.',
|
|
|
|
'array' => ':attribute باید شامل :size مورد باشد.',
|
2020-01-04 12:51:57 +00:00
|
|
|
],
|
|
|
|
'string' => 'فیلد :attribute باید متن باشد.',
|
|
|
|
'timezone' => 'فیلد :attribute باید یک منطقه زمانی قابل قبول باشد.',
|
|
|
|
'unique' => ':attribute قبلا انتخاب شده است.',
|
2021-06-10 08:59:26 +00:00
|
|
|
'uploaded' => 'بارگذاری پرونده :attribute موفقیت آمیز نبود.',
|
|
|
|
'url' => 'قالب نشانی :attribute اشتباه است.',
|
2020-01-04 12:51:57 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Custom Validation Language Lines
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you may specify custom validation messages for attributes using the
|
|
|
|
| convention "attribute.rule" to name the lines. This makes it quick to
|
|
|
|
| specify a specific custom language line for a given attribute rule.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'custom' => [
|
|
|
|
'attribute-name' => [
|
|
|
|
'rule-name' => 'custom-message',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Custom Validation Attributes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| The following language lines are used to swap attribute place-holders
|
|
|
|
| with something more reader friendly such as E-Mail Address instead
|
|
|
|
| of "email". This simply helps us make messages a little cleaner.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'attributes' => [
|
|
|
|
'name' => 'نام',
|
|
|
|
'username' => 'نام کاربری',
|
|
|
|
'email' => 'ایمیل',
|
|
|
|
'first_name' => 'نام',
|
|
|
|
'last_name' => 'نام خانوادگی',
|
|
|
|
'password' => 'رمز عبور',
|
|
|
|
'password_confirmation' => 'تکرار رمز عبور',
|
|
|
|
'city' => 'شهر',
|
|
|
|
'country' => 'کشور',
|
|
|
|
'address' => 'نشانی',
|
|
|
|
'phone' => 'تلفن',
|
|
|
|
'mobile' => 'تلفن همراه',
|
|
|
|
'age' => 'سن',
|
2021-06-10 08:59:26 +00:00
|
|
|
'sex' => 'جنس',
|
2020-01-04 12:51:57 +00:00
|
|
|
'gender' => 'جنسیت',
|
|
|
|
'day' => 'روز',
|
|
|
|
'month' => 'ماه',
|
|
|
|
'year' => 'سال',
|
|
|
|
'hour' => 'ساعت',
|
|
|
|
'minute' => 'دقیقه',
|
|
|
|
'second' => 'ثانیه',
|
|
|
|
'title' => 'عنوان',
|
|
|
|
'text' => 'متن',
|
|
|
|
'content' => 'محتوا',
|
|
|
|
'description' => 'توضیحات',
|
|
|
|
'excerpt' => 'گزیده مطلب',
|
|
|
|
'date' => 'تاریخ',
|
|
|
|
'time' => 'زمان',
|
|
|
|
'available' => 'موجود',
|
|
|
|
'size' => 'اندازه',
|
|
|
|
'terms' => 'شرایط',
|
|
|
|
],
|
|
|
|
|
|
|
|
];
|