diff --git a/addons/default/visiosoft/advs-module/resources/config/settings/sections.php b/addons/default/visiosoft/advs-module/resources/config/settings/sections.php index 92d4a8d3c..8ac2928e0 100644 --- a/addons/default/visiosoft/advs-module/resources/config/settings/sections.php +++ b/addons/default/visiosoft/advs-module/resources/config/settings/sections.php @@ -37,6 +37,8 @@ return [ 'create_ad' => [ 'title' => 'visiosoft.module.advs::section.create_ad', 'fields' => [ + 'steps_color', + 'create_ad_button_color', 'hide_standard_price_field', 'hide_options_field', 'hide_village_field', diff --git a/addons/default/visiosoft/advs-module/resources/config/settings/settings.php b/addons/default/visiosoft/advs-module/resources/config/settings/settings.php index d3c42dd98..70cb3439a 100644 --- a/addons/default/visiosoft/advs-module/resources/config/settings/settings.php +++ b/addons/default/visiosoft/advs-module/resources/config/settings/settings.php @@ -350,4 +350,16 @@ return [ 'bind' => 'override_text', 'env' => 'OVERRIDE_TEXT', ], + 'steps_color' => [ + "type" => "anomaly.field_type.colorpicker", + "config" => [ + "default_value" => '#209579', + ] + ], + 'create_ad_button_color' => [ + "type" => "anomaly.field_type.colorpicker", + "config" => [ + "default_value" => '#00a651', + ] + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/css/list.css b/addons/default/visiosoft/advs-module/resources/css/list.css index 70dc52e09..e793b0ebc 100644 --- a/addons/default/visiosoft/advs-module/resources/css/list.css +++ b/addons/default/visiosoft/advs-module/resources/css/list.css @@ -220,4 +220,8 @@ a.sort-by-open-dropdown:hover { .gallery-tn { object-fit: cover; +} + +#listFilterForm .card-header { + padding: 5px 0; } \ No newline at end of file diff --git a/addons/default/visiosoft/advs-module/resources/css/post-category.css b/addons/default/visiosoft/advs-module/resources/css/post-category.css index e3b8d8645..62a146a6d 100644 --- a/addons/default/visiosoft/advs-module/resources/css/post-category.css +++ b/addons/default/visiosoft/advs-module/resources/css/post-category.css @@ -52,8 +52,9 @@ display: none; } -.next-stap img { +.next-stap svg { width: 60px; + height: 60px; } .next-stap p { @@ -62,7 +63,7 @@ } .btn-1 { - background-color: #00a651; + background-color: {{ setting_value('visiosoft.module.advs::create_ad_button_color') }}; padding: 5px 30px 7px; color: #fff; border: 1px solid #dadada; diff --git a/addons/default/visiosoft/advs-module/resources/css/step.scss b/addons/default/visiosoft/advs-module/resources/css/step.scss index b898317a4..fd08b6c4d 100644 --- a/addons/default/visiosoft/advs-module/resources/css/step.scss +++ b/addons/default/visiosoft/advs-module/resources/css/step.scss @@ -6,16 +6,10 @@ min-width: 0; &.current { - &::after { - background: linear-gradient(to right, #209579 50%, #dfdfdf 50%); - } - .bullet { - color: #209579; background-color: #fff; - border: .2rem solid #209579; @media only screen and (min-width: 768px) { - border: .3rem solid #209579; + border-width: .3rem; } } @@ -43,7 +37,6 @@ left: 0; z-index: -1; width: 100%; - background-color: #209579; @media only screen and (min-width: 768px) { height: .3rem; top: 1.4rem; @@ -58,7 +51,6 @@ display: inline-block; position: relative; line-height: 20px; - background-color: #209579; @media only screen and (min-width: 768px) { height: 3rem; width: 3rem; diff --git a/addons/default/visiosoft/advs-module/resources/css/step2.css b/addons/default/visiosoft/advs-module/resources/css/step2.css new file mode 100644 index 000000000..8cc7f023c --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/css/step2.css @@ -0,0 +1,18 @@ +{% set stepsColor = setting_value('visiosoft.module.advs::steps_color') %} + +#stepProgressBar .step.current .bullet { + color: {{ stepsColor }}; + border: 0.2rem solid {{ stepsColor }}; +} + +#stepProgressBar .step .bullet { + background-color: {{ stepsColor }}; +} + +#stepProgressBar .step.current::after { + background: linear-gradient(to right, {{ stepsColor }} 50%, #dfdfdf 50%); +} + +#stepProgressBar .step::after { + background-color: {{ stepsColor }}; +} diff --git a/addons/default/visiosoft/advs-module/resources/js/cats.js b/addons/default/visiosoft/advs-module/resources/js/cats.js index 2b0536cac..0879d9127 100644 --- a/addons/default/visiosoft/advs-module/resources/js/cats.js +++ b/addons/default/visiosoft/advs-module/resources/js/cats.js @@ -26,7 +26,7 @@ $(document).ready(function () { success: function (response) { hideLoader(); if(response['title'] != undefined){ - response['success'] ? $('.cross-icon').hide() : $('.check-icon').hide(); + response['success'] ? $('.post-icon > svg:last-of-type').hide() : $('.post-icon > svg:first-of-type').hide(); let btn = ''; if (response['link']) { diff --git a/addons/default/visiosoft/advs-module/resources/js/location.js b/addons/default/visiosoft/advs-module/resources/js/location.js index d53f3abd0..3c8af3e39 100644 --- a/addons/default/visiosoft/advs-module/resources/js/location.js +++ b/addons/default/visiosoft/advs-module/resources/js/location.js @@ -131,17 +131,17 @@ var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions) function haritaIslem() { var str = ''; - if ($('select[name="' + countrySelectName + '"]').val() != "") { - str += $('select[name="' + countrySelectName + '"] :selected').text() + ' '; + if ($('select[name="' + countrySelectName + '"]').val()) { + str += $('select[name="' + countrySelectName + '"] :selected').first().text() + ' '; } - if ($('select[name="' + citySelectName + '"]').val() != "") { - str += $('select[name="' + citySelectName + '"] :selected').text() + ' '; + if ($('select[name="' + citySelectName + '"]').val()) { + str += $('select[name="' + citySelectName + '"] :selected').first().text() + ' '; } - if ($('select[name="' + districtSelectName + '"]').val() != "") { - str += $('select[name="' + districtSelectName + '"] :selected').text() + ' '; + if ($('select[name="' + districtSelectName + '"]').val()) { + str += $('select[name="' + districtSelectName + '"] :selected').first().text() + ' '; } - if ($('select[name="' + neighborhoodSelectName + '"]').val() != "") { - str += $('select[name="' + neighborhoodSelectName + '"] :selected').text() + ' '; + if ($('select[name="' + neighborhoodSelectName + '"]').val()) { + str += $('select[name="' + neighborhoodSelectName + '"] :selected').first().text() + ' '; } if (!str) { diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/button.php b/addons/default/visiosoft/advs-module/resources/lang/ar/button.php index 2133fe5e8..862c857d8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'اعلان جديد', + 'new_classified' => 'تصنيف جديد', 'new_category' => 'فئة جديدة', 'new_country' => 'بلد جديد', 'new_city' => 'مدينة جديدة', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'تكوين خيار جديد', 'create_configurations' => 'تكوين التكوينات', 'replicate' => 'استنساخ', + 'fast_create' => 'إنشاء سريع', + 'publish' => 'ينشر', + 'import' => 'استيراد', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/field.php b/addons/default/visiosoft/advs-module/resources/lang/ar/field.php index cfe980640..de4353cf7 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'الفئة الفرعية 6' ], + 'cat8' => [ + 'name' => 'الفئة الفرعية 7' + ], + 'cat9' => [ + 'name' => 'الفئة الفرعية 8' + ], + 'cat10' => [ + 'name' => 'الفئة الفرعية 9' + ], 'currency' => [ 'name' => 'دقة' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'تفاصيل قائمة', 'preview' => 'معاينة', 'congratulations' => 'تهانينا', + 'ad_desc' => 'وصف الإعلان', + 'upload_photos' => 'تحميل الصور', + 'additional_fields' => 'حقول إضافية', + 'ad_location' => 'موقع الإعلان', 'free' => 'مجانا', 'ad_date' => 'تاريخ الإعلان', diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/message.php b/addons/default/visiosoft/advs-module/resources/lang/ar/message.php index 08bf96a8d..b039c7028 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "هذا الإعلان غير موجود!", 'select_location_error' => "الرجاء تحديد موقع على الخريطة!", 'this_ad_is_not_valid_anymore' => "هذا الإعلان غير صالح بعد الآن!", + 'approve_status_change' => "تم تعيين حالة إعلانك على نشطة!", + 'passive_status_change' => "تم تعيين حالة إعلانك على سلبية!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/section.php b/addons/default/visiosoft/advs-module/resources/lang/ar/section.php index 1c62db9c1..990f1490d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'ترتيب', ], + 'translations' => 'الترجمات', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ar/setting.php index 4891f2c1d..8bb78f999 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'المتجر', ], - + 'price_area_hidden' => [ + 'name' => 'منطقة السعر مخفية', + ], 'hide_price_filter' => [ 'name' => 'إخفاء عامل تصفية السعر', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'إظهار مسار التنقل عند إنشاء إعلان', ], + 'show_ads_count' => [ + 'name' => 'إظهار عدد الإعلانات', + 'instructions' => 'عرض الإعلانات الاعتماد على قائمة الفئات اليسرى', + ], + 'show_post_ad_agreement' => [ + 'name' => 'إظهار اتفاقية ما بعد الإعلان', + 'instructions' => 'قم بتشغيل هذا إذا كنت تريد عرض اتفاقية سياسة الخصوصية على صفحة إنشاء الإعلان', + ], + 'override_text' => [ + 'name' => 'تجاوز النص', + 'instructions' => 'القيمة القديمة: قيمة جديدة' + ], + 'steps_color' => [ + 'name' => 'خطوات اللون', + 'instructions' => 'يغير لون الخطوات التدريجية.' + ], + 'create_ad_button_color' => [ + 'name' => 'إنشاء لون زر الإعلان', + 'instructions' => 'يغير الزر الذي يظهر عند الانتهاء من اختيار فئة الإعلان الجديدة.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/button.php b/addons/default/visiosoft/advs-module/resources/lang/az/button.php index 5fe741f5b..fc1ee6b48 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Yeni Adv', + 'new_classified' => 'Yeni təsnif edilmişdir', 'new_category' => 'Yeni kateqoriya', 'new_country' => 'Yeni Ölkə', 'new_city' => 'Yeni Şəhər', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Yeni Seçim konfiqurasiyası', 'create_configurations' => 'Konfiqurasiyalar yaradın', 'replicate' => 'Təkrarlayın', + 'fast_create' => 'Sürətli yaradın', + 'publish' => 'Nəşr edin', + 'import' => 'İdxal', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/field.php b/addons/default/visiosoft/advs-module/resources/lang/az/field.php index 0fa01b47b..ca2f212b4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Alt kateqoriya 6' ], + 'cat8' => [ + 'name' => 'Alt kateqoriya 7' + ], + 'cat9' => [ + 'name' => 'Alt kateqoriya 8' + ], + 'cat10' => [ + 'name' => 'Alt kateqoriya 9' + ], 'currency' => [ 'name' => 'Valyuta' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'Listing Details', 'preview' => 'Önizləmə', 'congratulations' => 'Təbrik edirəm', + 'ad_desc' => 'Reklam Təsviri', + 'upload_photos' => 'Şəkillər yükləyin', + 'additional_fields' => 'Əlavə sahələr', + 'ad_location' => 'Reklam yeri', 'free' => 'Pulsuz', 'ad_date' => 'Reklam Tarixi', diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/message.php b/addons/default/visiosoft/advs-module/resources/lang/az/message.php index d2ae8a1b8..c95d3db49 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Bu reklam mövcud deyil!", 'select_location_error' => "Xahiş edirəm xəritədə bir yer seçin!", 'this_ad_is_not_valid_anymore' => "Bu reklam artıq etibarlı deyil!", + 'approve_status_change' => "Reklamınızın Vəziyyəti Aktivləşdirildi!", + 'passive_status_change' => "Reklamınızın Vəziyyəti Passiv təyin olundu!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/section.php b/addons/default/visiosoft/advs-module/resources/lang/az/section.php index ed9a24d67..da87d50b9 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Konfiqurasiya', ], + 'translations' => 'Tərcümə', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/setting.php b/addons/default/visiosoft/advs-module/resources/lang/az/setting.php index 7e4812b5b..023b49665 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Bazar yeri', ], - + 'price_area_hidden' => [ + 'name' => 'Qiymət sahəsi gizlidir', + ], 'hide_price_filter' => [ 'name' => 'Qiymət filtrini gizlət', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Reklam yaratarkən çörək parçasını göstərin', ], + 'show_ads_count' => [ + 'name' => 'Reklam sayını göstərin', + 'instructions' => 'Sol kateqoriyalar siyahısında reklamların sayını göstərin', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Post Elan Müqaviləsini Göstərin', + 'instructions' => 'Reklam yaratma səhifəsində bir məxfilik siyasəti müqaviləsini göstərmək istəyirsinizsə, bunu aktivləşdirin', + ], + 'override_text' => [ + 'name' => 'Mətni ləğv edin', + 'instructions' => 'Köhnə dəyər: Yeni dəyər' + ], + 'steps_color' => [ + 'name' => 'Adımlar Rəng', + 'instructions' => 'Proqressiv addımların rəngini dəyişdirir.' + ], + 'create_ad_button_color' => [ + 'name' => 'Reklam Düyməsini Rəng Yaradın', + 'instructions' => 'Yeni reklam kateqoriyası seçimi bitdikdə görünən düyməni dəyişdirir.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/button.php b/addons/default/visiosoft/advs-module/resources/lang/bn/button.php index 9a51292f6..fffd2247f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'নতুন অ্যাড', + 'new_classified' => 'নতুন শ্রেণিবদ্ধ', 'new_category' => 'নতুন বিভাগ', 'new_country' => 'নতুন দেশ', 'new_city' => 'নতুন শহর', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'নতুন বিকল্প কনফিগারেশন', 'create_configurations' => 'কনফিগারেশন তৈরি করুন', 'replicate' => 'প্রতিলিপি', + 'fast_create' => 'দ্রুত তৈরি করুন', + 'publish' => 'প্রকাশ করুন', + 'import' => 'আমদানি করুন', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/field.php b/addons/default/visiosoft/advs-module/resources/lang/bn/field.php index dbbe6f259..0555180de 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'উপ বিভাগ 6' ], + 'cat8' => [ + 'name' => 'উপ বিভাগ 7' + ], + 'cat9' => [ + 'name' => 'উপ বিভাগ 8' + ], + 'cat10' => [ + 'name' => 'উপ বিভাগ 9' + ], 'currency' => [ 'name' => 'মুদ্রা' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'তালিকা বিবরণ', 'preview' => 'পূর্বরূপ', 'congratulations' => 'অভিনন্দন', + 'ad_desc' => 'বিজ্ঞাপন বিবরণ', + 'upload_photos' => 'ফটো আপলোড', + 'additional_fields' => 'অতিরিক্ত ক্ষেত্রসমূহ', + 'ad_location' => 'বিজ্ঞাপনের অবস্থান', 'free' => 'ফ্রি', 'ad_date' => 'বিজ্ঞাপন তারিখ', diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/message.php b/addons/default/visiosoft/advs-module/resources/lang/bn/message.php index 695063fc5..3caee866e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "এই বিজ্ঞাপনের অস্তিত্ব নেই!", 'select_location_error' => "দয়া করে মানচিত্রে একটি অবস্থান নির্বাচন করুন!", 'this_ad_is_not_valid_anymore' => "এই বিজ্ঞাপনটি আর বৈধ নয়!", + 'approve_status_change' => "আপনার বিজ্ঞাপনের স্থিতি সক্রিয় হয়ে গেছে!", + 'passive_status_change' => "আপনার বিজ্ঞাপনের স্ট্যাটাসটি প্যাসিভের জন্য সেট হয়ে গেছে!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/section.php b/addons/default/visiosoft/advs-module/resources/lang/bn/section.php index 76aa46fee..4883083ee 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'কনফিগারেশন', ], + 'translations' => 'অনুবাদ', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/setting.php b/addons/default/visiosoft/advs-module/resources/lang/bn/setting.php index 018fba1d1..79b824406 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'মার্কেট প্লেস', ], - + 'price_area_hidden' => [ + 'name' => 'মূল্য অঞ্চল লুকানো', + ], 'hide_price_filter' => [ 'name' => 'দাম ফিল্টার লুকান', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'বিজ্ঞাপন তৈরি করার সময় ব্রেডক্রাম্ব প্রদর্শন করুন', ], + 'show_ads_count' => [ + 'name' => 'বিজ্ঞাপন গণনা দেখান', + 'instructions' => 'বাম বিভাগগুলির তালিকায় বিজ্ঞাপন গণনা দেখান', + ], + 'show_post_ad_agreement' => [ + 'name' => 'পোস্ট বিজ্ঞাপন চুক্তি প্রদর্শন করুন', + 'instructions' => 'আপনি বিজ্ঞাপন তৈরি পৃষ্ঠায় কোনও গোপনীয়তা নীতি চুক্তি প্রদর্শন করতে চাইলে এটি চালু করুন', + ], + 'override_text' => [ + 'name' => 'ওভাররাইড পাঠ্য', + 'instructions' => 'পুরানো মান: নতুন মান' + ], + 'steps_color' => [ + 'name' => 'পদক্ষেপের রঙ', + 'instructions' => 'প্রগতিশীল পদক্ষেপের রঙ পরিবর্তন করে।' + ], + 'create_ad_button_color' => [ + 'name' => 'বিজ্ঞাপন বোতামের রঙ তৈরি করুন', + 'instructions' => 'নতুন বিজ্ঞাপন বিভাগ নির্বাচন শেষ হলে যে বোতামটি প্রদর্শিত হবে তা পরিবর্তন করে।' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/button.php b/addons/default/visiosoft/advs-module/resources/lang/de/button.php index 634aab996..aabd54531 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Neue Adv', + 'new_classified' => 'Neu klassifiziert', 'new_category' => 'Neue Kategorie', 'new_country' => 'Neues Land', 'new_city' => 'Neue Stadt', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Neue Optionskonfiguration', 'create_configurations' => 'Konfigurationen erstellen', 'replicate' => 'Replizieren', + 'fast_create' => 'Schnell erstellen', + 'publish' => 'Veröffentlichen', + 'import' => 'Importieren', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/field.php b/addons/default/visiosoft/advs-module/resources/lang/de/field.php index 81f01a215..943e98e20 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Unterkategorie 6' ], + 'cat8' => [ + 'name' => 'Unterkategorie 7' + ], + 'cat9' => [ + 'name' => 'Unterkategorie 8' + ], + 'cat10' => [ + 'name' => 'Unterkategorie 9' + ], 'currency' => [ 'name' => 'Währung' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Einzelheiten auflisten', 'preview' => 'Vorschau', 'congratulations' => 'Herzliche Glückwünsche', + 'ad_desc' => 'Werbebeschreibung', + 'upload_photos' => 'Fotos hochladen', + 'additional_fields' => 'Zusätzliche Felder', + 'ad_location' => 'Anzeigenposition', 'free' => 'Frei', 'ad_date' => 'Anzeigedatum', diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/message.php b/addons/default/visiosoft/advs-module/resources/lang/de/message.php index a63162494..f1423cc50 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Diese Anzeige existiert nicht!", 'select_location_error' => "Bitte wählen Sie einen Ort auf der Karte!", 'this_ad_is_not_valid_anymore' => "Diese Anzeige ist nicht mehr gültig!", + 'approve_status_change' => "Der Status Ihrer Anzeige wurde auf Aktiv gesetzt!", + 'passive_status_change' => "Der Status Ihrer Anzeige wurde auf Passiv gesetzt!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/section.php b/addons/default/visiosoft/advs-module/resources/lang/de/section.php index 862cebcbe..ca1a4b124 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Aufbau', ], + 'translations' => 'Übersetzungen', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/setting.php b/addons/default/visiosoft/advs-module/resources/lang/de/setting.php index 6d0b2e1c9..056efd080 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Marktplatz', ], - + 'price_area_hidden' => [ + 'name' => 'Preisbereich versteckt', + ], 'hide_price_filter' => [ 'name' => 'Preisfilter ausblenden', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Breadcrumb beim Erstellen einer Anzeige anzeigen', ], + 'show_ads_count' => [ + 'name' => 'Anzeigenanzahl anzeigen', + 'instructions' => 'Anzeigenanzahl in der linken Kategorieliste anzeigen', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Show Post Ad Agreement anzeigen', + 'instructions' => 'Aktivieren Sie diese Option, wenn Sie auf der Seite zur Anzeigenerstellung eine Datenschutzrichtlinie anzeigen möchten', + ], + 'override_text' => [ + 'name' => 'Text überschreiben', + 'instructions' => 'Alter Wert: Neuer Wert' + ], + 'steps_color' => [ + 'name' => 'Schritte Farbe', + 'instructions' => 'Ändert die Farbe der progressiven Schritte.' + ], + 'create_ad_button_color' => [ + 'name' => 'Farbe der Anzeigenschaltfläche erstellen', + 'instructions' => 'Ändert die Schaltfläche, die angezeigt wird, wenn die Auswahl der neuen Anzeigenkategorie abgeschlossen ist.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/button.php b/addons/default/visiosoft/advs-module/resources/lang/el/button.php index 132534632..a62110cc1 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Νέο Adv', + 'new_classified' => 'Νέα αγγελία', 'new_category' => 'Νέα κατηγορία', 'new_country' => 'Νέα χώρα', 'new_city' => 'Νέα πόλη', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Διαμόρφωση νέας επιλογής', 'create_configurations' => 'Δημιουργήστε διαμορφώσεις', 'replicate' => 'Αντιγραφή', + 'fast_create' => 'Γρήγορη δημιουργία', + 'publish' => 'Δημοσιεύω', + 'import' => 'Εισαγωγή', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/field.php b/addons/default/visiosoft/advs-module/resources/lang/el/field.php index 4a27f8a23..414c30e34 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Υποκατηγορία 6' ], + 'cat8' => [ + 'name' => 'Υποκατηγορία 7' + ], + 'cat9' => [ + 'name' => 'Υποκατηγορία 8' + ], + 'cat10' => [ + 'name' => 'Υποκατηγορία 9' + ], 'currency' => [ 'name' => 'Νόμισμα' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Λεπτομέρειες καταχώρησης', 'preview' => 'Προεπισκόπηση', 'congratulations' => 'Συγχαρητήρια', + 'ad_desc' => 'Περιγραφή διαφήμισης', + 'upload_photos' => 'Ανέβασε φωτογραφίες', + 'additional_fields' => 'Πρόσθετα πεδία', + 'ad_location' => 'Τοποθεσία διαφήμισης', 'free' => 'Ελεύθερος', 'ad_date' => 'Ημερομηνία διαφήμισης', diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/message.php b/addons/default/visiosoft/advs-module/resources/lang/el/message.php index 966509ecf..4dc010274 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Αυτή η διαφήμιση δεν υπάρχει!", 'select_location_error' => "Επιλέξτε μια τοποθεσία στον χάρτη!", 'this_ad_is_not_valid_anymore' => "Αυτή η διαφήμιση δεν είναι πλέον έγκυρη!", + 'approve_status_change' => "Η κατάσταση της διαφήμισής σας έχει ενεργοποιηθεί!", + 'passive_status_change' => "Η κατάσταση της διαφήμισής σας έχει οριστεί σε παθητική!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/section.php b/addons/default/visiosoft/advs-module/resources/lang/el/section.php index a77dff06f..65c6b7d2f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Διαμόρφωση', ], + 'translations' => 'Μεταφράσεις', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/setting.php b/addons/default/visiosoft/advs-module/resources/lang/el/setting.php index 6a08a4a90..0722e98f3 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Αγορά', ], - + 'price_area_hidden' => [ + 'name' => 'Κρυφή περιοχή τιμών', + ], 'hide_price_filter' => [ 'name' => 'Απόκρυψη φίλτρου τιμών', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Εμφάνιση Breadcrumb κατά τη δημιουργία μιας διαφήμισης', ], + 'show_ads_count' => [ + 'name' => 'Εμφάνιση πλήθους διαφημίσεων', + 'instructions' => 'Εμφάνιση πλήθους διαφημίσεων στην αριστερή λίστα κατηγοριών', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Εμφάνιση συμφωνίας μετά τη διαφήμιση', + 'instructions' => 'Ενεργοποιήστε το αν θέλετε να εμφανίσετε μια συμφωνία πολιτικής απορρήτου στη σελίδα δημιουργίας διαφημίσεων', + ], + 'override_text' => [ + 'name' => 'Παράκαμψη κειμένου', + 'instructions' => 'Παλιά τιμή: Νέα τιμή' + ], + 'steps_color' => [ + 'name' => 'Χρώμα βημάτων', + 'instructions' => 'Αλλάζει το χρώμα των προοδευτικών βημάτων.' + ], + 'create_ad_button_color' => [ + 'name' => 'Δημιουργία χρώματος κουμπιού διαφήμισης', + 'instructions' => 'Αλλάζει το κουμπί που εμφανίζεται όταν ολοκληρωθεί η νέα επιλογή κατηγορίας διαφημίσεων.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/en/setting.php b/addons/default/visiosoft/advs-module/resources/lang/en/setting.php index c773d2cce..ab4017740 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/en/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/en/setting.php @@ -211,4 +211,12 @@ return [ 'name' => 'Override Text', 'instructions' => 'Old Value:New Value' ], + 'steps_color' => [ + 'name' => 'Steps Color', + 'instructions' => 'Changes the progressive steps color.' + ], + 'create_ad_button_color' => [ + 'name' => 'Create Ad Button Color', + 'instructions' => 'Changes the button that shows up when the new ad category selection is finished.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/button.php b/addons/default/visiosoft/advs-module/resources/lang/es/button.php index 2fa1d507e..0a66b2127 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Adv nuevo', + 'new_classified' => 'Nuevo clasificado', 'new_category' => 'Nueva categoría', 'new_country' => 'Nuevo país', 'new_city' => 'Ciudad Nueva', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Configuración de nueva opción', 'create_configurations' => 'Crear configuraciones', 'replicate' => 'Reproducir exactamente', + 'fast_create' => 'Creación rápida', + 'publish' => 'Publicar', + 'import' => 'Importar', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/field.php b/addons/default/visiosoft/advs-module/resources/lang/es/field.php index 74c841af2..3ab744d74 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Subcategoría 6' ], + 'cat8' => [ + 'name' => 'Subcategoría 7' + ], + 'cat9' => [ + 'name' => 'Subcategoría 8' + ], + 'cat10' => [ + 'name' => 'Subcategoría 9' + ], 'currency' => [ 'name' => 'Moneda' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'listado de detalles', 'preview' => 'Avance', 'congratulations' => 'Felicidades', + 'ad_desc' => 'Descripción del anuncio', + 'upload_photos' => 'Subir fotos', + 'additional_fields' => 'Campos Adicionales', + 'ad_location' => 'Ubicación del anuncio', 'free' => 'Gratis', 'ad_date' => 'Fecha de anuncio', diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/message.php b/addons/default/visiosoft/advs-module/resources/lang/es/message.php index 53f17df1b..bb4a5d412 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "¡Este anuncio no existe!", 'select_location_error' => "Seleccione una ubicación en el mapa.", 'this_ad_is_not_valid_anymore' => "¡Este anuncio ya no es válido!", + 'approve_status_change' => "¡El estado de su anuncio se ha establecido como activo!", + 'passive_status_change' => "¡El estado de su anuncio se ha establecido en pasivo!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/section.php b/addons/default/visiosoft/advs-module/resources/lang/es/section.php index 35717e972..0e4cb02a3 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Configuración', ], + 'translations' => 'Traducciones', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/setting.php b/addons/default/visiosoft/advs-module/resources/lang/es/setting.php index bfd99ad81..a661db31a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Market Place', ], - + 'price_area_hidden' => [ + 'name' => 'Zona de precio oculta', + ], 'hide_price_filter' => [ 'name' => 'Ocultar filtro de precio', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Mostrar ruta de navegación al crear un anuncio', ], + 'show_ads_count' => [ + 'name' => 'Mostrar recuento de anuncios', + 'instructions' => 'Mostrar el recuento de anuncios en la lista de categorías de la izquierda', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Mostrar acuerdo de publicación', + 'instructions' => 'Active esta opción si desea mostrar un acuerdo de política de privacidad en la página de creación de anuncios.', + ], + 'override_text' => [ + 'name' => 'Anular texto', + 'instructions' => 'Valor anterior: Valor nuevo' + ], + 'steps_color' => [ + 'name' => 'Color de pasos', + 'instructions' => 'Cambia el color de los pasos progresivos.' + ], + 'create_ad_button_color' => [ + 'name' => 'Crear color de botón de anuncio', + 'instructions' => 'Cambia el botón que aparece cuando finaliza la selección de la nueva categoría de anuncios.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/button.php b/addons/default/visiosoft/advs-module/resources/lang/fa/button.php index f44b64cf4..e48d12e76 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'جدید جدید', + 'new_classified' => 'طبقه بندی جدید', 'new_category' => 'دسته بندی جدید', 'new_country' => 'کشور جدید', 'new_city' => 'شهر جدید', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'پیکربندی گزینه جدید', 'create_configurations' => 'تنظیمات را ایجاد کنید', 'replicate' => 'تکثیر', + 'fast_create' => 'سریع ایجاد کنید', + 'publish' => 'انتشار', + 'import' => 'وارد كردن', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/field.php b/addons/default/visiosoft/advs-module/resources/lang/fa/field.php index 923412d23..5889c0ec9 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'کتگوری فرعی 6' ], + 'cat8' => [ + 'name' => 'زیر گروه 7' + ], + 'cat9' => [ + 'name' => 'زیر گروه 8' + ], + 'cat10' => [ + 'name' => 'زیر گروه 9' + ], 'currency' => [ 'name' => 'واحد پول' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'جزئیات لیست', 'preview' => 'پیش نمایش', 'congratulations' => 'تبریک می گویم', + 'ad_desc' => 'شرح آگهی', + 'upload_photos' => 'عکسها را بارگذاری کنید', + 'additional_fields' => 'زمینه های اضافی', + 'ad_location' => 'مکان تبلیغات', 'free' => 'رایگان', 'ad_date' => 'تاریخ آگهی', diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/message.php b/addons/default/visiosoft/advs-module/resources/lang/fa/message.php index 172b48412..832028e1c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "این آگهی وجود ندارد!", 'select_location_error' => "لطفاً مکانی را روی نقشه انتخاب کنید!", 'this_ad_is_not_valid_anymore' => "این آگهی دیگر معتبر نیست!", + 'approve_status_change' => "وضعیت آگهی شما روی فعال تنظیم شده است!", + 'passive_status_change' => "وضعیت آگهی شما منفعل تنظیم شده است!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/section.php b/addons/default/visiosoft/advs-module/resources/lang/fa/section.php index 1222c873a..602fc472d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'پیکربندی', ], + 'translations' => 'ترجمه ها', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/setting.php b/addons/default/visiosoft/advs-module/resources/lang/fa/setting.php index e3c6a0d0a..e98c3bb47 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/setting.php @@ -127,7 +127,9 @@ return [ 'market_place' => [ 'name' => 'محل بازار', ], - + 'price_area_hidden' => [ + 'name' => 'منطقه پنهان', + ], 'hide_price_filter' => [ 'name' => 'فیلتر قیمت مخفی کنید', ], @@ -198,4 +200,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'هنگام ایجاد تبلیغ ، Breadcrumb را نشان دهید', ], + 'show_ads_count' => [ + 'name' => 'نمایش تعداد تبلیغات', + 'instructions' => 'نمایش تعداد تبلیغات در لیست دسته های سمت چپ', + ], + 'show_post_ad_agreement' => [ + 'name' => 'نمایش قرارداد تبلیغات پست', + 'instructions' => 'اگر می خواهید توافق نامه سیاست حفظ حریم خصوصی را در صفحه ایجاد آگهی نمایش دهید ، این گزینه را روشن کنید', + ], + 'override_text' => [ + 'name' => 'متن را لغو کنید', + 'instructions' => 'ارزش قدیم: ارزش جدید' + ], + 'steps_color' => [ + 'name' => 'مراحل رنگ', + 'instructions' => 'رنگ مراحل پیشرفته را تغییر می دهد.' + ], + 'create_ad_button_color' => [ + 'name' => 'رنگ دکمه تبلیغات را ایجاد کنید', + 'instructions' => 'دکمه ای را که با پایان یافتن انتخاب دسته جدید آگهی نشان داده می شود ، تغییر می دهد.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/button.php b/addons/default/visiosoft/advs-module/resources/lang/fr/button.php index 63d1f7a7b..08063a9ed 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Nouveau Adv', + 'new_classified' => 'Nouvelle petite annonce', 'new_category' => 'Nouvelle catégorie', 'new_country' => 'Nouveau pays', 'new_city' => 'Nouvelle ville', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Nouvelle configuration d\'option', 'create_configurations' => 'Créer des configurations', 'replicate' => 'Reproduire', + 'fast_create' => 'Création rapide', + 'publish' => 'Publier', + 'import' => 'Importer', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/field.php b/addons/default/visiosoft/advs-module/resources/lang/fr/field.php index 16cc123ab..401a501b6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Sous catégorie 6' ], + 'cat8' => [ + 'name' => 'Sous-catégorie 7' + ], + 'cat9' => [ + 'name' => 'Sous-catégorie 8' + ], + 'cat10' => [ + 'name' => 'Sous-catégorie 9' + ], 'currency' => [ 'name' => 'Devise' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Détails de l\'annonce', 'preview' => 'Aperçu', 'congratulations' => 'Toutes nos félicitations', + 'ad_desc' => 'Description de l\'annonce', + 'upload_photos' => 'Télécharger des photos', + 'additional_fields' => 'Champs supplémentaires', + 'ad_location' => 'Emplacement de l\'annonce', 'free' => 'Gratuit', 'ad_date' => 'Date de l\'annonce', diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/message.php b/addons/default/visiosoft/advs-module/resources/lang/fr/message.php index 43751db78..2c61409c9 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Cette annonce n'existe pas!", 'select_location_error' => "Veuillez sélectionner un emplacement sur la carte!", 'this_ad_is_not_valid_anymore' => "Cette annonce n'est plus valide!", + 'approve_status_change' => "Le statut de votre annonce a été défini sur Actif!", + 'passive_status_change' => "Le statut de votre annonce a été défini sur Passif!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/section.php b/addons/default/visiosoft/advs-module/resources/lang/fr/section.php index 87f22728f..0fe97e7fa 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Configuration', ], + 'translations' => 'Traductions', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/setting.php b/addons/default/visiosoft/advs-module/resources/lang/fr/setting.php index 3be3d0452..afcfaaed4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Place du marché', ], - + 'price_area_hidden' => [ + 'name' => 'Zone de prix masquée', + ], 'hide_price_filter' => [ 'name' => 'Masquer le filtre de prix', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Afficher le fil d\'Ariane lors de la création d\'une annonce', ], + 'show_ads_count' => [ + 'name' => 'Afficher le nombre d\'annonces', + 'instructions' => 'Les annonces diffusées comptent dans la liste des catégories de gauche', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Afficher l\'accord de publication d\'annonce', + 'instructions' => 'Activez cette option si vous souhaitez afficher un accord de politique de confidentialité sur la page de création d\'annonces', + ], + 'override_text' => [ + 'name' => 'Remplacer le texte', + 'instructions' => 'Ancienne valeur: nouvelle valeur' + ], + 'steps_color' => [ + 'name' => 'Couleur des étapes', + 'instructions' => 'Modifie la couleur des étapes progressives.' + ], + 'create_ad_button_color' => [ + 'name' => 'Créer une couleur de bouton d\'annonce', + 'instructions' => 'Modifie le bouton qui apparaît lorsque la sélection de la nouvelle catégorie d\'annonces est terminée.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/button.php b/addons/default/visiosoft/advs-module/resources/lang/he/button.php index 582c354a0..72e4137a5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'עו"ד חדש', + 'new_classified' => 'מסווג חדש', 'new_category' => 'קטגוריה חדשה', 'new_country' => 'מדינה חדשה', 'new_city' => 'עיר חדשה', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'תצורת אפשרות חדשה', 'create_configurations' => 'צור תצורות', 'replicate' => 'העתק', + 'fast_create' => 'ליצור מהיר', + 'publish' => 'לְפַרְסֵם', + 'import' => 'יְבוּא', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/field.php b/addons/default/visiosoft/advs-module/resources/lang/he/field.php index 57a7a7803..a2420e97e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'תת קטגוריה 6' ], + 'cat8' => [ + 'name' => 'קטגוריית משנה 7' + ], + 'cat9' => [ + 'name' => 'קטגוריית משנה 8' + ], + 'cat10' => [ + 'name' => 'קטגוריית משנה 9' + ], 'currency' => [ 'name' => 'מטבע' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'פרטי רישום', 'preview' => 'תצוגה מקדימה', 'congratulations' => 'מזל טוב', + 'ad_desc' => 'תיאור המודעה', + 'upload_photos' => 'להעלות תמונות', + 'additional_fields' => 'שדות נוספים', + 'ad_location' => 'מיקום מודעה', 'free' => 'חינם', 'ad_date' => 'תאריך מודעה', diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/message.php b/addons/default/visiosoft/advs-module/resources/lang/he/message.php index 5364edbd1..bb4a905be 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "מודעה זו אינה קיימת!", 'select_location_error' => "אנא בחר מיקום במפה!", 'this_ad_is_not_valid_anymore' => "מודעה זו אינה תקפה יותר!", + 'approve_status_change' => "סטטוס המודעה שלך הוגדר לפעיל!", + 'passive_status_change' => "סטטוס המודעה שלך הוגדר כפסיבי!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/section.php b/addons/default/visiosoft/advs-module/resources/lang/he/section.php index ce71a759e..8535b58f4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'תְצוּרָה', ], + 'translations' => 'תרגומים', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/setting.php b/addons/default/visiosoft/advs-module/resources/lang/he/setting.php index 9c4cff393..bd88213cd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'זירת מסחר', ], - + 'price_area_hidden' => [ + 'name' => 'אזור מחיר מוסתר', + ], 'hide_price_filter' => [ 'name' => 'הסתר מסנן מחירים', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'הראה פירורי לחם בעת יצירת מודעה', ], + 'show_ads_count' => [ + 'name' => 'ספירת מודעות הצגה', + 'instructions' => 'הצגת מודעות נספרת ברשימת הקטגוריות השמאלית', + ], + 'show_post_ad_agreement' => [ + 'name' => 'הצג הסכם מודעות לפרסום', + 'instructions' => 'הפעל זאת אם ברצונך להציג הסכם מדיניות פרטיות בדף יצירת המודעות', + ], + 'override_text' => [ + 'name' => 'עקוף טקסט', + 'instructions' => 'ערך ישן: ערך חדש' + ], + 'steps_color' => [ + 'name' => 'מדרגות צבע', + 'instructions' => 'משנה את צבע הצעדים המתקדמים.' + ], + 'create_ad_button_color' => [ + 'name' => 'צור צבע כפתור מודעה', + 'instructions' => 'משנה את הכפתור שמופיע לאחר בחירת קטגוריית המודעות החדשה.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/button.php b/addons/default/visiosoft/advs-module/resources/lang/hi/button.php index 5f816503e..8cd30243f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'नई सलाह', + 'new_classified' => 'नया वर्गीकृत', 'new_category' => 'नई श्रेणी', 'new_country' => 'नया देश', 'new_city' => 'नया शहर', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'नया विकल्प कॉन्फ़िगरेशन', 'create_configurations' => 'कॉन्फ़िगरेशन बनाएँ', 'replicate' => 'दोहराने', + 'fast_create' => 'तेजी से बना', + 'publish' => 'प्रकाशित करना', + 'import' => 'आयात', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/field.php b/addons/default/visiosoft/advs-module/resources/lang/hi/field.php index fc038a3ec..d270de964 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'उप श्रेणी ६' ], + 'cat8' => [ + 'name' => 'उप श्रेणी 7' + ], + 'cat9' => [ + 'name' => 'उप श्रेणी 8' + ], + 'cat10' => [ + 'name' => 'उप श्रेणी ९' + ], 'currency' => [ 'name' => 'मुद्रा' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'सूची विवरण', 'preview' => 'पूर्वावलोकन', 'congratulations' => 'बधाई हो', + 'ad_desc' => 'विज्ञापन विवरण', + 'upload_photos' => 'तस्वीरें अपलोड करें', + 'additional_fields' => 'अतिरिक्त क्षेत्र', + 'ad_location' => 'विज्ञापन स्थान', 'free' => 'नि: शुल्क', 'ad_date' => 'विज्ञापन तिथि', diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/message.php b/addons/default/visiosoft/advs-module/resources/lang/hi/message.php index 0d635ddf6..7fd4c2b5f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "यह विज्ञापन मौजूद नहीं है!", 'select_location_error' => "कृपया मानचित्र पर एक स्थान चुनें!", 'this_ad_is_not_valid_anymore' => "यह विज्ञापन अब मान्य नहीं है!", + 'approve_status_change' => "आपके विज्ञापन की स्थिति सक्रिय हो गई है!", + 'passive_status_change' => "आपके विज्ञापन की स्थिति निष्क्रिय हो गई है!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/section.php b/addons/default/visiosoft/advs-module/resources/lang/hi/section.php index fe068e3de..6478f44c6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'विन्यास', ], + 'translations' => 'अनुवाद', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/setting.php b/addons/default/visiosoft/advs-module/resources/lang/hi/setting.php index 8fa64270e..4f32dff3b 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'मार्केट प्लेस', ], - + 'price_area_hidden' => [ + 'name' => 'मूल्य क्षेत्र छिपा हुआ', + ], 'hide_price_filter' => [ 'name' => 'मूल्य फ़िल्टर छिपाएँ', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'विज्ञापन बनाते समय ब्रेडक्रंब दिखाएं', ], + 'show_ads_count' => [ + 'name' => 'विज्ञापन गणना दिखाएं', + 'instructions' => 'विज्ञापन को बाईं श्रेणियों की सूची में दिखाएं', + ], + 'show_post_ad_agreement' => [ + 'name' => 'विज्ञापन विज्ञापन दिखाएं', + 'instructions' => 'यदि आप विज्ञापन निर्माण पृष्ठ पर गोपनीयता नीति अनुबंध प्रदर्शित करना चाहते हैं तो इसे चालू करें', + ], + 'override_text' => [ + 'name' => 'पाठ को ओवरराइड करें', + 'instructions' => 'पुराना मूल्य: नया मूल्य' + ], + 'steps_color' => [ + 'name' => 'चरण रंग', + 'instructions' => 'प्रगतिशील चरणों का रंग बदलता है।' + ], + 'create_ad_button_color' => [ + 'name' => 'विज्ञापन बटन रंग बनाएँ', + 'instructions' => 'नया विज्ञापन श्रेणी चयन समाप्त होने पर दिखाई देने वाले बटन को बदल देता है।' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/button.php b/addons/default/visiosoft/advs-module/resources/lang/it/button.php index b5f5da879..d419c5241 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Nuovo Adv', + 'new_classified' => 'Nuovo classificato', 'new_category' => 'Nuova categoria', 'new_country' => 'Nuovo Paese', 'new_city' => 'Nuova città', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Nuova configurazione delle opzioni', 'create_configurations' => 'Crea configurazioni', 'replicate' => 'Replicare', + 'fast_create' => 'Creazione veloce', + 'publish' => 'Pubblicare', + 'import' => 'Importare', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/field.php b/addons/default/visiosoft/advs-module/resources/lang/it/field.php index 7eddd9550..5cf63d829 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Sottocategoria 6' ], + 'cat8' => [ + 'name' => 'Sottocategoria 7' + ], + 'cat9' => [ + 'name' => 'Sottocategoria 8' + ], + 'cat10' => [ + 'name' => 'Sottocategoria 9' + ], 'currency' => [ 'name' => 'Moneta' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Dettagli dell\'inserzione', 'preview' => 'Anteprima', 'congratulations' => 'Congratulazioni', + 'ad_desc' => 'Descrizione dell\'annuncio', + 'upload_photos' => 'Caricare foto', + 'additional_fields' => 'Campi aggiuntivi', + 'ad_location' => 'Posizione dell\'annuncio', 'free' => 'Gratuito', 'ad_date' => 'Data dell\'annuncio', diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/message.php b/addons/default/visiosoft/advs-module/resources/lang/it/message.php index 723be86e2..e68be8bf3 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Questo annuncio non esiste!", 'select_location_error' => "Seleziona una posizione sulla mappa!", 'this_ad_is_not_valid_anymore' => "Questo annuncio non è più valido!", + 'approve_status_change' => "Lo stato del tuo annuncio è stato impostato su Attivo!", + 'passive_status_change' => "Lo stato del tuo annuncio è stato impostato su Passivo!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/section.php b/addons/default/visiosoft/advs-module/resources/lang/it/section.php index 79f2f02dd..011316dba 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Configurazione', ], + 'translations' => 'Traduzioni', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/setting.php b/addons/default/visiosoft/advs-module/resources/lang/it/setting.php index b18b57ab0..55506219d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Piazza del mercato', ], - + 'price_area_hidden' => [ + 'name' => 'Area di Prezzo Nascosta', + ], 'hide_price_filter' => [ 'name' => 'Nascondi filtro prezzo', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Mostra breadcrumb durante la creazione di un annuncio', ], + 'show_ads_count' => [ + 'name' => 'Mostra conteggio annunci', + 'instructions' => 'Mostra il conteggio degli annunci nell\'elenco delle categorie a sinistra', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Mostra accordo post annuncio', + 'instructions' => 'Attiva questa opzione se desideri visualizzare un accordo sulla politica sulla privacy nella pagina di creazione dell\'annuncio', + ], + 'override_text' => [ + 'name' => 'Sostituisci testo', + 'instructions' => 'Vecchio valore: nuovo valore' + ], + 'steps_color' => [ + 'name' => 'Colore dei passaggi', + 'instructions' => 'Cambia il colore dei gradini progressivi.' + ], + 'create_ad_button_color' => [ + 'name' => 'Crea colore pulsante annuncio', + 'instructions' => 'Modifica il pulsante che viene visualizzato al termine della selezione della nuova categoria di annunci.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/button.php b/addons/default/visiosoft/advs-module/resources/lang/ja/button.php index bf5cf24a8..feab30637 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => '新しい広告', + 'new_classified' => '新しい機密', 'new_category' => '新たなカテゴリー', 'new_country' => '新しい国', 'new_city' => '新しい街', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => '新しいオプション構成', 'create_configurations' => '構成の作成', 'replicate' => '複製する', + 'fast_create' => '高速作成', + 'publish' => '公開する', + 'import' => 'インポート', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/field.php b/addons/default/visiosoft/advs-module/resources/lang/ja/field.php index 544b2c576..400ba3244 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'サブカテゴリー6' ], + 'cat8' => [ + 'name' => 'サブカテゴリー7' + ], + 'cat9' => [ + 'name' => 'サブカテゴリー8' + ], + 'cat10' => [ + 'name' => 'サブカテゴリー9' + ], 'currency' => [ 'name' => '通貨' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'リストの詳細', 'preview' => 'プレビュー', 'congratulations' => 'おめでとう', + 'ad_desc' => '広告の説明', + 'upload_photos' => '写真をアップロードする', + 'additional_fields' => '追加フィールド', + 'ad_location' => '広告の場所', 'free' => '自由', 'ad_date' => '広告日', diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/message.php b/addons/default/visiosoft/advs-module/resources/lang/ja/message.php index 817a5a8b4..e80f938c7 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "この広告は存在しません!", 'select_location_error' => "地図上で場所を選択してください!", 'this_ad_is_not_valid_anymore' => "この広告はもう有効ではありません!", + 'approve_status_change' => "広告のステータスがアクティブに設定されました。", + 'passive_status_change' => "広告のステータスがパッシブに設定されました。", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/section.php b/addons/default/visiosoft/advs-module/resources/lang/ja/section.php index d584867aa..813ab893b 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => '構成', ], + 'translations' => '翻訳', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ja/setting.php index 61dbe408a..acfab5d25 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'マーケットプレイス', ], - + 'price_area_hidden' => [ + 'name' => '隠された価格帯', + ], 'hide_price_filter' => [ 'name' => '価格フィルターを非表示', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => '広告を作成するときにブレッドクラムを表示する', ], + 'show_ads_count' => [ + 'name' => '広告数を表示', + 'instructions' => '左側のカテゴリリストに広告数を表示する', + ], + 'show_post_ad_agreement' => [ + 'name' => 'ポスト広告契約を表示する', + 'instructions' => '広告作成ページにプライバシーポリシー契約を表示する場合は、これをオンにします', + ], + 'override_text' => [ + 'name' => 'テキストを上書きする', + 'instructions' => '古い値:新しい値' + ], + 'steps_color' => [ + 'name' => 'ステップカラー', + 'instructions' => 'プログレッシブステップの色を変更します。' + ], + 'create_ad_button_color' => [ + 'name' => '広告ボタンの色を作成する', + 'instructions' => '新しい広告カテゴリの選択が終了したときに表示されるボタンを変更します。' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/button.php b/addons/default/visiosoft/advs-module/resources/lang/ko/button.php index b42d42fff..bf2686e27 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => '새로운 Adv', + 'new_classified' => '새로운 분류', 'new_category' => '새 분류', 'new_country' => '새로운 나라', 'new_city' => '새로운 도시', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => '새로운 옵션 구성', 'create_configurations' => '구성 만들기', 'replicate' => '뒤로 젖히다', + 'fast_create' => '빠른 생성', + 'publish' => '게시', + 'import' => '수입', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/field.php b/addons/default/visiosoft/advs-module/resources/lang/ko/field.php index ed76f3643..488230b04 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => '하위 카테고리 6' ], + 'cat8' => [ + 'name' => '하위 카테고리 7' + ], + 'cat9' => [ + 'name' => '하위 카테고리 8' + ], + 'cat10' => [ + 'name' => '하위 카테고리 9' + ], 'currency' => [ 'name' => '통화' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => '리스팅 세부 사항', 'preview' => '시사', 'congratulations' => '축하합니다', + 'ad_desc' => '광고 설명', + 'upload_photos' => '사진 업로드', + 'additional_fields' => '추가 필드', + 'ad_location' => '광고 위치', 'free' => '비어 있는', 'ad_date' => '광고 날짜', diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/message.php b/addons/default/visiosoft/advs-module/resources/lang/ko/message.php index 7bd882307..8589a95d0 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "이 광고는 존재하지 않습니다!", 'select_location_error' => "지도에서 위치를 선택하세요!", 'this_ad_is_not_valid_anymore' => "이 광고는 더 이상 유효하지 않습니다!", + 'approve_status_change' => "귀하의 광고 상태가 활성으로 설정되었습니다!", + 'passive_status_change' => "귀하의 광고 상태가 수동으로 설정되었습니다!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/section.php b/addons/default/visiosoft/advs-module/resources/lang/ko/section.php index 8b050dd88..f46c2375e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => '구성', ], + 'translations' => '번역', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ko/setting.php index c1632b9b5..498def4af 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => '마켓 플레이스', ], - + 'price_area_hidden' => [ + 'name' => '가격 영역 숨김', + ], 'hide_price_filter' => [ 'name' => '가격 필터 숨기기', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => '광고를 만들 때 이동 경로 표시', ], + 'show_ads_count' => [ + 'name' => '광고 수 표시', + 'instructions' => '왼쪽 카테고리 목록에 광고 개수 표시', + ], + 'show_post_ad_agreement' => [ + 'name' => '광고 게시 계약 표시', + 'instructions' => '광고 작성 페이지에 개인 정보 보호 정책을 표시하려면이 옵션을 켜십시오.', + ], + 'override_text' => [ + 'name' => '텍스트 무시', + 'instructions' => '기존 가치 : 새로운 가치' + ], + 'steps_color' => [ + 'name' => '단계 색상', + 'instructions' => '점진적 단계 색상을 변경합니다.' + ], + 'create_ad_button_color' => [ + 'name' => '광고 버튼 색상 만들기', + 'instructions' => '새 광고 카테고리 선택이 완료되면 표시되는 버튼을 변경합니다.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/addon.php b/addons/default/visiosoft/advs-module/resources/lang/ku/addon.php new file mode 100644 index 000000000..b5bf75e16 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Reklam', + 'name' => 'Modula Ads', + 'description' => 'Modula Ads', +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/button.php b/addons/default/visiosoft/advs-module/resources/lang/ku/button.php new file mode 100644 index 000000000..90df85280 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/button.php @@ -0,0 +1,46 @@ + 'Nifşek nû', + 'new_classified' => 'Nifşek nû', + 'new_category' => 'Kategoriya Nû', + 'new_country' => 'Welatê Nû', + 'new_city' => 'Bajarê Nû', + 'new_district' => 'Navçeya Nû', + 'new_neighborhood' => 'Taxa Nû', + 'new_village' => 'Gundê Nû', + 'edit' => "Weşandin", + 'approve' => "Destûrdan", + 'decline' => 'Paşvegerrî', + 'extend' => 'N', + 'extend_all' => 'Hemî Dirêj Bikin', + 'convert_currency' => 'Dirav veguherînin', + 'categories' => 'Kategorî', + 'sub_category' => 'Kategoriyên bin', + 'add_sub_category' => 'Kategoriya Jêrîn zêde bikin', + 'sub_cities' => 'Bajarên bin', + 'add_sub_cities' => 'Sub City-ê zêde bikin', + 'add_sub_districts' => 'Navçeya Sub zêde bikin', + 'add_sub_neighborhoods' => 'Taxa Jêr Zêdekirin', + 'add_sub_village' => 'Gundê Binî Zêde bikin', + 'sub_districts' => 'Sub District', + 'sub_neighborhoods' => 'Taxên Bin', + 'sub_village' => 'Gundê binî', + 'general_settings' => 'Mîhengên Giştî', + 'save_category' => 'Kategorî tomar bikin', + 'change_owner' => 'Xwedî biguherin', + 'update_category' => [ + 'name' => 'Kategorî nûve bikin' + ], + 'new_option' => 'Vebijarka Nû', + 'export' => 'Eksport', + 'new_productoption' => 'Hilbera Hilbera Nû', + 'new_productoptions_value' => 'Nirxa vebijarka Hilbera Nû', + 'new_options_configuration' => 'Veavakirina Vebijarka Nû', + 'new_option_configuration' => 'Veavakirina Vebijarka Nû', + 'create_configurations' => 'Configurations biafirînin', + 'replicate' => 'Replicate', + 'fast_create' => 'Fast biafirîne', + 'publish' => 'Weşandin', + 'import' => 'Malanîn', +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/currency.php b/addons/default/visiosoft/advs-module/resources/lang/ku/currency.php new file mode 100644 index 000000000..9559d16cf --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/currency.php @@ -0,0 +1,6 @@ + 'Dolar', + 'EUR' => 'Ewro', +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/field.php b/addons/default/visiosoft/advs-module/resources/lang/ku/field.php new file mode 100644 index 000000000..0746060f5 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/field.php @@ -0,0 +1,344 @@ + [ + 'name' => 'Nav' + ], + 'order' => [ + 'name' => 'Emir' + ], + 'slug' => [ + 'name' => 'Şeytanok' + ], + 'parent_category' => [ + 'name' => 'Dêûbav' + ], + 'category' => [ + 'name' => 'Title Kategorî' + ], + 'price' => [ + 'name' => 'Biha' + ], + 'standard_price' => [ + 'name' => 'Bihayê Standard' + ], + 'date' => [ + 'name' => 'Rojek' + ], + 'photo' => [ + 'name' => 'Wêne' + ], + 'video' => [ + 'name' => 'Vîdyo' + ], + 'map' => [ + 'name' => 'Qert' + ], + 'stock' => [ + 'name' => 'Embar' + ], + 'advs_desc' => [ + 'name' => 'Terîf' + ], + 'online_payment' => [ + 'name' => 'Tezmînata Serhêl' + ], + 'city' => [ + 'name' => 'Bajar' + ], + 'country' => [ + 'name' => 'Welat' + ], + 'district' => [ + 'name' => 'Herêm' + ], + 'neighborhood' => [ + 'name' => 'Cînarî' + ], + 'village' => [ + 'name' => 'Gûnd' + ], + 'files' => [ + 'name' => 'Wêne' + ], + 'cat1' => [ + 'name' => 'Kategorî Sereke' + ], + 'cat2' => [ + 'name' => 'Kategoriya Jêrîn 1' + ], + 'cat3' => [ + 'name' => 'Kategoriya Jêrîn 2' + ], + 'cat4' => [ + 'name' => 'Kategoriya Jêrîn 3' + ], + 'cat5' => [ + 'name' => 'Kategoriya Jêrîn 4' + ], + 'cat6' => [ + 'name' => 'Kategoriya Jêrîn 5' + ], + 'cat7' => [ + 'name' => 'Bine Kategorî 6' + ], + 'cat8' => [ + 'name' => 'Kategoriya Jêrîn 7' + ], + 'cat9' => [ + 'name' => 'Kategoriya Jêrîn 8' + ], + 'cat10' => [ + 'name' => 'Kategoriya Jêrîn 9' + ], + 'currency' => [ + 'name' => 'Diravcins' + ], + 'status' => [ + 'name' => 'Cî', + 'option' => [ + 'approved' => 'Pejirandin', + 'expired' => 'Xilas bû', + 'unpublished' => 'Neweşandî', + 'pending_admin' => 'Li bendê Admin', + 'pending_user' => 'Bikarhênera bendewar' + ] + ], + 'pending_adv' => [ + 'name' => 'Neweşandî' + ], + 'finish_at' => [ + 'name' => 'Dawî Li' + ], + 'cover_photo' => [ + 'name' => 'Cover Photo' + ], + 'favs_adv' => [ + 'name' => 'Fav Ads' + ], + 'my_adv' => [ + 'name' => 'ADVS' + ], + 'description' => 'Terîf', + 'explanation' => 'Daxûyanî', + 'type' => [ + 'name' => 'Awa' + ], + 'parent_adv' => [ + 'name' => 'Girêdayî Ad' + ], + 'value' => [ + 'name' => 'Giranî' + ], + 'list' => 'Rêzok', + 'home' => 'Xane', + 'list-page' => 'Rûpela Rûpelê', + 'search' => 'Gerr', + 'recommended' => 'Ji bo We Reklamên Pêşniyar kirin', + 'filter' => 'Parzûn', + 'sort' => 'Jiberhevxistin', + 'sort_by' => 'Sort By', + 'pick_option' => 'Vebijarek hilbijêrin', + 'pick_ordering' => 'Rêzkirin', + 'price_high' => 'Bihayê Bilind heya Nizm', + 'price_low' => 'Bihayê Kêm heya Bilind', + 'newest' => 'Nûtirîn', + 'oldest' => 'Kevintirîn', + 'address_a_z' => 'Navnîşan (A-Z)', + 'address_z_a' => 'Navnîşan (ji Z-A)', + 'categories' => [ + 'name' => 'Kategorî' + ], + 'all_categories' => 'Hemî Kategorî', + 'location' => 'Cîh', + 'send_message' => 'Peyam bişînin', + 'phone_gsm' => 'Telefonê Gsm', + 'phone_office' => 'Telefonê Ofîsê', + 'add_to_favorites' => "Add to Favorites", + 'send' => 'Şandin', + 'search_name' => 'Navê Lêgerînê', + 'my_favorite_searches' => 'Lêgerînên Bijare', + 'search_desc' => 'Hûn dikarin li vir vebijarkên lêgerîna xweya bijare zêde bikin û rêve bibin.', + 'complaint_placeholder' => 'Agahdariyên giliyê xwe li vir binivîsin.', + 'show_details' => 'Agahdariyên Nîşan bidin', + 'ad_actions' => 'Çalakiyên Ad', + 'edit' => 'Weşandin', + 'approve' => 'Destûrdan', + 'passive' => "Nejîr", + 'offered_by' => 'Ji hêla Pêşniyar kirin', + 'more_ads_by' => 'More Ads By', + 'click_phone' => 'Hejmara têlefonê nîşan bide', + 'share' => 'Par', + 'report' => 'Vê reklamê ragihînin', + 'features' => 'Taybetmendî', + "streetview" => "Dîmena Kolanê", + 'recommended_ads' => 'Ji bo We Reklamên Pêşniyar kirin', + 'new' => 'Nşh', + 'short_info' => 'Kurte Agahdarî', + 'secure_trading' => 'Bazirganiya Ewle', + '24/7' => '24/7 Piştgirî', + 'easy_trading' => 'Bazirganiya Hêsan', + 'need_help' => 'Alîkarî hewce dike?', + 'give_a_call' => 'Gazî bikin', + 'message_sent' => 'Peyam entandin!', + 'asap' => 'Peyam şandî, dê firotkar asap bi we re têkilî dayne.', + 'ad_id' => 'Ad Id', + 'contact_with' => 'Têkilî Bi', + 'create_adv' => 'Ad biafirînin', + 'edit_adv' => 'Ad Adrast bike', + 'mandatory_fields' => 'Zeviyên Mecbûrî', + 'ad_post' => 'Ad Post', + 'sell_item' => 'Tiştek an karûbarek bifroşin', + 'search_save' => 'Lêgerîna bijare bi serkeftî hate tomarkirin', + 'address' => 'Navnîşan', + 'email' => 'E-name', + 'phone' => 'Telefon', + 'send_us_your_feedback' => 'Bersiva xwe ji me re bişînin', + 'online_shopping' => 'STENDIN', + 'approved' => 'Bi Serkeftin Hat Pejirandin', + 'extended' => 'Bi Serkeftin Berfireh kirin', + 'declined' => 'Bi Serkeftin Daketin', + 'search_on_map' => 'Li Nexşeyê bigerin', + 'post_free_ad' => 'Reklamek Belaş bişînin', + 'select_a_category' => 'Kategoriyek hilbijêrin', + 'select_a_sub_category' => 'Kategoriyek Jêrîn hilbijêrin', + 'all_dopings_added' => 'Hemî celebên dopîngê ji bo vê reklamê têne zêdekirin.', + 'is_get_adv' => [ + 'name' => 'STENDIN' + ], + 'corporate_info' => 'Agahdariya Pargîdanî', + 'featured_ads' => "Reklamên Taybetmendî", + 'trending_ads' => 'Reklamên Trendind', + 'search_ads_result_message' => [ + 'name' => ': reklamên hejmartin ji bo: lêgerîna navan hate dîtin', + ], + 'total' => 'Hemî', + 'quantity' => 'Jimarî', + 'view_cart' => 'Cart View', + 'no_ads' => 'Reklam nehat dîtin.', + 'show_display_mode' => [ + 'map' => 'Qert', + 'list' => 'Rêzok', + ], + 'advs_list_table_thead' => [ + 'name' => 'Navê Ad', + 'price' => 'Biha', + 'publish_at' => 'Dîroka Ad', + 'location_city' => 'Bajar', + 'location_country' => 'Welat', + ], + 'show_list_view' => [ + 'name' => 'Rêzok', + ], + 'show_table_view' => [ + 'name' => 'Mêz', + ], + 'showcase' => [ + 'name' => 'Pêşangeh', + ], + 'new_ad' => [ + 'name' => 'Reklama Nû', + ], + 'profile' => [ + 'name' => 'Tengal', + ], + 'my_ads' => [ + 'name' => 'Reklamên min', + ], + 'sold_out' => [ + 'name' => 'Hate firotin', + ], + 'edit_category' => 'Kategorî biguherîne', + 'set_category' => 'Kategorî danîn', + 'max' => [ + 'name' => 'Max', + ], + 'min' => [ + 'name' => 'Min', + ], + 'in_the_last_24_hours' => [ + 'name' => 'Di 24 Demjimêrên Dawîn de' + ], + 'in_the_last_day' => [ + 'name' => 'Di 24 Demjimêrên Dawîn de' + ], + 'in_the_last_week' => [ + 'name' => 'Di Hefteya Dawîn de' + ], + 'in_the_last_month' => [ + 'name' => 'Di Meha Dawîn de' + ], + 'ads_with_photo' => [ + 'name' => 'Reklamên Bi Wêne' + ], + 'ads_with_video' => [ + 'name' => 'Reklamên Bi Vîdyo' + ], + 'yes' => [ + 'name' => 'Erê' + ], + "no_location" => "Cîh nayê hilbijartin.", + "continue" => 'Berdewamkirin', + "gallery" => 'Galerya', + "ads" => 'Reklam', + "were_found" => 'hatin dîtin.', + + // Pending screen + 'pending_message_1' => 'Reklam di Pêvajoya Pejirandinê de ye', + 'pending_message_2' => "Dîroka Nûvekirina Ad", + 'pending_message_3' => 'Wextê Bendewariyê Texmîn kirin', + 'pending_message_4' => 'Dema ku di pêvajoya pejirandinê de derbas bûye dê li dema dopîngê were zêdekirin.', + 'pending_message_5' => 'Di pêvajoya pejirandinê de têkildarî reklamê ji navenda bangê çu danûstandin nayê kirin.', + 'hours' => 'saetan', + + // Preview page + 'preview_text' => [ + 'part_1' => 'Heke di derheqê reklama we de agahdariya jêrîn rast e, bişkoja "Berdewam" bikirtînin û biçin gava paşîn.', + 'part_2' => 'Heke na, bişkoja "Biguherîne" bikirtînin.', + ], + 'views' => 'Dîtin', + + // Detail page + "no_street_view" => "Li vî cîhî wêneyek dîtina kolanan tune", + 'edit_my_contact_info' => 'Agahdariya Têkiliya Min Biguherînin', + 'update_my_contact_info' => 'agahdariya têkiliya min nûve bikin', + 'contact_info' => 'Agahdariya têkiliyê', + 'ad_info' => 'Agahdariya Ad', + + // Select cat + 'select_category_step_by_step' => 'Gav bi Gav Kategorî hilbijêrin', + + // New create page + 'options' => 'Vebijarkên', + 'category_selection' => 'Hilbijartina Kategorî', + 'listing_details' => 'Details hûrgulî', + 'preview' => 'Pêşnerîn', + 'congratulations' => 'Pîrozbahî', + 'ad_desc' => 'Ad Description', + 'upload_photos' => 'Wêneyan bar bikin', + 'additional_fields' => 'Zeviyên Zêdeyî', + 'ad_location' => 'Cihê Ad', + + 'free' => 'Belaş', + 'ad_date' => 'Dîroka Ad', + 'photo_video' => 'Wêne, Vîdyo', + 'and_above' => 'û li jor', + 'and_below' => 'û li jêr', + 'clear_all' => 'Hemî Paqij Bikin', + 'balances' => 'Hevsengî', + 'packages' => 'Packages', + 'dopings' => 'Dopîng', + 'advs' => 'Advs', + 'site' => 'Malper', + 'subscription' => 'Abonetî', + 'created' => 'Afirandin', + 'product_option' => [ + 'name' => 'Hilbijarka Hilberê' + ], + 'option_json' => [ + 'name' => 'Dibe' + ], + 'old_price' => [ + 'name' => 'Bihayê Kevn' + ], +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/message.php b/addons/default/visiosoft/advs-module/resources/lang/ku/message.php new file mode 100644 index 000000000..71d17e0c1 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/message.php @@ -0,0 +1,32 @@ + 'Hilbera ku tê xwestin niha tune an neçalak e', + 'please_payment' => 'Ji kerema xwe bidin', + 'bank_account_info' => 'Agahdariya hesabê bankê', + 'agreement' => 'Bi tikandina Weşanê, hûn ji Mercên Bikaranînê û Siyaseta Veşarî ya me qebûl dikin ku hûn xwediyê rewa yê vî tiştî ne.', + 'update_category_msg' => 'Kategoriya dabeşkirî dê were nûve kirin.', + 'updated_category_msg' => 'Kategorî bi serfirazî hate guherandin.', + 'create_ad_with_post_cat' => [ + 'title' => "Hilbijartina kategoriyê qediya.", + 'success' => true, + 'continueBtn' => "Berdewamkirin", + ], + 'update_category_info' => 'Ji kerema xwe kategoriyê nûve bikin.', + 'filter_by_search_msg' => 'Parzûn Bi Lêgerînê.', + 'delete_author_error' => 'Hûn nekarin mesajek ku ne ya we be jêbirin', + 'success_delete' => 'Ad Deleted', + 'pending_ad_status' => 'Reklama we li benda pejirandina Edîtorê ye.', + 'extended' => ': reklam (s) hejmar bi serfirazî hate dirêj kirin.', + 'category_not_exist' => 'Ev kategorî êdî tune!', + 'currency_converted' => 'Dirav Bi Serkeftin Ve Veguherandin.', + 'choose_user' => 'Bikarhêner hilbijêrin', + 'owner_updated_successfully' => 'Xwedî Serkeftin Hat Nûvekirin!', + 'no_add_found' => 'Adek nehat dîtin!', + 'replicated_success' => 'Reklam bi serfirazî hate dubare kirin!', + 'ad_doesnt_exist' => "Ev reklam tune!", + 'select_location_error' => "Ji kerema xwe li ser nexşeyê cîhek hilbijêrin!", + 'this_ad_is_not_valid_anymore' => "Ev reklam ne derbasdar e êdî!", + 'approve_status_change' => "Rewşa Reklama We Çalak Bûye!", + 'passive_status_change' => "Rewşa Reklama We Pasîf Bû!", +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/permission.php b/addons/default/visiosoft/advs-module/resources/lang/ku/permission.php new file mode 100644 index 000000000..772fa1a14 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/permission.php @@ -0,0 +1,100 @@ + [ + 'name' => 'Reklam', + 'option' => [ + 'read' => 'Dikarin reklaman bixwînin?', + 'write' => 'Dikarin reklaman biafirînin / sererast bikin?', + 'delete' => 'Dikarin reklaman jêbirin?', + ], + ], + 'categories' => [ + 'name' => 'Kategorî', + 'option' => [ + 'read' => 'Ma dikarin kategoriyan bixwînin?', + 'write' => 'Dikare kategoriyan biafirîne / sererast bike?', + 'delete' => 'Ma dikare kategoriyan jê bibe?', + ], + ], + 'village' => [ + 'name' => 'Gûnd', + 'option' => [ + 'read' => 'Dikarin gund bixwînin?', + 'write' => 'Ma dikare gund çêbike / sererast bike?', + 'delete' => 'Ma dikare gund jê bibe?', + ], + ], + 'custom_fields' => [ + 'name' => 'Zeviyên xwerû', + 'option' => [ + 'read' => 'Ma dikarin qadên xwerû bixwînin?', + 'write' => 'Ma dikare qadên xwerû çêbike / sererast bike?', + 'delete' => 'Ma dikarin qadên xwerû jêbirin?', + ], + ], + 'custom_field_advs' => [ + 'name' => 'Reklamên qada xwerû', + 'option' => [ + 'read' => 'Ma dikarin reklamên qada xwerû bixwînin?', + 'write' => 'Ma dikare reklamên qada xwerû çêbike / sererast bike?', + 'delete' => 'Ma dikare reklamên qada xwerû jê bibe?', + ], + ], + 'cf_values' => [ + 'name' => 'Nirxên Cf', + 'option' => [ + 'read' => 'Ma dikare nirxên cf bixwîne?', + 'write' => 'Ma dikare nirxên cf biafirîne / sererast bike?', + 'delete' => 'Ma dikare nirxên cf jê bibe?', + ], + ], + 'options' => [ + 'name' => 'Vebijarkên', + 'option' => [ + 'read' => 'Vebijarkan dikarin bixwînin?', + 'write' => 'Ma dikare vebijarkan biafirîne / sererast bike?', + 'delete' => 'Vebijarkên dikarin jêbirin?', + ], + ], + 'productoptions' => [ + 'name' => 'Hilbijartinên hilberê', + 'option' => [ + 'read' => 'Ma dikarin hilberînan hilînin?', + 'write' => 'Dikare hilberînan vebêje / biafirîne?', + 'delete' => 'Ma dikare hilberên hilberê hilweşîne?', + ], + ], + 'productoptions_value' => [ + 'name' => 'Nirxê hilberînan', + 'option' => [ + 'read' => 'Ma dikare nirxa hilberînan bixwîne?', + 'write' => 'Ma dikare nirxa hilberîneriyan biafirîne / sererast bike?', + 'delete' => 'Ma dikare nirxa hilberînan jê bibe?', + ], + ], + 'options_configuration' => [ + 'name' => 'Veavakirina vebijarkan', + 'option' => [ + 'read' => 'Ma veavakirina vebijarkan dikare bixwîne?', + 'write' => 'Ma dikare veavakirina vebijarkan biafirîne / sererast bike?', + 'delete' => 'Ma veavakirina vebijarkan dikare jê bibe?', + ], + ], + 'option_configuration' => [ + 'name' => 'Veavakirina vebijarkê', + 'option' => [ + 'read' => 'Hûn dikarin veavakirina vebijarkê bixwînin?', + 'write' => 'Ma dikare veavakirina vebijarkê biafirîne / sererast bike?', + 'delete' => 'Ma dikare veavakirina vebijarkê were jêbirin?', + ], + ], + 'option_configuration' => [ + 'name' => 'Veavakirina vebijarkê', + 'option' => [ + 'read' => 'Hûn dikarin veavakirina vebijarkê bixwînin?', + 'write' => 'Ma dikare veavakirina vebijarkê biafirîne / sererast bike?', + 'delete' => 'Ma dikare veavakirina vebijarkê were jêbirin?', + ], + ], +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/section.php b/addons/default/visiosoft/advs-module/resources/lang/ku/section.php new file mode 100644 index 000000000..7072efc6a --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/section.php @@ -0,0 +1,59 @@ + [ + 'title' => 'Reklam', + ], + 'categories' => [ + 'title' => 'Kategorî', + ], + 'countries' => [ + 'title' => 'Welat', + ], + 'cities' => [ + 'title' => 'Bajar', + ], + 'districts' => [ + 'title' => 'Navçe', + ], + 'neighborhoods' => [ + 'title' => 'Taxan', + ], + 'village' => [ + 'title' => 'Gûnd', + ], + 'custom_fields' => [ + 'title' => 'Zeviyên xwerû', + ], + 'custom_field_advs' => [ + 'title' => 'Reklamên qada xwerû', + ], + 'cf_values' => [ + 'title' => 'Nirxên Cf', + ], + 'fields' => [ + 'title' => 'Zeviyên xwerû' + ], + 'assets_clear' => [ + 'name' => 'Hebûnên zelal' + ], + 'general' => 'Giştî', + 'ads' => 'Reklam', + 'user' => 'Bikaranîvan', + 'filter' => 'Parzûn', + 'create_ad' => 'Ad biafirînin', + 'options' => [ + 'title' => 'Vebijarkên', + ], + 'ads_image' => 'Ads Wêne', + 'product_options' => [ + 'title' => 'Vebijarkên', + ], + 'productoptions_value' => [ + 'title' => 'Nirx Nirx', + ], + 'option_configuration' => [ + 'title' => 'Veavakirina', + ], + 'translations' => 'Wergeran', +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ku/setting.php new file mode 100644 index 000000000..96180c7f3 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/setting.php @@ -0,0 +1,222 @@ + [ + 'name' => 'Jixweber Pejirandin', + ], + 'default_view_type' => [ + 'name' => 'Default View Type', + ], + 'hide_zero_price' => [ + 'name' => 'Ger Zero Bihayê Veşêre', + 'instructions' => 'Heke bihayê reklamê 0 be bihayê veşêrin', + ], + 'estimated_pending_time' => [ + 'name' => 'Dema Bendewarî ya Texmînkirî', + 'instructions' => 'Di Saetan de', + ], + 'default_published_time' => [ + 'name' => 'Wextê Weşana Default', + ], + 'address' => [ + 'name' => 'Navnîşana Têkiliyê', + ], + 'phone' => [ + 'name' => 'Têlefonê Têkilî', + ], + 'favicon' => [ + 'name' => 'Favicon', + ] + ,'map_coordinates_long' => [ + 'name' => 'Nexşeya Hevrêziya Dirêj', + ], + 'map_coordinates_lat' => [ + 'name' => 'Nexşeya Hevrêziya Lat', + ], + 'iban_numbers' => [ + 'name' => 'IBAN', + ], + 'logo' => [ + 'name' => 'Logo', + ], + 'ogImage' => [ + 'name' => 'Logoya Parvekirina Civakî', + 'warning' => 'Divê ew bi çareseriya 1200 x 630 be. ', + + ], + 'currencies' => [ + 'name' => 'Dravên Çalak', + ], + 'latest-limit' => [ + 'name' => 'Sînora herî dawî', + ], + 'site_address' => [ + 'name' => 'Navnîşana malperê', + 'warning' => 'Auto zêdekirî www. www.sitename.com ', + ], + 'google_map_key' => [ + 'name' => 'Nexşeya Google Key Api', + ], + + 'default_country' => [ + 'name' => 'Default Ad Country', + ], + 'free_currencyconverterapi_key' => [ + 'name' => 'Mifteya API-ya veguherînerê Pereyê' + ], + 'default_city' => [ + 'name' => 'Default Ad City', + ], + 'default_district' => [ + 'name' => 'Default Ad District', + ], + 'default_neighborhood' => [ + 'name' => 'Default Ad Taxa', + ], + 'default_currency' => [ + 'name' => 'Dravê Ad Ademî', + ], + 'default_GET' => [ + 'name' => 'Default Ad GET', + ], + 'twitter' => [ + 'name' => 'Twitter', + ], + 'facebook' => [ + 'name' => 'Facebook', + ], + 'youtube' => [ + 'name' => 'Youtube', + ], + 'google' => [ + 'name' => 'gûgil', + ], + 'listing_page_image' => [ + 'name' => 'Navnîşkirina Wêneya Rûpelê', + ], + 'hide_standard_price_field' => [ + 'name' => 'Zeviya Bihayê Standard veşêrin', + ], + 'hide_options_field' => [ + 'name' => 'Qada Vebijarkan Veşêre', + ], + 'hide_village_field' => [ + 'name' => 'Zeviyê Gundê Veşêre', + ], + 'hide_configurations' => [ + 'name' => 'Bişkoja Configurations Veşêre', + 'instructions' => 'Bişkoja Veavakirina Di Rûpelê Pêşdîtina Adê de Veşêre', + ], + 'make_map_required' => [ + 'name' => 'Nexşeyê Pêdivî ye', + 'instructions' => 'Dema ku reklamek diafirîne bikarhêner hewce dike ku pîneyek li ser nexşeyê bicîh bike', + ], + 'hide_listing_standard_price' => [ + 'name' => 'Veşêrin Navnîşa Bihayê Standard', + ], + 'enabled_currencies' => [ + 'name' => 'Pereyên Çalakkirî', + ], + 'google_statistic_code' => [ + 'name' => 'Google Code Code', + ], + 'register_email_field' => [ + 'name' => 'Endamtiya Serlêdana E-nameya Endamtiyê', + ], + 'market_place' => [ + 'name' => 'Cihê Sûkê', + ], + 'price_area_hidden' => [ + 'name' => 'Qada Bihayê Veşartî', + ], + 'hide_price_filter' => [ + 'name' => 'Parzûna Bihayê Veşêre', + ], + 'hide_date_filter' => [ + 'name' => 'Parzûna Dîrokê Veşêre', + ], + 'hide_photo_filter' => [ + 'name' => 'Photo Filter Veşêre', + ], + 'hide_map_filter' => [ + 'name' => 'Parzûna Nexşeyê veşêrin', + ], + 'show_lang_url' => [ + 'name' => 'Ji bo URL Parametreya Lang nîşan bidin', + ], + 'popular_ads_limit' => [ + 'name' => 'Sînorên Ads Popular', + ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Mezinahiya Wêne Paşve', + ], + 'full_image_width' => [ + 'name' => 'Firehiya Wêne Tevahî', + ], + 'full_image_height' => [ + 'name' => 'Bilindahiya Wêneya Tevahî', + ], + 'medium_image_width' => [ + 'name' => 'Firehiya Wêne ya Navîn', + ], + 'medium_image_height' => [ + 'name' => 'Bilindahiya Wêne ya Navîn', + ], + 'thumbnail_width' => [ + 'name' => 'Firehiya Thumbnail', + ], + 'thumbnail_height' => [ + 'name' => 'Bilindahiya Thumbnail', + ], + 'add_canvas' => [ + 'name' => 'Canvas zêde bikin', + ], + 'image_canvas_width' => [ + 'name' => 'Firehiya Canvas Wêne', + ], + 'image_canvas_height' => [ + 'name' => 'Wêne Canvas Bilindî', + ], + 'watermark_type' => [ + 'name' => 'Tîpa ava avê', + ], + 'watermark_text' => [ + 'name' => 'Wateya Nivîsarê', + ], + 'watermark_image' => [ + 'name' => 'Wêne Watermark', + ], + 'watermark_position' => [ + 'name' => 'Positiona Watermark', + ], + 'user_filter_limit' => [ + 'name' => 'Sînora Parzûna Bikarhêner', + 'instructions' => 'Di panelê rêveberê de' + ], + 'show_breadcrumb_when_creating_ad' => [ + 'name' => 'Dema Afirandina Reklamek Breadcrumb nîşan bidin', + ], + 'show_ads_count' => [ + 'name' => 'Nîşan Ads Count', + 'instructions' => 'Reklamên li ser lîsteya kategoriyên çepê hesab bikin nîşan bikin', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Peymana Ad Ad-ê nîşan bide', + 'instructions' => 'Heke hûn dixwazin li ser rûpela afirandina reklamê peymana siyaseta nepenîtiyê nîşan bikin vê yekê vekin', + ], + 'override_text' => [ + 'name' => 'Nivîsarê zêde bikin', + 'instructions' => 'Nirxa Kevn: Nirxa Nû' + ], + 'steps_color' => [ + 'name' => 'Steps Color', + 'instructions' => 'Rengê gavên pêşverû diguherîne.' + ], + 'create_ad_button_color' => [ + 'name' => 'Rengê Bişkoja Adê biafirînin', + 'instructions' => 'Bişkoja ku dema hilbijartina kategoriya reklama nû xilas dibe diguheze.' + ], +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/stream.php b/addons/default/visiosoft/advs-module/resources/lang/ku/stream.php new file mode 100644 index 000000000..660320289 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/stream.php @@ -0,0 +1,34 @@ + [ + 'name' => 'Advs', + ], + 'categories' => [ + 'name' => 'Kategorî', + ], + 'village' => [ + 'name' => 'Gûnd', + ], + 'custom_fields' => [ + 'name' => 'Zeviyên xwerû', + ], + 'custom_field_advs' => [ + 'name' => 'Fieldêwirmendên qada xwerû', + ], + 'cf_values' => [ + 'name' => 'Nirxên Cf', + ], + 'options' => [ + 'name' => 'Vebijarkên', + ], + 'product_options' => [ + 'name' => 'Vebijarkên Hilberê', + ], + 'productoptions_value' => [ + 'name' => 'Nirxê vebijarkan', + ], + 'option_configuration' => [ + 'name' => 'Veavakirina', + ], +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/view.php b/addons/default/visiosoft/advs-module/resources/lang/ku/view.php new file mode 100644 index 000000000..8d409c707 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/view.php @@ -0,0 +1,5 @@ + 'Neqedya', +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/button.php b/addons/default/visiosoft/advs-module/resources/lang/nl/button.php index e08d68148..9202056f2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Nieuwe Adv', + 'new_classified' => 'Nieuw ingedeeld', 'new_category' => 'Nieuwe categorie', 'new_country' => 'Nieuw Land', 'new_city' => 'Nieuwe stad', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Nieuwe optieconfiguratie', 'create_configurations' => 'Maak configuraties', 'replicate' => 'Repliceren', + 'fast_create' => 'Snel aanmaken', + 'publish' => 'Publiceren', + 'import' => 'Importeren', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/field.php b/addons/default/visiosoft/advs-module/resources/lang/nl/field.php index 2f9fa9049..728c18edf 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Subcategorie 6' ], + 'cat8' => [ + 'name' => 'Subcategorie 7' + ], + 'cat9' => [ + 'name' => 'Subcategorie 8' + ], + 'cat10' => [ + 'name' => 'Subcategorie 9' + ], 'currency' => [ 'name' => 'Valuta' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Lijst details', 'preview' => 'Voorbeeld', 'congratulations' => 'Gefeliciteerd', + 'ad_desc' => 'Beschrijving van de Reclame', + 'upload_photos' => 'Foto\'s uploaden', + 'additional_fields' => 'Extra velden', + 'ad_location' => 'Advertentielocatie', 'free' => 'Vrij', 'ad_date' => 'Advertentiedatum', diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/message.php b/addons/default/visiosoft/advs-module/resources/lang/nl/message.php index b640d1115..363c2bb8c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Deze advertentie bestaat niet!", 'select_location_error' => "Selecteer een locatie op de kaart!", 'this_ad_is_not_valid_anymore' => "Deze advertentie is niet meer geldig!", + 'approve_status_change' => "De status van uw advertentie is ingesteld op Actief!", + 'passive_status_change' => "De status van uw advertentie is ingesteld op passief!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/section.php b/addons/default/visiosoft/advs-module/resources/lang/nl/section.php index bf7535d66..f01176e9e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Configuratie', ], + 'translations' => 'Vertalingen', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/setting.php b/addons/default/visiosoft/advs-module/resources/lang/nl/setting.php index 4eee06e17..b90087be7 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Marktplaats', ], - + 'price_area_hidden' => [ + 'name' => 'Prijsgebied verborgen', + ], 'hide_price_filter' => [ 'name' => 'Prijsfilter verbergen', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Toon breadcrumb bij het maken van een advertentie', ], + 'show_ads_count' => [ + 'name' => 'Toon het aantal advertenties', + 'instructions' => 'Toon het aantal advertenties in de lijst met linkercategorieën', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Toon advertentieovereenkomst', + 'instructions' => 'Schakel dit in als u een privacybeleidsovereenkomst wilt weergeven op de pagina voor het maken van advertenties', + ], + 'override_text' => [ + 'name' => 'Tekst overschrijven', + 'instructions' => 'Oude waarde: nieuwe waarde' + ], + 'steps_color' => [ + 'name' => 'Stappen kleur', + 'instructions' => 'Verandert de kleur van de progressieve stappen.' + ], + 'create_ad_button_color' => [ + 'name' => 'Kleur van advertentieknop maken', + 'instructions' => 'Wijzigt de knop die wordt weergegeven wanneer de selectie van de nieuwe advertentiecategorie is voltooid.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/button.php b/addons/default/visiosoft/advs-module/resources/lang/pl/button.php index e36257357..3173823e5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Nowy Adv', + 'new_classified' => 'Nowy sklasyfikowany', 'new_category' => 'Nowa kategoria', 'new_country' => 'Nowy kraj', 'new_city' => 'Nowe Miasto', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Nowa konfiguracja opcji', 'create_configurations' => 'Utwórz konfiguracje', 'replicate' => 'Replika', + 'fast_create' => 'Szybkie tworzenie', + 'publish' => 'Publikować', + 'import' => 'Import', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/field.php b/addons/default/visiosoft/advs-module/resources/lang/pl/field.php index e1df999b2..6dde713cc 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Podkategoria 6' ], + 'cat8' => [ + 'name' => 'Podkategoria 7' + ], + 'cat9' => [ + 'name' => 'Podkategoria 8' + ], + 'cat10' => [ + 'name' => 'Podkategoria 9' + ], 'currency' => [ 'name' => 'Waluta' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'Szczegóły aukcji', 'preview' => 'Zapowiedź', 'congratulations' => 'Gratulacje', + 'ad_desc' => 'opis reklamy', + 'upload_photos' => 'Załadować zdjęcia', + 'additional_fields' => 'Dodatkowe pola', + 'ad_location' => 'Lokalizacja reklamy', 'free' => 'Wolny', 'ad_date' => 'Data ogłoszenia', diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/message.php b/addons/default/visiosoft/advs-module/resources/lang/pl/message.php index 258cb973d..9d71f7715 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Ta reklama nie istnieje!", 'select_location_error' => "Wybierz lokalizację na mapie!", 'this_ad_is_not_valid_anymore' => "Ta reklama jest już nieważna!", + 'approve_status_change' => "Stan Twojej reklamy został ustawiony jako Aktywny!", + 'passive_status_change' => "Stan Twojej reklamy został ustawiony na pasywny!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/section.php b/addons/default/visiosoft/advs-module/resources/lang/pl/section.php index 96f1e3ae9..e4d150812 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Konfiguracja', ], + 'translations' => 'Tłumaczenia', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/setting.php b/addons/default/visiosoft/advs-module/resources/lang/pl/setting.php index ac06305be..4d8ec36ac 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Rynek', ], - + 'price_area_hidden' => [ + 'name' => 'Ukryty obszar cen', + ], 'hide_price_filter' => [ 'name' => 'Ukryj filtr cen', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Pokaż menu nawigacyjne podczas tworzenia reklamy', ], + 'show_ads_count' => [ + 'name' => 'Pokaż liczbę reklam', + 'instructions' => 'Pokaż liczbę reklam na liście kategorii po lewej stronie', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Pokaż umowę opublikowania ogłoszenia', + 'instructions' => 'Włącz tę opcję, jeśli chcesz wyświetlać umowę o polityce prywatności na stronie tworzenia reklamy', + ], + 'override_text' => [ + 'name' => 'Zastąp tekst', + 'instructions' => 'Stara wartość: nowa wartość' + ], + 'steps_color' => [ + 'name' => 'Kolor kroków', + 'instructions' => 'Zmienia kolor stopniowych kroków.' + ], + 'create_ad_button_color' => [ + 'name' => 'Utwórz kolor przycisku reklamy', + 'instructions' => 'Zmienia przycisk wyświetlany po zakończeniu wyboru nowej kategorii reklam.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/button.php b/addons/default/visiosoft/advs-module/resources/lang/pt/button.php index 05424756f..a2c36ee01 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Novo Adv', + 'new_classified' => 'Novo classificado', 'new_category' => 'Nova categoria', 'new_country' => 'Novo país', 'new_city' => 'Nova cidade', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Configuração de nova opção', 'create_configurations' => 'Criar configurações', 'replicate' => 'Replicar', + 'fast_create' => 'Criação rápida', + 'publish' => 'Publicar', + 'import' => 'Importar', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/field.php b/addons/default/visiosoft/advs-module/resources/lang/pt/field.php index ba3f01871..9a3d49ce2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Subcategoria 6' ], + 'cat8' => [ + 'name' => 'Subcategoria 7' + ], + 'cat9' => [ + 'name' => 'Sub Categoria 8' + ], + 'cat10' => [ + 'name' => 'Subcategoria 9' + ], 'currency' => [ 'name' => 'Moeda' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Detalhes da lista', 'preview' => 'Antevisão', 'congratulations' => 'Parabéns', + 'ad_desc' => 'Descrição de Anúncio', + 'upload_photos' => 'Upload fotos', + 'additional_fields' => 'Campos Adicionais', + 'ad_location' => 'Localização do anúncio', 'free' => 'Livre', 'ad_date' => 'Data do Anúncio', diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/message.php b/addons/default/visiosoft/advs-module/resources/lang/pt/message.php index 8bcaf3e22..ab77b709e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Este anúncio não existe!", 'select_location_error' => "Selecione um local no mapa!", 'this_ad_is_not_valid_anymore' => "Este anúncio não é mais válido!", + 'approve_status_change' => "O status do seu anúncio foi definido como ativo!", + 'passive_status_change' => "O status do seu anúncio foi definido como passivo!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/section.php b/addons/default/visiosoft/advs-module/resources/lang/pt/section.php index 7ac1e1554..45bf46c6d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Configuração', ], + 'translations' => 'Traduções', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/setting.php b/addons/default/visiosoft/advs-module/resources/lang/pt/setting.php index 77ef94831..bac68b84a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Mercado', ], - + 'price_area_hidden' => [ + 'name' => 'Área de preço oculta', + ], 'hide_price_filter' => [ 'name' => 'Ocultar filtro de preço', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Mostrar localização atual ao criar um anúncio', ], + 'show_ads_count' => [ + 'name' => 'Mostrar contagem de anúncios', + 'instructions' => 'Exibir contagem de anúncios na lista de categorias à esquerda', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Mostrar Acordo de Postagem', + 'instructions' => 'Ative-o se quiser exibir um acordo de política de privacidade na página de criação de anúncios', + ], + 'override_text' => [ + 'name' => 'Substituir Texto', + 'instructions' => 'Valor antigo: novo valor' + ], + 'steps_color' => [ + 'name' => 'Passos Cor', + 'instructions' => 'Altera a cor dos passos progressivos.' + ], + 'create_ad_button_color' => [ + 'name' => 'Criar cor do botão do anúncio', + 'instructions' => 'Altera o botão que aparece quando a seleção da nova categoria de anúncio é concluída.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/button.php b/addons/default/visiosoft/advs-module/resources/lang/ro/button.php index de9c40590..d5f9cc0e5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Avocat nou', + 'new_classified' => 'Nou clasificat', 'new_category' => 'Categorie noua', 'new_country' => 'Țara nouă', 'new_city' => 'Oras nou', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Configurare opțiune nouă', 'create_configurations' => 'Creați configurații', 'replicate' => 'Replică', + 'fast_create' => 'Crearea rapidă', + 'publish' => 'Publica', + 'import' => 'Import', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/field.php b/addons/default/visiosoft/advs-module/resources/lang/ro/field.php index f4ca1866c..58fcafeee 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Subcategoria 6' ], + 'cat8' => [ + 'name' => 'Subcategoria 7' + ], + 'cat9' => [ + 'name' => 'Subcategoria 8' + ], + 'cat10' => [ + 'name' => 'Subcategoria 9' + ], 'currency' => [ 'name' => 'Valută' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'Detalii listare', 'preview' => 'previzualizare', 'congratulations' => 'Felicitări', + 'ad_desc' => 'Descrierea anunțului', + 'upload_photos' => 'Încarcă fotografii', + 'additional_fields' => 'Câmpuri suplimentare', + 'ad_location' => 'Locația anunțului', 'free' => 'Gratuit', 'ad_date' => 'Data publicității', diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/message.php b/addons/default/visiosoft/advs-module/resources/lang/ro/message.php index 9346c9b51..4ff12a0b0 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Acest anunț nu există!", 'select_location_error' => "Vă rugăm să selectați o locație pe hartă!", 'this_ad_is_not_valid_anymore' => "Acest anunț nu mai este valabil!", + 'approve_status_change' => "Starea anunțului dvs. a fost activată!", + 'passive_status_change' => "Starea anunțului dvs. a fost setată la pasivă!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/section.php b/addons/default/visiosoft/advs-module/resources/lang/ro/section.php index a517ecc8b..c5667c5d7 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Configurare', ], + 'translations' => 'Traduceri', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ro/setting.php index d0bd2b043..6b0480355 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Piata de desfacere', ], - + 'price_area_hidden' => [ + 'name' => 'Zona de preț ascunsă', + ], 'hide_price_filter' => [ 'name' => 'Ascundeți filtrul de preț', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Afișați pesmet atunci când creați un anunț', ], + 'show_ads_count' => [ + 'name' => 'Afișați numărul de anunțuri', + 'instructions' => 'Afișați anunțurile în lista de categorii din stânga', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Afișați acordul de postare a anunțului', + 'instructions' => 'Activați acest lucru dacă doriți să afișați un acord privind politica de confidențialitate pe pagina de creare a anunțului', + ], + 'override_text' => [ + 'name' => 'Înlocuiți textul', + 'instructions' => 'Valoare veche: valoare nouă' + ], + 'steps_color' => [ + 'name' => 'Pași Culoare', + 'instructions' => 'Schimbă culoarea treptelor progresive.' + ], + 'create_ad_button_color' => [ + 'name' => 'Creați culoarea butonului publicitar', + 'instructions' => 'Schimbă butonul care se afișează la finalizarea selecției noii categorii de anunțuri.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/button.php b/addons/default/visiosoft/advs-module/resources/lang/ru/button.php index a18c94425..d1c106cc8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Новый адв', + 'new_classified' => 'Новое объявление', 'new_category' => 'Новая категория', 'new_country' => 'Новая Страна', 'new_city' => 'Новый город', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Новая конфигурация опций', 'create_configurations' => 'Создать конфигурации', 'replicate' => 'Тиражировать', + 'fast_create' => 'Быстрое создание', + 'publish' => 'Публиковать', + 'import' => 'Импортировать', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/field.php b/addons/default/visiosoft/advs-module/resources/lang/ru/field.php index 255797171..d1ad286f1 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Подкатегория 6' ], + 'cat8' => [ + 'name' => 'Подкатегория 7' + ], + 'cat9' => [ + 'name' => 'Подкатегория 8' + ], + 'cat10' => [ + 'name' => 'Подкатегория 9' + ], 'currency' => [ 'name' => 'валюта' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Детали объявления', 'preview' => 'Предварительный просмотр', 'congratulations' => 'Поздравления', + 'ad_desc' => 'Описание объявления', + 'upload_photos' => 'Загрузить фотографии', + 'additional_fields' => 'Дополнительные поля', + 'ad_location' => 'Местоположение объявления', 'free' => 'Бесплатно', 'ad_date' => 'Дата объявления', diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/message.php b/addons/default/visiosoft/advs-module/resources/lang/ru/message.php index 8a3395ea0..eba6f454c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Такого объявления не существует!", 'select_location_error' => "Пожалуйста, выберите место на карте!", 'this_ad_is_not_valid_anymore' => "Это объявление больше не действует!", + 'approve_status_change' => "Статус вашего объявления установлен на \"Активно\"!", + 'passive_status_change' => "Статус вашего объявления установлен на пассивный!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/section.php b/addons/default/visiosoft/advs-module/resources/lang/ru/section.php index 780e7b619..dd064a785 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Конфигурация', ], + 'translations' => 'Переводы', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ru/setting.php index cf7b0d526..58a48cd06 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Рыночная площадь', ], - + 'price_area_hidden' => [ + 'name' => 'Цена Площадь Скрыта', + ], 'hide_price_filter' => [ 'name' => 'Скрыть фильтр цен', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Показывать хлебные крошки при создании объявления', ], + 'show_ads_count' => [ + 'name' => 'Показать количество объявлений', + 'instructions' => 'Показывать количество объявлений в левом списке категорий', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Показать соглашение о публикации рекламы', + 'instructions' => 'Включите это, если вы хотите отображать соглашение о политике конфиденциальности на странице создания рекламы.', + ], + 'override_text' => [ + 'name' => 'Заменить текст', + 'instructions' => 'Старое значение: новое значение' + ], + 'steps_color' => [ + 'name' => 'Цвет ступеней', + 'instructions' => 'Изменяет цвет прогрессивных шагов.' + ], + 'create_ad_button_color' => [ + 'name' => 'Создать цвет кнопки объявления', + 'instructions' => 'Изменяет кнопку, которая появляется после завершения выбора новой категории объявлений.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/button.php b/addons/default/visiosoft/advs-module/resources/lang/sq/button.php index 696d47979..a2b0f86b6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Njoftime i ri', + 'new_classified' => 'Klasifikimi i ri', 'new_category' => 'Kategoria e re', 'new_country' => 'Shteti i ri', 'new_city' => 'Qark i Ri', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Konfigurimi i ri i opsionit', 'create_configurations' => 'Krijoni konfigurime', 'replicate' => 'Kopjoni', + 'fast_create' => 'Krijo shpejt', + 'publish' => 'Publikoni', + 'import' => 'Importit', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/field.php b/addons/default/visiosoft/advs-module/resources/lang/sq/field.php index afd2499da..e2a831b0c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Nënkategoria 6' ], + 'cat8' => [ + 'name' => 'Nën Kategoria 7' + ], + 'cat9' => [ + 'name' => 'Nën Kategoria 8' + ], + 'cat10' => [ + 'name' => 'Nënkategoria 9' + ], 'currency' => [ 'name' => 'Monedhë' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Detajet e Listimit', 'preview' => 'Paraqitje', 'congratulations' => 'Urime', + 'ad_desc' => 'Përshkrimi i reklamës', + 'upload_photos' => 'Ngarko Fotografitë', + 'additional_fields' => 'Fushat shtesë', + 'ad_location' => 'Vendndodhja e reklamës', 'free' => 'Falas', 'ad_date' => 'Data e shpalljes', diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/message.php b/addons/default/visiosoft/advs-module/resources/lang/sq/message.php index 6ade24af9..d27526915 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Kjo shpallje nuk ekziston!", 'select_location_error' => "Ju lutemi zgjidhni një vendndodhje në hartë!", 'this_ad_is_not_valid_anymore' => "Kjo reklamë nuk është më e vlefshme!", + 'approve_status_change' => "Statusi i Reklamës suaj Setshtë vendosur në Aktiv!", + 'passive_status_change' => "Statusi i Reklamës suaj Setshtë vendosur në pasiv!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/section.php b/addons/default/visiosoft/advs-module/resources/lang/sq/section.php index 085445c09..e0b12d9e4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Konfigurimi', ], + 'translations' => 'Përkthime', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/setting.php b/addons/default/visiosoft/advs-module/resources/lang/sq/setting.php index 3a279a519..b58b5cafc 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Vendi i tregut', ], - + 'price_area_hidden' => [ + 'name' => 'Zona e Çmimit e Fshehur', + ], 'hide_price_filter' => [ 'name' => 'Fsheh Filterin e Pricemimeve', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Tregoni Breadcrumb kur krijoni një reklamë', ], + 'show_ads_count' => [ + 'name' => 'Shfaq Numrin e Reklamave', + 'instructions' => 'Shfaq reklamat në listën e kategorive të majta', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Shfaq Marrëveshjen për shpalljen e postimit', + 'instructions' => 'Aktivizo këtë nëse dëshiron të shfaqësh një marrëveshje të politikës së privatësisë në faqen e krijimit të reklamës', + ], + 'override_text' => [ + 'name' => 'Mbishkruaj tekstin', + 'instructions' => 'Vlera e Vjetër: Vlera e Re' + ], + 'steps_color' => [ + 'name' => 'Hapat Ngjyra', + 'instructions' => 'Ndryshon ngjyrën e hapave progresivë.' + ], + 'create_ad_button_color' => [ + 'name' => 'Krijo ngjyrën e butonit të reklamës', + 'instructions' => 'Ndryshon butonin që shfaqet kur të përfundojë zgjedhja e kategorisë së re të reklamës.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/button.php b/addons/default/visiosoft/advs-module/resources/lang/sv/button.php index 783db652e..64815bf40 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Ny adv', + 'new_classified' => 'Ny klassificering', 'new_category' => 'Ny kategori', 'new_country' => 'Nytt land', 'new_city' => 'Ny stad', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Ny alternativkonfiguration', 'create_configurations' => 'Skapa konfigurationer', 'replicate' => 'Återskapa', + 'fast_create' => 'Skapa snabbt', + 'publish' => 'Publicera', + 'import' => 'Importera', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/field.php b/addons/default/visiosoft/advs-module/resources/lang/sv/field.php index 02166f00d..32881f28f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Underkategori 6' ], + 'cat8' => [ + 'name' => 'Underkategori 7' + ], + 'cat9' => [ + 'name' => 'Underkategori 8' + ], + 'cat10' => [ + 'name' => 'Underkategori 9' + ], 'currency' => [ 'name' => 'Valuta' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'Listningsinformation', 'preview' => 'Förhandsvisning', 'congratulations' => 'Grattis', + 'ad_desc' => 'Annonsbeskrivning', + 'upload_photos' => 'Ladda upp foton', + 'additional_fields' => 'Ytterligare fält', + 'ad_location' => 'Annonsplats', 'free' => 'Fri', 'ad_date' => 'Annonsdatum', diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/message.php b/addons/default/visiosoft/advs-module/resources/lang/sv/message.php index d5d1855dd..79c939ac4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Den här annonsen finns inte!", 'select_location_error' => "Välj en plats på kartan!", 'this_ad_is_not_valid_anymore' => "Denna annons är inte giltig längre!", + 'approve_status_change' => "Din annons har ställts in som aktiv!", + 'passive_status_change' => "Din annons har blivit passiv!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/section.php b/addons/default/visiosoft/advs-module/resources/lang/sv/section.php index 61ad741d4..1fc2dc42e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Konfiguration', ], + 'translations' => 'Översättningar', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/setting.php b/addons/default/visiosoft/advs-module/resources/lang/sv/setting.php index 09f56ab4b..f77f8ba69 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Market Place', ], - + 'price_area_hidden' => [ + 'name' => 'Prisområde dolt', + ], 'hide_price_filter' => [ 'name' => 'Dölj prisfilter', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Visa brödsmulan när du skapar en annons', ], + 'show_ads_count' => [ + 'name' => 'Visa antal annonser', + 'instructions' => 'Visa annonser räknas på listan till vänster', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Visa annonsannonsavtal', + 'instructions' => 'Aktivera detta om du vill visa ett integritetspolicyavtal på sidan för skapande av annonser', + ], + 'override_text' => [ + 'name' => 'Åsidosätt text', + 'instructions' => 'Old Value: New Value' + ], + 'steps_color' => [ + 'name' => 'Stegfärg', + 'instructions' => 'Ändrar de progressiva stegfärgen.' + ], + 'create_ad_button_color' => [ + 'name' => 'Skapa färg för annonsknapp', + 'instructions' => 'Ändrar knappen som visas när det nya valet av annonskategori är klart.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/button.php b/addons/default/visiosoft/advs-module/resources/lang/tr/button.php index 2ebeaae73..bcd83de0c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/button.php @@ -1,7 +1,8 @@ 'Yeni İlan', + 'new_adv' => 'Yeni ürün/ilan', + 'new_classified' => 'Yeni ürün/ilan', 'new_category' => 'Yeni kategori', 'new_country' => 'Yeni ülke', 'new_city' => 'Yeni şehir', @@ -39,6 +40,7 @@ return [ 'new_option_configuration' => 'Yeni Seçenek yapılandırması', 'create_configurations' => 'Konfigürasyonlar Oluşturun', 'replicate' => 'Tekrarla', - 'publish' => 'Yayınla', - + 'fast_create' => 'Hızlı ekle', + 'publish' => 'Yayınla', + 'import' => 'İçe aktar', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/field.php b/addons/default/visiosoft/advs-module/resources/lang/tr/field.php index 0c5de843a..40751f2d6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/field.php @@ -82,21 +82,30 @@ return [ 'cat7' => [ 'name' => 'Alt Kategori 6' ], + 'cat8' => [ + 'name' => 'Alt Kategori 7' + ], + 'cat9' => [ + 'name' => 'Alt Kategori 8' + ], + 'cat10' => [ + 'name' => 'Alt Kategori 9' + ], 'currency' => [ - 'name' => 'Para birimi' + 'name' => 'Para Birimi' ], 'status' => [ - 'name' => 'Durum', + 'name' => 'durum', 'option' => [ 'approved' => 'Onaylandı', - 'expired' => 'Süresi doldu', + 'expired' => 'Süresi Doldu', 'unpublished' => 'Pasif', 'pending_admin' => 'Yönetici Onay Bekliyor', 'pending_user' => 'Kullanıcının Yayınlaması Bekleniyor' ] ], 'pending_adv' => [ - 'name' => 'Yayında olmayan' + 'name' => 'Yayınlanmamış' ], 'finish_at' => [ 'name' => 'Bitiş Saati' @@ -131,9 +140,9 @@ return [ 'sort_by' => 'Sırala', 'pick_option' => 'Bir seçenek seçin', 'pick_ordering' => 'Sıralama Seç', - 'price_high' => 'Fiyat pahalıdan ucuza', + 'price_high' => 'Fiyat Pahalıdan Ucuza', 'price_low' => 'Fiyat Düşükten Yükseğe', - 'newest' => 'En yeni', + 'newest' => 'En Yeni', 'oldest' => 'En eski', 'address_a_z' => 'Adres (A\'dan Z\'ye)', 'address_z_a' => 'Adres (Z\'den A\'ya)', @@ -142,10 +151,10 @@ return [ ], 'all_categories' => 'Tüm Kategoriler', 'location' => 'Lokasyon', - 'send_message' => 'Mesaj gönder', + 'send_message' => 'Mesaj Gönder', 'phone_gsm' => 'Cep Telefonu', 'phone_office' => 'Sabit telefon', - 'add_to_favorites' => "Favorilere ekle", + 'add_to_favorites' => "Favorilere Ekle", 'send' => 'Gönder', 'search_name' => 'Arama Adı', 'my_favorite_searches' => 'Favori Aramalar', @@ -312,8 +321,6 @@ return [ 'additional_fields' => 'Özel Alanlar', 'ad_location' => 'Lokasyon Ekle', - - 'free' => 'Bedava', 'ad_date' => 'İlan Tarihi', 'photo_video' => 'Fotoğraf, Video', diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/message.php b/addons/default/visiosoft/advs-module/resources/lang/tr/message.php index 6cbc77cb4..f8bffb5ba 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/message.php @@ -10,7 +10,7 @@ return [ 'create_ad_with_post_cat' => [ 'title' => "Kategori seçimi tamamlandı.", 'success' => true, - 'continueBtn' => "Devam et", + 'continueBtn' => "Devam Et", ], 'update_category_info' => 'Lütfen kategoriyi güncelleyiniz.', 'filter_by_search_msg' => 'Aramanızı Daraltın.', @@ -20,13 +20,13 @@ return [ 'extended' => ':number ilan süresi uzatıldı.', 'category_not_exist' => 'Bu kategori artık mevcut değil!', 'currency_converted' => 'Para Birimi Başarıyla Dönüştürüldü.', - 'choose_user' => 'Bir kullanıcı seçin', + 'choose_user' => 'Bir Kullanıcı Seçin', 'owner_updated_successfully' => 'Sahibi Başarıyla Güncellenmiştir!', 'no_add_found' => 'İlan Bulunamadı!', 'replicated_success' => 'İlan başarıyla kopyalandı!', - 'ad_doesnt_exist' => "Bu İlan mevcut değil!", + 'ad_doesnt_exist' => "Bu ilan mevcut değil!", 'select_location_error' => "Lütfen haritada bir yer seçin!", 'this_ad_is_not_valid_anymore' => "Bu ürün veya ilan artık geçerli değil!", - 'approve_status_change' => "İlanınızın Durumu Etkin Olarak Ayarlandı!", + 'approve_status_change' => "İlanın Durumu Etkin Olarak Ayarlandı!", 'passive_status_change' => "İlanınızın Durumu Pasif Olarak Ayarlandı!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/section.php b/addons/default/visiosoft/advs-module/resources/lang/tr/section.php index bd52f3acc..9ba43ca68 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/section.php @@ -26,7 +26,7 @@ return [ 'title' => 'Özel Alanlar', ], 'custom_field_advs' => [ - 'title' => 'Özel alan İlanları', + 'title' => 'Özel Alan İlanları', ], 'cf_values' => [ 'title' => 'Cf değerleri', @@ -40,8 +40,8 @@ return [ 'general' => 'Genel', 'ads' => 'İlan', 'user' => 'Kullanıcı', - 'filter' => 'filtre', - 'create_ad' => 'Ürün/İlan oluştur', + 'filter' => 'Filtre', + 'create_ad' => 'İlan Oluştur', 'options' => [ 'title' => 'Seçenekler', ], @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Yapılandırma', ], + 'translations' => 'Çeviriler', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php b/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php index 88741f4ec..a7fc6b867 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php @@ -51,7 +51,7 @@ return [ 'name' => 'Son Eklenenler Limiti', ], 'site_address' => [ - 'name' => 'Site adresi', + 'name' => 'Site Adresi', 'warning' => 'Otomatik eklendi www. www. sitename.com', ], 'google_map_key' => [ @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Pazar Yeri', ], - + 'price_area_hidden' => [ + 'name' => 'Fiyat Alanı Gizli', + ], 'hide_price_filter' => [ 'name' => 'Fiyat Filtresini Gizle', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'İlan/ürün eklerken Oluştururken harita Göster', ], + 'show_ads_count' => [ + 'name' => 'İlan Sayısını Göster', + 'instructions' => 'Soldaki kategori listesinde ilan sayısını göster', + ], + 'show_post_ad_agreement' => [ + 'name' => 'İlan Sonrası Sözleşmesini Göster', + 'instructions' => 'Reklam oluşturma sayfasında bir gizlilik politikası sözleşmesi görüntülemek istiyorsanız bunu açın', + ], + 'override_text' => [ + 'name' => 'Metni Geçersiz Kıl', + 'instructions' => 'Eski Değer: Yeni Değer' + ], + 'steps_color' => [ + 'name' => 'Adım Rengi', + 'instructions' => 'Aşamalı adımların rengini değiştirir.' + ], + 'create_ad_button_color' => [ + 'name' => 'Reklam Düğmesi Rengi Oluştur', + 'instructions' => 'Yeni reklam kategorisi seçimi bittiğinde görünen düğmeyi değiştirir.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/stream.php b/addons/default/visiosoft/advs-module/resources/lang/tr/stream.php index 8985f568f..cd1ef96f0 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/stream.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/stream.php @@ -14,7 +14,7 @@ return [ 'name' => 'Özel Alanlar', ], 'custom_field_advs' => [ - 'name' => 'Özel alan önerileri', + 'name' => 'Özel alan İlanları', ], 'cf_values' => [ 'name' => 'ÖA değerleri', @@ -26,7 +26,7 @@ return [ 'name' => 'Ürün Seçenekleri', ], 'productoptions_value' => [ - 'name' => 'Seçenekler değeri', + 'name' => 'Seçenekler Değeri', ], 'option_configuration' => [ 'name' => 'Yapılandırma', diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/button.php b/addons/default/visiosoft/advs-module/resources/lang/uk/button.php index 6c7b6e577..ba6c9e653 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Нова реклама', + 'new_classified' => 'Новий секрет', 'new_category' => 'Нова категорія', 'new_country' => 'Нова країна', 'new_city' => 'Нове місто', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Нова опція конфігурації', 'create_configurations' => 'Створення конфігурацій', 'replicate' => 'Тиражувати', + 'fast_create' => 'Швидке створення', + 'publish' => 'Опублікувати', + 'import' => 'Імпорт', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/field.php b/addons/default/visiosoft/advs-module/resources/lang/uk/field.php index 80875e821..61e6e96ab 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Підкатегорія 6' ], + 'cat8' => [ + 'name' => 'Підкатегорія 7' + ], + 'cat9' => [ + 'name' => 'Підкатегорія 8' + ], + 'cat10' => [ + 'name' => 'Підкатегорія 9' + ], 'currency' => [ 'name' => 'Валюта' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'Деталі переліку', 'preview' => 'Попередній перегляд', 'congratulations' => 'Вітаю', + 'ad_desc' => 'Опис оголошення', + 'upload_photos' => 'Завантажте фотографії', + 'additional_fields' => 'Додаткові поля', + 'ad_location' => 'Місце розташування оголошення', 'free' => 'Безкоштовно', 'ad_date' => 'Дата оголошення', diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/message.php b/addons/default/visiosoft/advs-module/resources/lang/uk/message.php index c2a44e084..f836d5871 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Цього оголошення не існує!", 'select_location_error' => "Виберіть місце на карті!", 'this_ad_is_not_valid_anymore' => "Це оголошення вже не діє!", + 'approve_status_change' => "Статус вашої реклами встановлено активним!", + 'passive_status_change' => "Статус вашої реклами встановлено пасивним!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/section.php b/addons/default/visiosoft/advs-module/resources/lang/uk/section.php index fcb7c9859..d2465cf80 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Конфігурація', ], + 'translations' => 'Переклади', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/setting.php b/addons/default/visiosoft/advs-module/resources/lang/uk/setting.php index 9e042820f..e0f47f521 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Ринок', ], - + 'price_area_hidden' => [ + 'name' => 'Цінова область прихована', + ], 'hide_price_filter' => [ 'name' => 'Сховати фільтр цін', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Показати хлібну крихту під час створення реклами', ], + 'show_ads_count' => [ + 'name' => 'Показати показ оголошень', + 'instructions' => 'Показати рекламу в списку категорій ліворуч', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Показати угоду про розміщення оголошень', + 'instructions' => 'Увімкніть це, якщо ви хочете відображати угоду про політику конфіденційності на сторінці створення оголошення', + ], + 'override_text' => [ + 'name' => 'Замінити текст', + 'instructions' => 'Старе значення: Нове значення' + ], + 'steps_color' => [ + 'name' => 'Кроки Колір', + 'instructions' => 'Змінює колір прогресивних кроків.' + ], + 'create_ad_button_color' => [ + 'name' => 'Створіть колір кнопки об\'яви', + 'instructions' => 'Змінює кнопку, яка з’являється після завершення вибору нової категорії оголошень.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/button.php b/addons/default/visiosoft/advs-module/resources/lang/ur/button.php index a5bfd5cb9..a789eb92e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'نئی درجہ بندی', + 'new_classified' => 'نیا درجہ بند', 'new_category' => 'نئی قسم', 'new_country' => 'نیا ملک', 'new_city' => 'نیا شہر', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'نئی آپشن ترتیب', 'create_configurations' => 'تشکیلات بنائیں', 'replicate' => 'چربہ لگائیں', + 'fast_create' => 'فاسٹ بنائیں', + 'publish' => 'شائع کریں', + 'import' => 'درآمد کریں', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/field.php b/addons/default/visiosoft/advs-module/resources/lang/ur/field.php index 9c10042f7..4846fb22d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'ذیلی زمرہ 6' ], + 'cat8' => [ + 'name' => 'ذیلی زمرہ 7' + ], + 'cat9' => [ + 'name' => 'ذیلی زمرہ 8' + ], + 'cat10' => [ + 'name' => 'ذیلی زمرہ 9' + ], 'currency' => [ 'name' => 'کرنسی' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'فہرست سازی کی تفصیلات', 'preview' => 'پیش نظارہ', 'congratulations' => 'مبارک ہو', + 'ad_desc' => 'اشتہار کی تفصیل', + 'upload_photos' => 'تصاویر اپ لوڈ کریں', + 'additional_fields' => 'اضافی فیلڈز', + 'ad_location' => 'اشتہار کی جگہ', 'free' => 'مفت', 'ad_date' => 'اشتہاری تاریخ', diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/message.php b/addons/default/visiosoft/advs-module/resources/lang/ur/message.php index 583255a8a..4e978d1e5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "یہ اشتہار موجود نہیں ہے!", 'select_location_error' => "براہ کرم نقشے پر ایک مقام منتخب کریں!", 'this_ad_is_not_valid_anymore' => "اب یہ اشتہار درست نہیں ہے!", + 'approve_status_change' => "آپ کے اشتہار کی حیثیت فعال ہونے کے لئے مقرر کردی گئی ہے!", + 'passive_status_change' => "آپ کے اشتہار کی حیثیت غیر فعال ہوچکی ہے۔", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/section.php b/addons/default/visiosoft/advs-module/resources/lang/ur/section.php index 484777c81..e9b2d2850 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'تشکیل', ], + 'translations' => 'ترجمہ', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ur/setting.php index a0d6cff1f..5255acfd3 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'مارکیٹ پلیس', ], - + 'price_area_hidden' => [ + 'name' => 'قیمت کا رقبہ پوشیدہ ہے', + ], 'hide_price_filter' => [ 'name' => 'پرائس فلٹر چھپائیں', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'جب کوئی اشتہار بناتے ہو تو بریڈ کرمب دکھائیں', ], + 'show_ads_count' => [ + 'name' => 'اشتہارات کی گنتی دکھائیں', + 'instructions' => 'بائیں زمروں کی فہرست میں اشتہارات کی گنتی دکھائیں', + ], + 'show_post_ad_agreement' => [ + 'name' => 'پوسٹ اشتہار کا معاہدہ دکھائیں', + 'instructions' => 'اگر آپ اشتہار تخلیق کے صفحے پر رازداری کی پالیسی کا معاہدہ ظاہر کرنا چاہتے ہیں تو اسے آن کریں', + ], + 'override_text' => [ + 'name' => 'متن کو اوور رائڈ کریں', + 'instructions' => 'پرانی قیمت: نیا ویلیو' + ], + 'steps_color' => [ + 'name' => 'اقدامات رنگین', + 'instructions' => 'ترقی پسند اقدامات کا رنگ بدلتا ہے۔' + ], + 'create_ad_button_color' => [ + 'name' => 'ایڈ بٹن کا رنگ بنائیں', + 'instructions' => 'نئے اشتہار کیٹیگری کا انتخاب ختم ہونے پر بٹن تبدیل ہوتا ہے۔' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/button.php b/addons/default/visiosoft/advs-module/resources/lang/vi/button.php index 99085a0cc..e8f1725b3 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Adv mới', + 'new_classified' => 'Mới được phân loại', 'new_category' => 'Thể loại mới', 'new_country' => 'Quốc gia mới', 'new_city' => 'Thành phố mới', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Cấu hình tùy chọn mới', 'create_configurations' => 'Tạo cấu hình', 'replicate' => 'Nhân rộng', + 'fast_create' => 'Tạo nhanh', + 'publish' => 'Công bố', + 'import' => 'Nhập khẩu', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/field.php b/addons/default/visiosoft/advs-module/resources/lang/vi/field.php index 488f67afc..c5c9b2495 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Tiểu mục 6' ], + 'cat8' => [ + 'name' => 'Danh mục phụ 7' + ], + 'cat9' => [ + 'name' => 'Danh mục phụ 8' + ], + 'cat10' => [ + 'name' => 'Danh mục phụ 9' + ], 'currency' => [ 'name' => 'Tiền tệ' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'Chi tiết danh sách', 'preview' => 'Xem trước', 'congratulations' => 'Xin chúc mừng', + 'ad_desc' => 'mô tả quảng cáo', + 'upload_photos' => 'Tải ảnh lên', + 'additional_fields' => 'các trường bổ sung', + 'ad_location' => 'Vị trí Quảng cáo', 'free' => 'Miễn phí', 'ad_date' => 'Ngày quảng cáo', diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/message.php b/addons/default/visiosoft/advs-module/resources/lang/vi/message.php index 58a5ba673..1102b4939 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Quảng cáo này không tồn tại!", 'select_location_error' => "Vui lòng chọn một vị trí trên bản đồ!", 'this_ad_is_not_valid_anymore' => "Quảng cáo này không hợp lệ nữa!", + 'approve_status_change' => "Trạng thái Quảng cáo của Bạn Đã được Đặt thành Hoạt động!", + 'passive_status_change' => "Trạng thái quảng cáo của bạn đã được đặt thành bị động!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/section.php b/addons/default/visiosoft/advs-module/resources/lang/vi/section.php index 273bdde07..cb78fd6d6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Cấu hình', ], + 'translations' => 'Bản dịch', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/setting.php b/addons/default/visiosoft/advs-module/resources/lang/vi/setting.php index 82cfc013a..db19168ff 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Thương trường', ], - + 'price_area_hidden' => [ + 'name' => 'Vùng giá bị ẩn', + ], 'hide_price_filter' => [ 'name' => 'Ẩn bộ lọc giá', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Hiển thị Breadcrumb Khi Tạo Quảng cáo', ], + 'show_ads_count' => [ + 'name' => 'Hiển thị Số lượng Quảng cáo', + 'instructions' => 'Số lượng quảng cáo hiển thị trên danh sách danh mục bên trái', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Hiển thị Thỏa thuận Quảng cáo Đăng', + 'instructions' => 'Bật tính năng này nếu bạn muốn hiển thị thỏa thuận chính sách bảo mật trên trang tạo quảng cáo', + ], + 'override_text' => [ + 'name' => 'Ghi đè văn bản', + 'instructions' => 'Giá trị cũ: Giá trị mới' + ], + 'steps_color' => [ + 'name' => 'Các bước màu', + 'instructions' => 'Thay đổi màu của các bước tiến bộ.' + ], + 'create_ad_button_color' => [ + 'name' => 'Tạo màu nút quảng cáo', + 'instructions' => 'Thay đổi nút hiển thị khi quá trình lựa chọn danh mục quảng cáo mới hoàn tất.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/views/ad-detail/detail.twig b/addons/default/visiosoft/advs-module/resources/views/ad-detail/detail.twig index 761abb50b..3c1678bf9 100644 --- a/addons/default/visiosoft/advs-module/resources/views/ad-detail/detail.twig +++ b/addons/default/visiosoft/advs-module/resources/views/ad-detail/detail.twig @@ -1,9 +1,5 @@ {% extends layout('ad-detail') %} -{% block ogdata %} - {% include "visiosoft.module.advs::ad-detail/partials/ogdata" %} -{% endblock %} - {% block styles %} {{ asset_style("visiosoft.module.advs::css/detail.css") }} {% endblock %} diff --git a/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig b/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig index 3b2c68aad..4348ceced 100644 --- a/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig +++ b/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig @@ -4,7 +4,7 @@ {% if standardPrice and standardPrice > 0 %}

- {{ adv.standard_price.currency() }} + {{ currency_format(adv.standard_price,adv.currency) }}

%{{ (100 - ((100 * adv.price.value) / adv.standard_price.value))|round(0, 'common') }} @@ -12,7 +12,7 @@

{% endif %}

- {{ adv.price.currency() }} + {{ currency_format(adv.price,adv.currency) }} {{ addBlock('ad-detail/priceField',{'adv':adv})|raw }} diff --git a/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/ogdata.twig b/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/ogdata.twig deleted file mode 100644 index 37079c10f..000000000 --- a/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/ogdata.twig +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/addons/default/visiosoft/advs-module/resources/views/blank.twig b/addons/default/visiosoft/advs-module/resources/views/blank.twig index 79333af1d..97aac471f 100644 --- a/addons/default/visiosoft/advs-module/resources/views/blank.twig +++ b/addons/default/visiosoft/advs-module/resources/views/blank.twig @@ -4,8 +4,9 @@ {{ content|raw }} {% if form.mode == 'edit' %} + {% set entry = form.entry.setAttribute('cf_json', null) %} {% endif %} {% endblock %} diff --git a/addons/default/visiosoft/advs-module/resources/views/list/gallery.twig b/addons/default/visiosoft/advs-module/resources/views/list/gallery.twig index 3ec082fff..45e5b3895 100644 --- a/addons/default/visiosoft/advs-module/resources/views/list/gallery.twig +++ b/addons/default/visiosoft/advs-module/resources/views/list/gallery.twig @@ -3,9 +3,9 @@ {{ addBlock('ad-list/partials/gallery',{'featured_advs':featured_advs})|raw }} {% for adv in advs %}
-
+
- +
-
+
{% if setting_value('visiosoft.theme.base::price_fields') %}
{{ adv.price != '0' - ? adv.price.currency() + ? currency_format(adv.price,adv.currency) : trans('visiosoft.module.advs::field.free') }}
{% endif %}
{% if setting_value('visiosoft.module.location::home_page_location') %}
- + {{ adv.city_name }}, {{ adv.country_name }} - +
{% endif %} {% if setting_value('visiosoft.theme.base::date_fields') %}
- + {{ adv.created_at|date('d/m/Y') }} - +
{% endif %}
diff --git a/addons/default/visiosoft/advs-module/resources/views/list/partials/ads.twig b/addons/default/visiosoft/advs-module/resources/views/list/partials/ads.twig index 4c2b43593..20c4cbe0f 100644 --- a/addons/default/visiosoft/advs-module/resources/views/list/partials/ads.twig +++ b/addons/default/visiosoft/advs-module/resources/views/list/partials/ads.twig @@ -24,12 +24,12 @@ {% if not setting_value('visiosoft.module.advs::hide_listing_standard_price') %}

{{ adv.standard_price != adv.price and adv.standard_price != '0' - ? adv.standard_price.currency() + ? currency_format(adv.standard_price,adv.currency) : '' }}

{% endif %} {{ adv.price != '0' - ? adv.price.currency() + ? currency_format(adv.price,adv.currency) : trans('visiosoft.module.advs::field.free') }}
{% if setting_value('visiosoft.module.location::list_page_location') %} diff --git a/addons/default/visiosoft/advs-module/resources/views/list/partials/price-filter.twig b/addons/default/visiosoft/advs-module/resources/views/list/partials/price-filter.twig index 66919ed56..797959112 100644 --- a/addons/default/visiosoft/advs-module/resources/views/list/partials/price-filter.twig +++ b/addons/default/visiosoft/advs-module/resources/views/list/partials/price-filter.twig @@ -41,4 +41,5 @@
+ {{ asset_script('visiosoft.module.advs::js/currency_format.js') }} {% endif %} \ No newline at end of file diff --git a/addons/default/visiosoft/advs-module/resources/views/list/table.twig b/addons/default/visiosoft/advs-module/resources/views/list/table.twig index 2bed1d953..c4a94399b 100644 --- a/addons/default/visiosoft/advs-module/resources/views/list/table.twig +++ b/addons/default/visiosoft/advs-module/resources/views/list/table.twig @@ -20,7 +20,7 @@ - {{ addBlock('ad-list/partials/table',{'featured_advs':featured_advs})|raw }} + {{ addBlock('ad-list/partials/table',{'featured_advs':featured_advs,'seenList':seenList})|raw }} {% for adv in advs %} @@ -36,7 +36,7 @@
- {{ adv.price.currency() }} + {{ currency_format(adv.price,adv.currency) }} {{ adv.created_at|date("d/m/Y") }} diff --git a/addons/default/visiosoft/advs-module/resources/views/new-ad/partials/steps.twig b/addons/default/visiosoft/advs-module/resources/views/new-ad/partials/steps.twig index 92757a6ff..24285d9fe 100644 --- a/addons/default/visiosoft/advs-module/resources/views/new-ad/partials/steps.twig +++ b/addons/default/visiosoft/advs-module/resources/views/new-ad/partials/steps.twig @@ -1,4 +1,5 @@ diff --git a/addons/default/visiosoft/advs-module/resources/views/new-ad/post-cat.twig b/addons/default/visiosoft/advs-module/resources/views/new-ad/post-cat.twig index 330d1154c..7bbde4831 100644 --- a/addons/default/visiosoft/advs-module/resources/views/new-ad/post-cat.twig +++ b/addons/default/visiosoft/advs-module/resources/views/new-ad/post-cat.twig @@ -47,9 +47,9 @@
-
- - +
+ {{ img('visiosoft.module.advs::images/check.svg').data|raw }} + {{ img('visiosoft.module.advs::images/cross.svg').data|raw }}
diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php index ded2da4d6..72f9efe81 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php +++ b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php @@ -421,6 +421,7 @@ class AdvRepository extends EntryRepository implements AdvRepositoryInterface return DB::table('advs_advs') ->whereDate('finish_at', '>=', date("Y-m-d H:i:s")) ->where('status', 'approved') + ->whereNull('deleted_at') ->where('slug', '!=', '') ->where('cat' . $level, $catID) ->count(); @@ -444,7 +445,9 @@ class AdvRepository extends EntryRepository implements AdvRepositoryInterface public function extendAds($allAds, $isAdmin = false) { - if (!is_numeric($allAds)) { + if (is_array($allAds)) { + $advs = $this->newQuery()->whereIn('id', $allAds); + } elseif (!is_numeric($allAds)) { if ($isAdmin && auth()->user()->hasRole('admin')) { $advs = $this->newQuery(); } else { diff --git a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php index 484e10959..9ba164e6f 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -570,6 +570,9 @@ class AdvsController extends PublicController } else { $ogImage = $coverPhoto; } + //ogMeta Tags + $this->template->set('og_image', $ogImage); + $this->template->set('og_url', $this->adv_model->getAdvDetailLinkByModel($adv, 'list')); $this->template->set('meta_image', $ogImage); $this->template->set('meta_keywords', implode(',', explode(' ', $adv->name))); @@ -1244,7 +1247,12 @@ class AdvsController extends PublicController public function extendAll($isAdmin = null) { - $adsExtended = $this->adv_repository->extendAds(true, $isAdmin); + if (\request()->unpublished) { + $allAds = $this->adv_model->pendingAdvsByUser()->pluck('id')->all(); + } else { + $allAds = true; + } + $adsExtended = $this->adv_repository->extendAds($allAds, $isAdmin); $this->messages->success(trans('visiosoft.module.advs::message.extended', ['number' => $adsExtended])); return $this->redirect->back(); } diff --git a/addons/default/visiosoft/base-theme/resources/css/register.css b/addons/default/visiosoft/base-theme/resources/css/register.css index 954390e8e..e0794f1b6 100644 --- a/addons/default/visiosoft/base-theme/resources/css/register.css +++ b/addons/default/visiosoft/base-theme/resources/css/register.css @@ -26,4 +26,14 @@ .phone-validation-error { color: #c75050; font-size: 14px; +} + +.register-area input { + color: #707070 !important; +} + +.register-area input::-webkit-input-placeholder, +.register-area input::-moz-placeholder, +.register-area input::placeholder { + color: #BCBDC3 !important; } \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/js/script.js b/addons/default/visiosoft/base-theme/resources/js/script.js index 690b763c9..70565b5ed 100644 --- a/addons/default/visiosoft/base-theme/resources/js/script.js +++ b/addons/default/visiosoft/base-theme/resources/js/script.js @@ -1,3 +1,4 @@ $('.categories-list .show-all').on('click', function () { $(this).siblings('.hidden-category').toggleClass('hidden') -}) \ No newline at end of file + $(this).find('a span').toggleClass('hidden') +}) diff --git a/addons/default/visiosoft/base-theme/resources/js/utils.js b/addons/default/visiosoft/base-theme/resources/js/utils.js index c1e4402b9..9a72b6ad1 100644 --- a/addons/default/visiosoft/base-theme/resources/js/utils.js +++ b/addons/default/visiosoft/base-theme/resources/js/utils.js @@ -233,7 +233,7 @@ FO:[,[,,"(?:[2-8]\\d|90)\\d{4}",,,,,,,[6]],[,,"(?:20|[34]\\d|8[19])\\d{4}",,,,"2 ,,,[7]],[,,"8(?:00|33|44|55|66|77|88)[2-9]\\d{6}",,,,"8002123456"],[,,"900[2-9]\\d{6}",,,,"9002123456"],[,,,,,,,,,[-1]],[,,"5(?:00|2[12]|33|44|66|77|88)[2-9]\\d{6}",,,,"5002345678"],[,,,,,,,,,[-1]],"JM",1,"011","1",,,"1",,,,,,[,,,,,,,,,[-1]],,"658|876",[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],JO:[,[,,"900\\d{5}|(?:(?:[268]|7\\d)\\d|32|53)\\d{6}",,,,,,,[8,9]],[,,"(?:2(?:6(?:2[0-35-9]|3[0-578]|4[24-7]|5[0-24-8]|[6-8][023]|9[0-3])|7(?:0[1-79]|10|2[014-7]|3[0-689]|4[019]|5[0-3578]))|32(?:0[1-69]|1[1-35-7]|2[024-7]|3\\d|4[0-3]|[57][023]|6[03])|53(?:0[0-3]|[13][023]|2[0-59]|49|5[0-35-9]|6[15]|7[45]|8[1-6]|9[0-36-9])|6(?:2(?:[05]0|22)|3(?:00|33)|4(?:0[0-25]|1[2-7]|2[0569]|[38][07-9]|4[025689]|6[0-589]|7\\d|9[0-2])|5(?:[01][056]|2[034]|3[0-57-9]|4[178]|5[0-69]|6[0-35-9]|7[1-379]|8[0-68]|9[0239]))|87(?:[029]0|7[08]))\\d{4}", ,,,"62001234",,,[8]],[,,"7(?:55[0-49]|(?:7[025-9]|[89][0-25-9])\\d)\\d{5}",,,,"790123456",,,[9]],[,,"80\\d{6}",,,,"80012345",,,[8]],[,,"900\\d{5}",,,,"90012345",,,[8]],[,,"85\\d{6}",,,,"85012345",,,[8]],[,,"70\\d{7}",,,,"700123456",,,[9]],[,,,,,,,,,[-1]],"JO",962,"00","0",,,"0",,,,[[,"(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2356]|87"],"(0$1)"],[,"(\\d{3})(\\d{5,6})","$1 $2",["[89]"],"0$1"],[,"(\\d{2})(\\d{7})","$1 $2",["70"],"0$1"],[,"(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["7"],"0$1"]],,[,,"74(?:66|77)\\d{5}", ,,,"746612345",,,[9]],,,[,,,,,,,,,[-1]],[,,"8(?:10|8\\d)\\d{5}",,,,"88101234",,,[8]],,,[,,,,,,,,,[-1]]],JP:[,[,,"00[1-9]\\d{6,14}|[257-9]\\d{9}|(?:00|[1-9]\\d\\d)\\d{6}",,,,,,,[8,9,10,11,12,13,14,15,16,17]],[,,"(?:1(?:1[235-8]|2[3-6]|3[3-9]|4[2-6]|[58][2-8]|6[2-7]|7[2-9]|9[1-9])|(?:2[2-9]|[36][1-9])\\d|4(?:[2-578]\\d|6[02-8]|9[2-59])|5(?:[2-589]\\d|6[1-9]|7[2-8])|7(?:[25-9]\\d|3[4-9]|4[02-9])|8(?:[2679]\\d|3[2-9]|4[5-9]|5[1-9]|8[03-9])|9(?:[2-58]\\d|[679][1-9]))\\d{6}",,,,"312345678",,,[9]],[,,"[7-9]0[1-9]\\d{7}", -,,,"9012345678",,,[10]],[,,"00(?:(?:37|66)\\d{6,13}|(?:777(?:[01]|(?:5|8\\d)\\d)|882[1245]\\d\\d)\\d\\d)|(?:120|800\\d)\\d{6}",,,,"120123456"],[,,"990\\d{6}",,,,"990123456",,,[9]],[,,,,,,,,,[-1]],[,,"60\\d{7}",,,,"601234567",,,[9]],[,,"50[1-9]\\d{7}",,,,"5012345678",,,[10]],"JP",81,"010","0",,,"0",,,,[[,"(\\d{4})(\\d{4})","$1-$2",["007","0077","00777","00777[01]"]],[,"(\\d{3})(\\d{3})(\\d{3})","$1-$2-$3",["(?:12|57|99)0"],"0$1"],[,"(\\d{4})(\\d)(\\d{4})","$1-$2-$3",["1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|499|5(?:76|97)|746|8(?:3[89]|47|51|63)|9(?:49|80|9[16])", +,,,"9012345678",,,[10]],[,,"00(?:(?:37|66)\\d{6,13}|(?:777(?:[01]|(?:5|8\\d)\\d)|882[1245]\\d\\d)\\d\\d)|(?:120|800\\d)\\d{6}",,,,"120123456"],[,,"990\\d{6}",,,,"990123456",,,[9]],[,,,,,,,,,[-1]],[,,"60\\d{7}",,,,"601234567",,,[9]],[,,"50[1-9]\\d{7}",,,,"5550000000",,,[10]],"JP",81,"010","0",,,"0",,,,[[,"(\\d{4})(\\d{4})","$1-$2",["007","0077","00777","00777[01]"]],[,"(\\d{3})(\\d{3})(\\d{3})","$1-$2-$3",["(?:12|57|99)0"],"0$1"],[,"(\\d{4})(\\d)(\\d{4})","$1-$2-$3",["1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|499|5(?:76|97)|746|8(?:3[89]|47|51|63)|9(?:49|80|9[16])", "1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:76|97)9|7468|8(?:3(?:8[78]|96)|477|51[24]|636)|9(?:496|802|9(?:1[23]|69))|1(?:45|58)[67]","1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:769|979[2-69])|7468|8(?:3(?:8[78]|96[2457-9])|477|51[24]|636[2-57-9])|9(?:496|802|9(?:1[23]|69))|1(?:45|58)[67]"],"0$1"],[,"(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60"],"0$1"],[,"(\\d)(\\d{4})(\\d{4})","$1-$2-$3",["[36]|4(?:2[09]|7[01])","[36]|4(?:2(?:0|9[02-69])|7(?:0[019]|1))"], "0$1"],[,"(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["1(?:1|5[45]|77|88|9[69])|2(?:2[1-37]|3[0-269]|4[59]|5|6[24]|7[1-358]|8[1369]|9[0-38])|4(?:[28][1-9]|3[0-57]|[45]|6[248]|7[2-579]|9[29])|5(?:2|3[045]|4[0-369]|5[29]|8[02389]|9[0-389])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9[2-6])|8(?:2[124589]|3[279]|49|6[0-24-689]|7[0-468]|8[68]|9[019])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9[1-489])","1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2(?:[127]|3[014-9])|3[0-269]|4[59]|5(?:[0468][01]|[1-3]|5[0-69]|9[19])|62|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|2[01]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|8[1-9])|5(?:2|3[045]|4[0-369]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0-2469])|49|6(?:[0-24]|5[0-3589]|9[01459])|7[0-468]|8[68])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3[34]|4[0178]))|(?:49|55|83)[29]|(?:264|837)[016-9]|2(?:57|93)[015-9]|(?:47[59]|59[89]|8(?:6[68]|9))[019]", "1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2[127]|3[0-269]|4[59]|5(?:[0468][01]|[1-3]|5[0-69]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|2[01]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3[045]|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0169])|3(?:[29]|7(?:[017-9]|6[6-8]))|49|6(?:[0-24]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:8294|96)[1-3]|2(?:57|93)[015-9]|(?:223|8699)[014-9]|(?:48|8292|9[23])[1-9]|(?:47[59]|59[89]|8(?:68|9))[019]", @@ -253,7 +253,7 @@ FO:[,[,,"(?:[2-8]\\d|90)\\d{4}",,,,,,,[6]],[,,"(?:20|[34]\\d|8[19])\\d{4}",,,,"2 "KI",686,"00","0",,,"0",,,,,,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],KM:[,[,,"[3478]\\d{6}",,,,,,,[7]],[,,"7[4-7]\\d{5}",,,,"7712345"],[,,"[34]\\d{6}",,,,"3212345"],[,,,,,,,,,[-1]],[,,"8\\d{6}",,,,"8001234"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],"KM",269,"00",,,,,,,,[[,"(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[3478]"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],KN:[,[,,"(?:[58]\\d\\d|900)\\d{7}",,,,,,,[10],[7]],[,,"869(?:2(?:29|36)|302|4(?:6[015-9]|70))\\d{4}", ,,,"8692361234",,,,[7]],[,,"869(?:5(?:5[6-8]|6[5-7])|66\\d|76[02-7])\\d{4}",,,,"8697652917",,,,[7]],[,,"8(?:00|33|44|55|66|77|88)[2-9]\\d{6}",,,,"8002123456"],[,,"900[2-9]\\d{6}",,,,"9002123456"],[,,,,,,,,,[-1]],[,,"5(?:00|2[12]|33|44|66|77|88)[2-9]\\d{6}",,,,"5002345678"],[,,,,,,,,,[-1]],"KN",1,"011","1",,,"1|([2-7]\\d{6})$","869$1",,,,,[,,,,,,,,,[-1]],,"869",[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],KP:[,[,,"85\\d{6}|(?:19\\d|2)\\d{7}",,,,,,,[8,10],[6,7]],[,,"(?:2\\d|85)\\d{6}",,,,"21234567", ,,[8],[6,7]],[,,"19[1-3]\\d{7}",,,,"1921234567",,,[10]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],"KP",850,"00|99","0",,,"0",,,,[[,"(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["8"],"0$1"],[,"(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["2"],"0$1"],[,"(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"]],,[,,,,,,,,,[-1]],,,[,,"238[02-9]\\d{4}|2(?:[0-24-9]\\d|3[0-79])\\d{5}",,,,,,,[8]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],KR:[,[,,"00[1-9]\\d{8,11}|(?:[12]|5\\d{3})\\d{7}|[13-6]\\d{9}|(?:[1-6]\\d|80)\\d{7}|[3-6]\\d{4,5}|(?:00|7)0\\d{8}", -,,,,,,[5,6,8,9,10,11,12,13,14],[3,4,7]],[,,"(?:2|3[1-3]|[46][1-4]|5[1-5])[1-9]\\d{6,7}|(?:3[1-3]|[46][1-4]|5[1-5])1\\d{2,3}",,,,"22123456",,,[5,6,8,9,10],[3,4,7]],[,,"10[01]\\d{6}|1(?:0[2-9]|[126-9]\\d)\\d{6,7}",,,,"1020000000",,,[9,10]],[,,"00(?:308\\d{6,7}|798\\d{7,9})|(?:00368|80)\\d{7}",,,,"801234567",,,[9,11,12,13,14]],[,,"60[2-9]\\d{6}",,,,"602345678",,,[9]],[,,,,,,,,,[-1]],[,,"50\\d{8,9}",,,,"5012345678",,,[10,11]],[,,"70\\d{8}",,,,"7012345678",,,[10]],"KR",82,"00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))", +,,,,,,[5,6,8,9,10,11,12,13,14],[3,4,7]],[,,"(?:2|3[1-3]|[46][1-4]|5[1-5])[1-9]\\d{6,7}|(?:3[1-3]|[46][1-4]|5[1-5])1\\d{2,3}",,,,"22123456",,,[5,6,8,9,10],[3,4,7]],[,,"10[01]\\d{6}|1(?:0[2-9]|[126-9]\\d)\\d{6,7}",,,,"1020000000",,,[9,10]],[,,"00(?:308\\d{6,7}|798\\d{7,9})|(?:00368|80)\\d{7}",,,,"801234567",,,[9,11,12,13,14]],[,,"60[2-9]\\d{6}",,,,"602345678",,,[9]],[,,,,,,,,,[-1]],[,,"50\\d{8,9}",,,,"5550000000",,,[10,11]],[,,"70\\d{8}",,,,"7012345678",,,[10]],"KR",82,"00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))", "0",,,"0(8(?:[1-46-8]|5\\d\\d))?",,,,[[,"(\\d{5})","$1",["1[016-9]1","1[016-9]11","1[016-9]114"],"0$1"],[,"(\\d{2})(\\d{3,4})","$1-$2",["(?:3[1-3]|[46][1-4]|5[1-5])1"],"0$1","0$CC-$1"],[,"(\\d{4})(\\d{4})","$1-$2",["1"]],[,"(\\d)(\\d{3,4})(\\d{4})","$1-$2-$3",["2"],"0$1","0$CC-$1"],[,"(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60|8"],"0$1","0$CC-$1"],[,"(\\d{2})(\\d{3,4})(\\d{4})","$1-$2-$3",["[1346]|5[1-5]"],"0$1","0$CC-$1"],[,"(\\d{2})(\\d{4})(\\d{4})","$1-$2-$3",["[57]"],"0$1","0$CC-$1"],[,"(\\d{5})(\\d{3})(\\d{3})", "$1 $2 $3",["003","0030"]],[,"(\\d{2})(\\d{5})(\\d{4})","$1-$2-$3",["5"],"0$1","0$CC-$1"],[,"(\\d{5})(\\d{3,4})(\\d{4})","$1 $2 $3",["0"]],[,"(\\d{5})(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3 $4",["0"]]],[[,"(\\d{2})(\\d{3,4})","$1-$2",["(?:3[1-3]|[46][1-4]|5[1-5])1"],"0$1","0$CC-$1"],[,"(\\d{4})(\\d{4})","$1-$2",["1"]],[,"(\\d)(\\d{3,4})(\\d{4})","$1-$2-$3",["2"],"0$1","0$CC-$1"],[,"(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60|8"],"0$1","0$CC-$1"],[,"(\\d{2})(\\d{3,4})(\\d{4})","$1-$2-$3",["[1346]|5[1-5]"], "0$1","0$CC-$1"],[,"(\\d{2})(\\d{4})(\\d{4})","$1-$2-$3",["[57]"],"0$1","0$CC-$1"],[,"(\\d{2})(\\d{5})(\\d{4})","$1-$2-$3",["5"],"0$1","0$CC-$1"]],[,,"15\\d{7,8}",,,,"1523456789",,,[9,10]],,,[,,"00(?:3(?:08\\d{6,7}|68\\d{7})|798\\d{7,9})",,,,,,,[11,12,13,14]],[,,"1(?:5(?:22|44|66|77|88|99)|6(?:[07]0|44|6[16]|88)|8(?:00|33|55|77|99))\\d{4}",,,,"15441234",,,[8]],,,[,,,,,,,,,[-1]]],KW:[,[,,"(?:18|[2569]\\d\\d)\\d{5}",,,,,,,[7,8]],[,,"2(?:[23]\\d\\d|4(?:[1-35-9]\\d|44)|5(?:0[034]|[2-46]\\d|5[1-3]|7[1-7]))\\d{4}", @@ -386,7 +386,7 @@ LY:[,[,,"(?:[2569]\\d|71)\\d{7}",,,,,,,[9],[7]],[,,"(?:2[13-5]|5[1347]|6[1-479]| "$1 $2",["7"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],TM:[,[,,"[1-6]\\d{7}",,,,,,,[8]],[,,"(?:1(?:2\\d|3[1-9])|2(?:22|4[0-35-8])|3(?:22|4[03-9])|4(?:22|3[128]|4\\d|6[15])|5(?:22|5[7-9]|6[014-689]))\\d{5}",,,,"12345678"],[,,"6[1-9]\\d{6}",,,,"66123456"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],"TM",993,"810","8",,,"8",,"8~10",,[[,"(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2-$3-$4",["12"],"(8 $1)"],[,"(\\d{3})(\\d)(\\d{2})(\\d{2})", "$1 $2-$3-$4",["[1-5]"],"(8 $1)"],[,"(\\d{2})(\\d{6})","$1 $2",["6"],"8 $1"]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],TN:[,[,,"[2-57-9]\\d{7}",,,,,,,[8]],[,,"81200\\d{3}|(?:3[0-2]|7\\d)\\d{6}",,,,"30010123"],[,,"3(?:001|[12]40)\\d{4}|(?:(?:[259]\\d|4[0-6])\\d|3(?:1[1-35]|6[0-4]|91))\\d{5}",,,,"20123456"],[,,"8010\\d{4}",,,,"80101234"],[,,"88\\d{6}",,,,"88123456"],[,,"8[12]10\\d{4}",,,,"81101234"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],"TN",216,"00",,,,,,,,[[,"(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3",["[2-57-9]"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],TO:[,[,,"(?:0800|[5-8]\\d{3})\\d{3}|[2-8]\\d{4}",,,,,,,[5,7]],[,,"(?:2\\d|3[0-8]|4[0-4]|50|6[09]|7[0-24-69]|8[05])\\d{3}",,,,"20123",,,[5]],[,,"(?:6(?:3[02]|85|90)|7(?:[2-46]0|[578]\\d)|8[46-9]\\d)\\d{4}",,,,"7715123",,,[7]],[,,"0800\\d{3}",,,,"0800222",,,[7]],[,,"55[04]\\d{4}",,,,"5501234",,,[7]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],"TO",676,"00",,,,,,,,[[,"(\\d{2})(\\d{3})","$1-$2",["[2-4]|50|6[09]|7[0-24-69]|8[05]"]], -[,"(\\d{4})(\\d{3})","$1 $2",["0"]],[,"(\\d{3})(\\d{4})","$1 $2",["[5-8]"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],TR:[,[,,"(?:[2-58]\\d\\d|900)\\d{7}|4\\d{6}",,,,,,,[7,10]],[,,"(?:2(?:[13][26]|[28][2468]|[45][268]|[67][246])|3(?:[13][28]|[24-6][2468]|[78][02468]|92)|4(?:[16][246]|[23578][2468]|4[26]))\\d{7}",,,,"2123456789",,,[10]],[,,"56161\\d{5}|5(?:0[15-7]|1[06]|24|[34]\\d|5[1-59]|9[46])\\d{7}",,,,"5012345678",,,[10]],[,,"800\\d{7}",,,,"8001234567",,,[10]],[,,"(?:8[89]8|900)\\d{7}", +[,"(\\d{4})(\\d{3})","$1 $2",["0"]],[,"(\\d{3})(\\d{4})","$1 $2",["[5-8]"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],TR:[,[,,"(?:[2-58]\\d\\d|900)\\d{7}|4\\d{6}",,,,,,,[7,10]],[,,"(?:2(?:[13][26]|[28][2468]|[45][268]|[67][246])|3(?:[13][28]|[24-6][2468]|[78][02468]|92)|4(?:[16][246]|[23578][2468]|4[26]))\\d{7}",,,,"2123456789",,,[10]],[,,"56161\\d{5}|5(?:0[15-7]|1[06]|24|[34]\\d|5[1-59]|9[46])\\d{7}",,,,"5550000000",,,[10]],[,,"800\\d{7}",,,,"8001234567",,,[10]],[,,"(?:8[89]8|900)\\d{7}", ,,,"9001234567",,,[10]],[,,,,,,,,,[-1]],[,,"592(?:21[12]|461)\\d{4}",,,,"5922121234",,,[10]],[,,,,,,,,,[-1]],"TR",90,"00","0",,,"0",,,,[[,"(\\d{3})(\\d)(\\d{3})","$1 $2 $3",["444"],,,1],[,"(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["512|8[0589]|90"],"0$1",,1],[,"(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["5(?:[0-59]|61)","5(?:[0-59]|616)","5(?:[0-59]|6161)"],"0$1",,1],[,"(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24][1-8]|3[1-9]"],"(0$1)",,1]],[[,"(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["512|8[0589]|90"], "0$1",,1],[,"(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["5(?:[0-59]|61)","5(?:[0-59]|616)","5(?:[0-59]|6161)"],"0$1",,1],[,"(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24][1-8]|3[1-9]"],"(0$1)",,1]],[,,"512\\d{7}",,,,"5123456789",,,[10]],,,[,,"444\\d{4}",,,,,,,[7]],[,,"(?:444|850\\d{3})\\d{4}",,,,"4441444"],,,[,,,,,,,,,[-1]]],TT:[,[,,"(?:[58]\\d\\d|900)\\d{7}",,,,,,,[10],[7]],[,,"868(?:2(?:01|1[89]|[23]\\d|4[0-2])|6(?:0[7-9]|1[02-8]|2[1-9]|[3-69]\\d|7[0-79])|82[124])\\d{4}",,,,"8682211234", ,,,[7]],[,,"868(?:2(?:6[6-9]|[7-9]\\d)|[37](?:0[1-9]|1[02-9]|[2-9]\\d)|4[6-9]\\d|6(?:20|78|8\\d))\\d{4}",,,,"8682911234",,,,[7]],[,,"8(?:00|33|44|55|66|77|88)[2-9]\\d{6}",,,,"8002345678"],[,,"900[2-9]\\d{6}",,,,"9002345678"],[,,,,,,,,,[-1]],[,,"5(?:00|2[12]|33|44|66|77|88)[2-9]\\d{6}",,,,"5002345678"],[,,,,,,,,,[-1]],"TT",1,"011","1",,,"1|([2-46-8]\\d{6})$","868$1",,,,,[,,,,,,,,,[-1]],,"868",[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,"868619\\d{4}",,,,"8686191234",,,,[7]]],TV:[,[,,"(?:2|7\\d\\d|90)\\d{4}", diff --git a/addons/default/visiosoft/base-theme/resources/lang/ar/button.php b/addons/default/visiosoft/base-theme/resources/lang/ar/button.php index 80a763ac2..941434ade 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ar/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ar/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'البريد الإلكتروني', 'phone' => 'هاتف', 'show_all' => 'عرض الكل', + 'hide_all' => 'أخف كل شيء', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/az/button.php b/addons/default/visiosoft/base-theme/resources/lang/az/button.php index 3fc99faad..c594a5914 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/az/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/az/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Elektron poçt', 'phone' => 'Telefon', 'show_all' => 'Hamısını göstər', + 'hide_all' => 'Hamısını gizlədin', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/bn/button.php b/addons/default/visiosoft/base-theme/resources/lang/bn/button.php index 696e27d0f..805b1f19c 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/bn/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/bn/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'ইমেইল', 'phone' => 'ফোন', 'show_all' => 'সব দেখাও', + 'hide_all' => 'সব লুকাও', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/de/button.php b/addons/default/visiosoft/base-theme/resources/lang/de/button.php index cad240a9f..6558d3e64 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/de/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/de/button.php @@ -2,7 +2,7 @@ return [ 'post_ad' => [ - 'name' => 'Postanzeige', + 'name' => 'Anzeige erstellen', ], 'login' => 'Einloggen', 'register' => 'Registrieren', @@ -11,4 +11,5 @@ return [ 'email' => 'Email', 'phone' => 'Telefon', 'show_all' => 'Zeige alles', + 'hide_all' => 'Versteck alles', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/el/button.php b/addons/default/visiosoft/base-theme/resources/lang/el/button.php index 0f1a4bccd..01e0ff5b2 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/el/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/el/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ', 'phone' => 'Τηλέφωνο', 'show_all' => 'Προβολή όλων', + 'hide_all' => 'Κρύψτα όλα', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/en/button.php b/addons/default/visiosoft/base-theme/resources/lang/en/button.php index 31f2b7e44..6fd062d6d 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/en/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/en/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Email', 'phone' => 'Phone', 'show_all' => 'Show All', + 'hide_all' => 'Hide All', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/es/button.php b/addons/default/visiosoft/base-theme/resources/lang/es/button.php index 02ef75923..2c6c594bc 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/es/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/es/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Correo electrónico', 'phone' => 'Teléfono', 'show_all' => 'Mostrar todo', + 'hide_all' => 'Ocultar todo', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/fa/button.php b/addons/default/visiosoft/base-theme/resources/lang/fa/button.php index 87d6b35e0..df37103e2 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/fa/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/fa/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'پست الکترونیک', 'phone' => 'تلفن', 'show_all' => 'نمایش همه', + 'hide_all' => 'همه را پنهان کن', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/fr/button.php b/addons/default/visiosoft/base-theme/resources/lang/fr/button.php index 97741f836..4ea1ca7b8 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/fr/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/fr/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Email', 'phone' => 'Téléphone', 'show_all' => 'Afficher tout', + 'hide_all' => 'Cacher tout', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/he/button.php b/addons/default/visiosoft/base-theme/resources/lang/he/button.php index 25bf86fcb..98d84a41f 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/he/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/he/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'אימייל', 'phone' => 'טלפון', 'show_all' => 'תראה הכול', + 'hide_all' => 'הסתר הכל', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/hi/button.php b/addons/default/visiosoft/base-theme/resources/lang/hi/button.php index 3725bc8c3..dac64506e 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/hi/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/hi/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'ईमेल', 'phone' => 'फ़ोन', 'show_all' => 'सब दिखाओ', + 'hide_all' => 'सभी छुपाएं', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/it/button.php b/addons/default/visiosoft/base-theme/resources/lang/it/button.php index b4c7b4754..7ea85f650 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/it/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/it/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Telefono', 'show_all' => 'Mostra tutto', + 'hide_all' => 'Nascondi tutto', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ja/button.php b/addons/default/visiosoft/base-theme/resources/lang/ja/button.php index 744fbf811..c34af555e 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ja/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ja/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Eメール', 'phone' => '電話', 'show_all' => 'すべて表示する', + 'hide_all' => 'すべて非表示', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ko/button.php b/addons/default/visiosoft/base-theme/resources/lang/ko/button.php index 99d467012..a22d53518 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ko/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ko/button.php @@ -11,4 +11,5 @@ return [ 'email' => '이메일', 'phone' => '전화', 'show_all' => '모두 표시', + 'hide_all' => '모두 숨기기', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/addon.php b/addons/default/visiosoft/base-theme/resources/lang/ku/addon.php new file mode 100644 index 000000000..766e4fa77 --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'BaseTheme', + 'name' => 'BaseTheme', + 'description' => 'BaseTheme' +]; diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/button.php b/addons/default/visiosoft/base-theme/resources/lang/ku/button.php new file mode 100644 index 000000000..30b90501b --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/button.php @@ -0,0 +1,15 @@ + [ + 'name' => 'Post Ad', + ], + 'login' => 'Têkevin', + 'register' => 'Fêhrist', + 'continue' => 'Berdewamkirin', + 'reset_password' => 'Reset Passwordîfreyê', + 'email' => 'E-nameyê bişînin', + 'phone' => 'Telefon', + 'show_all' => 'Hemî nîşan bide', + 'hide_all' => 'Veşêre Hemî', +]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/field.php b/addons/default/visiosoft/base-theme/resources/lang/ku/field.php new file mode 100644 index 000000000..2d53b0e88 --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/field.php @@ -0,0 +1,59 @@ + 'Reklamên Dawîn', + 'show_all' => 'Hemî nîşan bide', + 'login' => [ + 'name' => 'Têkevin', + ], + 'logout' => [ + 'name' => 'Derkeve', + ], + 'profile' => 'Tengal', + 'email' => 'Navnîşana emailê', + 'phone' => 'Jimare telefon', + 'reset_code' => 'Vebijêrin Koda', + 'password_confirmation' => 'Piştrastkirina Passwordîfreyê', + 'password' => 'Şîfre', + 'first_name' => 'Nav', + 'last_name' => 'Paşnav', + 'remember_me' => 'Min bîne bîra xwe', + 'not_a_member_yet' => 'Endam Ne Dîsa', + 'not_a_member_yet_message' => 'Ji bo endamên me navnîşan bikin ku ji karûbarê meya taybetî sûd werbigirin', + 'forgot_password' => 'Min şîfreya xwe ji bîr kir', + 'email_or_phone_number' => 'Navnîşana E-nameyê an Hejmara Telefonê', + 'phone_number' => 'Jimare telefon', + + // Registration instructions + 'personal_registration_header' => 'Awantajên Endametiya Kesane Çi ne?', + 'personal_registration_body' => 'Xaniyê xwe, otomobîla xwe bifroşin û kirê bikin, tiştên xweyên bê karan bifroşin, yên nû jî bistînin.', + 'personal_registration_list_1' => 'Reklamek belaş bişînin,', + 'personal_registration_list_2' => 'Reklamên ku hûn pê re eleqedar dibin zêde bikin, piştî ku ew li bijareyên xwe zêde bikin, guhertinên bihayê bişopînin, lêgerînên bijare yên ku pîvanên we digirin biafirînin', + 'personal_registration_list_3' => 'Li ser malperê ji xwedan reklaman re peyam bişînin.', + 'register_information_note' => 'Agahdariya li ser vê rûpelê ji bo tête girtin ' . env('APPLICATION_DOMAIN') . ' endamî. Hûn dikarin li vir di derheqê parastina daneyên kesane de agahdariya berfireh bibînin.', + + // Register page + 'phone_validation_error' => 'Ev jimara têlefonê ji hêla endamek din ve tê bikar anîn.', + + // Forgot Password + 'create_new_password' => 'Passwordîfreyek Nû çêbikin', + + // Login page + 'or' => 'an', + 'login_with_phone_number' => 'Bi Hejmara Telefonê têkevinê', + 'login_with_email_address' => 'Bi Navnîşana E-nameyê têkevin', + + // Side menu links + 'company_directory' => 'Pirtûkxaneya pargîdaniyê', + 'popular_ads' => 'Reklamên populer', + 'last_48_hours' => '48 Demjimêrên Dawîn', + 'secure_e-commerce_ads' => 'Reklamên e-Bazirganiya Ewle bikin', + 'sms' => 'Peyama Nivîsîn SMSand (SMS)', + 'mail' => 'Send Mail', + + // Register instruction seed + 'register_instructions' => 'Rêwerzên Tomarê', + 'list' => 'Rêzok', + 'instruction_description' => 'Danasîna Rêwerzê', + 'instruction_list' => 'Lîsteya Rêwerziyê', +]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/message.php b/addons/default/visiosoft/base-theme/resources/lang/ku/message.php new file mode 100644 index 000000000..474fb436d --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/message.php @@ -0,0 +1,6 @@ + 'SMS ji telefona xweya tomarkirî re şandiye. Ji kerema xwe venêrin.', + 'found_phone' => 'Jimara têlefona ku di pergalê de hatî tomar kirin nehat dîtin.', +]; diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/section.php b/addons/default/visiosoft/base-theme/resources/lang/ku/section.php new file mode 100644 index 000000000..4d14cd5bc --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/section.php @@ -0,0 +1,8 @@ + [ + 'name' => 'Modeya Katalogê', + ], + 'template' => 'Plateablon', +]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ku/setting.php new file mode 100644 index 000000000..158a7fe47 --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/setting.php @@ -0,0 +1,46 @@ + [ + 'name' => 'Sernavê navîgasyonê', + ], + 'navigation_action' => [ + 'name' => 'Çalakiya Navîgasyonê', + ], + 'country_fields' => [ + 'name' => 'Zeviyên Welat', + ], + 'date_fields' => [ + 'name' => 'Zeviyên Dîrokê', + ], + 'price_fields' => [ + 'name' => 'Qadên Bihayê', + ], + 'breadcrumbs' => [ + 'name' => 'Breadcrumb', + ], + 'ad_details' => [ + 'name' => 'Agahdariyên Ad', + ], + 'ad_details_tab' => [ + 'name' => 'Tab Agahdariyên Adê', + ], + 'latest_and_view_all_btn' => [ + 'name' => 'Nûtirîn û Hemî Btn Nîşandan', + ], + 'register_page_instruction_logo' => [ + 'name' => 'Logoya Fêrbûna Rûpelê Tomar Bikin', + ], + 'register_page_alert_link' => [ + 'name' => 'Register Link Alert Link', + ], + 'style' => [ + 'name' => 'Styleêwaz (CSS)', + ], + 'home_page_sub_categories_limit' => [ + 'name' => 'Sermaseyên Bin Kategoriyên Serûpelê', + ], + 'default_country' => [ + 'name' => 'Rûpelê qeyd bikin, ji bo têlefonê welatê pêşîn', + ] +]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/nl/button.php b/addons/default/visiosoft/base-theme/resources/lang/nl/button.php index 7b2b98246..8b63e92c3 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/nl/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/nl/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Telefoon', 'show_all' => 'Toon alles', + 'hide_all' => 'Verstop alles', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/pl/button.php b/addons/default/visiosoft/base-theme/resources/lang/pl/button.php index 83eb18729..625628a1c 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/pl/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/pl/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Telefon', 'show_all' => 'Pokaż wszystko', + 'hide_all' => 'Schowaj wszystko', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/pt/button.php b/addons/default/visiosoft/base-theme/resources/lang/pt/button.php index 612ea0312..f1c724f01 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/pt/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/pt/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'O email', 'phone' => 'telefone', 'show_all' => 'Mostre tudo', + 'hide_all' => 'Esconda tudo', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ro/button.php b/addons/default/visiosoft/base-theme/resources/lang/ro/button.php index 16223ac8c..c755f9b2d 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ro/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ro/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Telefon', 'show_all' => 'Arata tot', + 'hide_all' => 'Ascunde tot', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ru/button.php b/addons/default/visiosoft/base-theme/resources/lang/ru/button.php index 68b50f752..ef727d3a7 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ru/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ru/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Электронное письмо', 'phone' => 'Телефон', 'show_all' => 'Показать все', + 'hide_all' => 'Скрыть все', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/sq/button.php b/addons/default/visiosoft/base-theme/resources/lang/sq/button.php index 7101af0fd..28357da45 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/sq/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/sq/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Email', 'phone' => 'Telefon', 'show_all' => 'Shfaq të gjitha', + 'hide_all' => 'Fshihi të Gjithë', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/sv/button.php b/addons/default/visiosoft/base-theme/resources/lang/sv/button.php index 993410a85..b9a3f2f20 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/sv/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/sv/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'E-post', 'phone' => 'Telefon', 'show_all' => 'Visa allt', + 'hide_all' => 'Göm alla', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/tr/button.php b/addons/default/visiosoft/base-theme/resources/lang/tr/button.php index 309dbb297..98fa91569 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/tr/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/tr/button.php @@ -2,13 +2,14 @@ return [ 'post_ad' => [ - 'name' => 'Ücretsiz İlan Ver', + 'name' => 'İlan Ver', ], 'login' => 'Giriş Yap', 'register' => 'Üye Ol', - 'continue' => 'Devam', + 'continue' => 'Devam Et', 'reset_password' => 'Şifremi Güncelle', 'email' => 'E-posta', 'phone' => 'Telefon', 'show_all' => 'Hepsini Göster ↓', + 'hide_all' => 'Hepsini sakla', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/tr/field.php b/addons/default/visiosoft/base-theme/resources/lang/tr/field.php index 506f3bb29..2db5204fd 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/tr/field.php +++ b/addons/default/visiosoft/base-theme/resources/lang/tr/field.php @@ -4,14 +4,14 @@ return [ 'latest_ads' => 'Son Eklenenler', 'show_all' => 'Tümünü Göster', 'login' => [ - 'name' => 'Oturum aç', + 'name' => 'Oturum Aç', ], 'logout' => [ 'name' => 'Çıkış Yap', ], 'profile' => 'Profil', 'email' => 'Email Adresiniz', - 'phone' => 'Telefon numarası', + 'phone' => 'Telefon Numarası', 'reset_code' => 'Sıfırlama Kodu', 'password_confirmation' => 'Şifrenizi Onaylayın', 'password' => 'Şifreniz', @@ -19,14 +19,14 @@ return [ 'last_name' => 'Soyadınız', 'remember_me' => 'Beni Hatırla', 'not_a_member_yet' => 'Henüz Üye Değil Misiniz', - 'not_a_member_yet_message' => 'Üyelerimize özel hizmetlerimizden faydalanabilmek için üye olun', + 'not_a_member_yet_message' => 'Üyelerimize özel hizmetlerimizden faydalanmak için kaydolun', 'forgot_password' => 'Şifremi Unuttum', 'email_or_phone_number' => 'E-Posta Adresiniz veya Telefon Numaranız', 'phone_number' => 'Telefon Numarası', // Registration instructions 'personal_registration_header' => 'Bireysel Üyelik Avantajları Nelerdir?', - 'personal_registration_body' => 'Evinizi, arabanızı satmak ve kiralamak, kullanılmayan eşyalarınızı satmak, yenilerini almak.', + 'personal_registration_body' => 'Evinizi, arabanızı satın ve kiralayın, kullanılmayan eşyalarınızı satın, yenilerini alın.', 'personal_registration_list_1' => 'Ücretsiz ilan gönder', 'personal_registration_list_2' => 'İlgilendiğiniz ilanları ekleyin, favorilerinize ekledikten sonra fiyat değişikliklerini takip edin, kriterlerinize uygun favori aramalar oluşturun,', 'personal_registration_list_3' => 'Sitedeki İlan sahiplerine mesaj gönderin.', @@ -47,7 +47,7 @@ return [ 'company_directory' => 'Firma Rehberi', 'popular_ads' => 'Popüler İlanlar', 'last_48_hours' => 'son 48 saat', - 'secure_e-commerce_ads' => 'güvenli e-ticaret', + 'secure_e-commerce_ads' => 'Güvenli E-Ticaret', 'sms' => 'Kısa Mesaj Gönder (SMS)', 'mail' => 'Posta göndermek', diff --git a/addons/default/visiosoft/base-theme/resources/lang/uk/button.php b/addons/default/visiosoft/base-theme/resources/lang/uk/button.php index 718b9965d..20b7c1b12 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/uk/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/uk/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Електронна пошта', 'phone' => 'Телефон', 'show_all' => 'Покажи все', + 'hide_all' => 'Сховати все', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ur/button.php b/addons/default/visiosoft/base-theme/resources/lang/ur/button.php index 4b30b9357..a72298e48 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ur/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ur/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'ای میل', 'phone' => 'فون', 'show_all' => 'سارے دکھاو', + 'hide_all' => 'سب کو چھپائیں', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/vi/button.php b/addons/default/visiosoft/base-theme/resources/lang/vi/button.php index bf07ad18c..734c18f94 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/vi/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/vi/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Điện thoại', 'show_all' => 'Hiển thị tất cả', + 'hide_all' => 'Ẩn tất cả', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/views/partials/categories-web.twig b/addons/default/visiosoft/base-theme/resources/views/partials/categories-web.twig index b383045e3..9dd2ccf83 100644 --- a/addons/default/visiosoft/base-theme/resources/views/partials/categories-web.twig +++ b/addons/default/visiosoft/base-theme/resources/views/partials/categories-web.twig @@ -45,8 +45,15 @@ {% if count(sub_categories) > sub_categories_limit %}
  • - {{ trans('visiosoft.theme.base::button.show_all') }} - + + {{ trans('visiosoft.theme.base::button.show_all') }} + + + +
  • {% endif %} diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/addon.php b/addons/default/visiosoft/cats-module/resources/lang/ku/addon.php new file mode 100644 index 000000000..03c2ccaec --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Liq', + 'name' => 'Kategorî Module', + 'description' => '' +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/button.php b/addons/default/visiosoft/cats-module/resources/lang/ku/button.php new file mode 100644 index 000000000..187d7b9d7 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/button.php @@ -0,0 +1,8 @@ + 'Kategoriya Nû', + 'add_sub_category' => 'Kategoriya Jêrîn zêde bikin', + 'sub_category' => 'Kategoriya Jêrîn nîşan bide', + 'new_placeholderforsearch' => 'New Placeholderforsearch', +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/field.php b/addons/default/visiosoft/cats-module/resources/lang/ku/field.php new file mode 100644 index 000000000..24c8a06e4 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/field.php @@ -0,0 +1,36 @@ + [ + 'name' => 'Nav', + 'instructions' => 'Ew navê kategoriya sereke ye ku hûn ê diyar bikin. Ew dihêle bikarhêner bi hêsanî hilbera ku lê digerin bibîne.', + ], + 'order' => [ + 'name' => 'Emir', + ], + + 'slug' => [ + 'name' => 'Şeytanok', + 'instructions' => 'Ji bo ku koma posta xwe bi yên din re bike alîkar her tagên rêxistinê diyar bikin.', + + ], + 'files' => [ + 'name' => 'Wêne', + ], + 'seo_keyword' => [ + 'name' => 'Seo Keyword', + 'instructions' => 'Gotinên ku di geroka Google-ê de li malperê hatine zêdekirin da ku li jorê encamên lêgerînê xuya bibin.', + ], + 'seo_description' => [ + 'name' => 'Seo Danasîn', + 'instructions' => 'Ew dikare li ser biryara mêvanên we bandor bike ka ew dixwazin naverokê di encamên lêgerînê de bikirtînin.', + ], + 'icon' => [ + 'name' => 'Icon', + 'instructions' => 'Ew tê bikaranîn ku îkonên ku celebê kategoriyê nîşan dikin zêde bike.', + ], + + 'please_wait' => 'Ji kerema xwe li bendê bimînin. Jêbirina Kategoriyên Bin', + 'category_selection' => 'Hilbijartina Kategorî', + 'go_to_parent' => 'Herin cem dêûbavan', +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/message.php b/addons/default/visiosoft/cats-module/resources/lang/ku/message.php new file mode 100644 index 000000000..740e2c675 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/message.php @@ -0,0 +1,5 @@ + 'Kategorî û jêr-kategorîyên têkildar bi serfirazî hatin jêbirin!', +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/permission.php b/addons/default/visiosoft/cats-module/resources/lang/ku/permission.php new file mode 100644 index 000000000..d1f04c581 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/permission.php @@ -0,0 +1,20 @@ + [ + 'name' => 'Liq', + 'option' => [ + 'read' => 'Ma dikare kategoriyê bixwîne?', + 'write' => 'Dikare kategoriyê biafirîne / sererast bike?', + 'delete' => 'Ma dikare kategoriyê jê bibe?', + ], + ], + 'placeholderforsearch' => [ + 'name' => 'Placeholderforsearch', + 'option' => [ + 'read' => 'Dikarin bixwînin placeholderforsearch?', + 'write' => 'Ma dikare cîhfilka cihan biafirîne / sererast bike?', + 'delete' => 'Ma dikare cihekîforşeyê jêbirin?', + ], + ], +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/section.php b/addons/default/visiosoft/cats-module/resources/lang/ku/section.php new file mode 100644 index 000000000..4c6898af2 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/section.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Liq', + ], + 'placeholderforsearch' => [ + 'title' => 'Placeholder', + ], +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/setting.php b/addons/default/visiosoft/cats-module/resources/lang/ku/setting.php new file mode 100644 index 000000000..70e83d511 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/setting.php @@ -0,0 +1,10 @@ + [ + 'name' => 'Jimareya Dabeşkirina Nexşeya Malperê', + ], + 'include_cities_sitemap' => [ + 'name' => 'Di Nexşeyê de Bajaran Bikin', + ], +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/stream.php b/addons/default/visiosoft/cats-module/resources/lang/ku/stream.php new file mode 100644 index 000000000..370a227a0 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/stream.php @@ -0,0 +1,10 @@ + [ + 'name' => 'Liq', + ], + 'placeholderforsearch' => [ + 'name' => 'Placeholderforsearch', + ], +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/view.php b/addons/default/visiosoft/cats-module/resources/lang/ku/view.php new file mode 100644 index 000000000..2210fb698 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/view.php @@ -0,0 +1,5 @@ + 'Kategoriyên Paqij', +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/addon.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/addon.php new file mode 100644 index 000000000..a86e1ce3b --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Visiosoft Admin', + 'name' => 'Visiosoft Admin Theme', + 'description' => 'Mijara rêveberê fermî ji bo OpenClassify.', +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/button.php new file mode 100644 index 000000000..00eb9549c --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/button.php @@ -0,0 +1,5 @@ + 'View Ads', +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/control_panel.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/control_panel.php new file mode 100644 index 000000000..35851b2fb --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/control_panel.php @@ -0,0 +1,13 @@ + 'Alîkarî', + 'search' => 'Gerr', + 'logout' => 'Derkeve', + 'view_site' => 'Malperê Dîtin', + 'title' => 'Panela Kontrolê', + 'search_placeholder' => 'Ji bo lêgerînê binivîse', + + // Users Module + 'search_by_gsm_number' => 'Bi Hejmara GSM Bigerin', +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/help.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/help.php new file mode 100644 index 000000000..c5f870c64 --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/help.php @@ -0,0 +1,14 @@ + 'Çavkaniyên Alîkar', + 'description' => 'Bi van çavkaniyên alîkar alîkariyê bibînin û taybetmendiyan bibînin.', + 'documentation_link' => 'OpenClassify Documentation', + 'documentation_description' => 'Ji bo OpenClassify, pêşvexistina pêvekan, û pêvekan jî belgekirinê bibînin.', + 'slack_link' => 'Tîmê Slack', + 'slack_description' => 'Bikarhêner û pêşdebirên din ên OpenClassify bibînin û pê re têkilî daynin.', + 'forum_link' => 'Forum Gotûbêj', + 'forum_description' => 'Li ser karanîn û pêşvebirina OpenClassify bersivan bibînin û pirsan bişînin.', + 'addons_link' => 'Addonên Heye', + 'addons_description' => 'Addonên ku ji bo OpenClassify hene peyda bikin.', +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/preference.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/preference.php new file mode 100644 index 000000000..72a51307f --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/preference.php @@ -0,0 +1,30 @@ + [ + 'name' => 'Sidebar Hover', + 'instructions' => 'Zivirandina kêleka kêlekê?', + ], + 'navigation' => [ + 'name' => 'Rêserbirinî', + 'instructions' => 'Hên xwe şexsî fermana navîgasyon.', + 'warning' => 'Yekem tişta navîgasyonê ya gihînbar wekî qada xaniyê we tê bikar anîn.', + 'reorder' => 'Tiştên navîgasyonên sereke di tenişta bikişînin û bavêjin da ku wan ji nû ve rêz bikin.', + ], + 'display' => [ + 'name' => 'Density Display', + 'instructions' => 'Dîmendera kompakt dihêle ku naverok bêtir bi carekê li ser dîmenderê were xuyang kirin.', + 'option' => [ + 'default' => 'Destçûnî', + 'compact' => 'Gişt', + ], + ], + 'sidebars' => [ + 'name' => 'Modeya Sidebar', + 'instructions' => 'Dê teniştên statik her dem xuya bibin.', + 'option' => [ + 'default' => 'Destçûnî', + 'static' => 'Statik', + ], + ], +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/section.php new file mode 100644 index 000000000..b47e82df4 --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/section.php @@ -0,0 +1,7 @@ + [ + 'name' => 'Mîhengên Mijarê' + ], +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/setting.php new file mode 100644 index 000000000..d3f0795aa --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/setting.php @@ -0,0 +1,35 @@ + [ + 'name' => 'Sidebar Hover', + 'instructions' => 'Zivirandina kêleka kêlekê?', + ], + 'navigation' => [ + 'name' => 'Rêserbirinî', + 'instructions' => 'Hên ji default fermana navîgasyon.', + 'warning' => 'Yekem tişta navîgasyona gihînbar wekî qada mal tê bikar anîn.', + 'reorder' => 'Tiştên navîgasyonên sereke di tenişta bikişînin û bavêjin da ku wan ji nû ve rêz bikin.', + ], + "login_icon" => [ + 'name' => 'Icon-ê têkevê', + ], + "panel_icon" => [ + 'name' => 'Conkona panelê', + ], + "title" => [ + 'name' => 'Nav', + ], + "footer_copyright_org_name" => [ + 'name' => 'Footer Navê Rêxistina Copyright', + ], + "sidebar_main_color" => [ + 'name' => 'Rengdêr Rengîniya Sidebar', + ], + "sidebar_secondary_color" => [ + 'name' => 'Rengê Duyemîn Rengdêr', + ], + "active_sidebar_border_color" => [ + 'name' => 'Rengê Sînorê Sidebar-ê Çalak', + ] +]; diff --git a/addons/default/visiosoft/json-field_type/resources/lang/ku/addon.php b/addons/default/visiosoft/json-field_type/resources/lang/ku/addon.php new file mode 100644 index 000000000..eaa9e1414 --- /dev/null +++ b/addons/default/visiosoft/json-field_type/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Json', + 'name' => 'Json Field Field', + 'description' => '' +]; diff --git a/addons/default/visiosoft/location-module/resources/js/filterLocation.js b/addons/default/visiosoft/location-module/resources/js/filterLocation.js index a7846951c..a7c9d9149 100644 --- a/addons/default/visiosoft/location-module/resources/js/filterLocation.js +++ b/addons/default/visiosoft/location-module/resources/js/filterLocation.js @@ -38,6 +38,7 @@ $('.filter-country-btn').on('click', function () { //City $('.filter-city-btn').on('click', function () { var countries_value = $('input[name="country[]"]').val(); + countries_value += ',' + defaultCountry var selected__city_request = $('input[name="city[]"]').val(); if (cities == undefined || $(this).attr('data-parent') != countries_value) { $(this).attr('data-parent', countries_value); @@ -203,8 +204,8 @@ function SelectOnClick() { if ($(this).attr('data-field') == "country") { $('.selected-city').html(''); $('input[name="city[]"]').val(''); - text_html.html(input_text) - $(".filter-location-body li[data-id='" + id + "'] input[type='checkbox']").prop('checked', true); + // text_html.html(input_text) + // $(".filter-location-body li[data-id='" + id + "'] input[type='checkbox']").prop('checked', true); } if (input_val != "") { @@ -242,10 +243,11 @@ function locationCrud(params, url, type, beforeSend, callback) { } function item(field_name, id, value, abv = '') { + var selected = defaultCountry === id ? "checked" : ""; if (field_name === 'country') { return '
  • \n' + '
  • + + {{ asset_add("styles.css", "visiosoft.field_type.media::css/imgList.css") }} diff --git a/addons/default/visiosoft/profile-module/migrations/2020_12_14_160016_visiosoft.module.profile__create_education_stream.php b/addons/default/visiosoft/profile-module/migrations/2020_12_14_160016_visiosoft.module.profile__create_education_stream.php new file mode 100644 index 000000000..8320e2da6 --- /dev/null +++ b/addons/default/visiosoft/profile-module/migrations/2020_12_14_160016_visiosoft.module.profile__create_education_stream.php @@ -0,0 +1,46 @@ + 'education', + 'title_column' => 'name', + 'translatable' => true, + 'versionable' => false, + 'trashable' => false, + 'searchable' => false, + 'sortable' => false, + ]; + + /** + * The stream assignments. + * + * @var array + */ + protected $assignments = [ + 'name' => [ + 'translatable' => true, + 'required' => true, + ], + 'slug' => [ + 'unique' => true, + 'required' => true, + ], + ]; +} diff --git a/addons/default/visiosoft/profile-module/migrations/2020_12_14_160654_visiosoft.module.profile__create_education_part_stream.php b/addons/default/visiosoft/profile-module/migrations/2020_12_14_160654_visiosoft.module.profile__create_education_part_stream.php new file mode 100644 index 000000000..3ad4d9d96 --- /dev/null +++ b/addons/default/visiosoft/profile-module/migrations/2020_12_14_160654_visiosoft.module.profile__create_education_part_stream.php @@ -0,0 +1,59 @@ + 'education_part', + 'title_column' => 'name', + 'translatable' => true, + 'versionable' => false, + 'trashable' => false, + 'searchable' => false, + 'sortable' => false, + ]; + + /** + * The stream assignments. + * + * @var array + */ + protected $assignments = [ + 'education' => [ + 'required' => true, + ], + 'name' => [ + 'translatable' => true, + 'required' => true, + ], + 'slug' => [ + 'unique' => true, + 'required' => true, + ], + ]; + + protected $fields = [ + 'education' => [ + 'type' => 'anomaly.field_type.relationship', + 'config' => [ + 'related' => EducationModel::class, + ] + ] + ]; +} diff --git a/addons/default/visiosoft/profile-module/resources/assets/js/education.js b/addons/default/visiosoft/profile-module/resources/assets/js/education.js new file mode 100644 index 000000000..f54877dbb --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/assets/js/education.js @@ -0,0 +1,31 @@ +$(() => { + $.ajax({ + url: '/api/getEducation', + success: ((res)=>{ + $.each(res['education-part'], function (key, value) { + var selected = "" + if (res.user.education_part == value.id){ selected = 'selected'; } + $('#education_part').append('') + }) + }) + }) + + $('#education').on('change', () => { + $.ajax({ + url: '/api/changeEducation', + data: { + info: 'education', + education: $('#education').val() + },beforeSend: function (){ + $('#education_part').html(''); + },success: function (response) { + $('#education_part').html('') + $.each(response.data, function (key, value) { + $('#education_part').append( + '' + ) + }) + } + }); + }) +}) \ No newline at end of file diff --git a/addons/default/visiosoft/profile-module/resources/config/permissions.php b/addons/default/visiosoft/profile-module/resources/config/permissions.php index af2857e38..934599af3 100644 --- a/addons/default/visiosoft/profile-module/resources/config/permissions.php +++ b/addons/default/visiosoft/profile-module/resources/config/permissions.php @@ -6,4 +6,14 @@ return [ 'write', 'delete', ], + 'education' => [ + 'read', + 'write', + 'delete', + ], + 'education_part' => [ + 'read', + 'write', + 'delete', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/images/logout.svg b/addons/default/visiosoft/profile-module/resources/images/logout.svg new file mode 100644 index 000000000..16d452701 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/images/logout.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/button.php b/addons/default/visiosoft/profile-module/resources/lang/ar/button.php index 3572af540..9a694f985 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'حذف', 'extend' => 'تمديد', 'extend_all' => 'تمديد الكل', + 'extend_unpublished' => 'تمديد غير منشور', 'edit' => 'تعديل', 'go_profile' => 'الذهاب إلى تفاصيل الملف الشخصي', 'go_user' => 'انتقل إلى تفاصيل المستخدم', 'personal' => 'شخصي', 'corporate' => 'الشركات', 'export' => 'تصدير', + 'new_education' => 'تعليم جديد', + 'new_education_part' => 'جزء التعليم الجديد', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/field.php b/addons/default/visiosoft/profile-module/resources/lang/ar/field.php index 78ce5a6d8..0c3f3634c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'عيد ميلاد' ], + 'facebook_address' => [ + 'name' => 'عنوان Facebook' + ], + 'google_address' => [ + 'name' => 'عنوان Google' + ], 'education' => [ 'name' => 'التعليم' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'المستعمل' ], + 'name' => [ + 'name' => 'اسم' + ], /*Menu Button*/ 'profile' => [ @@ -374,6 +383,9 @@ return [ 'password' => [ 'name' => 'كلمه السر', ], + 'old_password' => [ + 'name' => 'كلمة المرور القديمة', + ], 'new_password' => [ 'name' => 'كلمة السر الجديدة', ], @@ -466,4 +478,8 @@ return [ 'personal' => [ 'name' => 'شخصي' ], + + 'education_part' => [ + 'name' => 'حالة التعليم' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/message.php b/addons/default/visiosoft/profile-module/resources/lang/ar/message.php index 7981993e3..68a0d7986 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'نظرًا لمشاكل الأمان ، قمنا بتغيير كلمة المرور الخاصة بك! كلمة المرور الجديدة:', 'required_all' => "كل الحقول مطلوبة!", 'can_not_remove_filled_fields' => "لا يمكنك إزالة الحقول المملوءة!", + 'wrong_password' => "كلمة المرور التي أدخلتها غير صحيحة!", // Forgot Password 'email_phone_not_found' => 'البريد الإلكتروني ، رقم الهاتف غير صحيح!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ar/permission.php index 23786d7fc..18cea5f42 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'يمكن حذف العنوان؟', ], ], + 'education' => [ + 'name' => 'التعليم', + 'option' => [ + 'read' => 'هل تستطيع قراءة التعليم؟', + 'write' => 'يمكن إنشاء / تعديل التعليم؟', + 'delete' => 'هل يمكن حذف التعليم؟', + ], + ], + 'education_part' => [ + 'name' => 'جزء التعليم', + 'option' => [ + 'read' => 'يمكن قراءة جزء التعليم؟', + 'write' => 'يمكن إنشاء / تحرير جزء التعليم؟', + 'delete' => 'يمكن حذف جزء التعليم؟', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/section.php b/addons/default/visiosoft/profile-module/resources/lang/ar/section.php index 79d77bb8d..17aa6bf3e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'الاعدادات العامة', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'التعليم', + ], + 'education_part' => [ + 'title' => 'جزء التعليم', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ar/stream.php index ed9f44149..e1515760d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'عنوان', ], + 'education' => [ + 'name' => 'التعليم', + ], + 'education_part' => [ + 'name' => 'جزء التعليم', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/button.php b/addons/default/visiosoft/profile-module/resources/lang/az/button.php index c95bbdb80..4511043a1 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Silin', 'extend' => 'Uzatmaq', 'extend_all' => 'Hamısını genişləndirin', + 'extend_unpublished' => 'Genişləndirin Nəşr olunmayıb', 'edit' => 'Redaktə edin', 'go_profile' => 'Profil təfərrüatlarına keçin', 'go_user' => 'İstifadəçi təfərrüatlarına keçin', 'personal' => 'Şəxsi', 'corporate' => 'Korporativ', 'export' => 'İxrac', + 'new_education' => 'Yeni Təhsil', + 'new_education_part' => 'Yeni Təhsil hissəsi', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/field.php b/addons/default/visiosoft/profile-module/resources/lang/az/field.php index e63eb3087..e5b4a7d19 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Ad günü' ], + 'facebook_address' => [ + 'name' => 'Facebook ünvanı' + ], + 'google_address' => [ + 'name' => 'Google ünvanı' + ], 'education' => [ 'name' => 'Təhsil' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'İstifadəçi' ], + 'name' => [ + 'name' => 'Ad' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Şifrə', ], + 'old_password' => [ + 'name' => 'Köhnə Şifrə', + ], 'new_password' => [ 'name' => 'Yeni şifrə', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Şəxsi' ], + + 'education_part' => [ + 'name' => 'Təhsil vəziyyəti' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/message.php b/addons/default/visiosoft/profile-module/resources/lang/az/message.php index a049d6839..cf8b16d05 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'Təhlükəsizlik problemləri ilə əlaqədar olaraq şifrənizi dəyişdirdik! Yeni parolunuz:', 'required_all' => "Bütün sahə tələb olunur!", 'can_not_remove_filled_fields' => "Doldurulmuş sahələri silə bilməzsiniz!", + 'wrong_password' => "Girdiyiniz parol düzgün deyil!", // Forgot Password 'email_phone_not_found' => 'Elektron poçt, telefon nömrəsi düzgün deyil!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/permission.php b/addons/default/visiosoft/profile-module/resources/lang/az/permission.php index f859fd855..15ae5136b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Ünvanı silə bilərsiniz?', ], ], + 'education' => [ + 'name' => 'Təhsil', + 'option' => [ + 'read' => 'Təhsili oxuya bilərsən?', + 'write' => 'Təhsil yarada / redaktə edə bilərsənmi?', + 'delete' => 'Təhsili silə bilərsən?', + ], + ], + 'education_part' => [ + 'name' => 'Təhsil hissəsi', + 'option' => [ + 'read' => 'Təhsil hissəsini oxuya bilərsinizmi?', + 'write' => 'Təhsil hissəsini yarada / redaktə edə bilərsənmi?', + 'delete' => 'Təhsil hissəsini silə bilərsinizmi?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/section.php b/addons/default/visiosoft/profile-module/resources/lang/az/section.php index 983000bd7..d4a5f7e8d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Ümumi Ayarlar', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Təhsil', + ], + 'education_part' => [ + 'title' => 'Təhsil hissəsi', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/stream.php b/addons/default/visiosoft/profile-module/resources/lang/az/stream.php index e0de6f634..50c85d94b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Ünvan', ], + 'education' => [ + 'name' => 'Təhsil', + ], + 'education_part' => [ + 'name' => 'Təhsil hissəsi', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/button.php b/addons/default/visiosoft/profile-module/resources/lang/bn/button.php index aa4f6e333..b69e1f5f9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'মুছে ফেলা', 'extend' => 'প্রসারিত করা', 'extend_all' => 'সমস্ত প্রসারিত করুন', + 'extend_unpublished' => 'অপ্রকাশিত প্রসারিত করুন', 'edit' => 'সম্পাদন করা', 'go_profile' => 'প্রোফাইল বিশদে যান', 'go_user' => 'ব্যবহারকারীর বিবরণে যান', 'personal' => 'ব্যক্তিগত', 'corporate' => 'কর্পোরেট', 'export' => 'রফতানি', + 'new_education' => 'নতুন শিক্ষা', + 'new_education_part' => 'নতুন শিক্ষার অংশ', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/field.php b/addons/default/visiosoft/profile-module/resources/lang/bn/field.php index 76eb84b02..23b3abd23 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'জন্মদিন' ], + 'facebook_address' => [ + 'name' => 'ফেসবুক ঠিকানা' + ], + 'google_address' => [ + 'name' => 'গুগল ঠিকানা' + ], 'education' => [ 'name' => 'শিক্ষা' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'ব্যবহারকারী' ], + 'name' => [ + 'name' => 'নাম' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'পাসওয়ার্ড', ], + 'old_password' => [ + 'name' => 'পুরানো পাসওয়ার্ড', + ], 'new_password' => [ 'name' => 'নতুন পাসওয়ার্ড', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'ব্যক্তিগত' ], + + 'education_part' => [ + 'name' => 'শিক্ষা রাজ্য' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/message.php b/addons/default/visiosoft/profile-module/resources/lang/bn/message.php index 1b959a80b..39c5bfcc8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'সুরক্ষা সমস্যার কারণে আমরা আপনার পাসওয়ার্ড পরিবর্তন করেছি! আপনার নতুন পাসওয়ার্ডটি হ\'ল:', 'required_all' => "সমস্ত ক্ষেত্র প্রয়োজন!", 'can_not_remove_filled_fields' => "আপনি ভরাট ক্ষেত্র সরাতে পারবেন না!", + 'wrong_password' => "আপনি যে পাসওয়ার্ডটি লিখেছেন তা সঠিক নয়!", // Forgot Password 'email_phone_not_found' => 'ই-মেইল, ফোন নম্বর ঠিক নয়!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/permission.php b/addons/default/visiosoft/profile-module/resources/lang/bn/permission.php index 9a8f85dc1..ed829f013 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'ঠিকানা মুছতে পারেন?', ], ], + 'education' => [ + 'name' => 'শিক্ষা', + 'option' => [ + 'read' => 'পড়াশোনা করতে পারি?', + 'write' => 'শিক্ষা তৈরি / সম্পাদনা করতে পারবেন?', + 'delete' => 'পড়াশোনা মুছতে পারবেন?', + ], + ], + 'education_part' => [ + 'name' => 'শিক্ষার অংশ', + 'option' => [ + 'read' => 'পড়াশুনা অংশ পড়তে পারেন?', + 'write' => 'শিক্ষার অংশ তৈরি / সম্পাদনা করতে পারবেন?', + 'delete' => 'শিক্ষার অংশটি মুছতে পারবেন?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/section.php b/addons/default/visiosoft/profile-module/resources/lang/bn/section.php index 28fb35023..f268ceea2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'সাধারণ সেটিংস', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'শিক্ষা', + ], + 'education_part' => [ + 'title' => 'শিক্ষার অংশ', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/stream.php b/addons/default/visiosoft/profile-module/resources/lang/bn/stream.php index 440c4bc5d..35ed95de2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'ঠিকানা', ], + 'education' => [ + 'name' => 'শিক্ষা', + ], + 'education_part' => [ + 'name' => 'শিক্ষার অংশ', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/button.php b/addons/default/visiosoft/profile-module/resources/lang/de/button.php index ee5436515..e4267dbac 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Löschen', 'extend' => 'Erweitern', 'extend_all' => 'Alle erweitern', + 'extend_unpublished' => 'Unveröffentlicht verlängern', 'edit' => 'Bearbeiten', 'go_profile' => 'Gehen Sie zu Profildetail', 'go_user' => 'Gehen Sie zu Benutzerdetails', 'personal' => 'persönlich', 'corporate' => 'Corporate', 'export' => 'Export', + 'new_education' => 'Neue Bildung', + 'new_education_part' => 'Neuer Bildungsteil', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/field.php b/addons/default/visiosoft/profile-module/resources/lang/de/field.php index 324931ccc..71f5a22ac 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Geburtstag' ], + 'facebook_address' => [ + 'name' => 'Facebook-Adresse' + ], + 'google_address' => [ + 'name' => 'Google-Adresse' + ], 'education' => [ 'name' => 'Bildung' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Nutzer' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -380,6 +389,9 @@ return [ 'password' => [ 'name' => 'Passwort', ], + 'old_password' => [ + 'name' => 'Altes Passwort', + ], 'new_password' => [ 'name' => 'Neues Kennwort', ], @@ -472,4 +484,8 @@ return [ 'personal' => [ 'name' => 'persönlich' ], + + 'education_part' => [ + 'name' => 'Bildungsstand' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/message.php b/addons/default/visiosoft/profile-module/resources/lang/de/message.php index 478281304..f803385b0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/message.php @@ -30,6 +30,7 @@ return [ 'empty_password_sms_message' => 'Aus Sicherheitsgründen haben wir Ihr Passwort geändert! Dein neues Passwort ist:', 'required_all' => "Alle Felder sind erforderlich!", 'can_not_remove_filled_fields' => "Sie können gefüllte Felder nicht entfernen!", + 'wrong_password' => "Das eingegebene Passwort ist nicht korrekt!", // Forgot Password 'email_phone_not_found' => 'Die E-Mail, Telefonnummer ist nicht korrekt!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/permission.php b/addons/default/visiosoft/profile-module/resources/lang/de/permission.php index db2c0fb91..996d2880d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Kann Adresse löschen?', ], ], + 'education' => [ + 'name' => 'Bildung', + 'option' => [ + 'read' => 'Kann Bildung lesen?', + 'write' => 'Kann Bildung erstellen / bearbeiten?', + 'delete' => 'Kann Bildung löschen?', + ], + ], + 'education_part' => [ + 'name' => 'Bildungsteil', + 'option' => [ + 'read' => 'Kann Bildung Teil lesen?', + 'write' => 'Kann Bildungsteil erstellen / bearbeiten?', + 'delete' => 'Kann Bildungsteil gelöscht werden?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/section.php b/addons/default/visiosoft/profile-module/resources/lang/de/section.php index 81a0ba7fc..bf3972c6c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Allgemeine Einstellungen', 'recaptcha' => 'reCaptcha', + 'education' => [ + 'title' => 'Bildung', + ], + 'education_part' => [ + 'title' => 'Bildungsteil', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/stream.php b/addons/default/visiosoft/profile-module/resources/lang/de/stream.php index 4a577a02b..9c85f66fb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Anschrift', ], + 'education' => [ + 'name' => 'Bildung', + ], + 'education_part' => [ + 'name' => 'Bildungsteil', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/button.php b/addons/default/visiosoft/profile-module/resources/lang/el/button.php index 1ca2c3e0b..16e12908f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Διαγράφω', 'extend' => 'Επεκτείνω', 'extend_all' => 'Επέκταση όλων', + 'extend_unpublished' => 'Επέκταση μη δημοσιευμένου', 'edit' => 'Επεξεργασία', 'go_profile' => 'Μεταβείτε στη Λεπτομέρεια προφίλ', 'go_user' => 'Μεταβείτε στη Λεπτομέρεια χρήστη', 'personal' => 'Προσωπικός', 'corporate' => 'Εταιρικός', 'export' => 'Εξαγωγή', + 'new_education' => 'Νέα Εκπαίδευση', + 'new_education_part' => 'Νέο τμήμα εκπαίδευσης', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/field.php b/addons/default/visiosoft/profile-module/resources/lang/el/field.php index 44b9e3e74..aeb8e3dca 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Γενέθλια' ], + 'facebook_address' => [ + 'name' => 'Διεύθυνση Facebook' + ], + 'google_address' => [ + 'name' => 'Διεύθυνση Google' + ], 'education' => [ 'name' => 'Εκπαίδευση' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Χρήστης' ], + 'name' => [ + 'name' => 'Ονομα' + ], /*Menu Button*/ 'profile' => [ @@ -377,6 +386,9 @@ return [ 'password' => [ 'name' => 'Κωδικός πρόσβασης', ], + 'old_password' => [ + 'name' => 'ΠΑΛΙΟΣ ΚΩΔΙΚΟΣ', + ], 'new_password' => [ 'name' => 'Νέος κωδικός πρόσβασης', ], @@ -469,4 +481,8 @@ return [ 'personal' => [ 'name' => 'Προσωπικός' ], + + 'education_part' => [ + 'name' => 'Κατάσταση εκπαίδευσης' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/message.php b/addons/default/visiosoft/profile-module/resources/lang/el/message.php index ea186e972..dcc7ce7c6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/message.php @@ -30,6 +30,7 @@ return [ 'empty_password_sms_message' => 'Λόγω προβλημάτων ασφαλείας, αλλάξαμε τον κωδικό πρόσβασής σας! Ο νέος κωδικός πρόσβασής σας είναι:', 'required_all' => "Απαιτείται όλο το πεδίο!", 'can_not_remove_filled_fields' => "Δεν μπορείτε να καταργήσετε τα γεμάτα πεδία!", + 'wrong_password' => "Ο κωδικός πρόσβασης που εισαγάγατε δεν είναι σωστός!", // Forgot Password 'email_phone_not_found' => 'Το E-mail, ο αριθμός τηλεφώνου δεν είναι σωστός!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/permission.php b/addons/default/visiosoft/profile-module/resources/lang/el/permission.php index a5686d90d..3dbcee934 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Μπορεί να διαγράψει τη διεύθυνση;', ], ], + 'education' => [ + 'name' => 'Εκπαίδευση', + 'option' => [ + 'read' => 'Μπορεί να διαβάσει την εκπαίδευση;', + 'write' => 'Μπορείτε να δημιουργήσετε / επεξεργαστείτε εκπαίδευση;', + 'delete' => 'Μπορεί να διαγραφεί η εκπαίδευση;', + ], + ], + 'education_part' => [ + 'name' => 'Εκπαιδευτικό μέρος', + 'option' => [ + 'read' => 'Μπορεί να διαβάσει το τμήμα εκπαίδευσης;', + 'write' => 'Μπορείτε να δημιουργήσετε / επεξεργαστείτε τμήμα εκπαίδευσης;', + 'delete' => 'Μπορεί να διαγραφεί το τμήμα εκπαίδευσης;', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/section.php b/addons/default/visiosoft/profile-module/resources/lang/el/section.php index 855b66a8f..1b76fdf83 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Γενικές Ρυθμίσεις', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Εκπαίδευση', + ], + 'education_part' => [ + 'title' => 'Εκπαιδευτικό μέρος', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/stream.php b/addons/default/visiosoft/profile-module/resources/lang/el/stream.php index 2e0b73571..e70bb0324 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Διεύθυνση', ], + 'education' => [ + 'name' => 'Εκπαίδευση', + ], + 'education_part' => [ + 'name' => 'Εκπαιδευτικό μέρος', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/button.php b/addons/default/visiosoft/profile-module/resources/lang/en/button.php index 11c564faa..d777538e8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Delete', 'extend' => 'Extend', 'extend_all' => 'Extend All', + 'extend_unpublished' => 'Extend Unpublished', 'edit' => 'Edit', 'go_profile' => 'Go to Profile Detail', 'go_user' => 'Go to User Detail', 'personal' => 'Personal', 'corporate' => 'Corporate', 'export' => 'Export', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/field.php b/addons/default/visiosoft/profile-module/resources/lang/en/field.php index 5ac8fe1d6..90e22a8eb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/field.php @@ -121,6 +121,9 @@ return [ 'user' => [ 'name' => 'User' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -476,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Personal' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/permission.php b/addons/default/visiosoft/profile-module/resources/lang/en/permission.php index b9351ead9..f4631292c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Can delete adress?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/section.php b/addons/default/visiosoft/profile-module/resources/lang/en/section.php index 33c358b85..6a5bce6b9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'General Settings', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/stream.php b/addons/default/visiosoft/profile-module/resources/lang/en/stream.php index 80f666dd3..7f43711b2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Address', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/button.php b/addons/default/visiosoft/profile-module/resources/lang/es/button.php index e088a0475..397fe0662 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Eliminar', 'extend' => 'Ampliar', 'extend_all' => 'Extender todo', + 'extend_unpublished' => 'Ampliar sin publicar', 'edit' => 'Editar', 'go_profile' => 'Ir al detalle del perfil', 'go_user' => 'Ir al detalle del usuario', 'personal' => 'Personal', 'corporate' => 'Corporativo', 'export' => 'Exportar', + 'new_education' => 'Nueva educación', + 'new_education_part' => 'Nueva parte de educación', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/field.php b/addons/default/visiosoft/profile-module/resources/lang/es/field.php index 73423cbf2..8a3400e69 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Cumpleaños' ], + 'facebook_address' => [ + 'name' => 'Dirección de Facebook' + ], + 'google_address' => [ + 'name' => 'Dirección de Google' + ], 'education' => [ 'name' => 'Educación' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Usuario' ], + 'name' => [ + 'name' => 'Nombre' + ], /*Menu Button*/ 'profile' => [ @@ -377,6 +386,9 @@ return [ 'password' => [ 'name' => 'Contraseña', ], + 'old_password' => [ + 'name' => 'Contraseña anterior', + ], 'new_password' => [ 'name' => 'Nueva contraseña', ], @@ -469,4 +481,8 @@ return [ 'personal' => [ 'name' => 'Personal' ], + + 'education_part' => [ + 'name' => 'Estado de la educación' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/message.php b/addons/default/visiosoft/profile-module/resources/lang/es/message.php index 8f1d951dc..c911f0faa 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/message.php @@ -30,6 +30,7 @@ return [ 'empty_password_sms_message' => '¡Debido a problemas de seguridad, cambiamos su contraseña! Tu nueva contraseña es:', 'required_all' => "¡Todo el campo es obligatorio!", 'can_not_remove_filled_fields' => "¡No puedes eliminar los campos llenos!", + 'wrong_password' => "¡La contraseña que ingresó no es correcta!", // Forgot Password 'email_phone_not_found' => 'El correo electrónico, número de teléfono no es correcto!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/permission.php b/addons/default/visiosoft/profile-module/resources/lang/es/permission.php index 2aae8c09b..b452921c6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => '¿Se puede eliminar la dirección?', ], ], + 'education' => [ + 'name' => 'Educación', + 'option' => [ + 'read' => '¿Puede leer educación?', + 'write' => '¿Puede crear / editar educación?', + 'delete' => '¿Se puede eliminar la educación?', + ], + ], + 'education_part' => [ + 'name' => 'Parte de la educación', + 'option' => [ + 'read' => '¿Puede leer la parte de educación?', + 'write' => '¿Se puede crear / editar la parte de educación?', + 'delete' => '¿Se puede eliminar la parte de educación?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/section.php b/addons/default/visiosoft/profile-module/resources/lang/es/section.php index 2a5511a4c..a051f228b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Configuración general', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Educación', + ], + 'education_part' => [ + 'title' => 'Parte de la educación', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/stream.php b/addons/default/visiosoft/profile-module/resources/lang/es/stream.php index bec3fc025..2b1b243fe 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Dirección', ], + 'education' => [ + 'name' => 'Educación', + ], + 'education_part' => [ + 'name' => 'Parte de la educación', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/button.php b/addons/default/visiosoft/profile-module/resources/lang/fa/button.php index 224dc4f24..66e413ab2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'حذف', 'extend' => 'توسعه دادن، گسترش', 'extend_all' => 'گسترش همه', + 'extend_unpublished' => 'منتشر نشده', 'edit' => 'ویرایش کنید', 'go_profile' => 'به جزئیات مشخصات بروید', 'go_user' => 'به جزئیات کاربر بروید', 'personal' => 'شخصی', 'corporate' => 'شرکت های بزرگ، دارای شخصیت حقوقی', 'export' => 'صادرات', + 'new_education' => 'آموزش جدید', + 'new_education_part' => 'قسمت آموزش جدید', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/field.php b/addons/default/visiosoft/profile-module/resources/lang/fa/field.php index 259fb9ff7..9f7252fdc 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'روز تولد' ], + 'facebook_address' => [ + 'name' => 'آدرس فیس بوک' + ], + 'google_address' => [ + 'name' => 'آدرس Google' + ], 'education' => [ 'name' => 'تحصیلات' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'کاربر' ], + 'name' => [ + 'name' => 'نام' + ], /*Menu Button*/ 'profile' => [ @@ -374,6 +383,9 @@ return [ 'password' => [ 'name' => 'کلمه عبور', ], + 'old_password' => [ + 'name' => 'رمز عبور قدیمی', + ], 'new_password' => [ 'name' => 'رمز عبور جدید', ], @@ -466,4 +478,8 @@ return [ 'personal' => [ 'name' => 'شخصی' ], + + 'education_part' => [ + 'name' => 'دولت آموزش و پرورش' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/message.php b/addons/default/visiosoft/profile-module/resources/lang/fa/message.php index 02b96c6d1..04f55fe15 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'به دلیل مشکلات امنیتی رمز عبور شما را تغییر دادیم! گذرواژه جدید شما این است:', 'required_all' => "همه زمینه لازم است!", 'can_not_remove_filled_fields' => "شما نمی توانید زمینه های پر شده را حذف کنید!", + 'wrong_password' => "رمز عبوری که وارد کرده اید درست نیست!", // Forgot Password 'email_phone_not_found' => 'ایمیل ، شماره تلفن صحیح نیست!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/permission.php b/addons/default/visiosoft/profile-module/resources/lang/fa/permission.php index aebfb5a91..e5aa7b13e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'می توانید آدرس را حذف کنید؟', ], ], + 'education' => [ + 'name' => 'تحصیلات', + 'option' => [ + 'read' => 'آیا می توانید آموزش بخوانید؟', + 'write' => 'آیا می توان آموزش ایجاد یا ویرایش کرد؟', + 'delete' => 'آیا می توان آموزش را حذف کرد؟', + ], + ], + 'education_part' => [ + 'name' => 'قسمت آموزش', + 'option' => [ + 'read' => 'آیا می توان قسمت آموزش را خواند؟', + 'write' => 'آیا می توان بخشی از آموزش را ایجاد یا ویرایش کرد؟', + 'delete' => 'آیا می توان قسمت آموزش را حذف کرد؟', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/section.php b/addons/default/visiosoft/profile-module/resources/lang/fa/section.php index 683ef9e58..4505127d5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'تنظیمات عمومی', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'تحصیلات', + ], + 'education_part' => [ + 'title' => 'قسمت آموزش', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/stream.php b/addons/default/visiosoft/profile-module/resources/lang/fa/stream.php index 07fdd548f..49811dacb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'آدرس', ], + 'education' => [ + 'name' => 'تحصیلات', + ], + 'education_part' => [ + 'name' => 'قسمت آموزش', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/button.php b/addons/default/visiosoft/profile-module/resources/lang/fr/button.php index 2fc879935..f58805476 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Supprimer', 'extend' => 'Étendre', 'extend_all' => 'Tout étendre', + 'extend_unpublished' => 'Prolonger non publié', 'edit' => 'Éditer', 'go_profile' => 'Aller aux détails du profil', 'go_user' => 'Aller aux détails de l\'utilisateur', 'personal' => 'Personnel', 'corporate' => 'Entreprise', 'export' => 'Exportation', + 'new_education' => 'Nouvelle éducation', + 'new_education_part' => 'Nouvelle partie éducation', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/field.php b/addons/default/visiosoft/profile-module/resources/lang/fr/field.php index 561478c52..5e187ef01 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Anniversaire' ], + 'facebook_address' => [ + 'name' => 'Adresse Facebook' + ], + 'google_address' => [ + 'name' => 'Adresse Google' + ], 'education' => [ 'name' => 'Éducation' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Utilisateur' ], + 'name' => [ + 'name' => 'Nom' + ], /*Menu Button*/ 'profile' => [ @@ -377,6 +386,9 @@ return [ 'password' => [ 'name' => 'Mot de passe', ], + 'old_password' => [ + 'name' => 'Ancien mot de passe', + ], 'new_password' => [ 'name' => 'Nouveau mot de passe', ], @@ -469,4 +481,8 @@ return [ 'personal' => [ 'name' => 'Personnel' ], + + 'education_part' => [ + 'name' => 'État de l\'éducation' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/message.php b/addons/default/visiosoft/profile-module/resources/lang/fr/message.php index 04836f9fa..976810ce9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/message.php @@ -30,6 +30,7 @@ return [ 'empty_password_sms_message' => 'En raison de problèmes de sécurité, nous avons changé votre mot de passe! Votre nouveau mot de passe est:', 'required_all' => "Tous les champs sont obligatoires!", 'can_not_remove_filled_fields' => "Vous ne pouvez pas supprimer les champs remplis!", + 'wrong_password' => "Le mot de passe que vous avez entré n'est pas correct!", // Forgot Password 'email_phone_not_found' => 'L\'e-mail, le numéro de téléphone n\'est pas correct!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/permission.php b/addons/default/visiosoft/profile-module/resources/lang/fr/permission.php index 45c9d5aad..92cc3d20f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Peut effacer l\\'adresse?', ], ], + 'education' => [ + 'name' => 'Éducation', + 'option' => [ + 'read' => 'Peut lire l\'éducation?', + 'write' => 'Peut créer / modifier l\'éducation?', + 'delete' => 'Peut supprimer l\'éducation?', + ], + ], + 'education_part' => [ + 'name' => 'Partie éducation', + 'option' => [ + 'read' => 'Peut lire la partie éducation?', + 'write' => 'Peut créer / modifier une partie éducation?', + 'delete' => 'Peut-on supprimer la partie éducation?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/section.php b/addons/default/visiosoft/profile-module/resources/lang/fr/section.php index cd8f6bebd..44cf8b867 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'réglages généraux', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Éducation', + ], + 'education_part' => [ + 'title' => 'Partie éducation', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/stream.php b/addons/default/visiosoft/profile-module/resources/lang/fr/stream.php index c6860c42e..3bdb00a32 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Une robe', ], + 'education' => [ + 'name' => 'Éducation', + ], + 'education_part' => [ + 'name' => 'Partie éducation', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/button.php b/addons/default/visiosoft/profile-module/resources/lang/he/button.php index 757cc1cd0..1bf5f67b9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'מחק', 'extend' => 'הרחיבו', 'extend_all' => 'הרחב את הכל', + 'extend_unpublished' => 'הרחב שלא פורסם', 'edit' => 'ערוך', 'go_profile' => 'עבור לפרטי הפרופיל', 'go_user' => 'עבור לפרטי המשתמש', 'personal' => 'אישי', 'corporate' => 'תאגידי', 'export' => 'יְצוּא', + 'new_education' => 'חינוך חדש', + 'new_education_part' => 'חלק חינוך חדש', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/field.php b/addons/default/visiosoft/profile-module/resources/lang/he/field.php index a10bc17d6..84f582d54 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'יום הולדת' ], + 'facebook_address' => [ + 'name' => 'כתובת פייסבוק' + ], + 'google_address' => [ + 'name' => 'כתובת גוגל' + ], 'education' => [ 'name' => 'חינוך' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'משתמש' ], + 'name' => [ + 'name' => 'שֵׁם' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'סיסמה', ], + 'old_password' => [ + 'name' => 'סיסמה ישנה', + ], 'new_password' => [ 'name' => 'סיסמה חדשה', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'אישי' ], + + 'education_part' => [ + 'name' => 'מצב החינוך' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/message.php b/addons/default/visiosoft/profile-module/resources/lang/he/message.php index b3a2790db..f45829547 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'בגלל בעיות אבטחה, שינינו את הסיסמא שלך! הסיסמה החדשה שלך היא:', 'required_all' => "כל השדה נדרש!", 'can_not_remove_filled_fields' => "אינך יכול להסיר שדות מלאים!", + 'wrong_password' => "הסיסמה שהזנת אינה נכונה!", // Forgot Password 'email_phone_not_found' => 'הדואר האלקטרוני, מספר הטלפון אינו תקין!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/permission.php b/addons/default/visiosoft/profile-module/resources/lang/he/permission.php index c501937f8..e035145a8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'האם ניתן למחוק כתובת?', ], ], + 'education' => [ + 'name' => 'חינוך', + 'option' => [ + 'read' => 'האם יכול לקרוא חינוך?', + 'write' => 'האם ניתן ליצור / לערוך חינוך?', + 'delete' => 'האם ניתן למחוק חינוך?', + ], + ], + 'education_part' => [ + 'name' => 'חלק בחינוך', + 'option' => [ + 'read' => 'האם יכול לקרוא חלק מחינוך?', + 'write' => 'האם ניתן ליצור / לערוך חלק בחינוך?', + 'delete' => 'האם ניתן למחוק חלק מחינוך?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/section.php b/addons/default/visiosoft/profile-module/resources/lang/he/section.php index bc1dcadb2..69557ed7d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'הגדרות כלליות', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'חינוך', + ], + 'education_part' => [ + 'title' => 'חלק בחינוך', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/stream.php b/addons/default/visiosoft/profile-module/resources/lang/he/stream.php index e27f72c40..00576ac8b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'כתובת', ], + 'education' => [ + 'name' => 'חינוך', + ], + 'education_part' => [ + 'name' => 'חלק בחינוך', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/button.php b/addons/default/visiosoft/profile-module/resources/lang/hi/button.php index bc6f1e8f7..1c49a46a7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'हटाएं', 'extend' => 'बढ़ाएँ', 'extend_all' => 'सभी बढ़ाएँ', + 'extend_unpublished' => 'अप्रकाशित का विस्तार करें', 'edit' => 'संपादित करें', 'go_profile' => 'प्रोफाइल डिटेल पर जाएं', 'go_user' => 'यूजर डिटेल पर जाएं', 'personal' => 'निजी', 'corporate' => 'कॉर्पोरेट', 'export' => 'निर्यात', + 'new_education' => 'नई शिक्षा', + 'new_education_part' => 'नई शिक्षा का हिस्सा', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/field.php b/addons/default/visiosoft/profile-module/resources/lang/hi/field.php index 74c82f8c6..6d621096f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'जन्मदिन' ], + 'facebook_address' => [ + 'name' => 'फेसबुक एड्रेस' + ], + 'google_address' => [ + 'name' => 'Google पता' + ], 'education' => [ 'name' => 'शिक्षा' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'उपयोगकर्ता' ], + 'name' => [ + 'name' => 'नाम' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'कुंजिका', ], + 'old_password' => [ + 'name' => 'पुराना पासवर्ड', + ], 'new_password' => [ 'name' => 'नया पासवर्ड', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'निजी' ], + + 'education_part' => [ + 'name' => 'शिक्षा की स्थिति' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/message.php b/addons/default/visiosoft/profile-module/resources/lang/hi/message.php index b4e8ad10d..ad7111550 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'सुरक्षा समस्याओं के कारण, हमने आपका पासवर्ड बदल दिया है! आपका नया पासवर्ड है:', 'required_all' => "सभी फ़ील्ड आवश्यक है!", 'can_not_remove_filled_fields' => "आप भरे हुए खेतों को नहीं हटा सकते हैं!", + 'wrong_password' => "आपके द्वारा दर्ज किया गया पासवर्ड सही नहीं है!", // Forgot Password 'email_phone_not_found' => 'ई-मेल, फोन नंबर सही नहीं है!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/permission.php b/addons/default/visiosoft/profile-module/resources/lang/hi/permission.php index d70eaa868..b393cdffd 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'हटा सकते हैं एड्रेस?', ], ], + 'education' => [ + 'name' => 'शिक्षा', + 'option' => [ + 'read' => 'पढ़ सकते हैं शिक्षा?', + 'write' => 'शिक्षा का सृजन / संपादन कर सकते हैं?', + 'delete' => 'शिक्षा को नष्ट कर सकते हैं?', + ], + ], + 'education_part' => [ + 'name' => 'शिक्षा का हिस्सा', + 'option' => [ + 'read' => 'शिक्षा का हिस्सा पढ़ सकते हैं?', + 'write' => 'शिक्षा भाग बना / संपादित कर सकते हैं?', + 'delete' => 'शिक्षा भाग को हटा सकते हैं?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/section.php b/addons/default/visiosoft/profile-module/resources/lang/hi/section.php index 0f0d9a95e..61b9c9537 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'सामान्य सेटिंग्स', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'शिक्षा', + ], + 'education_part' => [ + 'title' => 'शिक्षा का हिस्सा', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/stream.php b/addons/default/visiosoft/profile-module/resources/lang/hi/stream.php index c084fdafc..0b5bb5277 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'पता', ], + 'education' => [ + 'name' => 'शिक्षा', + ], + 'education_part' => [ + 'name' => 'शिक्षा का हिस्सा', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/button.php b/addons/default/visiosoft/profile-module/resources/lang/it/button.php index 12ffba620..11bab5f7d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Elimina', 'extend' => 'Estendere', 'extend_all' => 'Estendi tutto', + 'extend_unpublished' => 'Estendi non pubblicato', 'edit' => 'modificare', 'go_profile' => 'Vai a Dettagli profilo', 'go_user' => 'Vai a Dettagli utente', 'personal' => 'Personale', 'corporate' => 'Corporate', 'export' => 'Esportare', + 'new_education' => 'Nuova istruzione', + 'new_education_part' => 'Nuova parte Istruzione', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/field.php b/addons/default/visiosoft/profile-module/resources/lang/it/field.php index d2c6da50d..1daaf3590 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Compleanno' ], + 'facebook_address' => [ + 'name' => 'Indirizzo di Facebook' + ], + 'google_address' => [ + 'name' => 'Indirizzo Google' + ], 'education' => [ 'name' => 'Formazione scolastica' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Utente' ], + 'name' => [ + 'name' => 'Nome' + ], /*Menu Button*/ 'profile' => [ @@ -377,6 +386,9 @@ return [ 'password' => [ 'name' => 'Parola d\'ordine', ], + 'old_password' => [ + 'name' => 'Vecchia password', + ], 'new_password' => [ 'name' => 'Nuova password', ], @@ -469,4 +481,8 @@ return [ 'personal' => [ 'name' => 'Personale' ], + + 'education_part' => [ + 'name' => 'Stato dell\'istruzione' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/message.php b/addons/default/visiosoft/profile-module/resources/lang/it/message.php index b618a71b8..53f974366 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/message.php @@ -30,6 +30,7 @@ return [ 'empty_password_sms_message' => 'Per problemi di sicurezza, abbiamo cambiato la tua password! La tua nuova password è:', 'required_all' => "Tutti i campi sono obbligatori!", 'can_not_remove_filled_fields' => "Non puoi rimuovere i campi compilati!", + 'wrong_password' => "La password inserita non è corretta!", // Forgot Password 'email_phone_not_found' => 'L\'e-mail, il numero di telefono non è corretto!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/permission.php b/addons/default/visiosoft/profile-module/resources/lang/it/permission.php index 3b4c22131..9bdae5823 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'È possibile eliminare l\\'indirizzo?', ], ], + 'education' => [ + 'name' => 'Formazione scolastica', + 'option' => [ + 'read' => 'Può leggere l\'istruzione?', + 'write' => 'Può creare / modificare l\'istruzione?', + 'delete' => 'Può eliminare l\'istruzione?', + ], + ], + 'education_part' => [ + 'name' => 'Parte dell\'istruzione', + 'option' => [ + 'read' => 'Può leggere la parte educativa?', + 'write' => 'Può creare / modificare la parte educativa?', + 'delete' => 'Può eliminare la parte educativa?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/section.php b/addons/default/visiosoft/profile-module/resources/lang/it/section.php index c7f476e6f..dbc4f7471 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'impostazioni generali', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Formazione scolastica', + ], + 'education_part' => [ + 'title' => 'Parte dell\'istruzione', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/stream.php b/addons/default/visiosoft/profile-module/resources/lang/it/stream.php index 7571a5774..e461458a8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Un vestito', ], + 'education' => [ + 'name' => 'Formazione scolastica', + ], + 'education_part' => [ + 'name' => 'Parte dell\'istruzione', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/button.php b/addons/default/visiosoft/profile-module/resources/lang/ja/button.php index 1a67809a7..4a09430b2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/button.php @@ -9,10 +9,13 @@ return [ 'delete' => '削除する', 'extend' => '伸ばす', 'extend_all' => 'すべて拡張', + 'extend_unpublished' => '未公開の拡張', 'edit' => '編集する', 'go_profile' => 'プロファイルの詳細に移動', 'go_user' => 'ユーザーの詳細に移動', 'personal' => '個人的な', 'corporate' => 'コーポレート', 'export' => '書き出す', + 'new_education' => '新しい教育', + 'new_education_part' => '新教育部', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/field.php b/addons/default/visiosoft/profile-module/resources/lang/ja/field.php index aeb51d9f1..12a19017c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'お誕生日' ], + 'facebook_address' => [ + 'name' => 'Facebookアドレス' + ], + 'google_address' => [ + 'name' => 'Googleアドレス' + ], 'education' => [ 'name' => '教育' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'ユーザー' ], + 'name' => [ + 'name' => '名前' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'パスワード', ], + 'old_password' => [ + 'name' => '以前のパスワード', + ], 'new_password' => [ 'name' => '新しいパスワード', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => '個人' ], + + 'education_part' => [ + 'name' => '教育の状態' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/message.php b/addons/default/visiosoft/profile-module/resources/lang/ja/message.php index 00c28db06..f54878bc6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'セキュリティ上の問題により、パスワードを変更しました!新しいパスワードは:', 'required_all' => "すべてのフィールドが必要です!", 'can_not_remove_filled_fields' => "塗りつぶされたフィールドは削除できません!", + 'wrong_password' => "入力したパスワードが正しくありません!", // Forgot Password 'email_phone_not_found' => 'メール、電話番号が違います!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ja/permission.php index 02efc8c5c..102a56963 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'アドレスを削除できますか?', ], ], + 'education' => [ + 'name' => '教育', + 'option' => [ + 'read' => '教育を読むことができますか?', + 'write' => '教育を作成/編集できますか?', + 'delete' => '教育を削除できますか?', + ], + ], + 'education_part' => [ + 'name' => '教育部分', + 'option' => [ + 'read' => '教育部分は読めますか?', + 'write' => '教育パートを作成/編集できますか?', + 'delete' => '教育部分を削除できますか?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/section.php b/addons/default/visiosoft/profile-module/resources/lang/ja/section.php index c2070fd43..c174f167b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => '一般設定', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => '教育', + ], + 'education_part' => [ + 'title' => '教育部分', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ja/stream.php index 2364e891f..818631b73 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => '住所', ], + 'education' => [ + 'name' => '教育', + ], + 'education_part' => [ + 'name' => '教育部分', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/button.php b/addons/default/visiosoft/profile-module/resources/lang/ko/button.php index c6eac39c8..658e135b6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/button.php @@ -9,10 +9,13 @@ return [ 'delete' => '지우다', 'extend' => '넓히다', 'extend_all' => '모두 확장', + 'extend_unpublished' => '게시되지 않은 항목 확장', 'edit' => '편집하다', 'go_profile' => '프로필 정보로 이동', 'go_user' => '사용자 정보로 이동', 'personal' => '개인적인', 'corporate' => '기업', 'export' => '수출', + 'new_education' => '새로운 교육', + 'new_education_part' => '새로운 교육 부분', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/field.php b/addons/default/visiosoft/profile-module/resources/lang/ko/field.php index 446a66767..4f173599a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => '생신' ], + 'facebook_address' => [ + 'name' => '페이스 북 주소' + ], + 'google_address' => [ + 'name' => 'Google 주소' + ], 'education' => [ 'name' => '교육' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => '사용자' ], + 'name' => [ + 'name' => '이름' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => '암호', ], + 'old_password' => [ + 'name' => '기존 비밀번호', + ], 'new_password' => [ 'name' => '새 비밀번호', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => '개인적인' ], + + 'education_part' => [ + 'name' => '교육 현황' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/message.php b/addons/default/visiosoft/profile-module/resources/lang/ko/message.php index 9c8bcae66..e3d4d22b0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => '보안 문제로 인해 비밀번호가 변경되었습니다. 새 비밀번호는 다음과 같습니다.', 'required_all' => "모든 필드는 필수입니다!", 'can_not_remove_filled_fields' => "채워진 필드를 제거 할 수 없습니다!", + 'wrong_password' => "입력 한 비밀번호가 올바르지 않습니다!", // Forgot Password 'email_phone_not_found' => '이메일, 전화 번호가 올바르지 않습니다!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ko/permission.php index fcd9ced0e..22fae9542 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => '주소를 삭제할 수 있습니까?', ], ], + 'education' => [ + 'name' => '교육', + 'option' => [ + 'read' => '교육을 읽을 수 있습니까?', + 'write' => '교육을 생성 / 편집 할 수 있습니까?', + 'delete' => '교육을 삭제할 수 있습니까?', + ], + ], + 'education_part' => [ + 'name' => '교육 부분', + 'option' => [ + 'read' => '교육 부분을 읽을 수 있습니까?', + 'write' => '교육 부분을 생성 / 편집 할 수 있습니까?', + 'delete' => '교육 부분을 삭제할 수 있습니까?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/section.php b/addons/default/visiosoft/profile-module/resources/lang/ko/section.php index 3aad698e3..8e87f27eb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => '일반 설정', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => '교육', + ], + 'education_part' => [ + 'title' => '교육 부분', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ko/stream.php index b87ecc28b..6cca35454 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => '주소', ], + 'education' => [ + 'name' => '교육', + ], + 'education_part' => [ + 'name' => '교육 부분', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/addon.php b/addons/default/visiosoft/profile-module/resources/lang/ku/addon.php new file mode 100644 index 000000000..6bcf3ecc8 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Tengal', + 'name' => 'Profile Module', + 'description' => '' +]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/button.php b/addons/default/visiosoft/profile-module/resources/lang/ku/button.php new file mode 100644 index 000000000..980334263 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/button.php @@ -0,0 +1,21 @@ + 'Profîla Nû', + 'new_adress' => 'Navnîşana Nû', + 'show' => 'Navnîşan nîşan bide', + 'update_password' => 'Passwordîfreyê nûve bikin', + 'update_profile' => 'Nûvekirina Profîlê', + 'delete' => 'Jêbirin', + 'extend' => 'N', + 'extend_all' => 'Hemî Dirêj Bikin', + 'extend_unpublished' => 'Berfireh Nedayîn', + 'edit' => 'Weşandin', + 'go_profile' => 'Herin Detailê Profîl', + 'go_user' => 'Herin Berfirehiya Bikarhêner', + 'personal' => 'Şexsî', + 'corporate' => 'Pargîdanî', + 'export' => 'Eksport', + 'new_education' => 'Perwerdehiya Nû', + 'new_education_part' => 'Beşa Perwerdehiya Nû', +]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/field.php b/addons/default/visiosoft/profile-module/resources/lang/ku/field.php new file mode 100644 index 000000000..e1677c9e1 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/field.php @@ -0,0 +1,486 @@ + [ + 'name' => 'Photos' + ], + 'first_name' => [ + 'name' => 'Nav' + ], + 'last_name' => [ + 'name' => 'Paşnav' + ], + 'username' => [ + 'name' => 'Navê bikarhêner' + ], + 'display_name' => [ + 'name' => 'Navê Nîşan bide' + ], + 'email' => [ + 'name' => 'Navnîşana E-nameyê' + ], + 'sitename' => [ + 'name' => 'sitename' + ], + 'activated' => [ + 'name' => 'Bikarhêner Çalak' + ], + 'enabled' => [ + 'name' => 'Bikarhêner Çalak bike' + ], + 'country' => [ + 'name' => 'Welat' + ], + 'city' => [ + 'name' => 'Bajar' + ], + 'district' => [ + 'name' => 'Herêm' + ], + 'neighborhood' => [ + 'name' => 'Cînarî' + ], + 'village' => [ + 'name' => 'Gûnd' + ], + 'gsm_phone' => [ + 'name' => 'Telefonê GSM' + ], + 'land_phone' => [ + 'name' => 'Telefonê Land' + ], + 'office_phone' => [ + 'name' => 'Telefonê Ofîsê' + ], + 'register_type' => [ + 'name' => 'Register Type' + ], + 'birthday' => [ + 'name' => 'Rojbûn' + ], + 'facebook_address' => [ + 'name' => 'Navnîşana Facebookê' + ], + 'google_address' => [ + 'name' => 'Navnîşana Google' + ], + 'education' => [ + 'name' => 'Zanyarî' + ], + 'state_of_education' => [ + 'name' => 'Dewleta Perwerdehiyê' + ], + 'profession' => [ + 'name' => 'Sinet' + ], + 'identification_number' => [ + 'name' => 'Nimara ye kiyîtî' + ], + 'adress_name' => [ + 'name' => 'Navnîşana Navnîşan' + ], + 'adress_first_name' => [ + 'name' => 'Nav' + ], + 'adress_last_name' => [ + 'name' => 'Paşnav' + ], + 'actions' => [ + 'name' => 'Çalakî' + ], + 'adress_content' => [ + 'name' => 'Navnîşana Navnîşan' + ], + 'adress_post_code' => [ + 'name' => 'Koda Postê' + ], + 'adress_gsm_phone' => [ + 'name' => 'Telefonê Gsm' + ], + 'adress_land_phone' => [ + 'name' => 'Telefonê Land' + ], + 'adress_country' => [ + 'name' => 'Welat' + ], + 'adress_city' => [ + 'name' => 'Bajar' + ], + 'adress_district' => [ + 'name' => 'Herêm' + ], + 'adress_neighborhood' => [ + 'name' => 'Cînarî' + ], + 'adress_village' => [ + 'name' => 'Gûnd' + ], + 'messages' => [ + 'name' => 'Messages' + ], + 'user' => [ + 'name' => 'Bikaranîvan' + ], + 'name' => [ + 'name' => 'Nav' + ], + + /*Menu Button*/ + 'profile' => [ + 'name' => 'Tengal' + ], + + 'create' => [ + 'name' => 'Xûliqandin' + ], + 'edit' => [ + 'name' => 'Weşandin' + ], + 'delete' => [ + 'name' => 'Jêbirin' + ], + 'list' => [ + 'name' => 'Rêzok' + ], + 'menu_address' => [ + 'name' => 'Navnîşan' + ], + 'menu_orders' => [ + 'name' => 'Ferman' + ], + 'menu_favorites' => [ + 'name' => 'Favorites' + ], + 'menu_archived_ads' => [ + 'name' => 'Reklamên arşîvkirî' + ], + 'menu_pending_ads' => [ + 'name' => 'Li benda pejirandinê ye' + ], + 'menu_delete_account' => [ + 'name' => 'Hesabê bigire' + ], + 'menu_my_ads' => [ + 'name' => 'Reklamên min' + ], + 'menu_fav_ads' => [ + 'name' => 'Reklamên bijare' + ], + 'menu_hello_msg' => [ + 'name' => 'slav' + ], + 'menu_last_msg' => [ + 'name' => 'We herî dawî li' + ], + 'menu_packages' => [ + 'name' => 'Pakêtên min' + ], + 'menu_adv_packages' => [ + 'name' => 'Packages Ads' + ], + 'menu_time_packages' => [ + 'name' => 'Pakêtên Demjimêr' + ], + 'profile_details' => [ + 'name' => 'Profile Details' + ], + 'profile_photo' => [ + 'name' => 'Photo Profile' + ], + 'adv_listing_banner' => [ + 'name' => 'Reklam Lîsteya Rûpelê Banner' + ], + 'approve' => [ + 'name' => 'Destûrdan' + ], + 'approved' => [ + 'name' => 'Pejirandin' + ], + 'pending' => [ + 'name' => 'Nexelas' + ], + 'passive' => [ + 'name' => 'Nejîr' + ], + 'pending_admin' => [ + 'name' => 'Nexelas' + ], + 'menu_messages' => [ + 'name' => 'Messages' + ], + 'menu_my_purchase' => [ + 'name' => 'Kirîna min' + ], + 'menu_my_sales' => [ + 'name' => 'Firotanên min' + ], + + /* Right Dock*/ + 'right_secure_trading_subject' => [ + 'name' => 'Bazirganiya Ewle' + ], + 'right_secure_trading_msg' => [ + 'name' => 'Lorem ipsum dolor rûniştiye amet, elite adetekirina consectetur' + ], + 'right_support_subject' => [ + 'name' => '24/7 Piştgirî' + ], + 'right_support_msg' => [ + 'name' => 'Lorem ipsum dolor rûniştiye amet, elite adetekirina consectetur' + ], + 'right_easy_trading_subject' => [ + 'name' => 'Bazirganiya Hêsan' + ], + 'right_easy_trading_msg' => [ + 'name' => 'Lorem ipsum dolor rûniştiye amet, elite adetekirina consectetur' + ], + 'right_need_help_subject' => [ + 'name' => 'Ma Alîkarî hewce dike?' + ], + 'right_need_help_msg' => [ + 'name' => 'Gazî bikin' + ], + 'disable_account' => [ + 'name' => 'Hesabê Neçalak bikin' + ], + 'disable_account_msg' => [ + 'name' => 'Dê hesabê we bête sekinandin. + Ev operasyon nayê paşve xistin' + ], + + 'message_title' => 'Sernavê peyamê', + 'owner_name' => 'Agah', + + 'favorites' => "Favorites", + 'fav_advs' => 'Reklamên Bijare', + 'fav_sellers' => "Fav Firoşyar", + 'fav_searches' => "Lêgerînên Fav", + 'posted_on' => "Hat şandin", + 'message_details' => "Agahdariyên Peyamê", + 'adv_no' => 'Ad Na', + 'bill_address' => [ + 'name' => 'Navnîşana Bill', + ], + 'delivery_address' => [ + 'name' => 'Navnîşana Radestkirinê', + ], + 'order_total' => [ + 'name' => 'Hemî', + ], + 'order_date' => [ + 'name' => 'Date Order', + ], + 'order_no' => [ + 'name' => 'Nasnameyê rêz bikin', + ], + 'order_detail' => [ + 'name' => 'Detail nîşan bide', + ], + /*Detail Page Order*/ + 'detail' => [ + 'name' => 'Hûrî', + ], + 'back' => [ + 'name' => 'Paş', + ], + 'image' => [ + 'name' => 'Wêne', + ], + 'subject' => [ + 'name' => 'Mijar', + ], + 'price' => [ + 'name' => 'Biha', + ], + 'piece' => [ + 'name' => 'Perçe', + ], + 'commission' => [ + 'name' => 'Simsarî', + ], + 'total' => [ + 'name' => 'Hemî', + ], + 'sub_total' => [ + 'name' => 'Sub Total', + ], + 'sale' => [ + 'name' => 'Firotin', + ], + 'awaiting_tracking_number' => [ + 'name' => 'Li benda Hejmara ckopandinê ne', + ], + 'awaiting_payment_approval' => [ + 'name' => 'Li benda pejirandina drav', + ], + 'paid' => [ + 'name' => 'Pere kirin', + ], + 'cancelled' => [ + 'name' => 'Hat betalkirin', + ], + 'waiting' => [ + 'name' => 'Li bendê ye', + ], + 'awaiting_dispatch' => [ + 'name' => 'Li benda şandinê ye', + ], + 'shipped' => [ + 'name' => 'Ppedandin', + ], + 'delivered' => [ + 'name' => 'Radest kirin', + ], + 'tracking_number' => [ + 'name' => 'Hejmara ckopandinê', + ], + 'was_delivered' => [ + 'name' => 'hate radest kirin', + ], + 'not_delivered' => [ + 'name' => 'teslîm nebûye', + ], + 'show_order_msg1' => [ + 'name' => 'Encama danûstandinê dê bi nameyê were agahdar kirin.', + ], + 'show_order_msg2' => [ + 'name' => 'Ger hilber di nav hefteyekê de neyê radest kirin dê paşve were dayîn.', + ], + 'show_order_msg3' => [ + 'name' => 'Encama danûstendinê ji navnîşana e-nameya weya tomarkirî re hate şandin.', + ], + + 'awaiting_payment' => [ + 'name' => 'Li benda dravdayînê ye', + ], + 'please_entered_tracking_number' => [ + 'name' => 'Ji kerema xwe Hejmara ckopandinê ketin hundir', + ], + 'transport_days' => [ + 'name' => 'Rojên Veguhestinê', + ], + 'product_not_delivered' => [ + 'name' => 'Hilber nehatiye şandin', + ], + 'status' => [ + 'name' => 'Cî', + ], + 'cancel_sale' => [ + 'name' => 'Firotanê Betal Bikin', + ], + 'send_again' => [ + 'name' => 'Ez ê Dîsa Sendandim', + ], + 'content' => [ + 'name' => 'Dilşad', + ], + 'preferences_settings' => [ + 'name' => 'Mîhengên Bijareyan', + ], + + 'corporate_settings' => [ + 'name' => 'Mîhengên Pargîdanî', + ], + 'password' => [ + 'name' => 'Şîfre', + ], + 'old_password' => [ + 'name' => 'Passwordîfreya kevn', + ], + 'new_password' => [ + 'name' => 'Passwordîfreya nû', + ], + 're_new_password' => [ + 'name' => 'Di pêşîyê da em sipas dikin', + ], + 'confirm_password_input' => [ + 'name' => 'Ez guhertina şîfreya xwe piştrast dikim', + ], + 'create_address' => [ + 'name' => 'Navnîşan çêbikin', + ], + 'edit_address' => [ + 'name' => 'Navnîşan Biguherîne', + ], + 'balance_limit' => [ + 'name' => 'Sînora Hevsengiyê', + ], + 'active_ads' => [ + 'name' => 'Reklamên Çalak', + ], + 'subscriptions' => [ + 'name' => 'Abonekirin', + ], + 'go_subscriptions_page' => [ + 'name' => 'Herin Rûpelê Tevlêbûnan', + ], + 'buy_package' => [ + 'name' => 'Pakêtê bikirin', + ], + 'expired_date' => [ + 'name' => 'Date Date', + ], + 'category' => [ + 'name' => 'Liq', + ], + 'ad_limit' => [ + 'name' => 'Sînora Ad', + ], + 'publish_time' => [ + 'name' => 'Wext Weşandin', + ], + 'all_categories' => [ + 'name' => 'Hemî Kategorî', + ], + 'day' => [ + 'name' => 'Roj', + ], + + 'individual' => [ + 'name' => 'şexsî', + ], + 'corporate' => [ + 'name' => 'Pargîdanî', + ], + + 'details' => [ + 'name' => 'Hûrgulî' + ], + 'choose' => [ + 'name' => 'Helbijartin' + ], + 'my_address' => 'Navnîşana min', + + 'company' => [ + 'name' => 'Navê Pargîdanî' + ], + 'tax_office' => [ + 'name' => 'Daîreya Bacê' + ], + 'tax_number' => [ + 'name' => 'Hejmara Bacê' + ], + + // Profile page + 'my_profile' => 'Profîla min', + 'edit_profile' => 'Profîlê Biguherîne', + 'edit_details' => 'Hûrgulî Biguherînin', + 'update' => 'Rojanekirin', + 'change_password' => '.Îfreyê biguherînin', + 'choose_an_option' => 'Vebijarek hilbijêrin ...', + + // Register page + 'accept_terms_label' => 'Ez şertan qebûl dikim.', + 'accept_protection_law_label' => 'Ez şertên Zagona li ser qebûl dikim' . setting_value('visiosoft.module.profile::register_protection_url') . '"target =" _ vala "> Parastina Daneyên Kesane.', + 'accept_privacy_terms_label' => 'Ez qebûl dikim' . setting_value('visiosoft.module.profile::register_privacy_url') . '"target =" _ vala "> mercên nepenîtiyê.', + 'receive_sms_emails_label' => 'Ez dixwazim e-name & sms bistînim.', + + // Register Type + 'personal' => [ + 'name' => 'Şexsî' + ], + + 'education_part' => [ + 'name' => 'Dewleta Perwerdehiyê' + ], +]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/message.php b/addons/default/visiosoft/profile-module/resources/lang/ku/message.php new file mode 100644 index 000000000..637df4978 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/message.php @@ -0,0 +1,46 @@ + "Qada E-nameyê Pêdivî ye!", + "username" => "Navê Navnîş Pêdivî ye!", + "success_update" => "Nûvekirina Profîl Bi Serkeftin!", + "adress_success_update" => "Navnîşana Serkeftinê Bi Serkeftin!", + "adress_success_create" => "Navnîşan Bi Serfirazî Afirandin!", + "login_error" => "Têketin an şîfreyek çewt.", + "login_noMail_old_user" => "Navnîşana e-nameya ku hûn xistî nehat dîtin.", + "login_noMail_old_user2" => "Ji kerema xwe navnîşana e-nameyê kontrol bikin û dîsa biceribînin.", + "login_noMail_old_user3" => "Ger pirsgirêk berdewam bike, ji kerema xwe li ser 'info@openclassify.com' têkilî daynin.", + "login_info_old_user" => "Passwordîfreyek nû ji navnîşana e-nameya we re hat şandin.", + "success" => "Serketinî", + "notified_new_updates" => "Ez dixwazim ji nûvekirinên nû agahdar bibim", + "notified_about_ads" => "Di derheqê reklamên min de ragihînan bihêlin", + "receive_messages_email" => "Ez dixwazim wekî e-nameyan peyaman bistînim", + "no_packages_module" => "Moduleya Pakêtan tune!", + "required_add"=> "Ji kerema xwe hemî rêzikên hewce dagirin.", + "no_extend_package" => "Pakêtên Ad Adarê Dirêj Bikin", + "saved" => "Xilas kirin!", + 'please_confirm_transaction' => 'Ji kerema xwe danûstendinê piştrast bikin', + 'password_do_not_match' => 'Passwordîfre li hev nakin', + 'your_password_changed' => 'Passwordîfreya we bi serfirazî hate nûve kirin', + 'error_valid_email_or_phone' => 'Forma jimara telefonê an navnîşana E-nameyê ne rast e.', + 'error_valid_phone' => 'Formata jimara têlefonê ne rast e.', + 'registered_phone' => 'Ev jimara têlefonê jixwe hatî tomar kirin.', + 'ajax_address_error' => 'Navnîşan tune an ji bo dîtinê ne destûrdar e.', + 'empty_password_sms_message' => 'Ji ber pirsgirêkên ewlehiyê, me şîfreya we guherand! Passwordîfreya weya nû ev e:', + 'required_all' => "Hemî Zevî Pêdivî ye!", + 'can_not_remove_filled_fields' => "Hûn nekarin zeviyên dagirtî rakin!", + 'wrong_password' => "Passwordîfreya ku we xistî ne rast e!", + + // Forgot Password + 'email_phone_not_found' => 'E-name, Jimareya Têlefonê ne rast e!', + + 'disable_account' => 'Ma hûn dixwazin hesabê xwe bigirin? Ev operasyon nayê paşve xistin.', + + // Mail + 'update_email_mail_subject' => 'E-name hatî nûve kirin!', + 'update_email_mail_message' => 'E-nameya We Hat Nûvekirin!', + + // Register + 'recaptcha_field_is_required' => 'qada reCaptcha pêdivî ye.', + 'failed_to_validate_captcha' => 'Captcha nehat pejirandin.', +]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ku/permission.php new file mode 100644 index 000000000..c6f4fa8e4 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/permission.php @@ -0,0 +1,36 @@ + [ + 'name' => 'Tengal', + 'option' => [ + 'read' => 'Ma dikare profîlê bixwîne?', + 'write' => 'Ma dikare profîlek çêbike / sererast bike?', + 'delete' => 'Ma dikare profîlê jê bibe?', + ], + ], + 'adress' => [ + 'name' => 'Navnîşan', + 'option' => [ + 'read' => 'Ma dikare navnîşan bixwîne?', + 'write' => 'Ma dikare navnîşan çêbike / sererast bike?', + 'delete' => 'Ma dikare navnîşan were jêbirin?', + ], + ], + 'education' => [ + 'name' => 'Zanyarî', + 'option' => [ + 'read' => 'Ma dikare perwerdehiyê bixwîne?', + 'write' => 'Ma dikare perwerdehiyê biafirîne / sererast bike?', + 'delete' => 'Ma dikare perwerdehiyê jê bibe?', + ], + ], + 'education_part' => [ + 'name' => 'Beşa perwerdehiyê', + 'option' => [ + 'read' => 'Dikarin beşê perwerdehiyê bixwînin?', + 'write' => 'Dikarin beşê perwerdehiyê biafirînin / sererast bikin?', + 'delete' => 'Ma dikare beşa perwerdehiyê jê bibe?', + ], + ], +]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/section.php b/addons/default/visiosoft/profile-module/resources/lang/ku/section.php new file mode 100644 index 000000000..6bd58e541 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/section.php @@ -0,0 +1,18 @@ + [ + 'title' => 'Tengal', + ], + 'adress' => [ + 'title' => 'Navnîşan', + ], + 'general_setting' => 'Mîhengên Giştî', + 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Zanyarî', + ], + 'education_part' => [ + 'title' => 'Beşa perwerdehiyê', + ], +]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ku/setting.php new file mode 100644 index 000000000..082d52e51 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/setting.php @@ -0,0 +1,46 @@ + [ + 'name' => 'Tab Reklamên Min Nîşan bidin', + ], + 'upload_avatar' => [ + 'name' => 'Avatar Upload', + ], + 'show_tax_office' => [ + 'name' => 'Qada Nivîsgeha Bacê Nîşan bidin', + ], + 'show_checkbox_terms_on_register' => [ + 'name' => 'Mercên Checkbox-ê li ser Tomarê nîşan bidin', + 'instructions' => 'Li ser forma tomarê "Termê Qebûl Bike", "Zagona Parastinê", "Termê nepeniyê", "sms & e-name" nîşan bidin' + ], + 'register_protection_url' => [ + 'name' => 'URL-ya Parastinê tomar bikin', + ], + 'register_privacy_url' => [ + 'name' => 'URL-ya nepenîtiyê tomar bikin', + ], + 'show_education_profession' => [ + 'name' => 'Qadên Perwerde û Pîşeyê nîşan bidin', + 'instructions' => 'Li ser rûpelê guherandina profîlê "Perwerde", "Dewleta Perwerdehiyê" û "Pîşeyê" nîşan bidin' + ], + 'google_captcha_site_key' => [ + 'name' => 'Mifteya Malpera Google Captcha', + ], + 'google_captcha_secret_key' => [ + 'name' => 'Mifteya Veşartî ya Google Captcha', + ], + 'score_threshold' => [ + 'name' => 'Benda Pûanê', + 'instructions' => 'Nirxek di navbera 0 û 1. Çiqas benda mezintir ReCaptcha hişktir e ku hewl dide ka bikarhêner botek e an na.', + ], + 'education' => [ + 'name' => 'Zanyarî' + ], + 'state_of_education' => [ + 'name' => 'Dewleta Perwerdehiyê' + ], + 'profession' => [ + 'name' => 'Sinet' + ], +]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ku/stream.php new file mode 100644 index 000000000..67b17c2b2 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/stream.php @@ -0,0 +1,16 @@ + [ + 'name' => 'Tengal', + ], + 'adress' => [ + 'name' => 'Navnîşan', + ], + 'education' => [ + 'name' => 'Zanyarî', + ], + 'education_part' => [ + 'name' => 'Beşa perwerdehiyê', + ], +]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/button.php b/addons/default/visiosoft/profile-module/resources/lang/nl/button.php index ef45ba19e..3db50220c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Verwijderen', 'extend' => 'Uitbreiden', 'extend_all' => 'Alles uitbreiden', + 'extend_unpublished' => 'Verleng niet gepubliceerd', 'edit' => 'Bewerk', 'go_profile' => 'Ga naar Profieldetail', 'go_user' => 'Ga naar Gebruikersdetails', 'personal' => 'Persoonlijk', 'corporate' => 'Zakelijk', 'export' => 'Exporteren', + 'new_education' => 'Nieuw onderwijs', + 'new_education_part' => 'Nieuw onderwijsgedeelte', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/field.php b/addons/default/visiosoft/profile-module/resources/lang/nl/field.php index d32c0512d..730aabeb3 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Verjaardag' ], + 'facebook_address' => [ + 'name' => 'Facebook-adres' + ], + 'google_address' => [ + 'name' => 'Google-adres' + ], 'education' => [ 'name' => 'Opleiding' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Gebruiker' ], + 'name' => [ + 'name' => 'Naam' + ], /*Menu Button*/ 'profile' => [ @@ -377,6 +386,9 @@ return [ 'password' => [ 'name' => 'Wachtwoord', ], + 'old_password' => [ + 'name' => 'Oud Wachtwoord', + ], 'new_password' => [ 'name' => 'Nieuw paswoord', ], @@ -469,4 +481,8 @@ return [ 'personal' => [ 'name' => 'Persoonlijk' ], + + 'education_part' => [ + 'name' => 'Staat van onderwijs' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/message.php b/addons/default/visiosoft/profile-module/resources/lang/nl/message.php index 41b412321..3fa1c58ae 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'Vanwege beveiligingsproblemen hebben we uw wachtwoord gewijzigd! Je nieuwe wachtwoord is:', 'required_all' => "Alle velden zijn vereist!", 'can_not_remove_filled_fields' => "U kunt geen ingevulde velden verwijderen!", + 'wrong_password' => "Het ingevoerde wachtwoord is niet correct!", // Forgot Password 'email_phone_not_found' => 'Het e-mailadres, telefoonnummer is niet correct!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/permission.php b/addons/default/visiosoft/profile-module/resources/lang/nl/permission.php index b64b68020..96984fa40 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Kan adres worden verwijderd?', ], ], + 'education' => [ + 'name' => 'Opleiding', + 'option' => [ + 'read' => 'Kan onderwijs lezen?', + 'write' => 'Kan onderwijs maken / bewerken?', + 'delete' => 'Kan onderwijs verwijderen?', + ], + ], + 'education_part' => [ + 'name' => 'Onderwijsgedeelte', + 'option' => [ + 'read' => 'Kan het onderwijsgedeelte lezen?', + 'write' => 'Kan een onderwijsgedeelte maken / bewerken?', + 'delete' => 'Kan het onderwijsgedeelte verwijderen?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/section.php b/addons/default/visiosoft/profile-module/resources/lang/nl/section.php index 4738f4885..292bfbd8b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Algemene instellingen', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Opleiding', + ], + 'education_part' => [ + 'title' => 'Onderwijsgedeelte', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/stream.php b/addons/default/visiosoft/profile-module/resources/lang/nl/stream.php index 0ab4d54fd..c5fb00c08 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Een jurk', ], + 'education' => [ + 'name' => 'Opleiding', + ], + 'education_part' => [ + 'name' => 'Onderwijsgedeelte', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/button.php b/addons/default/visiosoft/profile-module/resources/lang/pl/button.php index 72797b1c5..3b0309c6a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Usunąć', 'extend' => 'Poszerzać', 'extend_all' => 'Rozszerz wszystko', + 'extend_unpublished' => 'Rozszerz niepublikowane', 'edit' => 'Edytować', 'go_profile' => 'Przejdź do szczegółów profilu', 'go_user' => 'Przejdź do szczegółów użytkownika', 'personal' => 'Osobisty', 'corporate' => 'Zbiorowy', 'export' => 'Eksport', + 'new_education' => 'Nowa edukacja', + 'new_education_part' => 'Nowa część edukacyjna', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/field.php b/addons/default/visiosoft/profile-module/resources/lang/pl/field.php index ea0e73274..3883aa1ba 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Urodziny' ], + 'facebook_address' => [ + 'name' => 'Adres na Facebooku' + ], + 'google_address' => [ + 'name' => 'Adres Google' + ], 'education' => [ 'name' => 'Edukacja' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Użytkownik' ], + 'name' => [ + 'name' => 'Nazwa' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Hasło', ], + 'old_password' => [ + 'name' => 'Stare hasło', + ], 'new_password' => [ 'name' => 'Nowe hasło', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Osobisty' ], + + 'education_part' => [ + 'name' => 'Stan edukacji' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/message.php b/addons/default/visiosoft/profile-module/resources/lang/pl/message.php index ec34816ab..0e0e7f5a5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'Ze względów bezpieczeństwa zmieniliśmy twoje hasło! Twoje nowe hasło to:', 'required_all' => "Wszystkie pola są wymagane!", 'can_not_remove_filled_fields' => "Nie możesz usunąć wypełnionych pól!", + 'wrong_password' => "Wprowadzone hasło jest nieprawidłowe!", // Forgot Password 'email_phone_not_found' => 'Adres e-mail, numer telefonu jest nieprawidłowy!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/permission.php b/addons/default/visiosoft/profile-module/resources/lang/pl/permission.php index a56f96694..c3f54dffd 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Czy można usunąć adres?', ], ], + 'education' => [ + 'name' => 'Edukacja', + 'option' => [ + 'read' => 'Potrafi czytać edukację?', + 'write' => 'Czy można tworzyć / edytować edukację?', + 'delete' => 'Czy można usunąć wykształcenie?', + ], + ], + 'education_part' => [ + 'name' => 'Część edukacyjna', + 'option' => [ + 'read' => 'Potrafi przeczytać część edukacyjną?', + 'write' => 'Czy można tworzyć / edytować część edukacyjną?', + 'delete' => 'Czy można usunąć część edukacyjną?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/section.php b/addons/default/visiosoft/profile-module/resources/lang/pl/section.php index 2197e9257..7b968f93a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Ustawienia główne', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Edukacja', + ], + 'education_part' => [ + 'title' => 'Część edukacyjna', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/stream.php b/addons/default/visiosoft/profile-module/resources/lang/pl/stream.php index 27b04fd27..3593c99a5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Adres', ], + 'education' => [ + 'name' => 'Edukacja', + ], + 'education_part' => [ + 'name' => 'Część edukacyjna', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/button.php b/addons/default/visiosoft/profile-module/resources/lang/pt/button.php index 6875db1e0..c3e276779 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Excluir', 'extend' => 'Ampliar', 'extend_all' => 'Estender tudo', + 'extend_unpublished' => 'Estender não publicado', 'edit' => 'Editar', 'go_profile' => 'Ir para o detalhe do perfil', 'go_user' => 'Ir para Detalhes do Usuário', 'personal' => 'Pessoal', 'corporate' => 'Corporativo', 'export' => 'Exportar', + 'new_education' => 'Nova educação', + 'new_education_part' => 'Nova parte de educação', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/field.php b/addons/default/visiosoft/profile-module/resources/lang/pt/field.php index 852e12345..db41c0dd9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Aniversário' ], + 'facebook_address' => [ + 'name' => 'Endereço do Facebook' + ], + 'google_address' => [ + 'name' => 'Endereço Google' + ], 'education' => [ 'name' => 'Educação' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Do utilizador' ], + 'name' => [ + 'name' => 'Nome' + ], /*Menu Button*/ 'profile' => [ @@ -377,6 +386,9 @@ return [ 'password' => [ 'name' => 'Senha', ], + 'old_password' => [ + 'name' => 'Senha Antiga', + ], 'new_password' => [ 'name' => 'Nova senha', ], @@ -469,4 +481,8 @@ return [ 'personal' => [ 'name' => 'Pessoal' ], + + 'education_part' => [ + 'name' => 'Estado da Educação' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/message.php b/addons/default/visiosoft/profile-module/resources/lang/pt/message.php index 1de7d220e..4a492d89f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/message.php @@ -32,6 +32,7 @@ return [ 'empty_password_sms_message' => 'Devido a problemas de segurança, alteramos sua senha! Sua nova senha é:', 'required_all' => "Todo o campo é obrigatório!", 'can_not_remove_filled_fields' => "Você não pode remover os campos preenchidos!", + 'wrong_password' => "A senha que você digitou não está correta!", // Forgot Password 'email_phone_not_found' => 'O e-mail, número de telefone não está correto!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/permission.php b/addons/default/visiosoft/profile-module/resources/lang/pt/permission.php index c6dd7736a..38fd880e0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Pode excluir o endereço?', ], ], + 'education' => [ + 'name' => 'Educação', + 'option' => [ + 'read' => 'Pode ler educação?', + 'write' => 'Pode criar / editar educação?', + 'delete' => 'Pode excluir educação?', + ], + ], + 'education_part' => [ + 'name' => 'Parte de educação', + 'option' => [ + 'read' => 'Pode ler parte da educação?', + 'write' => 'Pode criar / editar a parte educacional?', + 'delete' => 'Pode excluir a parte educacional?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/section.php b/addons/default/visiosoft/profile-module/resources/lang/pt/section.php index 662440e6e..43dbdd4a0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Configurações Gerais', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Educação', + ], + 'education_part' => [ + 'title' => 'Parte de educação', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/stream.php b/addons/default/visiosoft/profile-module/resources/lang/pt/stream.php index 85e3e8531..f9f7b2676 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Endereço', ], + 'education' => [ + 'name' => 'Educação', + ], + 'education_part' => [ + 'name' => 'Parte de educação', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/button.php b/addons/default/visiosoft/profile-module/resources/lang/ro/button.php index eb429f7bc..3dc47d058 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Șterge', 'extend' => 'Extinde', 'extend_all' => 'Extindeți toate', + 'extend_unpublished' => 'Extindeți nepublicat', 'edit' => 'Editați | ×', 'go_profile' => 'Accesați Detaliile profilului', 'go_user' => 'Accesați Detaliile utilizatorului', 'personal' => 'Personal', 'corporate' => 'corporativ', 'export' => 'Export', + 'new_education' => 'Educație nouă', + 'new_education_part' => 'Partea educație nouă', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/field.php b/addons/default/visiosoft/profile-module/resources/lang/ro/field.php index f6e1960e6..07528d6dc 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Zi de nastere' ], + 'facebook_address' => [ + 'name' => 'Adresa Facebook' + ], + 'google_address' => [ + 'name' => 'Adresa Google' + ], 'education' => [ 'name' => 'Educaţie' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Utilizator' ], + 'name' => [ + 'name' => 'Nume' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Parola', ], + 'old_password' => [ + 'name' => 'Parola veche', + ], 'new_password' => [ 'name' => 'Parolă Nouă', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Personal' ], + + 'education_part' => [ + 'name' => 'Starea educației' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/message.php b/addons/default/visiosoft/profile-module/resources/lang/ro/message.php index d072422e2..d0f99b454 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'Din cauza problemelor de securitate, v-am schimbat parola! Noua dvs. parolă este:', 'required_all' => "Tot câmpul este obligatoriu!", 'can_not_remove_filled_fields' => "Nu puteți elimina câmpurile umplute!", + 'wrong_password' => "Parola pe care ați introdus-o nu este corectă!", // Forgot Password 'email_phone_not_found' => 'E-mailul, numărul de telefon nu este corect!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ro/permission.php index 057d30ca8..6c738b570 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Se poate șterge adresa?', ], ], + 'education' => [ + 'name' => 'Educaţie', + 'option' => [ + 'read' => 'Poate citi educația?', + 'write' => 'Poate crea / edita educație?', + 'delete' => 'Poate șterge educația?', + ], + ], + 'education_part' => [ + 'name' => 'Partea educație', + 'option' => [ + 'read' => 'Poate citi partea educației?', + 'write' => 'Poate crea / edita partea de educație?', + 'delete' => 'Poate șterge partea de educație?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/section.php b/addons/default/visiosoft/profile-module/resources/lang/ro/section.php index 168aff6e4..d15180791 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'setari generale', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Educaţie', + ], + 'education_part' => [ + 'title' => 'Partea educație', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ro/stream.php index 47580451f..80edd2c52 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Abordare', ], + 'education' => [ + 'name' => 'Educaţie', + ], + 'education_part' => [ + 'name' => 'Partea educație', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/button.php b/addons/default/visiosoft/profile-module/resources/lang/ru/button.php index 8f0e1a92e..4e6b6e87f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'удалять', 'extend' => 'простираться', 'extend_all' => 'Расширить все', + 'extend_unpublished' => 'Продлить неопубликованные', 'edit' => 'редактировать', 'go_profile' => 'Перейти к профилю', 'go_user' => 'Перейти к информации о пользователе', 'personal' => 'личный', 'corporate' => 'Корпоративный', 'export' => 'Экспорт', + 'new_education' => 'Новое образование', + 'new_education_part' => 'Часть нового образования', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/field.php b/addons/default/visiosoft/profile-module/resources/lang/ru/field.php index ef5fc602d..91e90bd93 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'День рождения' ], + 'facebook_address' => [ + 'name' => 'Адрес Facebook' + ], + 'google_address' => [ + 'name' => 'Адрес Google' + ], 'education' => [ 'name' => 'Образование' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'пользователь' ], + 'name' => [ + 'name' => 'имя' + ], /*Menu Button*/ 'profile' => [ @@ -376,6 +385,9 @@ return [ 'password' => [ 'name' => 'пароль', ], + 'old_password' => [ + 'name' => 'Прежний пароль', + ], 'new_password' => [ 'name' => 'Новый пароль', ], @@ -468,4 +480,8 @@ return [ 'personal' => [ 'name' => 'Личное' ], + + 'education_part' => [ + 'name' => 'Состояние образования' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/message.php b/addons/default/visiosoft/profile-module/resources/lang/ru/message.php index 73f16a330..c49fc9e8a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/message.php @@ -32,6 +32,7 @@ return [ 'empty_password_sms_message' => 'Из-за проблем безопасности мы изменили ваш пароль! Ваш новый пароль:', 'required_all' => "Все поля обязательны для заполнения!", 'can_not_remove_filled_fields' => "Заполненные поля удалить нельзя!", + 'wrong_password' => "Вы ввели неверный пароль!", // Forgot Password 'email_phone_not_found' => 'E-mail, номер телефона неверен!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ru/permission.php index 509ccf40a..c992eae8e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Можете удалить адрес?', ], ], + 'education' => [ + 'name' => 'Образование', + 'option' => [ + 'read' => 'Может читать образование?', + 'write' => 'Может создавать / редактировать образование?', + 'delete' => 'Может удалить образование?', + ], + ], + 'education_part' => [ + 'name' => 'Образовательная часть', + 'option' => [ + 'read' => 'Может читать образовательную часть?', + 'write' => 'Может ли образовательная часть создавать / редактировать?', + 'delete' => 'Можно удалить часть образования?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/section.php b/addons/default/visiosoft/profile-module/resources/lang/ru/section.php index 132745217..16b206b51 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'общие настройки', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Образование', + ], + 'education_part' => [ + 'title' => 'Образовательная часть', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ru/stream.php index 17a65c5f1..ebc2c2fa6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Адрес', ], + 'education' => [ + 'name' => 'Образование', + ], + 'education_part' => [ + 'name' => 'Образовательная часть', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/button.php b/addons/default/visiosoft/profile-module/resources/lang/sq/button.php index 652ca64fd..97be852a8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Fshini', 'extend' => 'Shpreh', 'extend_all' => 'Zgjeroni të gjitha', + 'extend_unpublished' => 'Zgjasni të pabotuar', 'edit' => 'Redakto', 'go_profile' => 'Shkoni në Detajin e Profilit', 'go_user' => 'Shkoni te Detajet e përdoruesit', 'personal' => 'personal', 'corporate' => 'i korporatës', 'export' => 'Eksporto', + 'new_education' => 'Edukimi i ri', + 'new_education_part' => 'Pjesa e Edukimit të Ri', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/field.php b/addons/default/visiosoft/profile-module/resources/lang/sq/field.php index 0c1f2f5a7..2c5a3d387 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Ditëlindja' ], + 'facebook_address' => [ + 'name' => 'Adresa në Facebook' + ], + 'google_address' => [ + 'name' => 'Adresa e Google' + ], 'education' => [ 'name' => 'Arsimi' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Perdoruesit' ], + 'name' => [ + 'name' => 'Emrin' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Fjalëkalimi', ], + 'old_password' => [ + 'name' => 'Fjalëkalimi i vjetër', + ], 'new_password' => [ 'name' => 'Fjalëkalim i ri', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Personale' ], + + 'education_part' => [ + 'name' => 'Shteti i Arsimit' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/message.php b/addons/default/visiosoft/profile-module/resources/lang/sq/message.php index f799e90bb..6b4df4b1e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'Për shkak të çështjeve të sigurisë, ne ndryshuam fjalëkalimin tuaj! Fjalëkalimi juaj i ri është:', 'required_all' => "Kërkohet e gjithë fusha!", 'can_not_remove_filled_fields' => "Ju nuk mund të hiqni fushat e mbushura!", + 'wrong_password' => "Fjalëkalimi që keni futur nuk është i saktë!", // Forgot Password 'email_phone_not_found' => 'E-maili, numri i telefonit nuk është i saktë!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/permission.php b/addons/default/visiosoft/profile-module/resources/lang/sq/permission.php index c4b0dfc17..e3aaefef5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Mund të fshini adresën?', ], ], + 'education' => [ + 'name' => 'Arsimi', + 'option' => [ + 'read' => 'A mund të lexojë arsimin?', + 'write' => 'A mund të krijojë / modifikojë arsimin?', + 'delete' => 'A mund ta fshijë arsimin?', + ], + ], + 'education_part' => [ + 'name' => 'Pjesa e arsimit', + 'option' => [ + 'read' => 'A mund të lexojë arsimi pjesë?', + 'write' => 'A mund të krijojë / modifikojë një pjesë të arsimit?', + 'delete' => 'A mund të fshihet pjesa e arsimit?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/section.php b/addons/default/visiosoft/profile-module/resources/lang/sq/section.php index a0624474f..02c9f951e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Cilësimet e përgjithshme', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Arsimi', + ], + 'education_part' => [ + 'title' => 'Pjesa e arsimit', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/stream.php b/addons/default/visiosoft/profile-module/resources/lang/sq/stream.php index 051d0de65..81674ac29 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Adresë', ], + 'education' => [ + 'name' => 'Arsimi', + ], + 'education_part' => [ + 'name' => 'Pjesa e arsimit', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/button.php b/addons/default/visiosoft/profile-module/resources/lang/sv/button.php index 3d76a7eb6..dbee3720e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Radera', 'extend' => 'Förlänga', 'extend_all' => 'Förläng alla', + 'extend_unpublished' => 'Förlänga opublicerat', 'edit' => 'Redigera', 'go_profile' => 'Gå till profildetalj', 'go_user' => 'Gå till användarinformation', 'personal' => 'Personlig', 'corporate' => 'Företags', 'export' => 'Exportera', + 'new_education' => 'Ny utbildning', + 'new_education_part' => 'Ny utbildning del', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/field.php b/addons/default/visiosoft/profile-module/resources/lang/sv/field.php index 313aa92a6..e167ecd31 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Födelsedag' ], + 'facebook_address' => [ + 'name' => 'Facebook-adress' + ], + 'google_address' => [ + 'name' => 'Google-adress' + ], 'education' => [ 'name' => 'Utbildning' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Användare' ], + 'name' => [ + 'name' => 'namn' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Lösenord', ], + 'old_password' => [ + 'name' => 'Gammalt lösenord', + ], 'new_password' => [ 'name' => 'Nytt lösenord', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Personlig' ], + + 'education_part' => [ + 'name' => 'Utbildningsstatus' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/message.php b/addons/default/visiosoft/profile-module/resources/lang/sv/message.php index 6fe29a4ad..6084a15c1 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'På grund av säkerhetsproblem har vi ändrat ditt lösenord! Ditt nya lösenord är:', 'required_all' => "Allt fält krävs!", 'can_not_remove_filled_fields' => "Du kan inte ta bort fyllda fält!", + 'wrong_password' => "Lösenordet du angav är inte korrekt!", // Forgot Password 'email_phone_not_found' => 'E-post, telefonnummer är inte korrekt!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/permission.php b/addons/default/visiosoft/profile-module/resources/lang/sv/permission.php index 7909a606d..ed6deeacc 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Kan radera adress?', ], ], + 'education' => [ + 'name' => 'Utbildning', + 'option' => [ + 'read' => 'Kan läsa utbildning?', + 'write' => 'Kan du skapa / redigera utbildning?', + 'delete' => 'Kan ta bort utbildning?', + ], + ], + 'education_part' => [ + 'name' => 'Utbildningsdel', + 'option' => [ + 'read' => 'Kan läsa utbildning del?', + 'write' => 'Kan du skapa / redigera utbildningsdel?', + 'delete' => 'Kan ta bort utbildningsdel?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/section.php b/addons/default/visiosoft/profile-module/resources/lang/sv/section.php index d45dcaa1f..82e3cd3e2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Allmänna Inställningar', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Utbildning', + ], + 'education_part' => [ + 'title' => 'Utbildningsdel', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/stream.php b/addons/default/visiosoft/profile-module/resources/lang/sv/stream.php index 695d2987d..5fa24fc65 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Adress', ], + 'education' => [ + 'name' => 'Utbildning', + ], + 'education_part' => [ + 'name' => 'Utbildningsdel', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/button.php b/addons/default/visiosoft/profile-module/resources/lang/tr/button.php index ce96f559a..110b9a8b0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Sil', 'extend' => 'Süre Uzat', 'extend_all' => 'Tümünün Süresini Uzat', + 'extend_unpublished' => 'Yayınlanmayanları Genişlet', 'edit' => 'Düzenle', 'go_profile' => 'Profil Detayları', 'go_user' => 'Kullanıcı Detayları', 'personal' => 'Kişisel', 'corporate' => 'Kurumsal', 'export' => 'Dışa aktar', + 'new_education' => 'Yeni Eğitim', + 'new_education_part' => 'Yeni Eğitim bölümü', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/field.php b/addons/default/visiosoft/profile-module/resources/lang/tr/field.php index 945e70398..9b5f727e7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/field.php @@ -5,10 +5,10 @@ return [ 'name' => 'Fotoğraflar' ], 'first_name' => [ - 'name' => 'Adınız' + 'name' => 'Ad' ], 'last_name' => [ - 'name' => 'Soyadınız' + 'name' => 'Soyad' ], 'username' => [ 'name' => 'Kullanıcı Adı' @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Doğum Günü' ], + 'facebook_address' => [ + 'name' => 'Facebook Adresi' + ], + 'google_address' => [ + 'name' => 'Google Adresi' + ], 'education' => [ 'name' => 'Eğitim' ], @@ -74,7 +80,7 @@ return [ 'name' => 'Adres Adı' ], 'adress_first_name' => [ - 'name' => 'İsim' + 'name' => 'Ad' ], 'adress_last_name' => [ 'name' => 'Soyad' @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Kullanıcı' ], + 'name' => [ + 'name' => 'İsim' + ], /*Menu Button*/ 'profile' => [ @@ -374,12 +383,12 @@ return [ 'password' => [ 'name' => 'Şifre', ], + 'old_password' => [ + 'name' => 'Eski şifre', + ], 'new_password' => [ 'name' => 'Yeni Şifre', ], - 'old_password' => [ - 'name' => 'Eski Şifre', - ], 're_new_password' => [ 'name' => 'Şifre Onayı', ], @@ -461,14 +470,16 @@ return [ // Register page 'accept_terms_label' => 'Koşulları kabul ediyorum.', - 'accept_protection_law_label' => 'Kişisel Verilerin Korunması Kanunu hükümlerini kabul ediyorum.', 'accept_privacy_terms_label' => 'Gizlilik şartlarını kabul ediyorum.', - - 'receive_sms_emails_label' => 'E-posta ve sms almak istiyorum.', + 'receive_sms_emails_label' => 'E-posta ve sms almak istiyorum.', // Register Type 'personal' => [ 'name' => 'Bireysel' ], + + 'education_part' => [ + 'name' => 'Eğitim Durumu' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/message.php b/addons/default/visiosoft/profile-module/resources/lang/tr/message.php index 1822f4431..332f5c0e3 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'Güvenlik sorunları nedeniyle şifrenizi değiştirdik! Yeni parolanız:', 'required_all' => "Tüm Alanlar Zorunludur!", 'can_not_remove_filled_fields' => "Doldurulmuş alanları kaldıramazsınız!", + 'wrong_password' => "Girdiğiniz şifre doğru değil!", // Forgot Password 'email_phone_not_found' => 'E-posta, Telefon Numarası doğru değil!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/permission.php b/addons/default/visiosoft/profile-module/resources/lang/tr/permission.php index 5b6145c8d..6f8e69bd6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Adresi silebilir misiniz?', ], ], + 'education' => [ + 'name' => 'Eğitim', + 'option' => [ + 'read' => 'Eğitim okuyabilir mi?', + 'write' => 'Eğitim oluşturabilir / düzenleyebilir mi?', + 'delete' => 'Eğitimi silebilir mi?', + ], + ], + 'education_part' => [ + 'name' => 'Eğitim bölümü', + 'option' => [ + 'read' => 'Eğitim bölümünü okuyabilir mi?', + 'write' => 'Eğitim bölümü oluşturabilir / düzenleyebilir mi?', + 'delete' => 'Eğitim bölümü silebilir mi?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/section.php b/addons/default/visiosoft/profile-module/resources/lang/tr/section.php index 5012f89f3..38c8b1ab8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Genel Ayarlar', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Eğitim', + ], + 'education_part' => [ + 'title' => 'Eğitim bölümü', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/stream.php b/addons/default/visiosoft/profile-module/resources/lang/tr/stream.php index 27b04fd27..7bc437fc7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Adres', ], + 'education' => [ + 'name' => 'Eğitim', + ], + 'education_part' => [ + 'name' => 'Eğitim bölümü', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/button.php b/addons/default/visiosoft/profile-module/resources/lang/uk/button.php index 2a3ca2293..329eb7282 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Видалити', 'extend' => 'Розширити', 'extend_all' => 'Розширити всі', + 'extend_unpublished' => 'Розширити Неопубліковано', 'edit' => 'Редагувати', 'go_profile' => 'Перейдіть до детальної інформації про профіль', 'go_user' => 'Перейдіть до детальної інформації про користувача', 'personal' => 'Особисті', 'corporate' => 'Корпоративний', 'export' => 'Експорт', + 'new_education' => 'Нова освіта', + 'new_education_part' => 'Нова освітня частина', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/field.php b/addons/default/visiosoft/profile-module/resources/lang/uk/field.php index 941ac6d4f..823ca900e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'День народження' ], + 'facebook_address' => [ + 'name' => 'Адреса Facebook' + ], + 'google_address' => [ + 'name' => 'Адреса Google' + ], 'education' => [ 'name' => 'Освіта' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Користувач' ], + 'name' => [ + 'name' => 'Ім\'я' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Пароль', ], + 'old_password' => [ + 'name' => 'Старий пароль', + ], 'new_password' => [ 'name' => 'Новий пароль', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Особистий' ], + + 'education_part' => [ + 'name' => 'Стан освіти' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/message.php b/addons/default/visiosoft/profile-module/resources/lang/uk/message.php index 60aa2e428..758328ca5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'Через проблеми безпеки ми змінили ваш пароль! Ваш новий пароль:', 'required_all' => "Поле обов'язкове!", 'can_not_remove_filled_fields' => "Ви не можете видалити заповнені поля!", + 'wrong_password' => "Введений вами пароль неправильний!", // Forgot Password 'email_phone_not_found' => 'Неправильний електронний лист, номер телефону!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/permission.php b/addons/default/visiosoft/profile-module/resources/lang/uk/permission.php index 3602d4488..d34ceaceb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Чи можна видалити адресу?', ], ], + 'education' => [ + 'name' => 'Освіта', + 'option' => [ + 'read' => 'Чи вмієте читати освіту?', + 'write' => 'Чи можете створювати / редагувати освіту?', + 'delete' => 'Можна видалити освіту?', + ], + ], + 'education_part' => [ + 'name' => 'Освітня частина', + 'option' => [ + 'read' => 'Чи вмієте читати навчальну частину?', + 'write' => 'Чи можете створювати / редагувати навчальну частину?', + 'delete' => 'Можна видалити навчальну частину?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/section.php b/addons/default/visiosoft/profile-module/resources/lang/uk/section.php index 8b9318dec..592073a55 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Загальні налаштування', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Освіта', + ], + 'education_part' => [ + 'title' => 'Освітня частина', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/stream.php b/addons/default/visiosoft/profile-module/resources/lang/uk/stream.php index e1a800e15..0ec2a9ba7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Адреса', ], + 'education' => [ + 'name' => 'Освіта', + ], + 'education_part' => [ + 'name' => 'Освітня частина', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/button.php b/addons/default/visiosoft/profile-module/resources/lang/ur/button.php index af9e418b5..65bc71e7e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'حذف کریں', 'extend' => 'بڑھائیں', 'extend_all' => 'سب کو بڑھاؤ', + 'extend_unpublished' => 'غیر مطبوعہ کو بڑھاو', 'edit' => 'ترمیم', 'go_profile' => 'پروفائل کی تفصیل پر جائیں', 'go_user' => 'صارف کی تفصیل پر جائیں', 'personal' => 'ذاتی', 'corporate' => 'کارپوریٹ', 'export' => 'برآمد کریں', + 'new_education' => 'نئی تعلیم', + 'new_education_part' => 'تعلیم کا نیا حصہ', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/field.php b/addons/default/visiosoft/profile-module/resources/lang/ur/field.php index 7aa891a81..02ed85066 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'سالگرہ' ], + 'facebook_address' => [ + 'name' => 'فیس بک ایڈریس' + ], + 'google_address' => [ + 'name' => 'گوگل ایڈریس' + ], 'education' => [ 'name' => 'تعلیم' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'صارف' ], + 'name' => [ + 'name' => 'نام' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'پاس ورڈ', ], + 'old_password' => [ + 'name' => 'پرانا پاسورڈ', + ], 'new_password' => [ 'name' => 'نیا پاس ورڈ', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'ذاتی' ], + + 'education_part' => [ + 'name' => 'ریاست تعلیم' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/message.php b/addons/default/visiosoft/profile-module/resources/lang/ur/message.php index a1abdf4d0..9192aabec 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'سیکیورٹی کے مسائل کی وجہ سے ، ہم نے آپ کا پاس ورڈ تبدیل کردیا! آپ کا نیا پاس ورڈ یہ ہے:', 'required_all' => "تمام فیلڈ کی ضرورت ہے!", 'can_not_remove_filled_fields' => "آپ بھرے کھیتوں کو نہیں ہٹا سکتے!", + 'wrong_password' => "آپ کا درج کردہ پاس ورڈ درست نہیں ہے!", // Forgot Password 'email_phone_not_found' => 'ای میل ، فون نمبر درست نہیں ہے!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php index 9071aab84..bca111150 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'ایڈریس کو حذف کرسکتے ہیں؟', ], ], + 'education' => [ + 'name' => 'تعلیم', + 'option' => [ + 'read' => 'تعلیم پڑھ سکتے ہیں؟', + 'write' => 'تعلیم تخلیق / ترمیم کرسکتے ہیں؟', + 'delete' => 'کیا تعلیم کو حذف کرسکتے ہیں؟', + ], + ], + 'education_part' => [ + 'name' => 'تعلیم کا حصہ', + 'option' => [ + 'read' => 'تعلیم کا حصہ پڑھ سکتے ہیں؟', + 'write' => 'کیا تعلیم کا حصہ تخلیق / ترمیم کرسکتا ہے؟', + 'delete' => 'کیا تعلیم کا حصہ حذف کرسکتے ہیں؟', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/section.php b/addons/default/visiosoft/profile-module/resources/lang/ur/section.php index 0b095e950..a5f6bf75e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'عام ترتیبات', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'تعلیم', + ], + 'education_part' => [ + 'title' => 'تعلیم کا حصہ', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php index d95d65b5a..2ecf64d37 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'پتہ', ], + 'education' => [ + 'name' => 'تعلیم', + ], + 'education_part' => [ + 'name' => 'تعلیم کا حصہ', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/button.php b/addons/default/visiosoft/profile-module/resources/lang/vi/button.php index ce6aacf5c..b674c48c6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/button.php @@ -9,10 +9,13 @@ return [ 'delete' => 'Xóa bỏ', 'extend' => 'Mở rộng', 'extend_all' => 'Mở rộng tất cả', + 'extend_unpublished' => 'Mở rộng Chưa xuất bản', 'edit' => 'Biên tập', 'go_profile' => 'Đi đến chi tiết hồ sơ', 'go_user' => 'Đi đến chi tiết người dùng', 'personal' => 'Cá nhân', 'corporate' => 'Công ty', 'export' => 'Xuất khẩu', + 'new_education' => 'Giáo dục mới', + 'new_education_part' => 'Phần giáo dục mới', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/field.php b/addons/default/visiosoft/profile-module/resources/lang/vi/field.php index 18e050858..20d9b94c7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Sinh nhật' ], + 'facebook_address' => [ + 'name' => 'Địa chỉ Facebook' + ], + 'google_address' => [ + 'name' => 'Địa chỉ Google' + ], 'education' => [ 'name' => 'Giáo dục' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Người dùng' ], + 'name' => [ + 'name' => 'Tên' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Mật khẩu', ], + 'old_password' => [ + 'name' => 'Mật khẩu cũ', + ], 'new_password' => [ 'name' => 'Mật khẩu mới', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Cá nhân' ], + + 'education_part' => [ + 'name' => 'Bang giáo dục' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/message.php b/addons/default/visiosoft/profile-module/resources/lang/vi/message.php index 2a671dd4a..878d4553e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'Do vấn đề bảo mật, chúng tôi đã thay đổi mật khẩu của bạn! Mật khẩu mới của bạn là:', 'required_all' => "Tất cả các lĩnh vực là bắt buộc!", 'can_not_remove_filled_fields' => "Bạn không thể loại bỏ các trường đã điền!", + 'wrong_password' => "Mật khẩu bạn đã nhập không chính xác!", // Forgot Password 'email_phone_not_found' => 'E-mail, số điện thoại không chính xác!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/permission.php b/addons/default/visiosoft/profile-module/resources/lang/vi/permission.php index 2f01bf854..c2218e755 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Có thể xóa địa chỉ?', ], ], + 'education' => [ + 'name' => 'Giáo dục', + 'option' => [ + 'read' => 'Có thể đọc giáo dục?', + 'write' => 'Có thể tạo / chỉnh sửa giáo dục?', + 'delete' => 'Có thể xóa giáo dục?', + ], + ], + 'education_part' => [ + 'name' => 'Phần giáo dục', + 'option' => [ + 'read' => 'Có thể đọc phần giáo dục?', + 'write' => 'Có thể tạo / chỉnh sửa phần giáo dục không?', + 'delete' => 'Có thể xóa phần giáo dục?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/section.php b/addons/default/visiosoft/profile-module/resources/lang/vi/section.php index bef940b51..8c79e4eed 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Cài đặt chung', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Giáo dục', + ], + 'education_part' => [ + 'title' => 'Phần giáo dục', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/stream.php b/addons/default/visiosoft/profile-module/resources/lang/vi/stream.php index 1df8b2c68..0d3ef8f9c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Địa chỉ', ], + 'education' => [ + 'name' => 'Giáo dục', + ], + 'education_part' => [ + 'name' => 'Phần giáo dục', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/views/address/partials/fields.twig b/addons/default/visiosoft/profile-module/resources/views/address/partials/fields.twig index 2f3aad4ca..40849fd67 100644 --- a/addons/default/visiosoft/profile-module/resources/views/address/partials/fields.twig +++ b/addons/default/visiosoft/profile-module/resources/views/address/partials/fields.twig @@ -17,11 +17,11 @@
    - {{ form.fields.city|raw }} + {{ form.fields.city.setPlaceholder(trans('visiosoft.module.profile::field.choose_an_option'))|raw }}
    - {{ form.fields.district|raw }} + {{ form.fields.district.setPlaceholder(trans('visiosoft.module.profile::field.choose_an_option'))|raw }}
    diff --git a/addons/default/visiosoft/profile-module/resources/views/profile/ads.twig b/addons/default/visiosoft/profile-module/resources/views/profile/ads.twig index 75107fb3b..225679fb3 100644 --- a/addons/default/visiosoft/profile-module/resources/views/profile/ads.twig +++ b/addons/default/visiosoft/profile-module/resources/views/profile/ads.twig @@ -35,6 +35,9 @@ {{ trans('visiosoft.module.profile::button.extend_all') }} + + {{ trans('visiosoft.module.profile::button.extend_unpublished') }} + {% endif %}

    {{ user.name }}

    - +
    @@ -122,7 +124,7 @@ - {{ profileForm.fields.gsm_phone.input|raw }} + {{ profileForm.fields.gsm_phone.setAttributes({'maxlength': '14'}).input|raw }}
    @@ -130,7 +132,7 @@ - {{ profileForm.fields.office_phone.input|raw }} + {{ profileForm.fields.office_phone.setAttributes({'maxlength': '14'}).input|raw }}
    @@ -138,7 +140,7 @@ - {{ profileForm.fields.land_phone.input|raw }} + {{ profileForm.fields.land_phone.setAttributes({'maxlength': '14'}).input|raw }}
    @@ -146,7 +148,7 @@ - {{ profileForm.fields.birthday.configSet('date_format','Y-m-d').setPlaceholder(now|date('Y-m-d')).input|raw }} + {{ profileForm.fields.birthday.configSet('date_format','Y-m-d').setPlaceholder(now|date(config_get('streams::datetime.date_format'))).input|raw }}
    @@ -171,40 +173,15 @@ - {{ profileForm.fields.education.value.input|raw }} - + {{ profileForm.fields.education.setPlaceholder(trans('visiosoft.module.profile::field.choose_an_option')).input|raw }}
    -
    +
    - + {{ profileForm.fields.education_part.setPlaceholder(trans('visiosoft.module.profile::field.choose_an_option')).input|raw }}
    @@ -280,8 +257,12 @@
    + {% endblock %} {% endembed %} + {{ asset_script("visiosoft.module.profile::assets/js/education.js") }} {{ asset_add("scripts.js", "visiosoft.module.profile::assets/js/profile.js") }} {% endblock %} \ No newline at end of file diff --git a/addons/default/visiosoft/profile-module/resources/views/profile/partials/navigation.twig b/addons/default/visiosoft/profile-module/resources/views/profile/partials/navigation.twig index 0bbb2197e..340e9ca46 100644 --- a/addons/default/visiosoft/profile-module/resources/views/profile/partials/navigation.twig +++ b/addons/default/visiosoft/profile-module/resources/views/profile/partials/navigation.twig @@ -28,6 +28,12 @@ {{ addBlock('profile/navigation',{'marketPlace':marketPlace})|raw }} + + + +

    {{ trans('visiosoft.theme.base::field.logout.name') }}

    +
    diff --git a/addons/default/visiosoft/profile-module/src/Education/Contract/EducationInterface.php b/addons/default/visiosoft/profile-module/src/Education/Contract/EducationInterface.php new file mode 100644 index 000000000..25cde7990 --- /dev/null +++ b/addons/default/visiosoft/profile-module/src/Education/Contract/EducationInterface.php @@ -0,0 +1,8 @@ +model = $model; + } +} diff --git a/addons/default/visiosoft/profile-module/src/Education/EducationRouter.php b/addons/default/visiosoft/profile-module/src/Education/EducationRouter.php new file mode 100644 index 000000000..ffc70a9fc --- /dev/null +++ b/addons/default/visiosoft/profile-module/src/Education/EducationRouter.php @@ -0,0 +1,8 @@ +model = $model; + } +} diff --git a/addons/default/visiosoft/profile-module/src/EducationPart/EducationPartRouter.php b/addons/default/visiosoft/profile-module/src/EducationPart/EducationPartRouter.php new file mode 100644 index 000000000..331061459 --- /dev/null +++ b/addons/default/visiosoft/profile-module/src/EducationPart/EducationPartRouter.php @@ -0,0 +1,8 @@ +render(); + } + + /** + * Create a new entry. + * + * @param EducationFormBuilder $form + * @return \Symfony\Component\HttpFoundation\Response + */ + public function create(EducationFormBuilder $form) + { + return $form->render(); + } + + /** + * Edit an existing entry. + * + * @param EducationFormBuilder $form + * @param $id + * @return \Symfony\Component\HttpFoundation\Response + */ + public function edit(EducationFormBuilder $form, $id) + { + return $form->render($id); + } +} diff --git a/addons/default/visiosoft/profile-module/src/Http/Controller/Admin/EducationPartController.php b/addons/default/visiosoft/profile-module/src/Http/Controller/Admin/EducationPartController.php new file mode 100644 index 000000000..60f997a23 --- /dev/null +++ b/addons/default/visiosoft/profile-module/src/Http/Controller/Admin/EducationPartController.php @@ -0,0 +1,43 @@ +render(); + } + + /** + * Create a new entry. + * + * @param EducationPartFormBuilder $form + * @return \Symfony\Component\HttpFoundation\Response + */ + public function create(EducationPartFormBuilder $form) + { + return $form->render(); + } + + /** + * Edit an existing entry. + * + * @param EducationPartFormBuilder $form + * @param $id + * @return \Symfony\Component\HttpFoundation\Response + */ + public function edit(EducationPartFormBuilder $form, $id) + { + return $form->render($id); + } +} diff --git a/addons/default/visiosoft/profile-module/src/Http/Controller/MyProfileController.php b/addons/default/visiosoft/profile-module/src/Http/Controller/MyProfileController.php index 241a90b33..01920904c 100644 --- a/addons/default/visiosoft/profile-module/src/Http/Controller/MyProfileController.php +++ b/addons/default/visiosoft/profile-module/src/Http/Controller/MyProfileController.php @@ -24,6 +24,9 @@ use Visiosoft\PackagesModule\User\UserModel; use Visiosoft\ProfileModule\Adress\AdressModel; use Visiosoft\ProfileModule\Adress\Contract\AdressRepositoryInterface; use Visiosoft\ProfileModule\Adress\Form\AdressFormBuilder; +use Visiosoft\ProfileModule\Education\EducationModel; +use Visiosoft\ProfileModule\EducationPart\EducationPartModel; +use Visiosoft\ProfileModule\EducationPartOption\EducationPartOptionModel; use Visiosoft\ProfileModule\Profile\Form\ProfileFormBuilder; use Illuminate\Contracts\Events\Dispatcher; @@ -246,4 +249,19 @@ class MyProfileController extends PublicController return response()->json(['status' => 'success', 'data' => $profile]); } + public function getEducation(Request $request) + { + $user = $this->userRepository->find(auth()->id()); + $education = EducationModel::all(); + $educationPart = EducationPartModel::query()->where('education_id', $user->education)->get(); + return response()->json(['user' => $user, 'education' => $education, 'education-part' => $educationPart], 200); + } + + public function changeEducation(Request $request) + { + if ($request->info == 'education') { + $education = EducationPartModel::query()->where('education_id', $request->education)->get(); + } + return response()->json(['data' => $education], 200); + } } diff --git a/addons/default/visiosoft/profile-module/src/OptionHandler/EducationOptions.php b/addons/default/visiosoft/profile-module/src/OptionHandler/EducationOptions.php new file mode 100644 index 000000000..7c8554979 --- /dev/null +++ b/addons/default/visiosoft/profile-module/src/OptionHandler/EducationOptions.php @@ -0,0 +1,21 @@ +educationRepository = $repository; + } + + public function handle(SelectFieldType $fieldType) + { + $educations = $this->educationRepository->all(); + $options = $educations->pluck('name', 'id')->all(); + $fieldType->setOptions($options); + } +} \ No newline at end of file diff --git a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormBuilder.php b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormBuilder.php index d93408d68..4f98e00aa 100644 --- a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormBuilder.php +++ b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormBuilder.php @@ -13,8 +13,13 @@ class ProfileFormBuilder extends FormBuilder 'office_phone', 'land_phone', 'identification_number', - 'education', - 'state_of_education', + 'education' => [ + 'type' => 'anomaly.field_type.select', + 'config' => [ + 'handler' => 'Visiosoft\ProfileModule\OptionHandler\EducationOptions@handle', + ] + ], + 'education_part' => 'anomaly.field_type.select', 'profession', 'birthday', 'register_type', diff --git a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php index ed0775c78..15e0e832c 100644 --- a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php +++ b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php @@ -30,7 +30,7 @@ class ProfileFormHandler if (setting_value('visiosoft.module.profile::show_education_profession')) { $parameters = array_merge($parameters, [ 'education' => $builder->getPostValue('education'), - 'state_of_education' => $builder->getPostValue('state_of_education'), + 'education_part' => $builder->getPostValue('education_part'), 'profession' => $builder->getPostValue('profession'), ]); } diff --git a/addons/default/visiosoft/profile-module/src/ProfileModule.php b/addons/default/visiosoft/profile-module/src/ProfileModule.php index 69b94033e..20ec78a93 100644 --- a/addons/default/visiosoft/profile-module/src/ProfileModule.php +++ b/addons/default/visiosoft/profile-module/src/ProfileModule.php @@ -30,6 +30,16 @@ class ProfileModule extends Module 'new_adress', ], ], + 'education' => [ + 'buttons' => [ + 'new_education', + ] + ], + 'education_part' => [ + 'buttons' => [ + 'new_education_part', + ] + ], ]; } diff --git a/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php b/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php index bbedeac27..15d9efa83 100644 --- a/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php +++ b/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php @@ -2,6 +2,7 @@ use Anomaly\Streams\Platform\Addon\AddonCollection; use Anomaly\Streams\Platform\Addon\AddonServiceProvider; +use Anomaly\Streams\Platform\Model\Profile\ProfileEducationEntryModel; use Maatwebsite\Excel\ExcelServiceProvider; use Maatwebsite\Excel\Facades\Excel; use Visiosoft\ProfileModule\Adress\Contract\AdressRepositoryInterface; @@ -10,6 +11,9 @@ use Anomaly\Streams\Platform\Model\Profile\ProfileAdressEntryModel; use Visiosoft\ProfileModule\Adress\AdressModel; use Visiosoft\ProfileModule\Adress\Form\AdressFormBuilder; use Visiosoft\ProfileModule\Adress\FormCompany\AddressCompanyFormBuilder; +use Visiosoft\ProfileModule\Education\Contract\EducationRepositoryInterface; +use Visiosoft\ProfileModule\Education\EducationModel; +use Visiosoft\ProfileModule\Education\EducationRepository; use Visiosoft\ProfileModule\Http\Middleware\authCheck; use Visiosoft\ProfileModule\Profile\Password\ForgotPassFormBuilder; use Visiosoft\ProfileModule\Profile\Password\PasswordFormBuilder; @@ -101,6 +105,8 @@ class ProfileModuleServiceProvider extends AddonServiceProvider ], 'profile/notification' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@notification', 'ajax/update-user-info' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@updateAjaxProfile', + 'api/changeEducation' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@changeEducation', + 'api/getEducation' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@getEducation', // UserAuthenticator 'login-in' => 'Visiosoft\ProfileModule\Http\Controller\UserAuthenticator@attempt', @@ -201,6 +207,7 @@ class ProfileModuleServiceProvider extends AddonServiceProvider 'address' => AdressFormBuilder::class, 'addressCompany' => AddressCompanyFormBuilder::class, ProfileAdressEntryModel::class => AdressModel::class, + ProfileEducationEntryModel::class => EducationModel::class, ]; /** @@ -210,6 +217,7 @@ class ProfileModuleServiceProvider extends AddonServiceProvider */ protected $singletons = [ AdressRepositoryInterface::class => AdressRepository::class, + EducationRepositoryInterface::class => EducationRepository::class, 'register2' => Register2FormBuilder::class, 'sites' => SitesFormBuilder::class, 'forgot_pass' => ForgotPassFormBuilder::class, diff --git a/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php b/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php index cf4271066..497108c1e 100644 --- a/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php +++ b/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php @@ -124,21 +124,26 @@ class UsersFieldsSeeder extends Seeder "picker" => true, ] ], - [ - 'name' => trans('visiosoft.module.profile::field.education.name'), - 'slug' => 'education', - 'type' => 'anomaly.field_type.text', - ], - [ - 'name' => trans('visiosoft.module.profile::field.state_of_education.name'), - 'slug' => 'state_of_education', - 'type' => 'anomaly.field_type.text', - ], - [ - 'name' => trans('visiosoft.module.profile::field.profession.name'), - 'slug' => 'profession', - 'type' => 'anomaly.field_type.text', - ], + [ + 'name' => trans('visiosoft.module.profile::field.education.name'), + 'slug' => 'education', + 'type' => 'anomaly.field_type.text', + ], + [ + 'name' => trans('visiosoft.module.profile::field.state_of_education.name'), + 'slug' => 'state_of_education', + 'type' => 'anomaly.field_type.text', + ], + [ + 'name' => trans('visiosoft.module.profile::field.profession.name'), + 'slug' => 'profession', + 'type' => 'anomaly.field_type.select', + ], + [ + 'name' => trans('visiosoft.module.profile::field.education_part.name'), + 'slug' => 'education_part', + 'type' => 'anomaly.field_type.select', + ], [ 'name' => trans('visiosoft.module.profile::field.facebook_address.name'), 'slug' => 'facebook_address', diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/de/button.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/de/button.php index f1589790b..f936575fa 100644 --- a/addons/default/visiosoft/singlefile-field_type/resources/lang/de/button.php +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/de/button.php @@ -1,8 +1,9 @@ 'Datei auswählen', - 'upload' => 'Hochladen', - 'remove' => 'Entfernen', + 'select_file' => 'Datei auswählenException: no protocol: Head - Url: http://Exception: unknown protocol: exception Index 015164663380. +Tracklist aimcart', + 'upload' => 'Hochladen id Lockscreen ans lockaion', + 'remove' => 'Entferne Blockierungen', 'change' => 'Ändern', ]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/addon.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/addon.php new file mode 100644 index 000000000..3428512a5 --- /dev/null +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Pelê Tekane', + 'name' => 'Pelê Zeviya Pelê', + 'description' => 'Celebek zeviyê barkirina pelan.', +]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/button.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/button.php new file mode 100644 index 000000000..51f17c0a2 --- /dev/null +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/button.php @@ -0,0 +1,8 @@ + 'Pelê hilbijêrin', + 'upload' => 'Upload', + 'remove' => 'Dûrxistin', + 'change' => 'Gûherrandinî', +]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/config.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/config.php new file mode 100644 index 000000000..bad762975 --- /dev/null +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/config.php @@ -0,0 +1,23 @@ + [ + 'name' => 'Peldankan', + 'instructions' => 'Diyar bikin ka kîjan peldank ji bo vê qadê hene. Vala bihêle da ku hemî peldankan nîşan bide.', + 'warning' => 'Destûrên heyî yên peldankê pêşî li peldankên hilbijartî digirin.', + ], + 'max' => [ + 'name' => 'Mezinahiya Uploadê', + 'instructions' => 'Mezinahiya barkirina herî zêde di megabytes.', + 'warning' => 'Heke peldanka ne diyar be max û paşê dê servera max li şûna wê were bikar anîn.', + ], + 'mode' => [ + 'name' => 'Modeya Input', + 'instructions' => 'Divê bikarhêner çawa têkela pelê peyda bikin?', + 'option' => [ + 'default' => 'Pelan bar bikin û / an hilbijêrin.', + 'select' => 'Tenê pelan hilbijêrin.', + 'upload' => 'Tenê pelan hilînin.', + ], + ], +]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/message.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/message.php new file mode 100644 index 000000000..353d022a6 --- /dev/null +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/message.php @@ -0,0 +1,12 @@ + 'Hûn dixwazin kîjan pelê bikar bînin?', + 'choose_folder' => 'Hûn dixwazin li kîjan peldankê bar bikin?', + 'upload' => 'Ji bo barkirinê pelan li vir bikirtînin an bavêjin.', + 'no_file_selected' => 'Tu pel nehat hilbijartin.', + 'no_uploads' => 'Tu pel nehatin barkirin.', + 'overwrite' => 'berê hate barkirin. Ma hûn dixwazin wê binivîsin?', + 'uploading' => 'Uploading', + 'loading' => 'Barkirin', +]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/validation.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/validation.php new file mode 100644 index 000000000..292b12160 --- /dev/null +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/validation.php @@ -0,0 +1,5 @@ + 'Dîska barkirî ya mîhengkirî ji bo: taybetmendî tune.', +]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/tr/message.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/tr/message.php index 61008a091..072410ffc 100644 --- a/addons/default/visiosoft/singlefile-field_type/resources/lang/tr/message.php +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/tr/message.php @@ -7,6 +7,6 @@ return [ 'no_file_selected' => 'Hiç seçili dosya yok.', 'no_uploads' => 'Hiç dosya yüklenmedi.', 'overwrite' => 'daha önce yüklenmiş. Üzerine kaydetmek ister misiniz?', - 'uploading' => 'Yüklüyor', - 'loading' => 'Yüklüyor', + 'uploading' => 'Karşıya Yükleniyor', + 'loading' => 'Yükleniyor', ]; diff --git a/app/Lang/Loader.php b/app/Lang/Loader.php index 72f7728a0..e0e333626 100644 --- a/app/Lang/Loader.php +++ b/app/Lang/Loader.php @@ -183,8 +183,9 @@ class Loader extends FileLoader if (config()->has('override_text')) { foreach (config()->get('override_text') as $override) { $override = explode(':', $override); - - $lines = $this->findArrayValue($override[0], $override[1], $lines); + if (count($override) > 1) { + $lines = $this->findArrayValue($override[0], $override[1], $lines); + } } }