diff --git a/addons/default/visiosoft/advs-module/migrations/2020_10_15_130044_visiosoft.module.advs__create_productoptions_stream.php b/addons/default/visiosoft/advs-module/migrations/2020_10_15_130044_visiosoft.module.advs__create_productoptions_stream.php new file mode 100644 index 000000000..2961bbc3c --- /dev/null +++ b/addons/default/visiosoft/advs-module/migrations/2020_10_15_130044_visiosoft.module.advs__create_productoptions_stream.php @@ -0,0 +1,52 @@ + [ + 'type' => 'anomaly.field_type.select', + 'config' => [ + 'handler' => 'Visiosoft\AdvsModule\OptionHandler\CategoriesOptions@handle' + ] + ], + ]; + /** + * The stream definition. + * + * @var array + */ + protected $stream = [ + 'slug' => 'productoptions', + 'title_column' => 'name', + 'translatable' => true, + 'versionable' => false, + 'trashable' => true, + 'searchable' => false, + 'sortable' => false, + ]; + + /** + * The stream assignments. + * + * @var array + */ + protected $assignments = [ + 'category', + 'name' => [ + 'translatable' => true, + 'required' => true, + ], + ]; +} diff --git a/addons/default/visiosoft/advs-module/migrations/2020_10_15_131614_visiosoft.module.advs__create_productoptions_value_stream.php b/addons/default/visiosoft/advs-module/migrations/2020_10_15_131614_visiosoft.module.advs__create_productoptions_value_stream.php new file mode 100644 index 000000000..47fff9601 --- /dev/null +++ b/addons/default/visiosoft/advs-module/migrations/2020_10_15_131614_visiosoft.module.advs__create_productoptions_value_stream.php @@ -0,0 +1,56 @@ + [ + 'type' => 'anomaly.field_type.relationship', + 'config' => [ + 'related' => ProductoptionModel::class, + ], + ] + ]; + + /** + * The stream definition. + * + * @var array + */ + protected $stream = [ + 'slug' => 'productoptions_value', + 'title_column' => 'name', + 'translatable' => true, + 'versionable' => false, + 'trashable' => true, + 'searchable' => false, + 'sortable' => false, + ]; + + /** + * The stream assignments. + * + * @var array + */ + protected $assignments = [ + 'name' => [ + 'translatable' => true, + 'required' => true, + ], + 'product_option' => [ + 'required' => true, + ], + ]; +} diff --git a/addons/default/visiosoft/advs-module/migrations/2020_10_16_082339_visiosoft.module.advs__added_options_field.php b/addons/default/visiosoft/advs-module/migrations/2020_10_16_082339_visiosoft.module.advs__added_options_field.php new file mode 100644 index 000000000..d00e201c7 --- /dev/null +++ b/addons/default/visiosoft/advs-module/migrations/2020_10_16_082339_visiosoft.module.advs__added_options_field.php @@ -0,0 +1,48 @@ + 'advs', + ]; + + /** + * The addon fields. + * + * @var array + */ + protected $fields = [ + 'product_options_value' => [ + 'type' => 'anomaly.field_type.multiple', + 'config' => [ + 'mode' => 'lookup', + 'related' => \Visiosoft\AdvsModule\ProductoptionsValue\ProductoptionsValueModel::class, + ], + ] + ]; + + /** + * The field's assignment. + * + * @var array + */ + protected $assignments = [ + 'product_options_value', + ]; +} diff --git a/addons/default/visiosoft/advs-module/migrations/2020_10_16_124151_visiosoft.module.advs__create_option_configuration_stream.php b/addons/default/visiosoft/advs-module/migrations/2020_10_16_124151_visiosoft.module.advs__create_option_configuration_stream.php new file mode 100644 index 000000000..456ec6a8c --- /dev/null +++ b/addons/default/visiosoft/advs-module/migrations/2020_10_16_124151_visiosoft.module.advs__create_option_configuration_stream.php @@ -0,0 +1,59 @@ + 'visiosoft.field_type.json', + ]; + + /** + * The stream definition. + * + * @var array + */ + protected $stream = [ + 'slug' => 'option_configuration', + 'title_column' => 'option_json', + 'translatable' => false, + 'versionable' => false, + 'trashable' => false, + 'searchable' => false, + 'sortable' => false, + ]; + + /** + * The stream assignments. + * + * @var array + */ + protected $assignments = [ + 'parent_adv' => [ + 'required' => true, + ], + 'price' => [ + 'required' => true, + ], + 'currency' => [ + 'required' => true, + ], + 'stock' => [ + 'required' => true, + ], + 'option_json' => [ + 'required' => true, + 'unique' => true, + ], + ]; + +} diff --git a/addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php b/addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php new file mode 100644 index 000000000..f559bed8e --- /dev/null +++ b/addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php @@ -0,0 +1,27 @@ + 'advs', + ]; + + protected $fields = [ + 'old_price' => [ + 'type' => 'visiosoft.field_type.decimal', + 'config' => [ + 'decimal' => 2, + 'separator' => '.', + 'point' => ',' + ], + ], + ]; + + protected $assignments = [ + 'old_price' + ]; +} diff --git a/addons/default/visiosoft/advs-module/resources/config/permissions.php b/addons/default/visiosoft/advs-module/resources/config/permissions.php index eae0b67cd..cead467e5 100644 --- a/addons/default/visiosoft/advs-module/resources/config/permissions.php +++ b/addons/default/visiosoft/advs-module/resources/config/permissions.php @@ -21,4 +21,29 @@ return [ 'write', 'delete', ], + 'productoptions' => [ + 'read', + 'write', + 'delete', + ], + 'productoptions_value' => [ + 'read', + 'write', + 'delete', + ], + 'options_configuration' => [ + 'read', + 'write', + 'delete', + ], + 'option_configuration' => [ + 'read', + 'write', + 'delete', + ], + 'option_configuration' => [ + 'read', + 'write', + 'delete', + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/css/list.css b/addons/default/visiosoft/advs-module/resources/css/list.css index cc6bb4d82..cc9d284f0 100644 --- a/addons/default/visiosoft/advs-module/resources/css/list.css +++ b/addons/default/visiosoft/advs-module/resources/css/list.css @@ -200,6 +200,10 @@ a.sort-by-open-dropdown:hover { color: #8598AA; } +.list-view-type button { + background-color: unset; +} + .list-view-type button:focus { outline: none; } diff --git a/addons/default/visiosoft/advs-module/resources/js/settings.js b/addons/default/visiosoft/advs-module/resources/js/settings.js index 119d656dd..14817b7b4 100644 --- a/addons/default/visiosoft/advs-module/resources/js/settings.js +++ b/addons/default/visiosoft/advs-module/resources/js/settings.js @@ -1,13 +1,21 @@ // Hide watermark_image by default -$(".watermark_image").hide(); +const watermarkType = $("select[name='watermark_type']") +const watermarkText = $(".watermark_text") +const watermarkImage = $(".watermark_image") -$("select[name='watermark_type']").change((event) => { - let watermarkType = event.target.value; - if (watermarkType === 'text') { - $(".watermark_image").hide(); - $(".watermark_text").show() +if (watermarkType.val() === 'text') { + watermarkImage.hide(); +} else { + watermarkText.hide(); +} + +$(watermarkType).change((event) => { + const watermarkTypeValue = event.target.value; + if (watermarkTypeValue === 'text') { + watermarkImage.hide(); + watermarkText.show() } else if (event.target.value === 'image') { - $(".watermark_image").show(); - $(".watermark_text").hide() + watermarkImage.show(); + watermarkText.hide() } }); \ No newline at end of file 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 619791e2c..48e15c7a6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'تحديث الفئة' ], 'new_option' => 'خيار جديد', + 'export' => 'تصدير' ]; 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 e9700e6ad..76f2ec990 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'و ما فوق', 'and_below' => 'و تحت', 'clear_all' => 'امسح الكل', + 'balances' => 'الرصيد', + 'packages' => 'الحزمة', + 'dopings' => 'المنشطات', + 'advs' => 'Advs', + 'site' => 'الموقع', + 'subscription' => 'اشتراك', + 'created' => 'خلقت', + 'old_price' => [ + 'name' => 'سعر قديم' + ], ]; 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 de00453e2..ee6dd29b9 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/section.php @@ -39,9 +39,10 @@ return [ ], 'general' => 'جنرال لواء', 'ads' => 'إعلانات', - 'user' => 'المستعمل', + 'user' => 'العضو', 'filter' => 'منقي', 'options' => [ 'title' => 'خيارات', ], + 'ads_image' => 'صورة الإعلانات', ]; 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 1155381e9..cee207ae4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'الإعلان الافتراضي', ], - 'add_canvas' => [ - 'name' => 'أضف قماش', - ], - 'thumbnail_width' => [ - 'name' => 'عرض الصورة المصغرة', - ], - 'thumbnail_height' => [ - 'name' => 'ارتفاع الصورة المصغرة', - ], - 'picture_width' => [ - 'name' => 'عرض الصورة', - ], - 'picture_height' => [ - 'name' => 'ارتفاع الصورة', - ], 'twitter' => [ 'name' => 'تغريد', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'جوجل', ], - 'watermark_type' => [ - 'name' => 'نوع العلامة المائية', - ], - 'watermark_text' => [ - 'name' => 'نص العلامة المائية', - ], - 'watermark_image' => [ - 'name' => 'صورة العلامة المائية', - ], - 'watermark_position' => [ - 'name' => 'موقف العلامة المائية', - ], 'listing_page_image' => [ 'name' => 'سرد صورة الصفحة', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'حد الإعلانات الشعبية', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'تغيير حجم الصورة الخلفية', + ], + 'full_image_width' => [ + 'name' => 'Full Image Width', + ], + 'full_image_height' => [ + 'name' => 'ارتفاع الصورة الكاملة', + ], + 'medium_image_width' => [ + 'name' => 'Medium Image Width', + ], + 'medium_image_height' => [ + 'name' => 'متوسط ارتفاع الصورة', + ], + 'thumbnail_width' => [ + 'name' => 'عرض الصورة المصغرة', + ], + 'thumbnail_height' => [ + 'name' => 'ارتفاع الصورة المصغرة', + ], + 'add_canvas' => [ + 'name' => 'أضف قماش', + ], + 'image_canvas_width' => [ + 'name' => 'عرض قماش الصورة', + ], + 'image_canvas_height' => [ + 'name' => 'ارتفاع قماش الصورة', + ], + 'watermark_type' => [ + 'name' => 'نوع العلامة المائية', + ], + 'watermark_text' => [ + 'name' => 'نص العلامة المائية', + ], + 'watermark_image' => [ + 'name' => 'صورة العلامة المائية', + ], + 'watermark_position' => [ + 'name' => 'موقف العلامة المائية', + ], ]; 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 2b2b78363..d3d3d0609 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Kateqoriya yeniləyin' ], 'new_option' => 'Yeni Seçim', + 'export' => 'İxrac' ]; 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 15e855630..401ee36bc 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'və yuxarıda', 'and_below' => 'və aşağıda', 'clear_all' => 'Hamısını sil, hamısını təmizlə', + 'balances' => 'Qalıqlar', + 'packages' => 'Paketlər', + 'dopings' => 'Dopinqlər', + 'advs' => 'Advs', + 'site' => 'Sayt', + 'subscription' => 'Abunə', + 'created' => 'Yarandı', + 'old_price' => [ + 'name' => 'Köhnə Qiymət' + ], ]; 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 7520a0921..1b9870d8d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Seçimlər', ], + 'ads_image' => 'Reklamlar şəkli', ]; 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 3d1b95d1e..6321f842a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Defolt Elan GET', ], - 'add_canvas' => [ - 'name' => 'Kətan əlavə edin', - ], - 'thumbnail_width' => [ - 'name' => 'Eskiz eni', - ], - 'thumbnail_height' => [ - 'name' => 'Eskiz hündürlüyü', - ], - 'picture_width' => [ - 'name' => 'Şəkil genişliyi', - ], - 'picture_height' => [ - 'name' => 'Şəkil Boyu', - ], 'twitter' => [ 'name' => 'Twitter', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Su nişanının növü', - ], - 'watermark_text' => [ - 'name' => 'Su nişanı Mətn', - ], - 'watermark_image' => [ - 'name' => 'Su nişanı şəkli', - ], - 'watermark_position' => [ - 'name' => 'Su nişanının mövqeyi', - ], 'listing_page_image' => [ 'name' => 'Səhifənin görüntüləməsi', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Populyar elanlar limiti', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Image Resize Backend', + ], + 'full_image_width' => [ + 'name' => 'Tam şəkil genişliyi', + ], + 'full_image_height' => [ + 'name' => 'Tam şəkil boyu', + ], + 'medium_image_width' => [ + 'name' => 'Orta şəkil genişliyi', + ], + 'medium_image_height' => [ + 'name' => 'Orta şəkil boyu', + ], + 'thumbnail_width' => [ + 'name' => 'Eskiz eni', + ], + 'thumbnail_height' => [ + 'name' => 'Eskiz hündürlüyü', + ], + 'add_canvas' => [ + 'name' => 'Kətan əlavə edin', + ], + 'image_canvas_width' => [ + 'name' => 'Şəkil kətan eni', + ], + 'image_canvas_height' => [ + 'name' => 'Şəkil kətan hündürlüyü', + ], + 'watermark_type' => [ + 'name' => 'Su nişanının növü', + ], + 'watermark_text' => [ + 'name' => 'Su nişanı Mətn', + ], + 'watermark_image' => [ + 'name' => 'Su nişanı şəkli', + ], + 'watermark_position' => [ + 'name' => 'Su nişanının mövqeyi', + ], ]; 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 0eb42cdbf..507b20b1e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'আপডেট বিভাগ' ], 'new_option' => 'নতুন বিকল্প', + 'export' => 'রফতানি' ]; 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 daac50ac7..aa268613f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'এবং উপরে', 'and_below' => 'এবং নিচে', 'clear_all' => 'সব পরিষ্কার করে দাও', + 'balances' => 'ব্যালেন্স', + 'packages' => 'প্যাকেজগুলি', + 'dopings' => 'ডোপিংস', + 'advs' => 'অ্যাড', + 'site' => 'সাইট', + 'subscription' => 'সাবস্ক্রিপশন', + 'created' => 'তৈরি হয়েছে', + 'old_price' => [ + 'name' => 'পুরাতন মূল্য' + ], ]; 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 140708046..610813794 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'বিকল্পগুলি', ], + 'ads_image' => 'বিজ্ঞাপন চিত্র', ]; 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 8c2d1e888..03ebdfa37 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'ডিফল্ট বিজ্ঞাপন জিইটি', ], - 'add_canvas' => [ - 'name' => 'ক্যানভাস যুক্ত করুন', - ], - 'thumbnail_width' => [ - 'name' => 'থাম্বনেইল প্রস্থ', - ], - 'thumbnail_height' => [ - 'name' => 'থাম্বনেইল উচ্চতা', - ], - 'picture_width' => [ - 'name' => 'চিত্র প্রস্থ', - ], - 'picture_height' => [ - 'name' => 'চিত্র উচ্চতা', - ], 'twitter' => [ 'name' => 'টুইটার', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'গুগল', ], - 'watermark_type' => [ - 'name' => 'ওয়াটারমার্ক টাইপ', - ], - 'watermark_text' => [ - 'name' => 'জলছবি পাঠ্য', - ], - 'watermark_image' => [ - 'name' => 'জলছবি ইমেজ', - ], - 'watermark_position' => [ - 'name' => 'জলছবি অবস্থান', - ], 'listing_page_image' => [ 'name' => 'পৃষ্ঠার চিত্র তালিকাভুক্ত', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'জনপ্রিয় বিজ্ঞাপন সীমাবদ্ধতা', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'চিত্র পুনরায় আকার ব্যাকএন্ড', + ], + 'full_image_width' => [ + 'name' => 'পূর্ণ চিত্র প্রস্থ', + ], + 'full_image_height' => [ + 'name' => 'পূর্ণ চিত্র উচ্চতা', + ], + 'medium_image_width' => [ + 'name' => 'মাঝারি চিত্র প্রস্থ', + ], + 'medium_image_height' => [ + 'name' => 'মাঝারি চিত্র উচ্চতা', + ], + 'thumbnail_width' => [ + 'name' => 'থাম্বনেইল প্রস্থ', + ], + 'thumbnail_height' => [ + 'name' => 'থাম্বনেইল উচ্চতা', + ], + 'add_canvas' => [ + 'name' => 'ক্যানভাস যুক্ত করুন', + ], + 'image_canvas_width' => [ + 'name' => 'চিত্র ক্যানভাস প্রস্থ', + ], + 'image_canvas_height' => [ + 'name' => 'চিত্র ক্যানভাস উচ্চতা', + ], + 'watermark_type' => [ + 'name' => 'ওয়াটারমার্ক টাইপ', + ], + 'watermark_text' => [ + 'name' => 'জলছবি পাঠ্য', + ], + 'watermark_image' => [ + 'name' => 'জলছবি ইমেজ', + ], + 'watermark_position' => [ + 'name' => 'জলছবি অবস্থান', + ], ]; 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 f396f1363..bdff5f8bf 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Kategorie aktualisieren' ], 'new_option' => 'Neue Option', + 'export' => 'Export' ]; 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 ed94fe3fe..547cef5eb 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'und darüber', 'and_below' => 'und darunter', 'clear_all' => 'Alles löschen', + 'balances' => 'Guthaben', + 'packages' => 'Pakete', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Seite? ˅', + 'subscription' => 'Abonnement', + 'created' => 'Erstellt', + 'old_price' => [ + 'name' => 'Alter Preis' + ], ]; 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 088484cc8..9ace3ae91 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Optionen', ], + 'ads_image' => 'Anzeigenbild', ]; 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 f5da68417..9d26feaab 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Standardanzeige GET', ], - 'add_canvas' => [ - 'name' => 'Leinwand hinzufügen', - ], - 'thumbnail_width' => [ - 'name' => 'Miniaturbildbreite', - ], - 'thumbnail_height' => [ - 'name' => 'Miniaturbildhöhe', - ], - 'picture_width' => [ - 'name' => 'Bildbreite', - ], - 'picture_height' => [ - 'name' => 'Bildhöhe', - ], 'twitter' => [ 'name' => 'Twitter', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Wasserzeichentyp', - ], - 'watermark_text' => [ - 'name' => 'Wasserzeichentext', - ], - 'watermark_image' => [ - 'name' => 'Wasserzeichen Bild', - ], - 'watermark_position' => [ - 'name' => 'Wasserzeichen Position', - ], 'listing_page_image' => [ 'name' => 'Listing Page Image', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Beliebtes Anzeigenlimit', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Bildgröße Backend ändern', + ], + 'full_image_width' => [ + 'name' => 'Volle Bildbreite', + ], + 'full_image_height' => [ + 'name' => 'Vollbildhöhe', + ], + 'medium_image_width' => [ + 'name' => 'Mittlere Bildbreite', + ], + 'medium_image_height' => [ + 'name' => 'Mittlere Bildhöhe', + ], + 'thumbnail_width' => [ + 'name' => 'Miniaturbildbreite', + ], + 'thumbnail_height' => [ + 'name' => 'Miniaturbildhöhe', + ], + 'add_canvas' => [ + 'name' => 'Leinwand hinzufügen', + ], + 'image_canvas_width' => [ + 'name' => 'Bild Leinwandbreite', + ], + 'image_canvas_height' => [ + 'name' => 'Bild Leinwand Höhe', + ], + 'watermark_type' => [ + 'name' => 'Wasserzeichentyp', + ], + 'watermark_text' => [ + 'name' => 'Wasserzeichentext', + ], + 'watermark_image' => [ + 'name' => 'Wasserzeichen Bild', + ], + 'watermark_position' => [ + 'name' => 'Wasserzeichen Position', + ], ]; 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 9f8e6dda7..2d57a0c0a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Ενημέρωση κατηγορίας' ], 'new_option' => 'Νέα επιλογή', + 'export' => 'Εξαγωγή' ]; 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 1a6ee9765..8765550a7 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'και παραπανω', 'and_below' => 'και παρακάτω', 'clear_all' => 'Τα καθαρίζω όλα', + 'balances' => 'Υπόλοιπα', + 'packages' => 'Πακέτα', + 'dopings' => 'Ντόπινγκ', + 'advs' => 'Advs', + 'site' => 'Ιστοσελίδα', + 'subscription' => 'Συνδρομή', + 'created' => 'Δημιουργήθηκε', + 'old_price' => [ + 'name' => 'Παλιά τιμή' + ], ]; 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 adbd65a96..a1121a250 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Επιλογές', ], + 'ads_image' => 'Εικόνα διαφημίσεων', ]; 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 e257cf308..5d16cf2ca 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Προεπιλεγμένη διαφήμιση GET', ], - 'add_canvas' => [ - 'name' => 'Προσθήκη καμβά', - ], - 'thumbnail_width' => [ - 'name' => 'Πλάτος μικρογραφιών', - ], - 'thumbnail_height' => [ - 'name' => 'Ύψος μικρογραφιών', - ], - 'picture_width' => [ - 'name' => 'Πλάτος εικόνας', - ], - 'picture_height' => [ - 'name' => 'Ύψος εικόνας', - ], 'twitter' => [ 'name' => 'Κελάδημα', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Τύπος υδατογραφήματος', - ], - 'watermark_text' => [ - 'name' => 'Κείμενο υδατογράφημα', - ], - 'watermark_image' => [ - 'name' => 'Εικόνα υδατογράφημα', - ], - 'watermark_position' => [ - 'name' => 'Θέση υδατοσήματος', - ], 'listing_page_image' => [ 'name' => 'Λίστα εικόνων σελίδας', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Όριο δημοφιλών διαφημίσεων', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Μέγεθος εικόνας Backend', + ], + 'full_image_width' => [ + 'name' => 'Πλήρες πλάτος εικόνας', + ], + 'full_image_height' => [ + 'name' => 'Ύψος πλήρους εικόνας', + ], + 'medium_image_width' => [ + 'name' => 'Μεσαίο πλάτος εικόνας', + ], + 'medium_image_height' => [ + 'name' => 'Μεσαίο ύψος εικόνας', + ], + 'thumbnail_width' => [ + 'name' => 'Πλάτος μικρογραφιών', + ], + 'thumbnail_height' => [ + 'name' => 'Ύψος μικρογραφιών', + ], + 'add_canvas' => [ + 'name' => 'Προσθήκη καμβά', + ], + 'image_canvas_width' => [ + 'name' => 'Πλάτος καμβά εικόνας', + ], + 'image_canvas_height' => [ + 'name' => 'Ύψος καμβά εικόνας', + ], + 'watermark_type' => [ + 'name' => 'Τύπος υδατογραφήματος', + ], + 'watermark_text' => [ + 'name' => 'Κείμενο υδατογράφημα', + ], + 'watermark_image' => [ + 'name' => 'Εικόνα υδατογράφημα', + ], + 'watermark_position' => [ + 'name' => 'Θέση υδατοσήματος', + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/en/button.php b/addons/default/visiosoft/advs-module/resources/lang/en/button.php index c84a77408..1b49391ae 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/en/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/en/button.php @@ -32,4 +32,11 @@ return [ 'name' => 'Update Category' ], 'new_option' => 'New Option', + 'export' => 'Export', + 'new_productoption' => 'New Productoption', + 'new_productoptions_value' => 'New Productoptions value', + 'new_options_configuration' => 'New Options configuration', + 'new_option_configuration' => 'New Option configuration', + 'new_option_configuration' => 'New Option configuration', + 'create_configurations' => 'Create Configurations', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/en/field.php b/addons/default/visiosoft/advs-module/resources/lang/en/field.php index fc6f0d4dc..6fd4f4005 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/en/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/en/field.php @@ -137,7 +137,9 @@ return [ 'oldest' => 'Oldest', 'address_a_z' => 'Address (A to Z)', 'address_z_a' => 'Address (Z to A)', - 'categories' => 'Categories', + 'categories' => [ + 'name' => 'Categories' + ], 'all_categories' => 'All Categories', 'location' => 'Location', 'send_message' => 'Send Message', @@ -306,4 +308,20 @@ return [ 'and_above' => 'and above', 'and_below' => 'and below', 'clear_all' => 'Clear All', + 'balances' => 'Balances', + 'packages' => 'Packages', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Site', + 'subscription' => 'Subscription', + 'created' => 'Created', + 'product_option' => [ + 'name' => 'Product Option' + ], + 'option_json' => [ + 'name' => 'Option' + ], + 'old_price' => [ + 'name' => 'Old Price' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/en/permission.php b/addons/default/visiosoft/advs-module/resources/lang/en/permission.php index a75575d96..0a094c9f1 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/en/permission.php +++ b/addons/default/visiosoft/advs-module/resources/lang/en/permission.php @@ -57,4 +57,44 @@ return [ 'delete' => 'Can delete options?', ], ], + 'productoptions' => [ + 'name' => 'Productoptions', + 'option' => [ + 'read' => 'Can read productoptions?', + 'write' => 'Can create/edit productoptions?', + 'delete' => 'Can delete productoptions?', + ], + ], + 'productoptions_value' => [ + 'name' => 'Productoptions value', + 'option' => [ + 'read' => 'Can read productoptions value?', + 'write' => 'Can create/edit productoptions value?', + 'delete' => 'Can delete productoptions value?', + ], + ], + 'options_configuration' => [ + 'name' => 'Options configuration', + 'option' => [ + 'read' => 'Can read options configuration?', + 'write' => 'Can create/edit options configuration?', + 'delete' => 'Can delete options configuration?', + ], + ], + 'option_configuration' => [ + 'name' => 'Option configuration', + 'option' => [ + 'read' => 'Can read option configuration?', + 'write' => 'Can create/edit option configuration?', + 'delete' => 'Can delete option configuration?', + ], + ], + 'option_configuration' => [ + 'name' => 'Option configuration', + 'option' => [ + 'read' => 'Can read option configuration?', + 'write' => 'Can create/edit option configuration?', + 'delete' => 'Can delete option configuration?', + ], + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/en/section.php b/addons/default/visiosoft/advs-module/resources/lang/en/section.php index b3ebe1995..cdd4948d1 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/en/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/en/section.php @@ -45,4 +45,13 @@ return [ 'title' => 'Options', ], 'ads_image' => 'Ads Image', + 'product_options' => [ + 'title' => 'Options', + ], + 'productoptions_value' => [ + 'title' => 'Options Value', + ], + 'option_configuration' => [ + 'title' => 'Configuration', + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/en/stream.php b/addons/default/visiosoft/advs-module/resources/lang/en/stream.php index 29e720836..761fa569d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/en/stream.php +++ b/addons/default/visiosoft/advs-module/resources/lang/en/stream.php @@ -22,4 +22,13 @@ return [ 'options' => [ 'name' => 'Options', ], + 'product_options' => [ + 'name' => 'Product Options', + ], + 'productoptions_value' => [ + 'name' => 'Options value', + ], + 'option_configuration' => [ + 'name' => 'Configuration', + ], ]; 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 02ae9a86e..f5ccc5cf2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Actualizar categoría' ], 'new_option' => 'Nueva opción', + 'export' => 'Exportar' ]; 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 e6794e3d7..bf50bef0f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'y por encima', 'and_below' => 'y por debajo', 'clear_all' => 'Limpiar todo', + 'balances' => 'Saldos', + 'packages' => 'Paquetes', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Sitio', + 'subscription' => 'Suscripción', + 'created' => 'Creado', + 'old_price' => [ + 'name' => 'Precio anterior' + ], ]; 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 ed31f945e..575a42471 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Opciones', ], + 'ads_image' => 'Imagen de anuncios', ]; 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 41adca202..3f22d1204 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Anuncio predeterminado GET', ], - 'add_canvas' => [ - 'name' => 'Agregar lienzo', - ], - 'thumbnail_width' => [ - 'name' => 'Ancho de miniaturas', - ], - 'thumbnail_height' => [ - 'name' => 'Altura de miniatura', - ], - 'picture_width' => [ - 'name' => 'Ancho de imagen', - ], - 'picture_height' => [ - 'name' => 'Altura de imagen', - ], 'twitter' => [ 'name' => 'Gorjeo', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Tipo de marca de agua', - ], - 'watermark_text' => [ - 'name' => 'Texto de marca de agua', - ], - 'watermark_image' => [ - 'name' => 'Imagen de marca de agua', - ], - 'watermark_position' => [ - 'name' => 'Posición de marca de agua', - ], 'listing_page_image' => [ 'name' => 'Imagen de la página de listado', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Límite de anuncios populares', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Backend de cambio de tamaño de imagen', + ], + 'full_image_width' => [ + 'name' => 'Ancho de imagen completo', + ], + 'full_image_height' => [ + 'name' => 'Altura de imagen completa', + ], + 'medium_image_width' => [ + 'name' => 'Ancho de imagen medio', + ], + 'medium_image_height' => [ + 'name' => 'Altura de imagen media', + ], + 'thumbnail_width' => [ + 'name' => 'Ancho de miniaturas', + ], + 'thumbnail_height' => [ + 'name' => 'Altura de miniatura', + ], + 'add_canvas' => [ + 'name' => 'Agregar lienzo', + ], + 'image_canvas_width' => [ + 'name' => 'Ancho del lienzo de la imagen', + ], + 'image_canvas_height' => [ + 'name' => 'Altura del lienzo de la imagen', + ], + 'watermark_type' => [ + 'name' => 'Tipo de marca de agua', + ], + 'watermark_text' => [ + 'name' => 'Texto de marca de agua', + ], + 'watermark_image' => [ + 'name' => 'Imagen de marca de agua', + ], + 'watermark_position' => [ + 'name' => 'Posición de marca de agua', + ], ]; 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 47ed58fa8..f047c1f03 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'رده به روزرسانی' ], 'new_option' => 'گزینه جدید', + 'export' => 'صادرات' ]; 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 24f7a4e22..95588f96a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'و بالاتر', 'and_below' => 'و در زیر', 'clear_all' => 'همه را پاک کن', + 'balances' => 'موازنه', + 'packages' => 'بسته ها', + 'dopings' => 'دوپینگ', + 'advs' => 'تبلیغات', + 'site' => 'سایت', + 'subscription' => 'اشتراک، ابونمان', + 'created' => 'ایجاد شده', + 'old_price' => [ + 'name' => 'قیمت قدیمی' + ], ]; 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 d119b1281..5ee0f1832 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'گزینه ها', ], + 'ads_image' => 'تصویر تبلیغات', ]; 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 7ed03eaec..7a33afbfc 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/setting.php @@ -80,21 +80,6 @@ return [ 'default_GET' => [ 'name' => 'تبلیغات پیش فرض GET', ], - 'add_canvas' => [ - 'name' => 'بوم را اضافه کنید', - ], - 'thumbnail_width' => [ - 'name' => 'عرض تصویر', - ], - 'thumbnail_height' => [ - 'name' => 'ارتفاع تصویر بند انگشتی', - ], - 'picture_width' => [ - 'name' => 'عرض تصویر', - ], - 'picture_height' => [ - 'name' => 'ارتفاع تصویر', - ], 'twitter' => [ 'name' => 'توییتر', ], @@ -107,18 +92,6 @@ return [ 'google' => [ 'name' => 'گوگل', ], - 'watermark_type' => [ - 'name' => 'نوع علامت', - ], - 'watermark_text' => [ - 'name' => 'متن علامت', - ], - 'watermark_image' => [ - 'name' => 'تصویر علامت', - ], - 'watermark_position' => [ - 'name' => 'موقعیت علامت سفید', - ], 'listing_page_image' => [ 'name' => 'لیست صفحه تصویر', ], @@ -159,4 +132,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'محدودیت تبلیغات محبوب', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'تغییر اندازه تصویر Backend', + ], + 'full_image_width' => [ + 'name' => 'عرض تصویر کامل', + ], + 'full_image_height' => [ + 'name' => 'ارتفاع تصویر کامل', + ], + 'medium_image_width' => [ + 'name' => 'عرض تصویر متوسط', + ], + 'medium_image_height' => [ + 'name' => 'ارتفاع تصویر متوسط', + ], + 'thumbnail_width' => [ + 'name' => 'عرض تصویر', + ], + 'thumbnail_height' => [ + 'name' => 'ارتفاع تصویر بند انگشتی', + ], + 'add_canvas' => [ + 'name' => 'بوم را اضافه کنید', + ], + 'image_canvas_width' => [ + 'name' => 'عرض بوم تصویر', + ], + 'image_canvas_height' => [ + 'name' => 'ارتفاع بوم تصویر', + ], + 'watermark_type' => [ + 'name' => 'نوع علامت', + ], + 'watermark_text' => [ + 'name' => 'متن علامت', + ], + 'watermark_image' => [ + 'name' => 'تصویر علامت', + ], + 'watermark_position' => [ + 'name' => 'موقعیت علامت سفید', + ], ]; 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 43f94b5d4..a0d77878b 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Mettre à jour la catégorie' ], 'new_option' => 'Nouvelle option', + 'export' => 'Exportation' ]; 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 82bb8cffc..599c32431 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'et ci-dessus', 'and_below' => 'et plus bas', 'clear_all' => 'Tout effacer', + 'balances' => 'Soldes', + 'packages' => 'Paquets', + 'dopings' => 'Dopage', + 'advs' => 'Advs', + 'site' => 'Site', + 'subscription' => 'Abonnement', + 'created' => 'Créé', + 'old_price' => [ + 'name' => 'Ancien prix' + ], ]; 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 3b5505c45..a88efc582 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Options', ], + 'ads_image' => 'Image d\'annonces', ]; 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 76e8447b8..349cb8ae3 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Annonce par défaut GET', ], - 'add_canvas' => [ - 'name' => 'Ajouter une toile', - ], - 'thumbnail_width' => [ - 'name' => 'Largeur de vignette', - ], - 'thumbnail_height' => [ - 'name' => 'Hauteur de la vignette', - ], - 'picture_width' => [ - 'name' => 'Largeur de l\'image', - ], - 'picture_height' => [ - 'name' => 'Hauteur de l\'image', - ], 'twitter' => [ 'name' => 'Gazouillement', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Type defiligrane', - ], - 'watermark_text' => [ - 'name' => 'Texte en filigrane', - ], - 'watermark_image' => [ - 'name' => 'Image en filigrane', - ], - 'watermark_position' => [ - 'name' => 'Position du filigrane', - ], 'listing_page_image' => [ 'name' => 'Image de page de liste', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Limite des annonces populaires', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Backend de redimensionnement d\'image', + ], + 'full_image_width' => [ + 'name' => 'Largeur totale de l\'image', + ], + 'full_image_height' => [ + 'name' => 'Hauteur totale de l\'image', + ], + 'medium_image_width' => [ + 'name' => 'Largeur d\'image moyenne', + ], + 'medium_image_height' => [ + 'name' => 'Hauteur d\'image moyenne', + ], + 'thumbnail_width' => [ + 'name' => 'Largeur de vignette', + ], + 'thumbnail_height' => [ + 'name' => 'Hauteur de la vignette', + ], + 'add_canvas' => [ + 'name' => 'Ajouter une toile', + ], + 'image_canvas_width' => [ + 'name' => 'Largeur du canevas d\'image', + ], + 'image_canvas_height' => [ + 'name' => 'Hauteur du canevas d\'image', + ], + 'watermark_type' => [ + 'name' => 'Type defiligrane', + ], + 'watermark_text' => [ + 'name' => 'Texte en filigrane', + ], + 'watermark_image' => [ + 'name' => 'Image en filigrane', + ], + 'watermark_position' => [ + 'name' => 'Position du filigrane', + ], ]; 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 b68b537ce..466fdbe0e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'עדכן קטגוריה' ], 'new_option' => 'אפשרות חדשה', + 'export' => 'יְצוּא' ]; 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 cf39a5c15..ff06ade7a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'ומעל', 'and_below' => 'ומתחת', 'clear_all' => 'נקה הכל', + 'balances' => 'יתרות', + 'packages' => 'חבילות', + 'dopings' => 'סמים', + 'advs' => 'עו"ד', + 'site' => 'אֲתַר', + 'subscription' => 'מִנוּי', + 'created' => 'נוצר', + 'old_price' => [ + 'name' => 'מחיר ישן' + ], ]; 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 882dfe5dd..3dea65a39 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'אפשרויות', ], + 'ads_image' => 'תמונת מודעות', ]; 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 e94f25019..b71c1b1ed 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'ברירת מחדל של מודעות GET', ], - 'add_canvas' => [ - 'name' => 'הוסף בד', - ], - 'thumbnail_width' => [ - 'name' => 'רוחב תמונה ממוזערת', - ], - 'thumbnail_height' => [ - 'name' => 'גובה תמונה ממוזערת', - ], - 'picture_width' => [ - 'name' => 'רוחב תמונה', - ], - 'picture_height' => [ - 'name' => 'גובה תמונה', - ], 'twitter' => [ 'name' => 'טוויטר', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'גוגל', ], - 'watermark_type' => [ - 'name' => 'סוג סימן מים', - ], - 'watermark_text' => [ - 'name' => 'טקסט סימן מים', - ], - 'watermark_image' => [ - 'name' => 'תמונה של סימן מים', - ], - 'watermark_position' => [ - 'name' => 'מיקום סימן מים', - ], 'listing_page_image' => [ 'name' => 'תמונת עמוד רישום', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'מגבלת מודעות פופולריות', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'תמונה שינוי גודל backend', + ], + 'full_image_width' => [ + 'name' => 'רוחב תמונה מלא', + ], + 'full_image_height' => [ + 'name' => 'תמונה מלאה גובה', + ], + 'medium_image_width' => [ + 'name' => 'רוחב תמונה בינוני', + ], + 'medium_image_height' => [ + 'name' => 'גובה תמונה בינוני', + ], + 'thumbnail_width' => [ + 'name' => 'רוחב תמונה ממוזערת', + ], + 'thumbnail_height' => [ + 'name' => 'גובה תמונה ממוזערת', + ], + 'add_canvas' => [ + 'name' => 'הוסף בד', + ], + 'image_canvas_width' => [ + 'name' => 'רוחב בד תמונה', + ], + 'image_canvas_height' => [ + 'name' => 'תמונה גובה בד', + ], + 'watermark_type' => [ + 'name' => 'סוג סימן מים', + ], + 'watermark_text' => [ + 'name' => 'טקסט סימן מים', + ], + 'watermark_image' => [ + 'name' => 'תמונה של סימן מים', + ], + 'watermark_position' => [ + 'name' => 'מיקום סימן מים', + ], ]; 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 802142448..04d35da16 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'अद्यतन श्रेणी' ], 'new_option' => 'नया विकल्प', + 'export' => 'निर्यात' ]; 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 3e21a0cba..c4ad70f8c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'और ऊपर', 'and_below' => 'और नीचे', 'clear_all' => 'सभी साफ करें', + 'balances' => 'शेष', + 'packages' => 'संकुल', + 'dopings' => 'dopings', + 'advs' => 'advs', + 'site' => 'साइट', + 'subscription' => 'अंशदान', + 'created' => 'बनाया था', + 'old_price' => [ + 'name' => 'पुरानी कीमत' + ], ]; 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 6fb43035a..3048cb03d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'विकल्प', ], + 'ads_image' => 'विज्ञापन छवि', ]; 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 f896aef00..c9c14d7e9 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'डिफ़ॉल्ट विज्ञापन GET', ], - 'add_canvas' => [ - 'name' => 'कैनवास जोड़ें', - ], - 'thumbnail_width' => [ - 'name' => 'थंबनेल की चौड़ाई', - ], - 'thumbnail_height' => [ - 'name' => 'थंबनेल की ऊँचाई', - ], - 'picture_width' => [ - 'name' => 'चित्र चौड़ाई', - ], - 'picture_height' => [ - 'name' => 'चित्र ऊंचाई', - ], 'twitter' => [ 'name' => 'ट्विटर', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'गूगल', ], - 'watermark_type' => [ - 'name' => 'वॉटरमार्क प्रकार', - ], - 'watermark_text' => [ - 'name' => 'वॉटरमार्क पाठ', - ], - 'watermark_image' => [ - 'name' => 'वॉटरमार्क छवि', - ], - 'watermark_position' => [ - 'name' => 'वॉटरमार्क स्थिति', - ], 'listing_page_image' => [ 'name' => 'लिस्टिंग पृष्ठ छवि', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'लोकप्रिय विज्ञापन सीमा', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'छवि बैकएंड का आकार बदलें', + ], + 'full_image_width' => [ + 'name' => 'पूर्ण छवि चौड़ाई', + ], + 'full_image_height' => [ + 'name' => 'पूर्ण छवि ऊँचाई', + ], + 'medium_image_width' => [ + 'name' => 'मध्यम छवि चौड़ाई', + ], + 'medium_image_height' => [ + 'name' => 'मध्यम छवि ऊँचाई', + ], + 'thumbnail_width' => [ + 'name' => 'थंबनेल की चौड़ाई', + ], + 'thumbnail_height' => [ + 'name' => 'थंबनेल की ऊँचाई', + ], + 'add_canvas' => [ + 'name' => 'कैनवास जोड़ें', + ], + 'image_canvas_width' => [ + 'name' => 'छवि कैनवास की चौड़ाई', + ], + 'image_canvas_height' => [ + 'name' => 'छवि कैनवास ऊंचाई', + ], + 'watermark_type' => [ + 'name' => 'वॉटरमार्क प्रकार', + ], + 'watermark_text' => [ + 'name' => 'वॉटरमार्क पाठ', + ], + 'watermark_image' => [ + 'name' => 'वॉटरमार्क छवि', + ], + 'watermark_position' => [ + 'name' => 'वॉटरमार्क स्थिति', + ], ]; 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 eebc61d89..973973321 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Categoria di aggiornamento' ], 'new_option' => 'Nuova opzione', + 'export' => 'Esportare' ]; 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 528ef3366..6f2d10da6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'e al di sopra', 'and_below' => 'e sotto', 'clear_all' => 'Cancella tutto', + 'balances' => 'Saldi', + 'packages' => 'Pacchi', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Luogo', + 'subscription' => 'Sottoscrizione', + 'created' => 'Creato', + 'old_price' => [ + 'name' => 'Vecchio prezzo' + ], ]; 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 20e113b56..25ed5f82e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Opzioni', ], + 'ads_image' => 'Immagine degli annunci', ]; 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 9a0447a3b..b62373bef 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Annuncio predefinito GET', ], - 'add_canvas' => [ - 'name' => 'Aggiungi tela', - ], - 'thumbnail_width' => [ - 'name' => 'Larghezza Miniatura', - ], - 'thumbnail_height' => [ - 'name' => 'Altezza Miniatura', - ], - 'picture_width' => [ - 'name' => 'Larghezza immagine', - ], - 'picture_height' => [ - 'name' => 'Altezza dell\'immagine', - ], 'twitter' => [ 'name' => 'cinguettio', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Tipo di filigrana', - ], - 'watermark_text' => [ - 'name' => 'Testo filigrana', - ], - 'watermark_image' => [ - 'name' => 'Immagine filigrana', - ], - 'watermark_position' => [ - 'name' => 'Posizione della filigrana', - ], 'listing_page_image' => [ 'name' => 'Immagine della pagina di elenco', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Limite annunci popolari', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Backend ridimensionamento immagine', + ], + 'full_image_width' => [ + 'name' => 'Larghezza immagine completa', + ], + 'full_image_height' => [ + 'name' => 'Altezza completa dell\'immagine', + ], + 'medium_image_width' => [ + 'name' => 'Larghezza immagine media', + ], + 'medium_image_height' => [ + 'name' => 'Altezza media dell\'immagine', + ], + 'thumbnail_width' => [ + 'name' => 'Larghezza Miniatura', + ], + 'thumbnail_height' => [ + 'name' => 'Altezza Miniatura', + ], + 'add_canvas' => [ + 'name' => 'Aggiungi tela', + ], + 'image_canvas_width' => [ + 'name' => 'Larghezza tela immagine', + ], + 'image_canvas_height' => [ + 'name' => 'Altezza tela immagine', + ], + 'watermark_type' => [ + 'name' => 'Tipo di filigrana', + ], + 'watermark_text' => [ + 'name' => 'Testo filigrana', + ], + 'watermark_image' => [ + 'name' => 'Immagine filigrana', + ], + 'watermark_position' => [ + 'name' => 'Posizione della filigrana', + ], ]; 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 b937e7866..2e19aa162 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'カテゴリを更新' ], 'new_option' => '新しいオプション', + 'export' => '書き出す' ]; 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 9b68ead52..46ea2dc81 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => '以上', 'and_below' => '以下', 'clear_all' => 'すべてクリア', + 'balances' => 'バランス', + 'packages' => 'パッケージ', + 'dopings' => 'ドーピング', + 'advs' => 'アドバンス', + 'site' => '地点', + 'subscription' => 'サブスクリプション', + 'created' => '作成した', + 'old_price' => [ + 'name' => '古い価格' + ], ]; 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 e86265cdc..92dacd5ac 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'オプション', ], + 'ads_image' => '広告画像', ]; 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 212bb25c9..4e69fcdab 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'デフォルト広告GET', ], - 'add_canvas' => [ - 'name' => 'キャンバスを追加', - ], - 'thumbnail_width' => [ - 'name' => 'サムネイルの幅', - ], - 'thumbnail_height' => [ - 'name' => 'サムネイルの高さ', - ], - 'picture_width' => [ - 'name' => '画像の幅', - ], - 'picture_height' => [ - 'name' => '画像の高さ', - ], 'twitter' => [ 'name' => 'ツイッター', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'グーグル', ], - 'watermark_type' => [ - 'name' => '透かしタイプ', - ], - 'watermark_text' => [ - 'name' => '透かしテキスト', - ], - 'watermark_image' => [ - 'name' => '透かし画像', - ], - 'watermark_position' => [ - 'name' => '透かしの位置', - ], 'listing_page_image' => [ 'name' => 'リストページの画像', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => '人気の広告制限', ], + + //Image + + 'image_resize_backend' => [ + 'name' => '画像サイズ変更バックエンド', + ], + 'full_image_width' => [ + 'name' => '全画像幅', + ], + 'full_image_height' => [ + 'name' => '全画像の高さ', + ], + 'medium_image_width' => [ + 'name' => '中程度の画像幅', + ], + 'medium_image_height' => [ + 'name' => '中程度の画像の高さ', + ], + 'thumbnail_width' => [ + 'name' => 'サムネイルの幅', + ], + 'thumbnail_height' => [ + 'name' => 'サムネイルの高さ', + ], + 'add_canvas' => [ + 'name' => 'キャンバスを追加', + ], + 'image_canvas_width' => [ + 'name' => '画像のキャンバスの幅', + ], + 'image_canvas_height' => [ + 'name' => '画像キャンバスの高さ', + ], + 'watermark_type' => [ + 'name' => '透かしタイプ', + ], + 'watermark_text' => [ + 'name' => '透かしテキスト', + ], + 'watermark_image' => [ + 'name' => '透かし画像', + ], + 'watermark_position' => [ + 'name' => '透かしの位置', + ], ]; 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 db3009a49..2870d56ec 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/button.php @@ -32,4 +32,5 @@ return [ 'name' => '카테고리 업데이트' ], 'new_option' => '새로운 옵션', + 'export' => '수출' ]; 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 e19e6a372..7d762de2c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => '이상', 'and_below' => '이하', 'clear_all' => '모두 지우기', + 'balances' => '균형', + 'packages' => '패키지', + 'dopings' => '도핑', + 'advs' => 'Advs', + 'site' => '대지', + 'subscription' => '신청', + 'created' => '만들어진', + 'old_price' => [ + 'name' => '이전 가격' + ], ]; 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 f86413da6..e93d90bbf 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => '옵션', ], + 'ads_image' => '광고 이미지', ]; 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 0be464f25..d98d9c54a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => '기본 광고 GET', ], - 'add_canvas' => [ - 'name' => '캔버스 추가', - ], - 'thumbnail_width' => [ - 'name' => '썸네일 폭', - ], - 'thumbnail_height' => [ - 'name' => '썸네일 높이', - ], - 'picture_width' => [ - 'name' => '사진 폭', - ], - 'picture_height' => [ - 'name' => '사진 높이', - ], 'twitter' => [ 'name' => '트위터', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => '구글', ], - 'watermark_type' => [ - 'name' => '워터 마크 유형', - ], - 'watermark_text' => [ - 'name' => '워터 마크 텍스트', - ], - 'watermark_image' => [ - 'name' => '워터 마크 이미지', - ], - 'watermark_position' => [ - 'name' => '워터 마크 위치', - ], 'listing_page_image' => [ 'name' => '리스팅 페이지 이미지', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => '인기 광고 제한', ], + + //Image + + 'image_resize_backend' => [ + 'name' => '이미지 크기 조정 백엔드', + ], + 'full_image_width' => [ + 'name' => '전체 이미지 너비', + ], + 'full_image_height' => [ + 'name' => '전체 이미지 높이', + ], + 'medium_image_width' => [ + 'name' => '중간 이미지 너비', + ], + 'medium_image_height' => [ + 'name' => '중간 이미지 높이', + ], + 'thumbnail_width' => [ + 'name' => '썸네일 폭', + ], + 'thumbnail_height' => [ + 'name' => '썸네일 높이', + ], + 'add_canvas' => [ + 'name' => '캔버스 추가', + ], + 'image_canvas_width' => [ + 'name' => '이미지 캔버스 너비', + ], + 'image_canvas_height' => [ + 'name' => '이미지 캔버스 높이', + ], + 'watermark_type' => [ + 'name' => '워터 마크 유형', + ], + 'watermark_text' => [ + 'name' => '워터 마크 텍스트', + ], + 'watermark_image' => [ + 'name' => '워터 마크 이미지', + ], + 'watermark_position' => [ + 'name' => '워터 마크 위치', + ], ]; 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 bc54f1937..0d59ef1fd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Categorie bijwerken' ], 'new_option' => 'Nieuwe optie', + 'export' => 'Exporteren' ]; 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 95d2cc31f..b6c3e3252 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'en hoger', 'and_below' => 'en onder', 'clear_all' => 'Wis alles', + 'balances' => 'Weegschalen', + 'packages' => 'Pakketjes', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Site', + 'subscription' => 'Abonnement', + 'created' => 'Gemaakt', + 'old_price' => [ + 'name' => 'Oude prijs' + ], ]; 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 250209946..4f0fede9b 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Opties', ], + 'ads_image' => 'Advertenties afbeelding', ]; 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 630c9b4ab..d0a12341e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Standaardadvertentie GET', ], - 'add_canvas' => [ - 'name' => 'Canvas toevoegen', - ], - 'thumbnail_width' => [ - 'name' => 'Thumbnail breedte', - ], - 'thumbnail_height' => [ - 'name' => 'Hoogte miniatuur', - ], - 'picture_width' => [ - 'name' => 'Beeldbreedte', - ], - 'picture_height' => [ - 'name' => 'Beeldhoogte', - ], 'twitter' => [ 'name' => 'tjilpen', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Watermerk Type', - ], - 'watermark_text' => [ - 'name' => 'Watermerktekst', - ], - 'watermark_image' => [ - 'name' => 'Watermerk afbeelding', - ], - 'watermark_position' => [ - 'name' => 'Watermerkpositie', - ], 'listing_page_image' => [ 'name' => 'Lijstpagina-afbeelding', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Beperking van populaire advertenties', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Afbeelding formaat wijzigen backend', + ], + 'full_image_width' => [ + 'name' => 'Volledige afbeeldingsbreedte', + ], + 'full_image_height' => [ + 'name' => 'Volledige beeldhoogte', + ], + 'medium_image_width' => [ + 'name' => 'Gemiddelde afbeeldingsbreedte', + ], + 'medium_image_height' => [ + 'name' => 'Gemiddelde afbeeldingshoogte', + ], + 'thumbnail_width' => [ + 'name' => 'Thumbnail breedte', + ], + 'thumbnail_height' => [ + 'name' => 'Hoogte miniatuur', + ], + 'add_canvas' => [ + 'name' => 'Canvas toevoegen', + ], + 'image_canvas_width' => [ + 'name' => 'Breedte afbeelding canvas', + ], + 'image_canvas_height' => [ + 'name' => 'Hoogte afbeelding canvas', + ], + 'watermark_type' => [ + 'name' => 'Watermerk Type', + ], + 'watermark_text' => [ + 'name' => 'Watermerktekst', + ], + 'watermark_image' => [ + 'name' => 'Watermerk afbeelding', + ], + 'watermark_position' => [ + 'name' => 'Watermerkpositie', + ], ]; 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 36752c315..b5b6249a8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Zaktualizuj kategorię' ], 'new_option' => 'Nowa opcja', + 'export' => 'Eksport' ]; 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 3d1d8b019..f47f2ad86 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'i powyżej', 'and_below' => 'i poniżej', 'clear_all' => 'Wyczyść wszystko', + 'balances' => 'Salda', + 'packages' => 'Pakiety', + 'dopings' => 'Dopingi', + 'advs' => 'Advs', + 'site' => 'Teren', + 'subscription' => 'Subskrypcja', + 'created' => 'Utworzony', + 'old_price' => [ + 'name' => 'Stara cena' + ], ]; 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 80483f314..ed280efba 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Opcje', ], + 'ads_image' => 'Obraz reklam', ]; 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 52f96627a..0b204de14 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Domyślna reklama GET', ], - 'add_canvas' => [ - 'name' => 'Dodaj płótno', - ], - 'thumbnail_width' => [ - 'name' => 'Szerokość miniatury', - ], - 'thumbnail_height' => [ - 'name' => 'Wysokość miniatury', - ], - 'picture_width' => [ - 'name' => 'Szerokość obrazu', - ], - 'picture_height' => [ - 'name' => 'Wysokość obrazu', - ], 'twitter' => [ 'name' => 'Świergot', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Rodzaj znaku wodnego', - ], - 'watermark_text' => [ - 'name' => 'Tekst znaku wodnego', - ], - 'watermark_image' => [ - 'name' => 'Obraz znaku wodnego', - ], - 'watermark_position' => [ - 'name' => 'Pozycja znaku wodnego', - ], 'listing_page_image' => [ 'name' => 'Obraz strony z listą', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Limit popularnych reklam', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Image Resize Backend', + ], + 'full_image_width' => [ + 'name' => 'Pełna szerokość obrazu', + ], + 'full_image_height' => [ + 'name' => 'Pełna wysokość obrazu', + ], + 'medium_image_width' => [ + 'name' => 'Średnia szerokość obrazu', + ], + 'medium_image_height' => [ + 'name' => 'Średnia wysokość obrazu', + ], + 'thumbnail_width' => [ + 'name' => 'Szerokość miniatury', + ], + 'thumbnail_height' => [ + 'name' => 'Wysokość miniatury', + ], + 'add_canvas' => [ + 'name' => 'Dodaj płótno', + ], + 'image_canvas_width' => [ + 'name' => 'Szerokość obszaru roboczego obrazu', + ], + 'image_canvas_height' => [ + 'name' => 'Wysokość obszaru roboczego obrazu', + ], + 'watermark_type' => [ + 'name' => 'Rodzaj znaku wodnego', + ], + 'watermark_text' => [ + 'name' => 'Tekst znaku wodnego', + ], + 'watermark_image' => [ + 'name' => 'Obraz znaku wodnego', + ], + 'watermark_position' => [ + 'name' => 'Pozycja znaku wodnego', + ], ]; 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 53d5d0a7e..b443ea231 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Atualizar categoria' ], 'new_option' => 'Nova Opção', + 'export' => 'Exportar' ]; 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 1429a94fe..60067ae2c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'e acima', 'and_below' => 'e abaixo', 'clear_all' => 'Limpar tudo', + 'balances' => 'Saldos', + 'packages' => 'Pacotes', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Local', + 'subscription' => 'Inscrição', + 'created' => 'Criado', + 'old_price' => [ + 'name' => 'Preço antigo' + ], ]; 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 293c32207..8602cf001 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Opções', ], + 'ads_image' => 'Imagem de Anúncios', ]; 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 5004d7dea..505a5dd08 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Ad GET padrão', ], - 'add_canvas' => [ - 'name' => 'Adicionar tela', - ], - 'thumbnail_width' => [ - 'name' => 'Largura da miniatura', - ], - 'thumbnail_height' => [ - 'name' => 'Altura da miniatura', - ], - 'picture_width' => [ - 'name' => 'Largura da imagem', - ], - 'picture_height' => [ - 'name' => 'Altura da imagem', - ], 'twitter' => [ 'name' => 'Twitter', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Tipo de marca d\\'água', - ], - 'watermark_text' => [ - 'name' => 'Texto de marca d\\'água', - ], - 'watermark_image' => [ - 'name' => 'Imagem de marca d\\'água', - ], - 'watermark_position' => [ - 'name' => 'Posição da marca d\\'água', - ], 'listing_page_image' => [ 'name' => 'Listar imagem da página', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Limite de anúncios populares', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Backend de redimensionamento de imagem', + ], + 'full_image_width' => [ + 'name' => 'Largura total da imagem', + ], + 'full_image_height' => [ + 'name' => 'Altura total da imagem', + ], + 'medium_image_width' => [ + 'name' => 'Largura de imagem média', + ], + 'medium_image_height' => [ + 'name' => 'Altura Média da Imagem', + ], + 'thumbnail_width' => [ + 'name' => 'Largura da miniatura', + ], + 'thumbnail_height' => [ + 'name' => 'Altura da miniatura', + ], + 'add_canvas' => [ + 'name' => 'Adicionar tela', + ], + 'image_canvas_width' => [ + 'name' => 'Largura da tela da imagem', + ], + 'image_canvas_height' => [ + 'name' => 'Altura da tela da imagem', + ], + 'watermark_type' => [ + 'name' => 'Tipo de marca d\\'água', + ], + 'watermark_text' => [ + 'name' => 'Texto de marca d\\'água', + ], + 'watermark_image' => [ + 'name' => 'Imagem de marca d\\'água', + ], + 'watermark_position' => [ + 'name' => 'Posição da marca d\\'água', + ], ]; 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 b9170691e..05365e89e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Actualizare categorie' ], 'new_option' => 'Opțiune nouă', + 'export' => 'Export' ]; 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 07aabded1..3a7c2ce03 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'Si mai sus', 'and_below' => 'si sub', 'clear_all' => 'Curata tot', + 'balances' => 'Solduri', + 'packages' => 'Pachete', + 'dopings' => 'Dopaje', + 'advs' => 'Sfaturi', + 'site' => 'Site', + 'subscription' => 'Abonament', + 'created' => 'Creată', + 'old_price' => [ + 'name' => 'Preț vechi' + ], ]; 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 f05c48fa7..d52aea029 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Opțiuni', ], + 'ads_image' => 'Imagine publicitară', ]; 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 e79fa7e7d..2e9a5cab8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Anunț implicit GET', ], - 'add_canvas' => [ - 'name' => 'Adăugați pânză', - ], - 'thumbnail_width' => [ - 'name' => 'Lățimea miniaturii', - ], - 'thumbnail_height' => [ - 'name' => 'Înălțimea miniaturii', - ], - 'picture_width' => [ - 'name' => 'Lățimea imaginii', - ], - 'picture_height' => [ - 'name' => 'Înălțimea imaginii', - ], 'twitter' => [ 'name' => 'Stare de nervozitate', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Tip filigran', - ], - 'watermark_text' => [ - 'name' => 'Text Filigran', - ], - 'watermark_image' => [ - 'name' => 'Filigran imagine', - ], - 'watermark_position' => [ - 'name' => 'Poziția filigranului', - ], 'listing_page_image' => [ 'name' => 'Listare imagine pagină', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Limita de anunțuri populare', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Backend de redimensionare imagine', + ], + 'full_image_width' => [ + 'name' => 'Lățimea imaginii complete', + ], + 'full_image_height' => [ + 'name' => 'Înălțimea imaginii complete', + ], + 'medium_image_width' => [ + 'name' => 'Lățimea medie a imaginii', + ], + 'medium_image_height' => [ + 'name' => 'Înălțimea medie a imaginii', + ], + 'thumbnail_width' => [ + 'name' => 'Lățimea miniaturii', + ], + 'thumbnail_height' => [ + 'name' => 'Înălțimea miniaturii', + ], + 'add_canvas' => [ + 'name' => 'Adăugați pânză', + ], + 'image_canvas_width' => [ + 'name' => 'Lățimea pânzei imaginii', + ], + 'image_canvas_height' => [ + 'name' => 'Înălțimea imaginii pânzei', + ], + 'watermark_type' => [ + 'name' => 'Tip filigran', + ], + 'watermark_text' => [ + 'name' => 'Text Filigran', + ], + 'watermark_image' => [ + 'name' => 'Filigran imagine', + ], + 'watermark_position' => [ + 'name' => 'Poziția filigranului', + ], ]; 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 ef3b7785c..7db3d66cb 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Обновить категорию' ], 'new_option' => 'Новый вариант', + 'export' => 'Экспорт' ]; 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 63f2056ce..8cc41cf7a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'и выше', 'and_below' => 'и ниже', 'clear_all' => 'Очистить все', + 'balances' => 'Балансы', + 'packages' => 'Пакеты', + 'dopings' => 'Допинг', + 'advs' => 'Advs', + 'site' => 'Сайт', + 'subscription' => 'Подписка', + 'created' => 'Создано', + 'old_price' => [ + 'name' => 'Старая цена' + ], ]; 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 7c2ae7bd5..a36bd2601 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Параметры', ], + 'ads_image' => 'Рекламное изображение', ]; 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 344d09a6d..2ca00532e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Реклама по умолчанию GET', ], - 'add_canvas' => [ - 'name' => 'Добавить холст', - ], - 'thumbnail_width' => [ - 'name' => 'Ширина миниатюры', - ], - 'thumbnail_height' => [ - 'name' => 'Высота миниатюры', - ], - 'picture_width' => [ - 'name' => 'Ширина картинки', - ], - 'picture_height' => [ - 'name' => 'Высота картинки', - ], 'twitter' => [ 'name' => 'щебет', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Тип водяного знака', - ], - 'watermark_text' => [ - 'name' => 'Текст водяного знака', - ], - 'watermark_image' => [ - 'name' => 'Изображение водяного знака', - ], - 'watermark_position' => [ - 'name' => 'Положение водяного знака', - ], 'listing_page_image' => [ 'name' => 'Изображение страницы со списком', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Лимит популярной рекламы', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Бэкэнд изменения размера изображения', + ], + 'full_image_width' => [ + 'name' => 'Полная ширина изображения', + ], + 'full_image_height' => [ + 'name' => 'Полная высота изображения', + ], + 'medium_image_width' => [ + 'name' => 'Средняя ширина изображения', + ], + 'medium_image_height' => [ + 'name' => 'Средняя высота изображения', + ], + 'thumbnail_width' => [ + 'name' => 'Ширина миниатюры', + ], + 'thumbnail_height' => [ + 'name' => 'Высота миниатюры', + ], + 'add_canvas' => [ + 'name' => 'Добавить холст', + ], + 'image_canvas_width' => [ + 'name' => 'Ширина холста изображения', + ], + 'image_canvas_height' => [ + 'name' => 'Высота холста изображения', + ], + 'watermark_type' => [ + 'name' => 'Тип водяного знака', + ], + 'watermark_text' => [ + 'name' => 'Текст водяного знака', + ], + 'watermark_image' => [ + 'name' => 'Изображение водяного знака', + ], + 'watermark_position' => [ + 'name' => 'Положение водяного знака', + ], ]; 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 004a53e08..ea5c36fbd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Kategoria Azhornimeve' ], 'new_option' => 'Opsioni i ri', + 'export' => 'Eksporto' ]; 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 5364d6b0c..58fe05860 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'dhe më lart', 'and_below' => 'dhe më poshtë', 'clear_all' => 'Pastroji të gjitha', + 'balances' => 'Bilancet', + 'packages' => 'Paketat', + 'dopings' => 'Dopingët', + 'advs' => 'Adv', + 'site' => 'Faqen', + 'subscription' => 'Abonim', + 'created' => 'Krijuar', + 'old_price' => [ + 'name' => 'Çmimi i Vjetër' + ], ]; 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 81ca43dbe..6b38db36e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Opsione', ], + 'ads_image' => 'Imazhi i reklamave', ]; 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 7e33fbb5c..444748716 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Përcaktuar SET', ], - 'add_canvas' => [ - 'name' => 'Shto Canvas', - ], - 'thumbnail_width' => [ - 'name' => 'Gjerësia e Thumbnail', - ], - 'thumbnail_height' => [ - 'name' => 'Lartësia e Thumbnail', - ], - 'picture_width' => [ - 'name' => 'Gjerësia e figurës', - ], - 'picture_height' => [ - 'name' => 'Lartësia e figurës', - ], 'twitter' => [ 'name' => 'Twitter', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Tipi Filigranit', - ], - 'watermark_text' => [ - 'name' => 'Teksti i Filigranit', - ], - 'watermark_image' => [ - 'name' => 'Imazhi i Filigranit', - ], - 'watermark_position' => [ - 'name' => 'Pozicioni i Filigranit', - ], 'listing_page_image' => [ 'name' => 'Lista e figurës së faqes', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Kufiri i reklamave popullore', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Ndryshimi i madhësisë së imazhit Backend', + ], + 'full_image_width' => [ + 'name' => 'Gjerësia e imazhit të plotë', + ], + 'full_image_height' => [ + 'name' => 'Lartësia e imazhit të plotë', + ], + 'medium_image_width' => [ + 'name' => 'Gjerësia Mesatare e Imazhit', + ], + 'medium_image_height' => [ + 'name' => 'Lartësia mesatare e figurës', + ], + 'thumbnail_width' => [ + 'name' => 'Gjerësia e Thumbnail', + ], + 'thumbnail_height' => [ + 'name' => 'Lartësia e Thumbnail', + ], + 'add_canvas' => [ + 'name' => 'Shto Canvas', + ], + 'image_canvas_width' => [ + 'name' => 'Gjerësia e kanavacës së imazhit', + ], + 'image_canvas_height' => [ + 'name' => 'Lartësia e kanavacës së imazhit', + ], + 'watermark_type' => [ + 'name' => 'Tipi Filigranit', + ], + 'watermark_text' => [ + 'name' => 'Teksti i Filigranit', + ], + 'watermark_image' => [ + 'name' => 'Imazhi i Filigranit', + ], + 'watermark_position' => [ + 'name' => 'Pozicioni i Filigranit', + ], ]; 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 fe78e694e..f992ccff6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Uppdatera kategori' ], 'new_option' => 'Nytt alternativ', + 'export' => 'Exportera' ]; 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 2a05f75c9..634294430 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'och ovan', 'and_below' => 'och under', 'clear_all' => 'Rensa alla', + 'balances' => 'Balanser', + 'packages' => 'Paket', + 'dopings' => 'Dopings', + 'advs' => 'Adv', + 'site' => 'Webbplats', + 'subscription' => 'Prenumeration', + 'created' => 'Skapad', + 'old_price' => [ + 'name' => 'Gammalt pris' + ], ]; 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 29c6aaae6..85daf8b42 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'alternativ', ], + 'ads_image' => 'Annonsbild', ]; 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 c82d762cd..751af7b8f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Standardannons GET', ], - 'add_canvas' => [ - 'name' => 'Lägg till Canvas', - ], - 'thumbnail_width' => [ - 'name' => 'Miniatyrbredd', - ], - 'thumbnail_height' => [ - 'name' => 'Miniatyrhöjd', - ], - 'picture_width' => [ - 'name' => 'Bildbredd', - ], - 'picture_height' => [ - 'name' => 'Bildhöjd', - ], 'twitter' => [ 'name' => 'Twitter', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Vattenmärketyp', - ], - 'watermark_text' => [ - 'name' => 'Vattenmärketekst', - ], - 'watermark_image' => [ - 'name' => 'Vattenmärkesbild', - ], - 'watermark_position' => [ - 'name' => 'Vattenmärkes position', - ], 'listing_page_image' => [ 'name' => 'Lista sidbild', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Gräns för populära annonser', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Bild Ändra storlek på backend', + ], + 'full_image_width' => [ + 'name' => 'Full bildbredd', + ], + 'full_image_height' => [ + 'name' => 'Full bildhöjd', + ], + 'medium_image_width' => [ + 'name' => 'Medium bildbredd', + ], + 'medium_image_height' => [ + 'name' => 'Medium bildhöjd', + ], + 'thumbnail_width' => [ + 'name' => 'Miniatyrbredd', + ], + 'thumbnail_height' => [ + 'name' => 'Miniatyrhöjd', + ], + 'add_canvas' => [ + 'name' => 'Lägg till Canvas', + ], + 'image_canvas_width' => [ + 'name' => 'Bild Canvas Bredd', + ], + 'image_canvas_height' => [ + 'name' => 'Bild Kanvashöjd', + ], + 'watermark_type' => [ + 'name' => 'Vattenmärketyp', + ], + 'watermark_text' => [ + 'name' => 'Vattenmärketekst', + ], + 'watermark_image' => [ + 'name' => 'Vattenmärkesbild', + ], + 'watermark_position' => [ + 'name' => 'Vattenmärkes position', + ], ]; 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 6721c2085..0ee3ab8a2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Kategori Güncelle' ], 'new_option' => 'Yeni Seçenek', + 'export' => 'İhracat' ]; 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 cc2f95416..e1c05d54c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/field.php @@ -150,7 +150,7 @@ return [ 'search_desc' => 'Burada favori arama seçimlerinizi ekleyebilir ve yönetebilirsiniz.', 'complaint_placeholder' => 'Şikayet ayrıntılarınızı buraya yazın.', 'show_details' => 'Detayları göster', - 'ad_actions' => 'Reklam İşlemleri', + 'ad_actions' => 'İlan İşlemleri', 'edit' => 'Düzenle', 'approve' => 'Onayla', 'passive' => "Pasif", @@ -275,11 +275,11 @@ return [ "were_found" => 'bulundular.', // Pending screen - 'pending_message_1' => 'Reklam Onay Sürecinde', - 'pending_message_2' => "Reklamın Güncelleme Tarihi", + 'pending_message_1' => 'İlan Onay Sürecinde', + 'pending_message_2' => "İlan Güncelleme Tarihi", 'pending_message_3' => 'Tahmini Bekleme Süresi', 'pending_message_4' => 'Onay sürecinde geçirilen süre doping zamanına eklenecektir.', - 'pending_message_5' => 'Onay sürecinde reklamla ilgili çağrı merkezinden hiçbir işlem yapılamaz.', + 'pending_message_5' => 'Onay sürecinde ilanla ilgili çağrı merkezinden hiçbir işlem yapılamaz.', 'hours' => 'saatler', // Preview page @@ -308,4 +308,14 @@ return [ 'and_above' => 've yukarıda', 'and_below' => 've aşağıda', 'clear_all' => 'Hepsini temizle', + 'balances' => 'Bakiyeler', + 'packages' => 'Paketler', + 'dopings' => 'Dopingler', + 'advs' => 'Advs', + 'site' => 'Site', + 'subscription' => 'Abonelik', + 'created' => 'Oluşturuldu', + 'old_price' => [ + 'name' => 'Eski fiyat' + ], ]; 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 00fd03e21..82df978e8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/message.php @@ -23,6 +23,6 @@ return [ 'choose_user' => 'Bir kullanıcı seçin', 'owner_updated_successfully' => 'Sahibi Başarıyla Güncellenmiştir!', 'no_add_found' => 'İlan Bulunamadı!', - 'replicated_success' => 'Reklam başarıyla kopyalandı!', - 'ad_doesnt_exist' => "Bu reklam mevcut değil!", + 'replicated_success' => 'İlan başarıyla kopyalandı!', + 'ad_doesnt_exist' => "Bu İlan mevcut değil!", ]; 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 c286a8554..f7adc843e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Seçenekler', ], + 'ads_image' => 'İlan Resmi', ]; 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 65ceea4d9..9e3c9d652 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php @@ -9,7 +9,7 @@ return [ ], 'hide_zero_price' => [ 'name' => 'Sıfır ise Fiyatı Gizle', - 'instructions' => 'Reklam fiyatı 0 ise fiyatı gizle', + 'instructions' => 'İlan fiyatı 0 ise fiyatı gizle', ], 'estimated_pending_time' => [ 'name' => 'Tahmini Bekleme Süresi', @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Varsayılan İlan GET', ], - 'add_canvas' => [ - 'name' => 'Tuval Ekle', - ], - 'thumbnail_width' => [ - 'name' => 'Küçük Resim Genişliği', - ], - 'thumbnail_height' => [ - 'name' => 'Küçük Resim Yüksekliği', - ], - 'picture_width' => [ - 'name' => 'Resim Genişliği', - ], - 'picture_height' => [ - 'name' => 'Resim Yüksekliği', - ], 'twitter' => [ 'name' => 'Twitter', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Filigran Türü', - ], - 'watermark_text' => [ - 'name' => 'Filigran Metni', - ], - 'watermark_image' => [ - 'name' => 'Filigran Görüntüsü', - ], - 'watermark_position' => [ - 'name' => 'Filigran Konumu', - ], 'listing_page_image' => [ 'name' => 'Sayfa Resmi Listeleme', ], @@ -156,6 +129,51 @@ return [ 'name' => 'TCMB Exchange URL\'si', ], 'popular_ads_limit' => [ - 'name' => 'Popüler Reklam Limiti', + 'name' => 'Popüler İlan Limiti', + ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Görüntüyü Yeniden Boyutlandır Arka Uç', + ], + 'full_image_width' => [ + 'name' => 'Tam Resim Genişliği', + ], + 'full_image_height' => [ + 'name' => 'Tam Resim Yüksekliği', + ], + 'medium_image_width' => [ + 'name' => 'Orta Resim Genişliği', + ], + 'medium_image_height' => [ + 'name' => 'Orta Resim Yüksekliği', + ], + 'thumbnail_width' => [ + 'name' => 'Küçük Resim Genişliği', + ], + 'thumbnail_height' => [ + 'name' => 'Küçük Resim Yüksekliği', + ], + 'add_canvas' => [ + 'name' => 'Tuval Ekle', + ], + 'image_canvas_width' => [ + 'name' => 'Görüntü Tuvali Genişliği', + ], + 'image_canvas_height' => [ + 'name' => 'Resim Tuval Yüksekliği', + ], + 'watermark_type' => [ + 'name' => 'Filigran Türü', + ], + 'watermark_text' => [ + 'name' => 'Filigran Metni', + ], + 'watermark_image' => [ + 'name' => 'Filigran Görüntüsü', + ], + 'watermark_position' => [ + 'name' => 'Filigran Konumu', ], ]; 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 6b7277f53..fe6de7c4a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Оновити категорію' ], 'new_option' => 'Нова опція', + 'export' => 'Експорт' ]; 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 628c6f494..09fe095f1 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'і вище', 'and_below' => 'і нижче', 'clear_all' => 'Очистити все', + 'balances' => 'Баланси', + 'packages' => 'Пакети', + 'dopings' => 'Допінг', + 'advs' => 'Advs', + 'site' => 'Сайт', + 'subscription' => 'Передплата', + 'created' => 'Створено', + 'old_price' => [ + 'name' => 'Стара ціна' + ], ]; 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 d93a621d2..ef8a84fe9 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Параметри', ], + 'ads_image' => 'Зображення оголошень', ]; 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 bd4e1cd21..5056bf078 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Оголошення за замовчуванням GET', ], - 'add_canvas' => [ - 'name' => 'Додати полотно', - ], - 'thumbnail_width' => [ - 'name' => 'Ширина мініатюри', - ], - 'thumbnail_height' => [ - 'name' => 'Висота мініатюри', - ], - 'picture_width' => [ - 'name' => 'Ширина зображення', - ], - 'picture_height' => [ - 'name' => 'Висота зображення', - ], 'twitter' => [ 'name' => 'Twitter', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Тип водяного знака', - ], - 'watermark_text' => [ - 'name' => 'Текст водяного знака', - ], - 'watermark_image' => [ - 'name' => 'Зображення водяного знака', - ], - 'watermark_position' => [ - 'name' => 'Позиція водяного знака', - ], 'listing_page_image' => [ 'name' => 'Зображення сторінки лістингу', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Ліміт популярних оголошень', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Змінення розміру зображення', + ], + 'full_image_width' => [ + 'name' => 'Повна ширина зображення', + ], + 'full_image_height' => [ + 'name' => 'Повна висота зображення', + ], + 'medium_image_width' => [ + 'name' => 'Середня ширина зображення', + ], + 'medium_image_height' => [ + 'name' => 'Середня висота зображення', + ], + 'thumbnail_width' => [ + 'name' => 'Ширина мініатюри', + ], + 'thumbnail_height' => [ + 'name' => 'Висота мініатюри', + ], + 'add_canvas' => [ + 'name' => 'Додати полотно', + ], + 'image_canvas_width' => [ + 'name' => 'Ширина полотна зображення', + ], + 'image_canvas_height' => [ + 'name' => 'Висота полотна зображення', + ], + 'watermark_type' => [ + 'name' => 'Тип водяного знака', + ], + 'watermark_text' => [ + 'name' => 'Текст водяного знака', + ], + 'watermark_image' => [ + 'name' => 'Зображення водяного знака', + ], + 'watermark_position' => [ + 'name' => 'Позиція водяного знака', + ], ]; 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 9b412a895..48e176b96 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'زمرہ اپ ڈیٹ کریں' ], 'new_option' => 'نیا آپشن', + 'export' => 'برآمد کریں' ]; 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 000857a60..d38e74af5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'اور اوپر', 'and_below' => 'اور نیچے', 'clear_all' => 'تمام کو صاف کریں', + 'balances' => 'توازن', + 'packages' => 'پیکیجز', + 'dopings' => 'ڈوپنگز', + 'advs' => 'ایڈز', + 'site' => 'سائٹ', + 'subscription' => 'سب سکریپشن', + 'created' => 'بنائی گئی', + 'old_price' => [ + 'name' => 'پرانی قیمت' + ], ]; 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 61ffc72a8..ad7aaf4a5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'اختیارات', ], + 'ads_image' => 'اشتہارات کی تصویر', ]; 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 4727eb38e..26549bf87 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'ڈیفالٹ اشتہار GET', ], - 'add_canvas' => [ - 'name' => 'کینوس شامل کریں', - ], - 'thumbnail_width' => [ - 'name' => 'تھمب نیل چوڑائی', - ], - 'thumbnail_height' => [ - 'name' => 'تھمب نیل اونچائی', - ], - 'picture_width' => [ - 'name' => 'تصویر کی چوڑائی', - ], - 'picture_height' => [ - 'name' => 'تصویر کی اونچائی', - ], 'twitter' => [ 'name' => 'ٹویٹر', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'گوگل', ], - 'watermark_type' => [ - 'name' => 'واٹر مارک کی قسم', - ], - 'watermark_text' => [ - 'name' => 'واٹر مارک ٹیکسٹ', - ], - 'watermark_image' => [ - 'name' => 'واٹر مارک امیج', - ], - 'watermark_position' => [ - 'name' => 'واٹر مارک پوزیشن', - ], 'listing_page_image' => [ 'name' => 'صفحہ کی فہرست کی فہرست', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'مقبول اشتہارات کی حد', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'شبیہہ کا سائز تبدیل کریں پسدید', + ], + 'full_image_width' => [ + 'name' => 'مکمل تصویری چوڑائی', + ], + 'full_image_height' => [ + 'name' => 'مکمل امیج کی اونچائی', + ], + 'medium_image_width' => [ + 'name' => 'میڈیم تصویری چوڑائی', + ], + 'medium_image_height' => [ + 'name' => 'میڈیم امیج کی اونچائی', + ], + 'thumbnail_width' => [ + 'name' => 'تھمب نیل چوڑائی', + ], + 'thumbnail_height' => [ + 'name' => 'تھمب نیل اونچائی', + ], + 'add_canvas' => [ + 'name' => 'کینوس شامل کریں', + ], + 'image_canvas_width' => [ + 'name' => 'تصویری کینوس کی چوڑائی', + ], + 'image_canvas_height' => [ + 'name' => 'تصویری کینوس کی اونچائی', + ], + 'watermark_type' => [ + 'name' => 'واٹر مارک کی قسم', + ], + 'watermark_text' => [ + 'name' => 'واٹر مارک ٹیکسٹ', + ], + 'watermark_image' => [ + 'name' => 'واٹر مارک امیج', + ], + 'watermark_position' => [ + 'name' => 'واٹر مارک پوزیشن', + ], ]; 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 5cc1766d8..f1f73f281 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Cập nhật danh mục' ], 'new_option' => 'Tùy chọn mới', + 'export' => 'Xuất 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 50d4e9dd8..0b5e767e2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'trở lên', 'and_below' => 'và dưới đây', 'clear_all' => 'Làm sạch tất cả', + 'balances' => 'Cân bằng', + 'packages' => 'Các gói', + 'dopings' => 'Liều lượng', + 'advs' => 'Lời khuyên', + 'site' => 'Địa điểm', + 'subscription' => 'Đăng ký', + 'created' => 'Tạo', + 'old_price' => [ + 'name' => 'Giá cũ' + ], ]; 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 5efbd87d3..ddb28f2d2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/section.php @@ -44,4 +44,5 @@ return [ 'options' => [ 'title' => 'Tùy chọn', ], + 'ads_image' => 'Hình ảnh Quảng cáo', ]; 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 64abd5421..500915dcc 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/setting.php @@ -79,21 +79,6 @@ return [ 'default_GET' => [ 'name' => 'Quảng cáo mặc định NHẬN', ], - 'add_canvas' => [ - 'name' => 'Thêm Canvas', - ], - 'thumbnail_width' => [ - 'name' => 'Chiều rộng hình thu nhỏ', - ], - 'thumbnail_height' => [ - 'name' => 'Chiều cao hình thu nhỏ', - ], - 'picture_width' => [ - 'name' => 'Chiều rộng hình ảnh', - ], - 'picture_height' => [ - 'name' => 'Chiều cao hình ảnh', - ], 'twitter' => [ 'name' => 'Twitter', ], @@ -106,18 +91,6 @@ return [ 'google' => [ 'name' => 'Google', ], - 'watermark_type' => [ - 'name' => 'Loại hình mờ', - ], - 'watermark_text' => [ - 'name' => 'Văn bản thủy ấn', - ], - 'watermark_image' => [ - 'name' => 'Hình mờ', - ], - 'watermark_position' => [ - 'name' => 'Vị trí hình mờ', - ], 'listing_page_image' => [ 'name' => 'Danh sách trang hình ảnh', ], @@ -158,4 +131,49 @@ return [ 'popular_ads_limit' => [ 'name' => 'Giới hạn Quảng cáo Phổ biến', ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Phần phụ trợ thay đổi kích thước hình ảnh', + ], + 'full_image_width' => [ + 'name' => 'Chiều rộng hình ảnh đầy đủ', + ], + 'full_image_height' => [ + 'name' => 'Chiều cao toàn ảnh', + ], + 'medium_image_width' => [ + 'name' => 'Chiều rộng hình ảnh trung bình', + ], + 'medium_image_height' => [ + 'name' => 'Chiều cao hình ảnh trung bình', + ], + 'thumbnail_width' => [ + 'name' => 'Chiều rộng hình thu nhỏ', + ], + 'thumbnail_height' => [ + 'name' => 'Chiều cao hình thu nhỏ', + ], + 'add_canvas' => [ + 'name' => 'Thêm Canvas', + ], + 'image_canvas_width' => [ + 'name' => 'Chiều rộng canvas hình ảnh', + ], + 'image_canvas_height' => [ + 'name' => 'Chiều cao canvas hình ảnh', + ], + 'watermark_type' => [ + 'name' => 'Loại hình mờ', + ], + 'watermark_text' => [ + 'name' => 'Văn bản thủy ấn', + ], + 'watermark_image' => [ + 'name' => 'Hình mờ', + ], + 'watermark_position' => [ + 'name' => 'Vị trí hình mờ', + ], ]; 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 efd963ad9..d700caebb 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 @@ -1,7 +1,7 @@
- {{ addBlock('new-ad/fields', {'adv': adv})|raw }} - -