add lang files
This commit is contained in:
20
laravel/resources/lang/en/auth.php
Normal file
20
laravel/resources/lang/en/auth.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'These credentials do not match our records.',
|
||||
'password' => 'The provided password is incorrect.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
|
||||
];
|
||||
11
laravel/resources/lang/en/messages.php
Normal file
11
laravel/resources/lang/en/messages.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'successful' => 'The Operation Was Successful',
|
||||
'can_not_process' => 'The Operation Can Not Be Processed.',
|
||||
'invalid_credentials' => 'The user name or password is incorrect.',
|
||||
'wrong_current_password' => 'The Current Password Is Incorrect.',
|
||||
'notification_server_is_down' => 'Notification Server Is Down',
|
||||
'the_operator_is_offline' => 'The Operator Is Offline',
|
||||
'operator_could_not_connect' => 'Operator Could Not Connect',
|
||||
];
|
||||
19
laravel/resources/lang/en/pagination.php
Normal file
19
laravel/resources/lang/en/pagination.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« Previous',
|
||||
'next' => 'Next »',
|
||||
|
||||
];
|
||||
22
laravel/resources/lang/en/passwords.php
Normal file
22
laravel/resources/lang/en/passwords.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'reset' => 'Your password has been reset.',
|
||||
'sent' => 'We have emailed your password reset link.',
|
||||
'throttled' => 'Please wait before retrying.',
|
||||
'token' => 'This password reset token is invalid.',
|
||||
'user' => "We can't find a user with that email address.",
|
||||
|
||||
];
|
||||
185
laravel/resources/lang/en/validation.php
Normal file
185
laravel/resources/lang/en/validation.php
Normal file
@@ -0,0 +1,185 @@
|
||||
<?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' => 'The :attribute field must be accepted.',
|
||||
'accepted_if' => 'The :attribute field must be accepted when :other is :value.',
|
||||
'active_url' => 'The :attribute field must be a valid URL.',
|
||||
'after' => 'The :attribute field must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute field must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute field must only contain letters.',
|
||||
'alpha_dash' => 'The :attribute field must only contain letters, numbers, dashes, and underscores.',
|
||||
'alpha_num' => 'The :attribute field must only contain letters and numbers.',
|
||||
'array' => 'The :attribute field must be an array.',
|
||||
'ascii' => 'The :attribute field must only contain single-byte alphanumeric characters and symbols.',
|
||||
'before' => 'The :attribute field must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute field must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'array' => 'The :attribute field must have between :min and :max items.',
|
||||
'file' => 'The :attribute field must be between :min and :max kilobytes.',
|
||||
'numeric' => 'The :attribute field must be between :min and :max.',
|
||||
'string' => 'The :attribute field must be between :min and :max characters.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'can' => 'The :attribute field contains an unauthorized value.',
|
||||
'confirmed' => 'The :attribute field confirmation does not match.',
|
||||
'current_password' => 'The password is incorrect.',
|
||||
'date' => 'The :attribute field must be a valid date.',
|
||||
'date_equals' => 'The :attribute field must be a date equal to :date.',
|
||||
'date_format' => 'The :attribute field must match the format :format.',
|
||||
'decimal' => 'The :attribute field must have :decimal decimal places.',
|
||||
'declined' => 'The :attribute field must be declined.',
|
||||
'declined_if' => 'The :attribute field must be declined when :other is :value.',
|
||||
'different' => 'The :attribute field and :other must be different.',
|
||||
'digits' => 'The :attribute field must be :digits digits.',
|
||||
'digits_between' => 'The :attribute field must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute field has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'doesnt_end_with' => 'The :attribute field must not end with one of the following: :values.',
|
||||
'doesnt_start_with' => 'The :attribute field must not start with one of the following: :values.',
|
||||
'email' => 'The :attribute field must be a valid email address.',
|
||||
'ends_with' => 'The :attribute field must end with one of the following: :values.',
|
||||
'enum' => 'The selected :attribute is invalid.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute field must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'gt' => [
|
||||
'array' => 'The :attribute field must have more than :value items.',
|
||||
'file' => 'The :attribute field must be greater than :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be greater than :value.',
|
||||
'string' => 'The :attribute field must be greater than :value characters.',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'The :attribute field must have :value items or more.',
|
||||
'file' => 'The :attribute field must be greater than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be greater than or equal to :value.',
|
||||
'string' => 'The :attribute field must be greater than or equal to :value characters.',
|
||||
],
|
||||
'image' => 'The :attribute field must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field must exist in :other.',
|
||||
'integer' => 'The :attribute field must be an integer.',
|
||||
'ip' => 'The :attribute field must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute field must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute field must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute field must be a valid JSON string.',
|
||||
'lowercase' => 'The :attribute field must be lowercase.',
|
||||
'lt' => [
|
||||
'array' => 'The :attribute field must have less than :value items.',
|
||||
'file' => 'The :attribute field must be less than :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be less than :value.',
|
||||
'string' => 'The :attribute field must be less than :value characters.',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'The :attribute field must not have more than :value items.',
|
||||
'file' => 'The :attribute field must be less than or equal to :value kilobytes.',
|
||||
'numeric' => 'The :attribute field must be less than or equal to :value.',
|
||||
'string' => 'The :attribute field must be less than or equal to :value characters.',
|
||||
],
|
||||
'mac_address' => 'The :attribute field must be a valid MAC address.',
|
||||
'max' => [
|
||||
'array' => 'The :attribute field must not have more than :max items.',
|
||||
'file' => 'The :attribute field must not be greater than :max kilobytes.',
|
||||
'numeric' => 'The :attribute field must not be greater than :max.',
|
||||
'string' => 'The :attribute field must not be greater than :max characters.',
|
||||
],
|
||||
'max_digits' => 'The :attribute field must not have more than :max digits.',
|
||||
'mimes' => 'The :attribute field must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute field must be a file of type: :values.',
|
||||
'min' => [
|
||||
'array' => 'The :attribute field must have at least :min items.',
|
||||
'file' => 'The :attribute field must be at least :min kilobytes.',
|
||||
'numeric' => 'The :attribute field must be at least :min.',
|
||||
'string' => 'The :attribute field must be at least :min characters.',
|
||||
],
|
||||
'min_digits' => 'The :attribute field must have at least :min digits.',
|
||||
'missing' => 'The :attribute field must be missing.',
|
||||
'missing_if' => 'The :attribute field must be missing when :other is :value.',
|
||||
'missing_unless' => 'The :attribute field must be missing unless :other is :value.',
|
||||
'missing_with' => 'The :attribute field must be missing when :values is present.',
|
||||
'missing_with_all' => 'The :attribute field must be missing when :values are present.',
|
||||
'multiple_of' => 'The :attribute field must be a multiple of :value.',
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'not_regex' => 'The :attribute field format is invalid.',
|
||||
'numeric' => 'The :attribute field must be a number.',
|
||||
'password' => [
|
||||
'letters' => 'The :attribute field must contain at least one letter.',
|
||||
'mixed' => 'The :attribute field must contain at least one uppercase and one lowercase letter.',
|
||||
'numbers' => 'The :attribute field must contain at least one number.',
|
||||
'symbols' => 'The :attribute field must contain at least one symbol.',
|
||||
'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.',
|
||||
],
|
||||
'present' => 'The :attribute field must be present.',
|
||||
'prohibited' => 'The :attribute field is prohibited.',
|
||||
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
|
||||
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
|
||||
'prohibits' => 'The :attribute field prohibits :other from being present.',
|
||||
'regex' => 'The :attribute field format is invalid.',
|
||||
'required' => 'The :attribute field is required.',
|
||||
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
|
||||
'required_if' => 'The :attribute field is required when :other is :value.',
|
||||
'required_if_accepted' => 'The :attribute field is required when :other is accepted.',
|
||||
'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 are present.',
|
||||
'required_without' => 'The :attribute field is required when :values is not present.',
|
||||
'required_without_all' => 'The :attribute field is required when none of :values are present.',
|
||||
'same' => 'The :attribute field must match :other.',
|
||||
'size' => [
|
||||
'array' => 'The :attribute field must contain :size items.',
|
||||
'file' => 'The :attribute field must be :size kilobytes.',
|
||||
'numeric' => 'The :attribute field must be :size.',
|
||||
'string' => 'The :attribute field must be :size characters.',
|
||||
],
|
||||
'starts_with' => 'The :attribute field must start with one of the following: :values.',
|
||||
'string' => 'The :attribute field must be a string.',
|
||||
'timezone' => 'The :attribute field must be a valid timezone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'uppercase' => 'The :attribute field must be uppercase.',
|
||||
'url' => 'The :attribute field must be a valid URL.',
|
||||
'ulid' => 'The :attribute field must be a valid ULID.',
|
||||
'uuid' => 'The :attribute field must be a valid UUID.',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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 our attribute placeholder
|
||||
| with something more reader friendly such as "E-Mail Address" instead
|
||||
| of "email". This simply helps us make our message more expressive.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [],
|
||||
|
||||
];
|
||||
1143
laravel/resources/lang/fa.json
Normal file
1143
laravel/resources/lang/fa.json
Normal file
File diff suppressed because it is too large
Load Diff
20
laravel/resources/lang/fa/auth.php
Normal file
20
laravel/resources/lang/fa/auth.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used during authentication for various
|
||||
| messages that we need to display to the user. You are free to modify
|
||||
| these language lines according to your application's requirements.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'اطلاعات وارد شده صحیح نمی باشد',
|
||||
'password' => 'رمزعبور صحیح نیست',
|
||||
'throttle' => 'درخواست بیش از حد مجاز! لطفا بعد از :seconds ثانیه دوباره امتحان کنید',
|
||||
|
||||
];
|
||||
12
laravel/resources/lang/fa/messages.php
Normal file
12
laravel/resources/lang/fa/messages.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'successful' => 'عملیات موفقیت آمیز بود.',
|
||||
'can_not_process' => 'عملیات قابل انجام نمی باشد.',
|
||||
'invalid_credentials' => 'نام کاربری یا رمز عبور اشتباه است',
|
||||
'wrong_current_password' => 'رمز عبور فعلی اشتباه است.',
|
||||
'notification_server_is_down' => 'سرور پیام رسان قطع می باشد.',
|
||||
'the_operator_is_offline' => 'اپراتور آفلاین است.',
|
||||
'operator_could_not_connect' => 'عدم اتصال اپراتور',
|
||||
'combination_of_category_and_subcategory_does_not_exist' => 'ترکیب موضوع و زیر موضوع نا معتبر می باشد',
|
||||
];
|
||||
19
laravel/resources/lang/fa/pagination.php
Normal file
19
laravel/resources/lang/fa/pagination.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are used by the paginator library to build
|
||||
| the simple pagination links. You are free to change them to anything
|
||||
| you want to customize your views to better match your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'previous' => '« قبلی',
|
||||
'next' => 'بعدی »',
|
||||
|
||||
];
|
||||
22
laravel/resources/lang/fa/passwords.php
Normal file
22
laravel/resources/lang/fa/passwords.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Language Lines
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following language lines are the default lines which match reasons
|
||||
| that are given by the password broker for a password update attempt
|
||||
| has failed, such as for an invalid token or invalid new password.
|
||||
|
|
||||
*/
|
||||
|
||||
'reset' => 'رمز عبور شما با موفقیت بازیابی شد',
|
||||
'sent' => 'ایمیلی جهت بازیابی رمزعبور برای شما ارسال شد',
|
||||
'throttled' => 'لطفا اندکی صبر کنید و دوباره امتحان کنید',
|
||||
'token' => 'مشخصه بازیابی رمزعبور شما صحیح نمی باشد',
|
||||
'user' => "کاربری با این اطلاعات وجود ندارد",
|
||||
|
||||
];
|
||||
210
laravel/resources/lang/fa/validation.php
Normal file
210
laravel/resources/lang/fa/validation.php
Normal file
@@ -0,0 +1,210 @@
|
||||
<?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 باید تایید شود',
|
||||
'accepted_if' => 'زمانی که گزینه :other برابر :value است :attribute باید تایید شود',
|
||||
'active_url' => 'گزینه :attribute یک آدرس سایت معتبر نیست',
|
||||
'after' => 'گزینه :attribute باید تاریخی بعد از :date باشد',
|
||||
'after_or_equal' => 'گزینه :attribute باید تاریخی مساوی یا بعد از :date باشد',
|
||||
'alpha' => 'گزینه :attribute باید تنها شامل حروف باشد',
|
||||
'alpha_dash' => 'گزینه :attribute باید تنها شامل حروف، اعداد، خط تیره و زیر خط باشد',
|
||||
'alpha_num' => 'گزینه :attribute باید تنها شامل حروف و اعداد باشد',
|
||||
'array' => 'گزینه :attribute باید آرایه باشد',
|
||||
'ascii' => 'گزینه :attribute تنها میتواند شامل تک حرف، عدد یا نماد ها باشد. .',
|
||||
'before' => 'گزینه :attribute باید تاریخی قبل از :date باشد',
|
||||
'before_or_equal' => 'گزینه :attribute باید تاریخی مساوی یا قبل از :date باشد',
|
||||
'between' => [
|
||||
'array' => 'گزینه :attribute باید بین :min و :max آیتم باشد',
|
||||
'file' => 'گزینه :attribute باید بین :min و :max کیلوبایت باشد',
|
||||
'numeric' => 'گزینه :attribute باید بین :min و :max باشد',
|
||||
'string' => 'گزینه :attribute باید بین :min و :max کاراکتر باشد',
|
||||
],
|
||||
'boolean' => 'گزینه :attribute تنها می تواند صحیح یا غلط باشد',
|
||||
'confirmed' => 'تایید مجدد گزینه :attribute صحیح نمی باشد',
|
||||
'current_password' => 'رمزعبور صحیح نمی باشد',
|
||||
'date' => 'گزینه :attribute یک تاریخ صحیح نمی باشد',
|
||||
'date_equals' => 'گزینه :attribute باید تاریخی مساوی با :date باشد',
|
||||
'date_format' => 'گزینه :attribute با فرمت :format همخوانی ندارد',
|
||||
'decimal' => 'گزینه :attribute باید :decimal رقم اعشار داشته باشد.',
|
||||
'declined' => 'گزینه :attribute باید رد شود',
|
||||
'declined_if' => 'گزینه :attribute زمانی که :other برابر :value است باید رد شود',
|
||||
'different' => 'گزینه :attribute و :other باید متفاوت باشند',
|
||||
'digits' => 'گزینه :attribute باید :digits عدد باشد',
|
||||
'digits_between' => 'گزینه :attribute باید بین :min و :max عدد باشد',
|
||||
'dimensions' => 'ابعاد تصویر گزینه :attribute مجاز نمی باشد',
|
||||
'distinct' => 'گزینه :attribute دارای افزونگی داده می باشد',
|
||||
'doesnt_end_with' => 'گزینه :attribute نباید با این مقادیر به پایان برسد: :values.',
|
||||
'doesnt_start_with' => 'گزینه :attribute نباید با این مقادیر شروع شود: :values.',
|
||||
'email' => 'گزینه :attribute باید یک آدرس ایمیل صحیح باشد',
|
||||
'ends_with' => 'گزینه :attribute باید با یکی از این مقادیر پایان یابد، :values',
|
||||
'enum' => 'گزینه :attribute صحیح نمی باشد',
|
||||
'exists' => 'گزینه انتخاب شده :attribute صحیح نمی باشد',
|
||||
'file' => 'گزینه :attribute باید یک فایل باشد',
|
||||
'filled' => 'گزینه :attribute نمی تواند خالی باشد',
|
||||
'gt' => [
|
||||
'array' => 'گزینه :attribute باید بیشتر از :value آیتم باشد',
|
||||
'file' => 'گزینه :attribute باید بزرگتر از :value کیلوبایت باشد',
|
||||
'numeric' => 'گزینه :attribute باید بزرگتر از :value باشد',
|
||||
'string' => 'گزینه :attribute باید بزرگتر از :value کاراکتر باشد',
|
||||
],
|
||||
'gte' => [
|
||||
'array' => 'گزینه :attribute باید :value آیتم یا بیشتر داشته باشد',
|
||||
'file' => 'گزینه :attribute باید بزرگتر یا مساوی :value کیلوبایت باشد',
|
||||
'numeric' => 'گزینه :attribute باید بزرگتر یا مساوی :value باشد',
|
||||
'string' => 'گزینه :attribute باید بزرگتر یا مساوی :value کاراکتر باشد',
|
||||
],
|
||||
'image' => 'گزینه :attribute باید از نوع تصویر باشد',
|
||||
'in' => 'گزینه انتخابی :attribute صحیح نمی باشد',
|
||||
'in_array' => 'گزینه :attribute در :other وجود ندارد',
|
||||
'integer' => 'گزینه :attribute باید از نوع عددی باشد',
|
||||
'ip' => 'گزینه :attribute باید آی پی آدرس باشد',
|
||||
'ipv4' => 'گزینه :attribute باید آی پی آدرس ورژن 4 باشد',
|
||||
'ipv6' => 'گزینه :attribute باید آی پی آدرس ورژن 6 باشد',
|
||||
'json' => 'گزینه :attribute باید از نوع رشته جیسون باشد',
|
||||
'lowercase' => 'گزینه :attribute باید با حروف کوچک باشد.',
|
||||
'lt' => [
|
||||
'array' => 'گزینه :attribute باید کمتر از :value آیتم داشته باشد',
|
||||
'file' => 'گزینه :attribute باید کمتر از :value کیلوبایت باشد',
|
||||
'numeric' => 'گزینه :attribute باید کمتر از :value باشد',
|
||||
'string' => 'گزینه :attribute باید کمتر از :value کاراکتر باشد',
|
||||
],
|
||||
'lte' => [
|
||||
'array' => 'گزینه :attribute نباید کمتر از :value آیتم داشته باشد',
|
||||
'file' => 'گزینه :attribute باید مساوی یا کمتر از :value کیلوبایت باشد',
|
||||
'numeric' => 'گزینه :attribute باید مساوی یا کمتر از :value باشد',
|
||||
'string' => 'گزینه :attribute باید مساوی یا کمتر از :value کاراکتر باشد',
|
||||
],
|
||||
'mac_address' => 'گزینه :attribute باید یک مک آدرس معتبر باشد',
|
||||
'max' => [
|
||||
'array' => 'گزینه :attribute نباید بیشتر از :max آیتم داشته باشد',
|
||||
'file' => 'گزینه :attribute نباید بزرگتر از :max کیلوبایت باشد',
|
||||
'numeric' => 'گزینه :attribute نباید بزرگتر از :max باشد',
|
||||
'string' => 'گزینه :attribute نباید بزرگتر از :max کاراکتر باشد',
|
||||
],
|
||||
'max_digits' => 'گزینه :attribute نباید بیشتر از :max رقم باشد',
|
||||
'mimes' => 'گزینه :attribute باید دارای یکی از این فرمت ها باشد: :values',
|
||||
'mimetypes' => 'گزینه :attribute باید دارای یکی از این فرمت ها باشد: :values',
|
||||
'min' => [
|
||||
'array' => 'گزینه :attribute باید حداقل :min آیتم داشته باشد',
|
||||
'file' => 'گزینه :attribute باید حداقل :min کیلوبایت باشد',
|
||||
'numeric' => 'گزینه :attribute باید حداقل :min باشد',
|
||||
'string' => 'گزینه :attribute باید حداقل :min کاراکتر باشد',
|
||||
],
|
||||
'min_digits' => 'گزینه :attribute باید حداقل :min رقم باشد',
|
||||
'missing' => 'گزینه :attribute نباید تعریف شود.',
|
||||
'missing_if' => 'گزینه :attribute زمانی که مقدار :other برابر :value می باشد، نباید تعریف شود',
|
||||
'missing_unless' => 'گزینه :attribute نباید تعریف شود مگر اینکه گزینه :other برابر :value باشد',
|
||||
'missing_with' => 'گزینه :attribute زمانی که مقدار :values تعریف شده است دیگر نباید تعریف شود.',
|
||||
'missing_with_all' => 'گزینه :attribute زمانی که :values مقدار دارد دیگر نباید تعریف شود.',
|
||||
'multiple_of' => 'گزینه :attribute باید حاصل ضرب :value باشد',
|
||||
'not_in' => 'گزینه انتخابی :attribute صحیح نمی باشد',
|
||||
'not_regex' => 'فرمت گزینه :attribute صحیح نمی باشد',
|
||||
'numeric' => 'گزینه :attribute باید از نوع عددی باشد',
|
||||
'password' => [
|
||||
'letters' => 'گزینه :attribute باید حداقل شامل یک حرف باشد',
|
||||
'mixed' => 'گزینه :attribute باید شامل حداقل یک حرف بزرگ و یک حرف کوچک باشد',
|
||||
'numbers' => 'گزینه :attribute باید شامل حداقل یک عدد باشد',
|
||||
'symbols' => 'گزینه :attribute باید شامل حداقل یک کارکتر خاص باشد',
|
||||
'uncompromised' => 'محتوای وارده شده در :attribute ایمن نمی باشد. لطفا گزینه :attribute را اصلاح فرمایید',
|
||||
],
|
||||
'present' => 'گزینه :attribute باید از نوع درصد باشد',
|
||||
'prohibited' => 'گزینه :attribute مجاز نمی باشد',
|
||||
'prohibited_if' => 'گزینه :attribute زمانی که :other برابر :value باشد مجاز نمی باشد',
|
||||
'prohibited_unless' => 'گزینه :attribute مجاز نیست مگر :other برابر :values باشد',
|
||||
'prohibits' => 'گزینه :attribute باعث ممنوعیت :other می باشد',
|
||||
'regex' => 'فرمت گزینه :attribute صحیح نمی باشد',
|
||||
'required' => 'تکمیل گزینه :attribute الزامی است',
|
||||
'required_array_keys' => 'گزینه :attribute باید شامل مقادیر: :values باشد',
|
||||
'required_if' => 'تکمیل گزینه :attribute زمانی که :other دارای مقدار :value است الزامی می باشد',
|
||||
'required_if_accepted' => 'تکمیل گزینه :attribute زمانی که :other انتخاب شده الزامی است',
|
||||
'required_unless' => 'تکمیل گزینه :attribute الزامی می باشد مگر :other دارای مقدار :values باشد',
|
||||
'required_with' => 'تکمیل گزینه :attribute زمانی که مقدار :values درصد است الزامی است',
|
||||
'required_with_all' => 'تکمیل گزینه :attribute زمانی که مقادیر :values درصد است الزامی می باشد',
|
||||
'required_without' => 'تکمیل گزینه :attribute زمانی که مقدار :values درصد نیست الزامی است',
|
||||
'required_without_all' => 'تکمیل گزینه :attribute زمانی که هیچ کدام از مقادیر :values درصد نیست الزامی است',
|
||||
'same' => 'گزینه های :attribute و :other باید یکی باشند',
|
||||
'size' => [
|
||||
'array' => 'گزینه :attribute باید شامل :size آیتم باشد',
|
||||
'file' => 'گزینه :attribute باید :size کیلوبایت باشد',
|
||||
'numeric' => 'گزینه :attribute باید :size باشد',
|
||||
'string' => 'گزینه :attribute باید :size کاراکتر باشد',
|
||||
],
|
||||
'starts_with' => 'گزینه :attribute باید با یکی از این مقادیر شروع شود، :values',
|
||||
'string' => 'گزینه :attribute باید تنها شامل حروف باشد',
|
||||
'timezone' => 'گزینه :attribute باید از نوع منطقه زمانی صحیح باشد',
|
||||
'unique' => 'این :attribute از قبل ثبت شده است',
|
||||
'uploaded' => 'بارگذاری گزینه :attribute شکست خورد',
|
||||
'uppercase' => 'گزینه :attribute باید با حروف بزرگ باشد',
|
||||
'url' => 'فرمت :attribute اشتباه است',
|
||||
'ulid' => 'گزینه :attribute باید یک ULID صحیح باشد.',
|
||||
'uuid' => 'گزینه :attribute باید یک UUID صحیح باشد',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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 our attribute placeholder
|
||||
| with something more reader friendly such as "E-Mail Address" instead
|
||||
| of "email". This simply helps us make our message more expressive.
|
||||
|
|
||||
*/
|
||||
|
||||
'attributes' => [
|
||||
'name' => 'نام',
|
||||
'username' => 'نام کاربری',
|
||||
'email' => 'ایمیل',
|
||||
'first_name' => 'نام',
|
||||
'last_name' => 'نام خانوادگی',
|
||||
'password' => 'رمز عبور',
|
||||
'password_confirmation' => 'تاییدیه رمز عبور',
|
||||
'full_name' => 'نام کامل',
|
||||
'position' => 'سمت',
|
||||
'gender' => 'جنسیت',
|
||||
'national_id' => 'کدملی',
|
||||
'phone_number' => 'شماره تلفن',
|
||||
'province_id' => 'استان',
|
||||
'roles' => 'نقش ها',
|
||||
'avatar' => 'آواتار',
|
||||
'telephone_id' => 'کد تلفن',
|
||||
'name_fa' => 'نام فارسی',
|
||||
'permissions' => 'دسترسی ها',
|
||||
'current_password' => 'رمز عبور فعلی',
|
||||
'new_password' => 'رمز عبور جدید',
|
||||
'caller_phone_number' => 'شماره تلفن تماس گیرنده',
|
||||
'category_id' => 'موضوع',
|
||||
'subcategory_id' => 'زیر موضوع',
|
||||
'description' => 'توضیحات',
|
||||
'size' => 'حداکثر تعداد'
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user