delete lan
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
<?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.',
|
||||
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
|
||||
|
||||
];
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'successful' => 'The Operation was successful',
|
||||
'incorrect_current_password' => 'The current password is incorrect.',
|
||||
'incorrect_or_username_password' => 'The username or password is incorrect.',
|
||||
];
|
||||
@@ -1,19 +0,0 @@
|
||||
<?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 »',
|
||||
|
||||
];
|
||||
@@ -1,22 +0,0 @@
|
||||
<?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 e-mailed 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 e-mail address.",
|
||||
|
||||
];
|
||||
@@ -1,151 +0,0 @@
|
||||
<?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 must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
|
||||
'alpha' => 'The :attribute may only contain letters.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_equals' => 'The :attribute must be a date equal to :date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'ends_with' => 'The :attribute must end with one of the following: :values.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The :attribute field must have a value.',
|
||||
'gt' => [
|
||||
'numeric' => 'The :attribute must be greater than :value.',
|
||||
'file' => 'The :attribute must be greater than :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than :value characters.',
|
||||
'array' => 'The :attribute must have more than :value items.',
|
||||
],
|
||||
'gte' => [
|
||||
'numeric' => 'The :attribute must be greater than or equal :value.',
|
||||
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be greater than or equal :value characters.',
|
||||
'array' => 'The :attribute must have :value items or more.',
|
||||
],
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'ipv4' => 'The :attribute must be a valid IPv4 address.',
|
||||
'ipv6' => 'The :attribute must be a valid IPv6 address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'lt' => [
|
||||
'numeric' => 'The :attribute must be less than :value.',
|
||||
'file' => 'The :attribute must be less than :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than :value characters.',
|
||||
'array' => 'The :attribute must have less than :value items.',
|
||||
],
|
||||
'lte' => [
|
||||
'numeric' => 'The :attribute must be less than or equal :value.',
|
||||
'file' => 'The :attribute must be less than or equal :value kilobytes.',
|
||||
'string' => 'The :attribute must be less than or equal :value characters.',
|
||||
'array' => 'The :attribute must not have more than :value items.',
|
||||
],
|
||||
'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.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'mimetypes' => 'The :attribute must be a file of type: :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.',
|
||||
],
|
||||
'not_in' => 'The selected :attribute is invalid.',
|
||||
'not_regex' => 'The :attribute format is invalid.',
|
||||
'numeric' => 'The :attribute must be a number.',
|
||||
'password' => 'The password is incorrect.',
|
||||
'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 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 and :other must match.',
|
||||
'size' => [
|
||||
'numeric' => 'The :attribute must be :size.',
|
||||
'file' => 'The :attribute must be :size kilobytes.',
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'starts_with' => 'The :attribute must start with one of the following: :values.',
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'uploaded' => 'The :attribute failed to upload.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
'uuid' => 'The :attribute 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' => [],
|
||||
|
||||
];
|
||||
@@ -1,19 +0,0 @@
|
||||
<?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' => 'اطلاعات وارد شده صحیح نمی باشد.',
|
||||
'throttle' => 'تعداد تلاش های ناموفق زیاد بود . لطفا بعد از :seconds ثانیه ی دیگر تلاش کنید .',
|
||||
|
||||
];
|
||||
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'successful' => 'عملیات موفق آمیز بود',
|
||||
'incorrect_current_password' => 'رمز عبور فعلی اشتباه است',
|
||||
'incorrect_or_username_password' => 'رمز عبور یا نام کاربری اشتباه است'
|
||||
];
|
||||
@@ -1,19 +0,0 @@
|
||||
<?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' => 'بعدی »',
|
||||
|
||||
];
|
||||
@@ -1,22 +0,0 @@
|
||||
<?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' => 'token تغییر گذر واژه (لینک) نامعتبر است.',
|
||||
'user' => "کاربری با این ایمیل یافت نشد.",
|
||||
|
||||
];
|
||||
@@ -1,292 +0,0 @@
|
||||
<?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.
|
||||
|
|
||||
*/
|
||||
'prohibited' => ':attribute در این حالت مجاز نیست.',
|
||||
"accepted" => ":attribute باید پذیرفته شده باشد.",
|
||||
"active_url" => "آدرس :attribute معتبر نیست",
|
||||
"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 کیلوبایت باشد.",
|
||||
"string" => ":attribute باید بین :min و :max کاراکتر باشد.",
|
||||
"array" => ":attribute باید بین :min و :max آیتم باشد.",
|
||||
],
|
||||
"boolean" => "فیلد :attribute فقط میتواند صحیح و یا غلط باشد",
|
||||
"confirmed" => ":attribute با تاییدیه مطابقت ندارد.",
|
||||
"date" => ":attribute یک تاریخ معتبر نیست.",
|
||||
'date_equals' => ':attribute باید برابر تاریخ :date باشد.',
|
||||
"date_format" => ":attribute با الگوی :format مطاقبت ندارد.",
|
||||
"different" => ":attribute و :other باید متفاوت باشند.",
|
||||
"digits" => ":attribute باید :digits رقم باشد.",
|
||||
"digits_between" => ":attribute باید بین :min و :max رقم باشد.",
|
||||
'dimensions' => 'dimensions مربوط به فیلد :attribute اشتباه است.',
|
||||
'distinct' => ':attribute مقدار تکراری دارد.',
|
||||
"email" => "فرمت :attribute معتبر نیست.",
|
||||
'ends_with' => ':attribute باید با این مقدار تمام شود: :values.',
|
||||
"exists" => ":attribute انتخاب شده، معتبر نیست.",
|
||||
'file' => 'فیلد :attribute باید فایل باشد.',
|
||||
"filled" => "فیلد :attribute الزامی است",
|
||||
'gt' => [
|
||||
'numeric' => ':attribute باید بیشتر از :value باشد.',
|
||||
'file' => ':attribute باید بیشتر از :value کیلوبایت باشد.',
|
||||
'string' => ':attribute باید بیشتر از :value کاراکتر باشد.',
|
||||
'array' => ':attribute باید بیشتر از :value ایتم باشد.',
|
||||
],
|
||||
'gte' => [
|
||||
'numeric' => ':attribute باید بیشتر یا برابر :value باشد.',
|
||||
'file' => ':attribute باید بیشتر یا برابر :value کیلوبایت باشد.',
|
||||
'string' => ':attribute باید بیشتر یا برابر :value کاراکتر باشد.',
|
||||
'array' => ':attribute باید :value ایتم یا بیشتر را داشته باشد.',
|
||||
],
|
||||
"image" => ":attribute باید تصویر باشد.",
|
||||
"in" => ":attribute انتخاب شده، معتبر نیست.",
|
||||
"integer" => ":attribute باید نوع داده ای عددی (integer) باشد.",
|
||||
"ip" => ":attribute باید IP آدرس معتبر باشد.",
|
||||
'ipv4' => ':attribute باید یک ادرس درست IPv4 باشد.',
|
||||
'ipv6' => ':attribute باید یک ادرس درست IPv6 باشد.',
|
||||
'json' => ':attribute یک مقدار درست JSON باشد.',
|
||||
'lt' => [
|
||||
'numeric' => ':attribute باید کمتر از :value باشد.',
|
||||
'file' => ':attribute باید کمتر از :value کیلوبایت باشد.',
|
||||
'string' => ':attribute باید کمتر از :value کاراکتر باشد.',
|
||||
'array' => ':attribute باید :value ایتم یا کمتر را داشته باشد.',
|
||||
],
|
||||
'lte' => [
|
||||
'numeric' => ':attribute باید کمتر یا برابر :value باشد.',
|
||||
'file' => ':attribute باید کمتر یا برابر :value کیلوبایت باشد.',
|
||||
'string' => ':attribute باید کمتر یا برابر :value کاراکتر باشد.',
|
||||
'array' => ':attribute باید :value ایتم یا کمتر را داشته باشد.',
|
||||
],
|
||||
"max" => [
|
||||
"numeric" => ":attribute نباید بزرگتر از :max باشد.",
|
||||
"file" => ":attribute نباید بزرگتر از :max کیلوبایت باشد.",
|
||||
"string" => ":attribute نباید بیشتر از :max کاراکتر باشد.",
|
||||
"array" => ":attribute نباید بیشتر از :max آیتم باشد.",
|
||||
],
|
||||
"mimes" => ":attribute باید یکی از فرمت های :values باشد.",
|
||||
'mimetypes' => ':attribute باید تایپ ان از نوع: :values باشد.',
|
||||
"min" => [
|
||||
"numeric" => ":attribute نباید کوچکتر از :min باشد.",
|
||||
"file" => ":attribute نباید کوچکتر از :min کیلوبایت باشد.",
|
||||
"string" => ":attribute نباید کمتر از :min کاراکتر باشد.",
|
||||
"array" => ":attribute نباید کمتر از :min آیتم باشد.",
|
||||
],
|
||||
"not_in" => ":attribute انتخاب شده، معتبر نیست.",
|
||||
'not_regex' => ':attribute فرمت معتبر نیست.',
|
||||
"numeric" => ":attribute باید شامل عدد باشد.",
|
||||
'password' => 'رمز عبور اشتباه است.',
|
||||
'present' => ':attribute باید وجود داشته باشد.',
|
||||
"regex" => ":attribute یک فرمت معتبر نیست",
|
||||
"required" => "فیلد :attribute الزامی است",
|
||||
"required_if" => "فیلد :attribute هنگامی که :other برابر با :value است، الزامیست.",
|
||||
'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" => [
|
||||
"numeric" => ":attribute باید برابر با :size باشد.",
|
||||
"file" => ":attribute باید برابر با :size کیلوبایت باشد.",
|
||||
"string" => ":attribute باید برابر با :size کاراکتر باشد.",
|
||||
"array" => ":attribute باسد شامل :size آیتم باشد.",
|
||||
],
|
||||
'starts_with' => ':attribute باید با یکی از این مقادیر شروع شود: :values.',
|
||||
"string" => ":attribute باید رشته باشد.",
|
||||
"timezone" => "فیلد :attribute باید یک منطقه صحیح باشد.",
|
||||
"unique" => ":attribute قبلا انتخاب شده است.",
|
||||
'uploaded' => 'فیلد :attribute به درستی اپلود نشد.',
|
||||
"url" => "فرمت آدرس :attribute اشتباه است.",
|
||||
'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' => [],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| 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" => "نام کاربری",
|
||||
"national_code" => "کد ملی",
|
||||
"email" => "پست الکترونیکی",
|
||||
"first_name" => "نام",
|
||||
"last_name" => "نام خانوادگی",
|
||||
"family" => "نام خانوادگی",
|
||||
"password" => "رمز عبور",
|
||||
"password_confirmation" => "تاییدیه ی رمز عبور",
|
||||
"city" => "شهر",
|
||||
"country" => "کشور",
|
||||
"address" => "نشانی",
|
||||
"phone" => "تلفن",
|
||||
"mobile" => "تلفن همراه",
|
||||
"age" => "سن",
|
||||
"sex" => "جنسیت",
|
||||
"gender" => "جنسیت",
|
||||
"day" => "روز",
|
||||
"month" => "ماه",
|
||||
"year" => "سال",
|
||||
"hour" => "ساعت",
|
||||
"minute" => "دقیقه",
|
||||
"second" => "ثانیه",
|
||||
"title" => "عنوان",
|
||||
"text" => "متن",
|
||||
"content" => "محتوا",
|
||||
"description" => "توضیحات",
|
||||
"excerpt" => "گلچین کردن",
|
||||
"date" => "تاریخ",
|
||||
"time" => "زمان",
|
||||
"available" => "موجود",
|
||||
"size" => "اندازه",
|
||||
"file" => "فایل",
|
||||
"fullname" => "نام کامل",
|
||||
'current_password' => 'رمز عبور فعلی',
|
||||
'new_password' => 'رمز عبور جدید',
|
||||
'degree' => 'مدرک تحصیلی',
|
||||
'major' => 'شغل',
|
||||
'avatar' => 'آواتار',
|
||||
'lat' => 'طول جغرافیایی',
|
||||
'lng' => 'عرض جغرافیایی',
|
||||
'azmayesh_type_id' => 'نوع آزمایش',
|
||||
'request_date' => 'تاریخ درخواست',
|
||||
'report_date' => 'تاریخ گزارش',
|
||||
'request_number' => 'شماره درخواست',
|
||||
'employer' => 'کارفرما',
|
||||
'contractor' => 'پیمانکار',
|
||||
'work_number' => 'شماره کار',
|
||||
'project_name' => 'نام پروژه',
|
||||
'consultant' => 'مشاور',
|
||||
'applicant' => 'متقاضی',
|
||||
'province_id' => 'استان',
|
||||
'azmayesh_id' => 'آزمایش',
|
||||
'data' => 'داده',
|
||||
'fields' => 'فیلد ها',
|
||||
'fields.*.name' => 'نام فیلد',
|
||||
'fields.*.unit' => 'واحد فیلد',
|
||||
'fields.*.type' => 'نوع فیلد',
|
||||
'fields.*.option' => 'گزینه های فیلد',
|
||||
'cmms_machine_id' => 'کد یکتا ماشین',
|
||||
'contract_subitem_id' => 'کد یکتای پروژه',
|
||||
'base_price' => 'قیمت پایه',
|
||||
'unit' => 'واحد',
|
||||
'phone_number'=> 'شماره تلفن',
|
||||
'final_description' => 'توضیحات نهایی',
|
||||
'point' => 'منطقه' ,
|
||||
'info_id' => 'دسته بندی' ,
|
||||
'activity_date' => 'تاریخ فعالیت',
|
||||
'activity_time' => 'زمان فعالیت',
|
||||
'recognize_picture' => 'عکس بازدید',
|
||||
'recognize_picture_second' => 'عکس بازدید',
|
||||
'axis_type_id' => 'نوع محور',
|
||||
'supervisor_description' => 'توضیحات کارشناس',
|
||||
'need_judiciary' => 'دستور قضایی' ,
|
||||
'operator_description' => 'توضیحات ناظر',
|
||||
'judiciary_document' => 'فایل دستور قضایی',
|
||||
'action_picture' => 'عکس اقدامات',
|
||||
'finish_picture' => 'عکس پایان کار',
|
||||
'action_date' => 'زمان فالیت',
|
||||
'evidence_picture' => 'تصویر مشاهده شده',
|
||||
'deposit_insurance_image' => 'عکس مبلغ بیمه',
|
||||
'deposit_insurance_amount' => ' مبلغ بیمه',
|
||||
'deposit_daghi_image' => 'عکس مبلغ بیمه',
|
||||
'deposit_daghi_amount' => 'مبلغ داغی',
|
||||
'is_foreign' => 'ناوگان خارجی',
|
||||
'axis_name' => 'نام محور',
|
||||
'driver_name' => 'اسم راننده',
|
||||
'plaque' => 'پلاک',
|
||||
'driver_national_code' => 'کدملی راننده',
|
||||
'driver_phone_number' => 'شماره موبایل راننده',
|
||||
'accident_type' => 'نوع خسارت',
|
||||
'accident_date' => 'تاریخ تصادف',
|
||||
'accident_time' => 'زمان تصادف',
|
||||
'report_base' => 'گزارش',
|
||||
'police_file' => 'تصویر کروکی یا نامه پلیس راه',
|
||||
'police_serial' => 'شماره کروکی یا نامه پلیس راه',
|
||||
'police_file_date' => 'تاریخ کروکی یا نامه پلیس راه',
|
||||
'damage_picture1' => 'عکس تصادف',
|
||||
'damage_picture2' => 'عکس تصادف',
|
||||
'damage_items' => 'ایتم های خسارت',
|
||||
'damage_items.*.value' => 'میزان ایتم های خسارت',
|
||||
'damage_items.*.amount' => 'هزینه خسارت',
|
||||
'driver_rate' => 'سهم راننده',
|
||||
'code' => 'کد',
|
||||
'rahdaran' => 'افراد',
|
||||
'machines' => 'خودرو',
|
||||
'driver' => 'راننده',
|
||||
'zone' => 'منطقه',
|
||||
'start_date' => 'تاریخ شروع',
|
||||
'end_date' => 'تاریخ پایان',
|
||||
'end_point' => 'مقصد',
|
||||
'area' => 'منطقه عملیاتی',
|
||||
'area.type' => 'نوع محدوده' ,
|
||||
'area.coordinates' => 'مختصات محدوده',
|
||||
'category_id' => 'دسته بندی',
|
||||
'explanation' => 'توضیحات',
|
||||
'requested_machines' => 'ماشین های درخواستی',
|
||||
'type' => 'نوع',
|
||||
'road_observed_id' => 'کد واکنش سریع',
|
||||
'city_id' => 'شهر',
|
||||
'expert_description' => 'توضیح کارشناس',
|
||||
'need_payment' => 'نیاز به پرداخت',
|
||||
'request_id' => 'شناسه درخواست',
|
||||
'access_road' => 'راه دسترسی',
|
||||
'access_road.type' => 'نوع راه دسترسی',
|
||||
'access_road.coordinates' => 'مختصات راه دسترسی',
|
||||
'final_area' => 'محدوده نهایی',
|
||||
'final_area.type' => 'نوع محدوده نهایی',
|
||||
'final_area.coordinates' => 'مختصات محدوده نهایی',
|
||||
'final_plan' => 'طرح نهایی',
|
||||
'final_plan.type' => 'نوع طرح نهایی',
|
||||
'final_plan.coordinate' => 'مختصات طرح نهایی',
|
||||
'national_id' => 'کد ملی' ,
|
||||
'requested_organization' => 'سازمان درخواستکننده',
|
||||
'plan_group' => 'گروه طرح',
|
||||
'plan_title' => 'موضوع طرح',
|
||||
'worksheet' => 'شناسه کاربرگ',
|
||||
'response_options' => 'گزینه های پاسخ',
|
||||
'isic' => 'کد ISIC',
|
||||
'primary_area' => 'محدوده اولیه',
|
||||
'primary_area.type' => 'نوع محدوده اولیه',
|
||||
'primary_area.coordinates' => 'مختصات محدوده اولیه',
|
||||
'forbidden_area' => 'محدوده ممنوعه',
|
||||
'forbidden_area.type' => 'نوع محدوده محدوده',
|
||||
'forbidden_area.coordinates' => 'مختصات محدوده ممنوعه',
|
||||
'edarate_ostani_id' => 'اداره استانی',
|
||||
'edarate_shahri_id' => ' اداره شهری'
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user