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 != adv.price and adv.standard_price != '0'
- ? adv.standard_price.currency()
+ ? currency_format(adv.standard_price,adv.currency)
: '' }}
{{ user.name }}
-{{ auth_user().last_login_at|date("d.m.Y - H:i") }}
++ {{ auth_user().last_login_at|date(config_get('streams::datetime.date_format') ~ ' - ' ~ config_get('streams::datetime.time_format')) }} +
{{ 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); + } } }