From 8e4530f5178c8ef842effafd8b42801a44715efd Mon Sep 17 00:00:00 2001 From: vedatakd Date: Sat, 29 May 2021 16:39:16 +0300 Subject: [PATCH 01/31] trans materials --- database/Command/DeleteInstaller.php | 17 +++++++++++++++++ database/seeder/DatabaseSeeder.php | 8 ++++++-- 2 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 database/Command/DeleteInstaller.php diff --git a/database/Command/DeleteInstaller.php b/database/Command/DeleteInstaller.php new file mode 100644 index 000000000..8dddea0be --- /dev/null +++ b/database/Command/DeleteInstaller.php @@ -0,0 +1,17 @@ +put(base_path('composer.json'), preg_replace($pattern, '', $json)); + + $files->deleteDirectory(base_path('vendor/anomaly/installer-module')); + } +} diff --git a/database/seeder/DatabaseSeeder.php b/database/seeder/DatabaseSeeder.php index 4984b8834..4bd69cc97 100644 --- a/database/seeder/DatabaseSeeder.php +++ b/database/seeder/DatabaseSeeder.php @@ -1,4 +1,5 @@ call(WidgetSeeder::class); + //Delete Installer + dispatch_now(new DeleteInstaller()); + //Create Store Icon Folder if (!$this->folders->findBySlug('ads_excel')) { @@ -218,8 +223,7 @@ class DatabaseSeeder extends Seeder }; //Demodata Seeder - if(is_module_installed('visiosoft.module.demodata')) - { + if (is_module_installed('visiosoft.module.demodata')) { $this->call(\Visiosoft\DemodataModule\Demodata\DemodataSeeder::class); } From efc07b097b368f7e8bf68c776996c8ec7708d277 Mon Sep 17 00:00:00 2001 From: vedatakd Date: Sat, 29 May 2021 17:30:25 +0300 Subject: [PATCH 02/31] remove old route --- .../visiosoft/advs-module/src/AdvsModuleServiceProvider.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/addons/default/visiosoft/advs-module/src/AdvsModuleServiceProvider.php b/addons/default/visiosoft/advs-module/src/AdvsModuleServiceProvider.php index 937d1e0da..04f7a4348 100644 --- a/addons/default/visiosoft/advs-module/src/AdvsModuleServiceProvider.php +++ b/addons/default/visiosoft/advs-module/src/AdvsModuleServiceProvider.php @@ -146,10 +146,6 @@ class AdvsModuleServiceProvider extends AddonServiceProvider 'as' => 'adv_add_cart_ajax', 'uses' => 'Visiosoft\AdvsModule\Http\Controller\AdvsController@addCart', ], - 'ajax/countPhone' => [ - 'as' => 'adv_count_show_phone', - 'uses' => 'Visiosoft\AdvsModule\Http\Controller\AdvsController@showPhoneCounter', - ], 'view/{type}' => [ 'as' => 'visiosoft.module.advs::view_type', 'uses' => 'Visiosoft\AdvsModule\Http\Controller\AdvsController@viewType', From 6661c54cd6e8c146caf3cbc804733b83d2f11326 Mon Sep 17 00:00:00 2001 From: vedatakd Date: Sat, 29 May 2021 18:10:51 +0300 Subject: [PATCH 03/31] added tax field --- ...isiosoft.module.advs__create_tax_field.php | 30 +++++++ .../resources/config/settings/sections.php | 1 + .../resources/config/settings/settings.php | 89 ++++++++++--------- .../advs-module/resources/lang/en/field.php | 3 + .../advs-module/resources/lang/en/setting.php | 4 + .../advs-module/resources/lang/tr/field.php | 3 + .../advs-module/resources/lang/tr/setting.php | 64 +++++++------ .../resources/views/new-ad/new-create.twig | 29 +++++- .../src/Adv/Form/AdvFormBuilder.php | 1 + 9 files changed, 153 insertions(+), 71 deletions(-) create mode 100644 addons/default/visiosoft/advs-module/migrations/2021_05_29_144305_visiosoft.module.advs__create_tax_field.php diff --git a/addons/default/visiosoft/advs-module/migrations/2021_05_29_144305_visiosoft.module.advs__create_tax_field.php b/addons/default/visiosoft/advs-module/migrations/2021_05_29_144305_visiosoft.module.advs__create_tax_field.php new file mode 100644 index 000000000..98ca8fadd --- /dev/null +++ b/addons/default/visiosoft/advs-module/migrations/2021_05_29_144305_visiosoft.module.advs__create_tax_field.php @@ -0,0 +1,30 @@ +getDatabasePlatform()->registerDoctrineTypeMapping('point', 'string'); + } + + protected $stream = [ + 'slug' => 'advs', + ]; + + protected $fields = [ + 'tax' => [ + 'type' => 'anomaly.field_type.integer', + 'config' => [ + 'default_value' => null, + ], + ], + ]; + + protected $assignments = [ + 'tax' + ]; +} diff --git a/addons/default/visiosoft/advs-module/resources/config/settings/sections.php b/addons/default/visiosoft/advs-module/resources/config/settings/sections.php index 4ce7e632f..d8cabb3fa 100644 --- a/addons/default/visiosoft/advs-module/resources/config/settings/sections.php +++ b/addons/default/visiosoft/advs-module/resources/config/settings/sections.php @@ -53,6 +53,7 @@ return [ 'create_ad' => [ 'title' => 'visiosoft.module.advs::section.create_ad', 'fields' => [ + 'show_tax_field', 'detailed_product_options', 'steps_color', 'create_ad_button_color', diff --git a/addons/default/visiosoft/advs-module/resources/config/settings/settings.php b/addons/default/visiosoft/advs-module/resources/config/settings/settings.php index dd64714e4..a3a68a62c 100644 --- a/addons/default/visiosoft/advs-module/resources/config/settings/settings.php +++ b/addons/default/visiosoft/advs-module/resources/config/settings/settings.php @@ -180,7 +180,7 @@ return [ 'type' => 'anomaly.field_type.checkboxes', 'required' => true, 'config' => [ - 'mode' => 'tags', + 'mode' => 'tags', 'default_value' => function () { return [config('streams::currencies.default')]; }, @@ -403,34 +403,34 @@ return [ }, ], ], - 'favicon' => [ - 'type' => 'anomaly.field_type.file', - ], - 'ads_date_hidden' => [ - 'type' => 'anomaly.field_type.boolean', - 'config' => [ - 'default_value' => false, - ] - ], - 'hide_listing_header' => [ - 'type' => 'anomaly.field_type.boolean', - 'config' => [ - 'default_value' => false, - ] - ], - 'hide_filter_section' => [ - 'type' => 'anomaly.field_type.boolean', - 'config' => [ - 'default_value' => false, - ] - ], - 'hide_seller_info' => [ - 'type' => 'anomaly.field_type.boolean', - 'config' => [ - 'default_value' => false, - ] - ], - 'disable_sentry' => 'anomaly.field_type.boolean', + 'favicon' => [ + 'type' => 'anomaly.field_type.file', + ], + 'ads_date_hidden' => [ + 'type' => 'anomaly.field_type.boolean', + 'config' => [ + 'default_value' => false, + ] + ], + 'hide_listing_header' => [ + 'type' => 'anomaly.field_type.boolean', + 'config' => [ + 'default_value' => false, + ] + ], + 'hide_filter_section' => [ + 'type' => 'anomaly.field_type.boolean', + 'config' => [ + 'default_value' => false, + ] + ], + 'hide_seller_info' => [ + 'type' => 'anomaly.field_type.boolean', + 'config' => [ + 'default_value' => false, + ] + ], + 'disable_sentry' => 'anomaly.field_type.boolean', 'detailed_product_options' => [ 'type' => 'anomaly.field_type.boolean', 'config' => [ @@ -443,18 +443,18 @@ return [ 'default_value' => false, ] ], - 'show_price_to_members_only' => [ - 'type' => 'anomaly.field_type.boolean', - 'config' => [ - 'default_value' => false, - ] - ], - 'hide_ad_cat' => [ - 'type' => 'anomaly.field_type.boolean', - 'config' => [ - 'default_value' => false, - ] - ], + 'show_price_to_members_only' => [ + 'type' => 'anomaly.field_type.boolean', + 'config' => [ + 'default_value' => false, + ] + ], + 'hide_ad_cat' => [ + 'type' => 'anomaly.field_type.boolean', + 'config' => [ + 'default_value' => false, + ] + ], 'show_finish_and_publish_date' => [ 'type' => 'anomaly.field_type.boolean', @@ -462,4 +462,11 @@ return [ 'default_value' => false, ], ], + + 'show_tax_field' => [ + 'type' => 'anomaly.field_type.boolean', + 'config' => [ + 'default_value' => false, + ], + ], ]; 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 b5ab6b91e..559a3f737 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/en/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/en/field.php @@ -376,4 +376,7 @@ return [ 'publish_at' => [ 'name' => 'Publish Date' ], + 'tax' => [ + 'name' => 'Tax' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/en/setting.php b/addons/default/visiosoft/advs-module/resources/lang/en/setting.php index eea84435b..d79e86434 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/en/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/en/setting.php @@ -276,4 +276,8 @@ return [ 'name' => 'Show Finish Date And Publish Date For Create', 'instructions' => 'Displays the publish_at and finish_at fields on the ad creation page.' ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; 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 7f299bba1..609575cde 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/field.php @@ -374,4 +374,7 @@ return [ 'publish_at' => [ 'name' => 'Publish Date' ], + 'tax' => [ + 'name' => 'KDV Dahil Oranı' + ], ]; 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 94d4e460d..1feccdf46 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Harita Long Koordinati', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Sosyal Paylaşma Logosu', - 'warning' => '1200 x 630 çözünürlükte olmalıdır.', + 'warning' => '1200 x 630 çözünürlükte olmalıdır.', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Site Adresi', - 'warning' => 'Otomatik eklendi www. www. sitename.com', + 'warning' => 'Otomatik eklendi www. www. sitename.com', ], 'google_map_key' => [ 'name' => 'Google Harita Api Anahtarı', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Pazar Yeri', ], - 'price_area_hidden' => [ - 'name' => 'Fiyat Alanı Gizli', - ], + 'price_area_hidden' => [ + 'name' => 'Fiyat Alanı Gizli', + ], 'hide_price_filter' => [ 'name' => 'Fiyat Filtresini Gizle', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Oluşturulma Tarihini Gizle', 'instructions' => 'İlan detay sayfasında oluşturulan tarihi gizle', ], - 'hide_listing_header' => [ - 'name' => 'Liste Başlığını Gizle', - 'instructions' => 'Türleri sıralamak ve görüntülemek için gizleme', - ], - 'hide_filter_section' => [ - 'name' => 'Filtre Bölümünü Gizle', - 'instructions' => 'Liste sayfasında sol filtre alanına gizleniyor', - ], - 'hide_seller_info' => [ - 'name' => 'Satıcı Bilgilerini Gizle', - 'instructions' => 'İlan detay sayfasında satıcı bilgilerinin gizlenmesi', - ], + 'hide_listing_header' => [ + 'name' => 'Liste Başlığını Gizle', + 'instructions' => 'Türleri sıralamak ve görüntülemek için gizleme', + ], + 'hide_filter_section' => [ + 'name' => 'Filtre Bölümünü Gizle', + 'instructions' => 'Liste sayfasında sol filtre alanına gizleniyor', + ], + 'hide_seller_info' => [ + 'name' => 'Satıcı Bilgilerini Gizle', + 'instructions' => 'İlan detay sayfasında satıcı bilgilerinin gizlenmesi', + ], 'show_post_ad_agreement' => [ 'name' => 'İlan Sonrası Sözleşmesini Göster', 'instructions' => 'Reklam oluşturma sayfasında bir gizlilik politikası sözleşmesi görüntülemek istiyorsanız bunu açın', @@ -251,9 +251,9 @@ return [ 'name' => 'GET Kategorileri', 'instructions' => 'GET özelliğinin geçerli olacağı kategorileri temsil eder.' ], - 'disable_sentry' => [ - 'name' => 'Sentry\'yi devre dışı bırak' - ], + 'disable_sentry' => [ + 'name' => 'Sentry\'yi devre dışı bırak' + ], 'watermark' => [ 'name' => 'Filigran', 'instructions' => 'Filigran etkin mi?' @@ -265,11 +265,19 @@ return [ 'show_subcats_mobile' => [ 'name' => 'Alt kategorileri mobil görünümde göster', ], - 'show_price_to_members_only' => [ - 'name' => 'Sadece Üyelere Fiyat Göster', - ], - 'hide_ad_cat' => [ - 'name' => 'Kategorileri Gizle', - 'instructions' => 'İlan listelemede ilan kategorilerini gizle' - ] + 'show_price_to_members_only' => [ + 'name' => 'Sadece Üyelere Fiyat Göster', + ], + 'hide_ad_cat' => [ + 'name' => 'Kategorileri Gizle', + 'instructions' => 'İlan listelemede ilan kategorilerini gizle' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'İlan Oluşturma Sayfasında Publish_at ve Finish_at göster', + 'instructions' => 'İlan oluşturma sayfasında Publish_at ve Finish_at alanlarını gösterir.' + ], + 'show_tax_field' => [ + 'name' => 'Vergi Oranı Seçmeyi Göster', + 'instructions' => 'Bu seçenek etkinleştirildiğinde ilan oluşturma sayfasında vergi oranı belirleyebilirsiniz.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig b/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig index a82a57656..e40819b0e 100644 --- a/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig +++ b/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig @@ -126,10 +126,12 @@ {% set standardPriceValue = form.fields.standard_price.value|split('.') %} + placeholder="0" value="{{ standardPriceValue|first }}" + type="text"> {% if setting_value('visiosoft.field_type.decimal::showDecimal') %} {% endif %} @@ -143,6 +145,29 @@ + + {% if setting_value("visiosoft.module.advs::show_tax_field") %} +
+
+ + +
+
+ +
+
+
+
+ {% endif %} + {% if setting_value("visiosoft.module.advs::show_finish_and_publish_date") %}
diff --git a/addons/default/visiosoft/advs-module/src/Adv/Form/AdvFormBuilder.php b/addons/default/visiosoft/advs-module/src/Adv/Form/AdvFormBuilder.php index e5f836d7a..c9f6eb197 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/Form/AdvFormBuilder.php +++ b/addons/default/visiosoft/advs-module/src/Adv/Form/AdvFormBuilder.php @@ -57,6 +57,7 @@ class AdvFormBuilder extends FormBuilder 'cat9', 'cat10', 'currency', + 'tax', 'online_payment', 'stock', 'country' => [ From 6fbcdb1723a4da5950b0da3141215de32d0a9e56 Mon Sep 17 00:00:00 2001 From: vedatakd Date: Mon, 31 May 2021 01:42:41 +0300 Subject: [PATCH 04/31] comments --- ...021_05_29_144305_visiosoft.module.advs__create_tax_field.php | 2 +- .../default/visiosoft/advs-module/resources/lang/tr/field.php | 2 +- .../advs-module/resources/views/new-ad/new-create.twig | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/default/visiosoft/advs-module/migrations/2021_05_29_144305_visiosoft.module.advs__create_tax_field.php b/addons/default/visiosoft/advs-module/migrations/2021_05_29_144305_visiosoft.module.advs__create_tax_field.php index 98ca8fadd..1d1f282d5 100644 --- a/addons/default/visiosoft/advs-module/migrations/2021_05_29_144305_visiosoft.module.advs__create_tax_field.php +++ b/addons/default/visiosoft/advs-module/migrations/2021_05_29_144305_visiosoft.module.advs__create_tax_field.php @@ -19,7 +19,7 @@ class VisiosoftModuleAdvsCreateTaxField extends Migration 'tax' => [ 'type' => 'anomaly.field_type.integer', 'config' => [ - 'default_value' => null, + 'default_value' => 0, ], ], ]; 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 609575cde..3500a0ce0 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/field.php @@ -375,6 +375,6 @@ return [ 'name' => 'Publish Date' ], 'tax' => [ - 'name' => 'KDV Dahil Oranı' + 'name' => 'KDV Oranı' ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig b/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig index e40819b0e..becf09e32 100644 --- a/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig +++ b/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig @@ -157,7 +157,7 @@
+ placeholder="0" value="{{ standardPriceValue|first }}" + type="text"> {% if setting_value('visiosoft.field_type.decimal::showDecimal') %} {% endif %} @@ -194,14 +196,16 @@
{% endif %} {% else %} -
- -
- {{ form.fields.product_options_value.configSet('cat1', adv.cat1).input|raw }} + {% if is_options %} +
+ +
+ {{ form.fields.product_options_value.configSet('cat1', adv.cat1).input|raw }} +
-
+ {% endif %} {% endif %} {% endif %}
diff --git a/addons/default/visiosoft/advs-module/src/Adv/Command/IsOptionsByCategory.php b/addons/default/visiosoft/advs-module/src/Adv/Command/IsOptionsByCategory.php new file mode 100644 index 000000000..27de8eab1 --- /dev/null +++ b/addons/default/visiosoft/advs-module/src/Adv/Command/IsOptionsByCategory.php @@ -0,0 +1,25 @@ +cat_id = $cat_id; + } + + public function handle() + { + $option_repository = app(ProductoptionRepositoryInterface::class); + $value_repository = app(ProductoptionsValueRepositoryInterface::class); + + $options_id = $option_repository->getWithCategoryId($this->cat_id)->pluck('id')->all(); + + return count($value_repository->getWithOptionsId($options_id)); + } +} diff --git a/addons/default/visiosoft/advs-module/src/Http/Controller/AdvsController.php b/addons/default/visiosoft/advs-module/src/Http/Controller/AdvsController.php index 6a786d521..5cbe78018 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/AdvsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/AdvsController.php @@ -10,6 +10,7 @@ use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Cookie; use Visiosoft\AdvsModule\Adv\AdvModel; +use Visiosoft\AdvsModule\Adv\Command\IsOptionsByCategory; use Visiosoft\AdvsModule\Adv\Contract\AdvRepositoryInterface; use Visiosoft\AdvsModule\Adv\Event\ChangedStatusAd; use Visiosoft\AdvsModule\Adv\Event\CreatedAd; @@ -21,6 +22,8 @@ use Visiosoft\AdvsModule\Adv\Form\AdvFormBuilder; use Visiosoft\AdvsModule\Option\Contract\OptionRepositoryInterface; use Visiosoft\AdvsModule\OptionConfiguration\Contract\OptionConfigurationRepositoryInterface; use Visiosoft\AdvsModule\OptionConfiguration\OptionConfigurationModel; +use Visiosoft\AdvsModule\Productoption\Contract\ProductoptionRepositoryInterface; +use Visiosoft\AdvsModule\ProductoptionsValue\Contract\ProductoptionsValueRepositoryInterface; use Visiosoft\CatsModule\Category\Contract\CategoryRepositoryInterface; use Visiosoft\LocationModule\City\CityModel; use Visiosoft\LocationModule\City\CityRepository; @@ -992,9 +995,14 @@ class AdvsController extends PublicController $hidePrice = in_array($adv['cat1'], $hidePriceCats); } + /* Check Options + * Added to query if there are product options. + */ + $is_options = dispatch_now(new IsOptionsByCategory($adv['cat1'])); + return $this->view->make( 'visiosoft.module.advs::new-ad/new-create', - compact('id', 'cats_d', 'cats', 'adv', 'custom_fields', 'options', 'hidePrice') + compact('id', 'cats_d', 'cats', 'adv', 'custom_fields', 'options', 'hidePrice','is_options') ); } From ef3de70c3f6fff374b7d0d4462a7e9664ad92d93 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 2 Jun 2021 17:12:01 +0300 Subject: [PATCH 06/31] New Crowdin updates (#1077) * New translations addon.php (Hebrew) * New translations field.php (Catalan) * New translations addon.php (Afrikaans) * New translations addon.php (Romanian) * New translations field.php (Romanian) --- .../advs-module/resources/lang/af/addon.php | 1 + .../advs-module/resources/lang/af/field.php | 14 +++- .../advs-module/resources/lang/af/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/ar/addon.php | 1 + .../advs-module/resources/lang/ar/field.php | 10 +++ .../advs-module/resources/lang/ar/setting.php | 64 +++++++++++-------- .../advs-module/resources/lang/az/addon.php | 1 + .../advs-module/resources/lang/az/field.php | 14 +++- .../advs-module/resources/lang/az/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/bg/addon.php | 1 + .../advs-module/resources/lang/bg/field.php | 14 +++- .../advs-module/resources/lang/bg/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/bn/addon.php | 1 + .../advs-module/resources/lang/bn/field.php | 14 +++- .../advs-module/resources/lang/bn/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/ca/addon.php | 1 + .../advs-module/resources/lang/ca/field.php | 14 +++- .../advs-module/resources/lang/ca/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/cs/addon.php | 1 + .../advs-module/resources/lang/cs/field.php | 14 +++- .../advs-module/resources/lang/cs/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/da/addon.php | 1 + .../advs-module/resources/lang/da/field.php | 14 +++- .../advs-module/resources/lang/da/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/de/addon.php | 1 + .../advs-module/resources/lang/de/field.php | 10 +++ .../advs-module/resources/lang/de/setting.php | 64 +++++++++++-------- .../advs-module/resources/lang/el/addon.php | 1 + .../advs-module/resources/lang/el/field.php | 14 +++- .../advs-module/resources/lang/el/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/es/addon.php | 1 + .../advs-module/resources/lang/es/field.php | 14 +++- .../advs-module/resources/lang/es/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/fa/addon.php | 1 + .../advs-module/resources/lang/fa/field.php | 14 +++- .../advs-module/resources/lang/fa/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/fi/addon.php | 1 + .../advs-module/resources/lang/fi/field.php | 14 +++- .../advs-module/resources/lang/fi/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/fr/addon.php | 1 + .../advs-module/resources/lang/fr/field.php | 10 +++ .../advs-module/resources/lang/fr/setting.php | 64 +++++++++++-------- .../advs-module/resources/lang/he/addon.php | 1 + .../advs-module/resources/lang/he/field.php | 14 +++- .../advs-module/resources/lang/he/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/hi/addon.php | 1 + .../advs-module/resources/lang/hi/field.php | 14 +++- .../advs-module/resources/lang/hi/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/hu/addon.php | 1 + .../advs-module/resources/lang/hu/field.php | 10 +++ .../advs-module/resources/lang/hu/setting.php | 64 +++++++++++-------- .../advs-module/resources/lang/id/addon.php | 1 + .../advs-module/resources/lang/id/button.php | 10 +-- .../advs-module/resources/lang/id/field.php | 18 +++++- .../advs-module/resources/lang/id/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/it/addon.php | 1 + .../advs-module/resources/lang/it/field.php | 14 +++- .../advs-module/resources/lang/it/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/ja/addon.php | 1 + .../advs-module/resources/lang/ja/field.php | 14 +++- .../advs-module/resources/lang/ja/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/ko/addon.php | 1 + .../advs-module/resources/lang/ko/field.php | 14 +++- .../advs-module/resources/lang/ko/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/ku/addon.php | 1 + .../advs-module/resources/lang/ku/field.php | 14 +++- .../advs-module/resources/lang/ku/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/nl/addon.php | 1 + .../advs-module/resources/lang/nl/field.php | 14 +++- .../advs-module/resources/lang/nl/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/no/addon.php | 1 + .../advs-module/resources/lang/no/field.php | 14 +++- .../advs-module/resources/lang/no/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/pl/addon.php | 1 + .../advs-module/resources/lang/pl/field.php | 14 +++- .../advs-module/resources/lang/pl/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/pt/addon.php | 1 + .../advs-module/resources/lang/pt/field.php | 14 +++- .../advs-module/resources/lang/pt/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/ro/addon.php | 1 + .../advs-module/resources/lang/ro/field.php | 14 +++- .../advs-module/resources/lang/ro/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/ru/addon.php | 1 + .../advs-module/resources/lang/ru/field.php | 14 +++- .../advs-module/resources/lang/ru/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/sq/addon.php | 1 + .../advs-module/resources/lang/sq/field.php | 14 +++- .../advs-module/resources/lang/sq/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/sr/addon.php | 1 + .../advs-module/resources/lang/sr/field.php | 12 ++++ .../resources/lang/sr/permission.php | 6 +- .../advs-module/resources/lang/sr/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/sv/addon.php | 1 + .../advs-module/resources/lang/sv/field.php | 14 +++- .../advs-module/resources/lang/sv/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/tr/addon.php | 1 + .../advs-module/resources/lang/tr/field.php | 10 ++- .../advs-module/resources/lang/tr/setting.php | 10 +-- .../advs-module/resources/lang/uk/addon.php | 1 + .../advs-module/resources/lang/uk/field.php | 14 +++- .../advs-module/resources/lang/uk/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/ur/addon.php | 1 + .../advs-module/resources/lang/ur/field.php | 14 +++- .../advs-module/resources/lang/ur/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/vi/addon.php | 1 + .../advs-module/resources/lang/vi/field.php | 14 +++- .../advs-module/resources/lang/vi/setting.php | 59 ++++++++++------- .../advs-module/resources/lang/zh/addon.php | 1 + .../advs-module/resources/lang/zh/field.php | 14 +++- .../advs-module/resources/lang/zh/setting.php | 59 ++++++++++------- .../cats-module/resources/lang/af/addon.php | 3 +- .../cats-module/resources/lang/af/field.php | 5 ++ .../cats-module/resources/lang/ar/addon.php | 3 +- .../cats-module/resources/lang/ar/field.php | 5 ++ .../cats-module/resources/lang/az/addon.php | 3 +- .../cats-module/resources/lang/az/field.php | 5 ++ .../cats-module/resources/lang/bg/addon.php | 3 +- .../cats-module/resources/lang/bg/field.php | 5 ++ .../cats-module/resources/lang/bn/addon.php | 3 +- .../cats-module/resources/lang/bn/field.php | 5 ++ .../cats-module/resources/lang/ca/addon.php | 3 +- .../cats-module/resources/lang/ca/field.php | 5 ++ .../cats-module/resources/lang/cs/addon.php | 3 +- .../cats-module/resources/lang/cs/field.php | 5 ++ .../cats-module/resources/lang/da/addon.php | 3 +- .../cats-module/resources/lang/da/field.php | 5 ++ .../cats-module/resources/lang/de/addon.php | 3 +- .../cats-module/resources/lang/de/field.php | 5 ++ .../cats-module/resources/lang/el/addon.php | 3 +- .../cats-module/resources/lang/el/field.php | 5 ++ .../cats-module/resources/lang/es/addon.php | 3 +- .../cats-module/resources/lang/es/field.php | 5 ++ .../cats-module/resources/lang/fa/addon.php | 3 +- .../cats-module/resources/lang/fa/field.php | 5 ++ .../cats-module/resources/lang/fi/addon.php | 3 +- .../cats-module/resources/lang/fi/field.php | 5 ++ .../cats-module/resources/lang/fr/addon.php | 3 +- .../cats-module/resources/lang/fr/field.php | 5 ++ .../cats-module/resources/lang/he/addon.php | 3 +- .../cats-module/resources/lang/he/field.php | 5 ++ .../cats-module/resources/lang/hi/addon.php | 3 +- .../cats-module/resources/lang/hi/field.php | 5 ++ .../cats-module/resources/lang/hu/addon.php | 3 +- .../cats-module/resources/lang/hu/field.php | 5 ++ .../cats-module/resources/lang/id/addon.php | 3 +- .../cats-module/resources/lang/id/field.php | 5 ++ .../cats-module/resources/lang/it/addon.php | 3 +- .../cats-module/resources/lang/it/field.php | 5 ++ .../cats-module/resources/lang/ja/addon.php | 3 +- .../cats-module/resources/lang/ja/field.php | 5 ++ .../cats-module/resources/lang/ko/addon.php | 3 +- .../cats-module/resources/lang/ko/field.php | 5 ++ .../cats-module/resources/lang/ku/addon.php | 3 +- .../cats-module/resources/lang/ku/field.php | 5 ++ .../cats-module/resources/lang/nl/addon.php | 3 +- .../cats-module/resources/lang/nl/field.php | 5 ++ .../cats-module/resources/lang/no/addon.php | 3 +- .../cats-module/resources/lang/no/field.php | 5 ++ .../cats-module/resources/lang/pl/addon.php | 3 +- .../cats-module/resources/lang/pl/field.php | 5 ++ .../cats-module/resources/lang/pt/addon.php | 3 +- .../cats-module/resources/lang/pt/field.php | 5 ++ .../cats-module/resources/lang/ro/addon.php | 3 +- .../cats-module/resources/lang/ro/field.php | 5 ++ .../cats-module/resources/lang/ru/addon.php | 3 +- .../cats-module/resources/lang/ru/field.php | 5 ++ .../cats-module/resources/lang/sq/addon.php | 3 +- .../cats-module/resources/lang/sq/field.php | 5 ++ .../cats-module/resources/lang/sr/addon.php | 3 +- .../cats-module/resources/lang/sr/field.php | 5 ++ .../cats-module/resources/lang/sv/addon.php | 3 +- .../cats-module/resources/lang/sv/field.php | 5 ++ .../cats-module/resources/lang/tr/addon.php | 3 +- .../cats-module/resources/lang/tr/field.php | 5 ++ .../cats-module/resources/lang/uk/addon.php | 3 +- .../cats-module/resources/lang/uk/field.php | 5 ++ .../cats-module/resources/lang/ur/addon.php | 3 +- .../cats-module/resources/lang/ur/field.php | 5 ++ .../cats-module/resources/lang/vi/addon.php | 3 +- .../cats-module/resources/lang/vi/field.php | 5 ++ .../cats-module/resources/lang/zh/addon.php | 3 +- .../cats-module/resources/lang/zh/field.php | 5 ++ .../resources/lang/af/addon.php | 1 + .../resources/lang/ar/addon.php | 1 + .../resources/lang/az/addon.php | 1 + .../resources/lang/bg/addon.php | 1 + .../resources/lang/bn/addon.php | 1 + .../resources/lang/ca/addon.php | 1 + .../resources/lang/cs/addon.php | 1 + .../resources/lang/da/addon.php | 1 + .../resources/lang/de/addon.php | 1 + .../resources/lang/el/addon.php | 1 + .../resources/lang/es/addon.php | 1 + .../resources/lang/fa/addon.php | 1 + .../resources/lang/fi/addon.php | 1 + .../resources/lang/fr/addon.php | 1 + .../resources/lang/he/addon.php | 1 + .../resources/lang/hi/addon.php | 1 + .../resources/lang/hu/addon.php | 1 + .../resources/lang/id/addon.php | 1 + .../resources/lang/it/addon.php | 1 + .../resources/lang/ja/addon.php | 1 + .../resources/lang/ko/addon.php | 1 + .../resources/lang/ku/addon.php | 1 + .../resources/lang/nl/addon.php | 1 + .../resources/lang/no/addon.php | 1 + .../resources/lang/pl/addon.php | 1 + .../resources/lang/pt/addon.php | 1 + .../resources/lang/ro/addon.php | 1 + .../resources/lang/ru/addon.php | 1 + .../resources/lang/sq/addon.php | 1 + .../resources/lang/sr/addon.php | 1 + .../resources/lang/sv/addon.php | 1 + .../resources/lang/tr/addon.php | 1 + .../resources/lang/uk/addon.php | 1 + .../resources/lang/ur/addon.php | 1 + .../resources/lang/vi/addon.php | 1 + .../resources/lang/zh/addon.php | 1 + .../resources/lang/af/addon.php | 7 ++ .../resources/lang/af/config.php | 29 +++++++++ .../resources/lang/af/input.php | 6 ++ .../resources/lang/af/message.php | 5 ++ .../resources/lang/az/addon.php | 7 ++ .../resources/lang/az/config.php | 29 +++++++++ .../resources/lang/az/input.php | 6 ++ .../resources/lang/az/message.php | 5 ++ .../resources/lang/bg/addon.php | 7 ++ .../resources/lang/bg/config.php | 29 +++++++++ .../resources/lang/bg/input.php | 6 ++ .../resources/lang/bg/message.php | 5 ++ .../resources/lang/bn/addon.php | 7 ++ .../resources/lang/bn/config.php | 29 +++++++++ .../resources/lang/bn/input.php | 6 ++ .../resources/lang/bn/message.php | 5 ++ .../resources/lang/ca/addon.php | 7 ++ .../resources/lang/ca/config.php | 29 +++++++++ .../resources/lang/ca/input.php | 6 ++ .../resources/lang/ca/message.php | 5 ++ .../resources/lang/cs/addon.php | 7 ++ .../resources/lang/cs/config.php | 29 +++++++++ .../resources/lang/cs/input.php | 6 ++ .../resources/lang/cs/message.php | 5 ++ .../resources/lang/da/addon.php | 7 ++ .../resources/lang/da/config.php | 29 +++++++++ .../resources/lang/da/input.php | 6 ++ .../resources/lang/da/message.php | 5 ++ .../resources/lang/el/addon.php | 7 ++ .../resources/lang/el/config.php | 29 +++++++++ .../resources/lang/el/input.php | 6 ++ .../resources/lang/el/message.php | 5 ++ .../resources/lang/es/addon.php | 7 ++ .../resources/lang/es/config.php | 29 +++++++++ .../resources/lang/es/input.php | 6 ++ .../resources/lang/es/message.php | 5 ++ .../resources/lang/fa/addon.php | 7 ++ .../resources/lang/fa/config.php | 29 +++++++++ .../resources/lang/fa/input.php | 6 ++ .../resources/lang/fa/message.php | 5 ++ .../resources/lang/fi/addon.php | 7 ++ .../resources/lang/fi/config.php | 29 +++++++++ .../resources/lang/fi/input.php | 6 ++ .../resources/lang/fi/message.php | 5 ++ .../resources/lang/he/addon.php | 7 ++ .../resources/lang/he/config.php | 29 +++++++++ .../resources/lang/he/input.php | 6 ++ .../resources/lang/he/message.php | 5 ++ .../resources/lang/hi/addon.php | 7 ++ .../resources/lang/hi/config.php | 29 +++++++++ .../resources/lang/hi/input.php | 6 ++ .../resources/lang/hi/message.php | 5 ++ .../resources/lang/id/addon.php | 7 ++ .../resources/lang/id/config.php | 29 +++++++++ .../resources/lang/id/input.php | 6 ++ .../resources/lang/id/message.php | 5 ++ .../resources/lang/it/addon.php | 7 ++ .../resources/lang/it/config.php | 29 +++++++++ .../resources/lang/it/input.php | 6 ++ .../resources/lang/it/message.php | 5 ++ .../resources/lang/ja/addon.php | 7 ++ .../resources/lang/ja/config.php | 29 +++++++++ .../resources/lang/ja/input.php | 6 ++ .../resources/lang/ja/message.php | 5 ++ .../resources/lang/ko/addon.php | 7 ++ .../resources/lang/ko/config.php | 29 +++++++++ .../resources/lang/ko/input.php | 6 ++ .../resources/lang/ko/message.php | 5 ++ .../resources/lang/ku/addon.php | 7 ++ .../resources/lang/ku/config.php | 29 +++++++++ .../resources/lang/ku/input.php | 7 ++ .../resources/lang/ku/message.php | 5 ++ .../resources/lang/nl/addon.php | 7 ++ .../resources/lang/nl/config.php | 29 +++++++++ .../resources/lang/nl/input.php | 6 ++ .../resources/lang/nl/message.php | 5 ++ .../resources/lang/no/addon.php | 7 ++ .../resources/lang/no/config.php | 29 +++++++++ .../resources/lang/no/input.php | 6 ++ .../resources/lang/no/message.php | 5 ++ .../resources/lang/pl/addon.php | 7 ++ .../resources/lang/pl/config.php | 29 +++++++++ .../resources/lang/pl/input.php | 6 ++ .../resources/lang/pl/message.php | 5 ++ .../resources/lang/pt/addon.php | 7 ++ .../resources/lang/pt/config.php | 29 +++++++++ .../resources/lang/pt/input.php | 6 ++ .../resources/lang/pt/message.php | 5 ++ .../resources/lang/ro/addon.php | 7 ++ .../resources/lang/ro/config.php | 29 +++++++++ .../resources/lang/ro/input.php | 6 ++ .../resources/lang/ro/message.php | 5 ++ .../resources/lang/ru/addon.php | 7 ++ .../resources/lang/ru/config.php | 29 +++++++++ .../resources/lang/ru/input.php | 6 ++ .../resources/lang/ru/message.php | 5 ++ .../resources/lang/sq/addon.php | 7 ++ .../resources/lang/sq/config.php | 29 +++++++++ .../resources/lang/sq/input.php | 6 ++ .../resources/lang/sq/message.php | 5 ++ .../resources/lang/sr/addon.php | 7 ++ .../resources/lang/sr/config.php | 29 +++++++++ .../resources/lang/sr/input.php | 6 ++ .../resources/lang/sr/message.php | 5 ++ .../resources/lang/sv/addon.php | 7 ++ .../resources/lang/sv/config.php | 29 +++++++++ .../resources/lang/sv/input.php | 6 ++ .../resources/lang/sv/message.php | 5 ++ .../resources/lang/uk/addon.php | 7 ++ .../resources/lang/uk/config.php | 29 +++++++++ .../resources/lang/uk/input.php | 6 ++ .../resources/lang/uk/message.php | 5 ++ .../resources/lang/ur/addon.php | 7 ++ .../resources/lang/ur/config.php | 29 +++++++++ .../resources/lang/ur/input.php | 6 ++ .../resources/lang/ur/message.php | 5 ++ .../resources/lang/vi/addon.php | 7 ++ .../resources/lang/vi/config.php | 29 +++++++++ .../resources/lang/vi/input.php | 6 ++ .../resources/lang/vi/message.php | 5 ++ .../resources/lang/zh/addon.php | 7 ++ .../resources/lang/zh/config.php | 29 +++++++++ .../resources/lang/zh/input.php | 6 ++ .../resources/lang/zh/message.php | 5 ++ .../resources/lang/af/setting.php | 7 +- .../resources/lang/ar/setting.php | 7 +- .../resources/lang/az/setting.php | 7 +- .../resources/lang/bg/setting.php | 7 +- .../resources/lang/bn/setting.php | 7 +- .../resources/lang/ca/setting.php | 7 +- .../resources/lang/cs/setting.php | 7 +- .../resources/lang/da/setting.php | 7 +- .../resources/lang/de/setting.php | 7 +- .../resources/lang/el/setting.php | 7 +- .../resources/lang/es/setting.php | 7 +- .../resources/lang/fa/setting.php | 7 +- .../resources/lang/fi/setting.php | 7 +- .../resources/lang/fr/setting.php | 7 +- .../resources/lang/he/setting.php | 7 +- .../resources/lang/hi/setting.php | 7 +- .../resources/lang/hu/setting.php | 7 +- .../resources/lang/id/setting.php | 7 +- .../resources/lang/it/setting.php | 7 +- .../resources/lang/ja/setting.php | 7 +- .../resources/lang/ko/setting.php | 7 +- .../resources/lang/ku/setting.php | 7 +- .../resources/lang/nl/setting.php | 7 +- .../resources/lang/no/setting.php | 7 +- .../resources/lang/pl/setting.php | 7 +- .../resources/lang/pt/setting.php | 7 +- .../resources/lang/ro/setting.php | 7 +- .../resources/lang/ru/setting.php | 7 +- .../resources/lang/sq/setting.php | 7 +- .../resources/lang/sr/setting.php | 7 +- .../resources/lang/sv/setting.php | 7 +- .../resources/lang/tr/setting.php | 1 - .../resources/lang/uk/setting.php | 7 +- .../resources/lang/ur/setting.php | 7 +- .../resources/lang/vi/setting.php | 7 +- .../resources/lang/zh/setting.php | 7 +- 378 files changed, 3749 insertions(+), 912 deletions(-) create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/af/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/af/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/af/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/af/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/az/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/az/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/az/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/az/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/bg/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/bg/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/bg/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/bg/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/bn/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/bn/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/bn/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/bn/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ca/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ca/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ca/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ca/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/cs/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/cs/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/cs/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/cs/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/da/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/da/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/da/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/da/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/el/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/el/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/el/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/el/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/es/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/es/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/es/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/es/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/fa/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/fa/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/fa/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/fa/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/fi/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/fi/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/fi/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/fi/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/he/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/he/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/he/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/he/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/hi/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/hi/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/hi/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/hi/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/id/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/id/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/id/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/id/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/it/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/it/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/it/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/it/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ja/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ja/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ja/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ja/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ko/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ko/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ko/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ko/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ku/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ku/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ku/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ku/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/nl/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/nl/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/nl/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/nl/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/no/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/no/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/no/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/no/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/pl/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/pl/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/pl/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/pl/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/pt/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/pt/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/pt/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/pt/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ro/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ro/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ro/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ro/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ru/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ru/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ru/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ru/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/sq/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/sq/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/sq/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/sq/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/sr/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/sr/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/sr/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/sr/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/sv/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/sv/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/sv/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/sv/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/uk/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/uk/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/uk/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/uk/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ur/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ur/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ur/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/ur/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/vi/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/vi/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/vi/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/vi/message.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/zh/addon.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/zh/config.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/zh/input.php create mode 100644 addons/default/visiosoft/multiple-field_type/resources/lang/zh/message.php diff --git a/addons/default/visiosoft/advs-module/resources/lang/af/addon.php b/addons/default/visiosoft/advs-module/resources/lang/af/addon.php index 15145a6f1..ddd9ae6c4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/af/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/af/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Advertensies', 'name' => 'Advertensie-module', 'description' => 'Advertensie-module', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/af/field.php b/addons/default/visiosoft/advs-module/resources/lang/af/field.php index 0c2433593..6661d3f01 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/af/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/af/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Advertensie-ligging', 'owner' => 'Eienaar', 'default_owner_instruction' => 'Die eienaar is die huidige gebruiker as geen gebruiker gekies word nie', + 'create_page_subtitle' => 'Skep die advertensie foutloos deur gedetailleerde inligting oor u advertensie in te voer.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Advertensietitel', @@ -343,7 +347,8 @@ return [ 'view' => 'Beskou', 'ads_with_map' => 'Advertensies Met Kaart', 'advanced_sorting' => 'Gevorderde sortering', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filtreer volgens woord', + 'filter_by' => 'Filtreer volgens: naam', 'free' => 'Vry', 'ad_date' => 'Advertensiedatum', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Ou prys' ], + 'save_search' => 'Stoor soektog', + 'publish_at' => [ + 'name' => 'Publiseer datum' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/af/setting.php b/addons/default/visiosoft/advs-module/resources/lang/af/setting.php index 7e52f419a..e21f3eb0b 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/af/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/af/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Kaart lang koördinaat', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Sosiale Deel-logo', - 'warning' => 'Dit moet \'n resolusie van 1200 x 630 hê. ', + 'warning' => 'Dit moet \'n resolusie van 1200 x 630 hê. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Werfadres', - 'warning' => 'Auto bygevoeg www. www.sitename.com ', + 'warning' => 'Auto bygevoeg www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Google Map Api-sleutel', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Markplein', ], - 'price_area_hidden' => [ - 'name' => 'Prysarea versteek', - ], + 'price_area_hidden' => [ + 'name' => 'Prysarea versteek', + ], 'hide_price_filter' => [ 'name' => 'Versteek prysfilter', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Versteek geskep datum', 'instructions' => 'Versteek die geskepde datum in die besonderhede-bladsy', ], - 'hide_listing_header' => [ - 'name' => 'Versteek koplys van lys', - 'instructions' => 'Versteek na bestelling en besigtigingstipes', - ], - 'hide_filter_section' => [ - 'name' => 'Versteek die filterafdeling', - 'instructions' => 'Versteek na die linker filterarea op die lys bladsy', - ], - 'hide_seller_info' => [ - 'name' => 'Versteek verkoperinligting', - 'instructions' => 'Versteek inligting aan die verkoper op die besonderhede bladsy', - ], + 'hide_listing_header' => [ + 'name' => 'Versteek koplys van lys', + 'instructions' => 'Versteek na bestelling en besigtigingstipes', + ], + 'hide_filter_section' => [ + 'name' => 'Versteek die filterafdeling', + 'instructions' => 'Versteek na die linker filterarea op die lys bladsy', + ], + 'hide_seller_info' => [ + 'name' => 'Versteek verkoperinligting', + 'instructions' => 'Versteek inligting aan die verkoper op die besonderhede bladsy', + ], 'show_post_ad_agreement' => [ 'name' => 'Toon advertensie-ooreenkoms', 'instructions' => 'Skakel dit aan as u \'n privaatheidsbeleidsooreenkoms op die advertensie-bladsy wil vertoon', @@ -251,9 +251,9 @@ return [ 'name' => 'KRY Kategorieë', 'instructions' => 'Dit verteenwoordig die kategorieë waarin die GET-eiendom geldig sal wees.' ], - 'disable_sentry' => [ - 'name' => 'Skakel wagwag uit' - ], + 'disable_sentry' => [ + 'name' => 'Skakel wagwag uit' + ], 'watermark' => [ 'name' => 'Watermerk', 'instructions' => 'Is watermerk aktief?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Wys subkategorieë op mobiele aansig', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Wys prys slegs vir lede', + ], + 'hide_ad_cat' => [ + 'name' => 'Versteek kategorieë', + 'instructions' => 'Versteek kategorieë in advertensielys' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Toon einddatum en publiseer datum vir skep', + 'instructions' => 'Vertoon die velde publish_at en finish_at op die bladsy vir die skep van advertensies.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/addon.php b/addons/default/visiosoft/advs-module/resources/lang/ar/addon.php index 7d583e4b6..3a1da7224 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'إعلانات', 'name' => 'وحدة الإعلانات', 'description' => 'وحدة الإعلانات', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 7b7fa0237..31846cd0a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/field.php @@ -337,6 +337,9 @@ return [ 'owner' => 'صاحب', 'default_owner_instruction' => 'سيتحول المالك إلى المستخدم الحالي افتراضيًا إذا لم يتم تحديد أي مستخدم', 'create_page_subtitle' => 'قم بإنشاء الإعلان بشكل لا تشوبه شائبة عن طريق إدخال معلومات مفصلة حول إعلانك.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'عنوان الاعلان', @@ -345,6 +348,7 @@ return [ 'ads_with_map' => 'الإعلانات مع الخريطة', 'advanced_sorting' => 'الفرز المتقدم', 'filter_by_word' => 'تصفية بالكلمة', + 'filter_by' => 'التصفية حسب: الاسم', 'free' => 'مجانا', 'ad_date' => 'تاريخ الإعلان', @@ -369,4 +373,10 @@ return [ 'name' => 'سعر قديم' ], 'save_search' => 'حفظ البحث', + 'publish_at' => [ + 'name' => 'تاريخ النشر' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 dd3b0dc19..71ebdd7bc 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'فافيكون', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'خريطة تنسيق طويل', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'شعار المشاركة الاجتماعية', - 'warning' => 'يجب أن يكون بدقة 1200 × 630.', + 'warning' => 'يجب أن يكون بدقة 1200 × 630.', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'عنوان الموقع', - 'warning' => 'تمت إضافة www. شبكة الاتصالات العالمية. sitename.com', + 'warning' => 'تمت إضافة www. شبكة الاتصالات العالمية. sitename.com', ], 'google_map_key' => [ 'name' => 'خريطة جوجل ابي كي', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'المتجر', ], - 'price_area_hidden' => [ - 'name' => 'منطقة السعر مخفية', - ], + 'price_area_hidden' => [ + 'name' => 'منطقة السعر مخفية', + ], 'hide_price_filter' => [ 'name' => 'إخفاء عامل تصفية السعر', ], @@ -215,18 +215,18 @@ return [ 'name' => 'إخفاء تاريخ الإنشاء', 'instructions' => 'إخفاء تاريخ الإنشاء في صفحة تفاصيل الإعلانات', ], - 'hide_listing_header' => [ - 'name' => 'إخفاء رأس القائمة', - 'instructions' => 'الاختباء لطلب وعرض الأنواع', - ], - 'hide_filter_section' => [ - 'name' => 'إخفاء قسم التصفية', - 'instructions' => 'يختبئ إلى اليسار منطقة التصفية في قائمة الصفحة', - ], - 'hide_seller_info' => [ - 'name' => 'إخفاء معلومات البائع', - 'instructions' => 'إخفاء معلومات البائع في صفحة تفاصيل الإعلانات', - ], + 'hide_listing_header' => [ + 'name' => 'إخفاء رأس القائمة', + 'instructions' => 'الاختباء لطلب وعرض الأنواع', + ], + 'hide_filter_section' => [ + 'name' => 'إخفاء قسم التصفية', + 'instructions' => 'يختبئ إلى اليسار منطقة التصفية في قائمة الصفحة', + ], + 'hide_seller_info' => [ + 'name' => 'إخفاء معلومات البائع', + 'instructions' => 'إخفاء معلومات البائع في صفحة تفاصيل الإعلانات', + ], 'show_post_ad_agreement' => [ 'name' => 'إظهار اتفاقية ما بعد الإعلان', 'instructions' => 'قم بتشغيل هذا إذا كنت تريد عرض اتفاقية سياسة الخصوصية على صفحة إنشاء الإعلان', @@ -251,9 +251,9 @@ return [ 'name' => 'فئات GET', 'instructions' => 'إنه يمثل الفئات التي ستكون فيها خاصية GET صالحة.' ], - 'disable_sentry' => [ - 'name' => 'تعطيل الحارس' - ], + 'disable_sentry' => [ + 'name' => 'تعطيل الحارس' + ], 'watermark' => [ 'name' => 'علامة مائية', 'instructions' => 'هل العلامة المائية نشطة؟' @@ -265,11 +265,19 @@ return [ 'show_subcats_mobile' => [ 'name' => 'إظهار الفئات الفرعية على طريقة عرض الجوال', ], - 'show_price_to_members_only' => [ - 'name' => 'عرض السعر للأعضاء فقط', - ], - 'hide_ad_cat' => [ - 'name' => 'إخفاء الفئات', - 'instructions' => 'إخفاء الفئات في قائمة الإعلانات' - ] + 'show_price_to_members_only' => [ + 'name' => 'عرض السعر للأعضاء فقط', + ], + 'hide_ad_cat' => [ + 'name' => 'إخفاء الفئات', + 'instructions' => 'إخفاء الفئات في قائمة الإعلانات' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'إظهار تاريخ الانتهاء وتاريخ النشر للإنشاء', + 'instructions' => 'يعرض حقلي publish_at و finish_at في صفحة إنشاء الإعلان.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/addon.php b/addons/default/visiosoft/advs-module/resources/lang/az/addon.php index 7a763167c..98b455067 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Elanlar', 'name' => 'Elanlar Modulu', 'description' => 'Elan Modulu', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 53cfaf6c0..a6f089399 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/field.php @@ -337,6 +337,10 @@ return [ 'ad_location' => 'Ünvan əlavə et', 'owner' => 'Sahib', 'default_owner_instruction' => 'Heç bir istifadəçi seçilmədiyi təqdirdə sahib cari istifadəçiyə borcludur', + 'create_page_subtitle' => 'Reklamınız haqqında ətraflı məlumat daxil edərək reklamı qüsursuz bir şəkildə yaradın.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Reklam adı', @@ -344,7 +348,8 @@ return [ 'view' => 'Bax', 'ads_with_map' => 'Xəritə ilə elanlar', 'advanced_sorting' => 'Qabaqcıl çeşidləmə', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Sözə görə süzün', + 'filter_by' => 'Adı ilə süzün', 'free' => 'Pulsuz', 'ad_date' => 'Elan Tarixi', @@ -368,4 +373,11 @@ return [ 'old_price' => [ 'name' => 'Köhnə Qiymət' ], + 'save_search' => 'Axtarışı saxla', + 'publish_at' => [ + 'name' => 'Tarixi dərc edin' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 18c4453e1..bb54f1ef4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Xəritə Uzun Koordinat', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Sosial paylaşma loqosu', - 'warning' => '1200 x 630 qətnamə ilə olmalıdır. ', + 'warning' => '1200 x 630 qətnamə ilə olmalıdır. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Sayt ünvanı', - 'warning' => 'Avtomatik olaraq www. www.sitename.com ', + 'warning' => 'Avtomatik olaraq www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Google Map Api Açarı', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Bazar yeri', ], - 'price_area_hidden' => [ - 'name' => 'Qiymət sahəsi gizlidir', - ], + 'price_area_hidden' => [ + 'name' => 'Qiymət sahəsi gizlidir', + ], 'hide_price_filter' => [ 'name' => 'Qiymət filtrini gizlət', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Yaranmış Tarixi Gizlət', 'instructions' => 'Reklamların ətraflı səhifəsində yaradılan tarixi gizlədin', ], - 'hide_listing_header' => [ - 'name' => 'Listing Header gizlədin', - 'instructions' => 'Sifariş və görünüş növlərinə gizlənmək', - ], - 'hide_filter_section' => [ - 'name' => 'Filtr Bölməsini gizlədin', - 'instructions' => 'Siyahı səhifəsində sol filtr sahəsinə gizlənir', - ], - 'hide_seller_info' => [ - 'name' => 'Satıcı haqqında məlumatları gizlədin', - 'instructions' => 'Reklam detalları səhifəsində satıcı məlumatlarına gizlənmək', - ], + 'hide_listing_header' => [ + 'name' => 'Listing Header gizlədin', + 'instructions' => 'Sifariş və görünüş növlərinə gizlənmək', + ], + 'hide_filter_section' => [ + 'name' => 'Filtr Bölməsini gizlədin', + 'instructions' => 'Siyahı səhifəsində sol filtr sahəsinə gizlənir', + ], + 'hide_seller_info' => [ + 'name' => 'Satıcı haqqında məlumatları gizlədin', + 'instructions' => 'Reklam detalları səhifəsində satıcı məlumatlarına gizlənmək', + ], 'show_post_ad_agreement' => [ 'name' => 'Post Elan Müqaviləsini Göstərin', 'instructions' => 'Reklam yaratma səhifəsində bir məxfilik siyasəti müqaviləsini göstərmək istəyirsinizsə, bunu aktivləşdirin', @@ -251,9 +251,9 @@ return [ 'name' => 'Kateqoriyalar alın', 'instructions' => 'GET mülkiyyətinin etibarlı olacağı kateqoriyanı təmsil edir.' ], - 'disable_sentry' => [ - 'name' => 'Nöqtəni deaktiv edin' - ], + 'disable_sentry' => [ + 'name' => 'Nöqtəni deaktiv edin' + ], 'watermark' => [ 'name' => 'Filigran', 'instructions' => 'Filigran aktivdir?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Mobil görünüşdə alt kateqoriyalar göstərin', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Qiyməti yalnız üzvlərə göstərin', + ], + 'hide_ad_cat' => [ + 'name' => 'Kateqoriyalarları gizlədin', + 'instructions' => 'Reklam siyahısında kateqoriyalar gizlədin' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Bitmə tarixini göstərin və Yaratma Tarixini Yayınlayın', + 'instructions' => 'Reklam yaratma səhifəsindəki dərc_at və bitir_at sahələrini göstərir.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bg/addon.php b/addons/default/visiosoft/advs-module/resources/lang/bg/addon.php index e81c6fa43..1f3d70441 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bg/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bg/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Реклами', 'name' => 'Модул за реклами', 'description' => 'Модул за реклами', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bg/field.php b/addons/default/visiosoft/advs-module/resources/lang/bg/field.php index 7c9bceb66..413e7816d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bg/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bg/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Местоположение на рекламата', 'owner' => 'Собственик', 'default_owner_instruction' => 'Собственикът ще използва по подразбиране текущия потребител, ако не е избран потребител', + 'create_page_subtitle' => 'Създайте рекламата безупречно, като въведете подробна информация за нея.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Заглавие на рекламата', @@ -343,7 +347,8 @@ return [ 'view' => 'Изглед', 'ads_with_map' => 'Реклами с карта', 'advanced_sorting' => 'Разширено сортиране', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Филтрирайте по дума', + 'filter_by' => 'Филтрирайте по: име', 'free' => 'Безплатно', 'ad_date' => 'Дата на рекламата', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Стара цена' ], + 'save_search' => 'Запазване на търсенето', + 'publish_at' => [ + 'name' => 'Дата на публикуване' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bg/setting.php b/addons/default/visiosoft/advs-module/resources/lang/bg/setting.php index ea1669aba..8bf14078d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bg/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bg/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Карта Дълги координати', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Лого на Social Share', - 'warning' => 'Трябва да е с разделителна способност 1200 x 630. ', + 'warning' => 'Трябва да е с разделителна способност 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Адрес на сайта', - 'warning' => 'Автоматично добавено www. www.сайта.com ', + 'warning' => 'Автоматично добавено www. www.сайта.com ', ], 'google_map_key' => [ 'name' => 'Google Map Api Key', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Пазар', ], - 'price_area_hidden' => [ - 'name' => 'Скрита цена', - ], + 'price_area_hidden' => [ + 'name' => 'Скрита цена', + ], 'hide_price_filter' => [ 'name' => 'Скриване на ценовия филтър', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Скриване на създадената дата', 'instructions' => 'Скриване на създадената дата в страницата с подробности за рекламите', ], - 'hide_listing_header' => [ - 'name' => 'Скриване на заглавката на списъка', - 'instructions' => 'Скриване за подреждане и преглед на типове', - ], - 'hide_filter_section' => [ - 'name' => 'Скриване на раздела за филтри', - 'instructions' => 'Скриване в лявата зона на филтъра в страницата с обяви', - ], - 'hide_seller_info' => [ - 'name' => 'Скриване на информацията за продавача', - 'instructions' => 'Скриване на информация за продавача в страницата с подробности за рекламите', - ], + 'hide_listing_header' => [ + 'name' => 'Скриване на заглавката на списъка', + 'instructions' => 'Скриване за подреждане и преглед на типове', + ], + 'hide_filter_section' => [ + 'name' => 'Скриване на раздела за филтри', + 'instructions' => 'Скриване в лявата зона на филтъра в страницата с обяви', + ], + 'hide_seller_info' => [ + 'name' => 'Скриване на информацията за продавача', + 'instructions' => 'Скриване на информация за продавача в страницата с подробности за рекламите', + ], 'show_post_ad_agreement' => [ 'name' => 'Показване на споразумението за публикуване на реклами', 'instructions' => 'Включете това, ако искате да покажете споразумение за политика за поверителност на страницата за създаване на реклама', @@ -251,9 +251,9 @@ return [ 'name' => 'ВЗЕМЕТЕ Категории', 'instructions' => 'Той представлява категориите, в които свойството GET ще бъде валидно.' ], - 'disable_sentry' => [ - 'name' => 'Деактивирайте Sentry' - ], + 'disable_sentry' => [ + 'name' => 'Деактивирайте Sentry' + ], 'watermark' => [ 'name' => 'Воден знак', 'instructions' => 'Активен ли е водният знак?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Показване на подкатегории в мобилен изглед', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Покажи цена само за членовете', + ], + 'hide_ad_cat' => [ + 'name' => 'Скриване на категории', + 'instructions' => 'Скриване на категориите в списъка с реклами' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Показване на крайната дата и датата на публикуване за създаване', + 'instructions' => 'Показва полетата objav_at и finish_at на страницата за създаване на реклама.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/addon.php b/addons/default/visiosoft/advs-module/resources/lang/bn/addon.php index ff0b9fffd..03f1a498f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'বিজ্ঞাপন', 'name' => 'বিজ্ঞাপন মডিউল', 'description' => 'বিজ্ঞাপন মডিউল', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 14ffe1cef..dab2f03ac 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'বিজ্ঞাপনের অবস্থান', 'owner' => 'মালিক', 'default_owner_instruction' => 'কোনও ব্যবহারকারী নির্বাচিত না হলে মালিক বর্তমান ব্যবহারকারীর কাছে ডিফল্ট হবে', + 'create_page_subtitle' => 'আপনার বিজ্ঞাপন সম্পর্কে বিস্তারিত তথ্য প্রবেশ করে নির্বিঘ্নে বিজ্ঞাপনটি তৈরি করুন।', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'বিজ্ঞাপনের শিরোনাম', @@ -343,7 +347,8 @@ return [ 'view' => 'দেখুন', 'ads_with_map' => 'মানচিত্র সহ বিজ্ঞাপন', 'advanced_sorting' => 'উন্নত বাছাই', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'কথায় কথায় ফিল্টার করুন', + 'filter_by' => 'ফিল্টার করুন: নাম', 'free' => 'ফ্রি', 'ad_date' => 'বিজ্ঞাপন তারিখ', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'পুরাতন মূল্য' ], + 'save_search' => 'অনুসন্ধান সংরক্ষণ করুন', + 'publish_at' => [ + 'name' => 'প্রকাশের তারিখ' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 d67b67678..05e667a6c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'ফেভিকন', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'মানচিত্র দীর্ঘ সমন্বয়', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'সামাজিক ভাগ লোগো', - 'warning' => 'এটি 1200 x 630 এর রেজোলিউশনে হওয়া উচিত। ', + 'warning' => 'এটি 1200 x 630 এর রেজোলিউশনে হওয়া উচিত। ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'সাইটের ঠিকানা', - 'warning' => 'অটো যুক্ত www। WWW।sitename.com ', + 'warning' => 'অটো যুক্ত www। WWW।sitename.com ', ], 'google_map_key' => [ 'name' => 'গুগল ম্যাপ এপি কী', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'মার্কেট প্লেস', ], - 'price_area_hidden' => [ - 'name' => 'মূল্য অঞ্চল লুকানো', - ], + 'price_area_hidden' => [ + 'name' => 'মূল্য অঞ্চল লুকানো', + ], 'hide_price_filter' => [ 'name' => 'দাম ফিল্টার লুকান', ], @@ -215,18 +215,18 @@ return [ 'name' => 'তৈরি তারিখ লুকান', 'instructions' => 'বিজ্ঞাপনের বিশদ পৃষ্ঠাতে তৈরি তারিখটি লুকান', ], - 'hide_listing_header' => [ - 'name' => 'তালিকা শিরোনাম লুকান', - 'instructions' => 'অর্ডার করা এবং প্রকার দেখার জন্য আড়াল করা', - ], - 'hide_filter_section' => [ - 'name' => 'ফিল্টার বিভাগটি লুকান', - 'instructions' => 'তালিকা পৃষ্ঠায় বাম ফিল্টার অঞ্চল থেকে লুকানো', - ], - 'hide_seller_info' => [ - 'name' => 'বিক্রেতার তথ্য লুকান', - 'instructions' => 'বিজ্ঞাপনের বিশদ পৃষ্ঠাতে বিক্রেতা ইনফোদের কাছে লুকানো', - ], + 'hide_listing_header' => [ + 'name' => 'তালিকা শিরোনাম লুকান', + 'instructions' => 'অর্ডার করা এবং প্রকার দেখার জন্য আড়াল করা', + ], + 'hide_filter_section' => [ + 'name' => 'ফিল্টার বিভাগটি লুকান', + 'instructions' => 'তালিকা পৃষ্ঠায় বাম ফিল্টার অঞ্চল থেকে লুকানো', + ], + 'hide_seller_info' => [ + 'name' => 'বিক্রেতার তথ্য লুকান', + 'instructions' => 'বিজ্ঞাপনের বিশদ পৃষ্ঠাতে বিক্রেতা ইনফোদের কাছে লুকানো', + ], 'show_post_ad_agreement' => [ 'name' => 'পোস্ট বিজ্ঞাপন চুক্তি প্রদর্শন করুন', 'instructions' => 'আপনি বিজ্ঞাপন তৈরি পৃষ্ঠায় কোনও গোপনীয়তা নীতি চুক্তি প্রদর্শন করতে চাইলে এটি চালু করুন', @@ -251,9 +251,9 @@ return [ 'name' => 'GET বিভাগসমূহ', 'instructions' => 'এটি এমন বিভাগগুলিতে প্রতিনিধিত্ব করে যেখানে জিইটি সম্পত্তি বৈধ হবে।' ], - 'disable_sentry' => [ - 'name' => 'সেন্ট্রি অক্ষম করুন' - ], + 'disable_sentry' => [ + 'name' => 'সেন্ট্রি অক্ষম করুন' + ], 'watermark' => [ 'name' => 'ওয়াটারমার্ক', 'instructions' => 'জলছবি সক্রিয়?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'মোবাইল ভিউতে উপশ্রেণীগুলি দেখান', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'মূল্য শুধুমাত্র সদস্যদের দেখান', + ], + 'hide_ad_cat' => [ + 'name' => 'বিভাগগুলি লুকান', + 'instructions' => 'বিজ্ঞাপনের তালিকায় বিভাগগুলি লুকান' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'তৈরির জন্য শেষ তারিখ এবং প্রকাশের তারিখ দেখান', + 'instructions' => 'বিজ্ঞাপন তৈরি পৃষ্ঠায় প্রকাশ_আট এবং সমাপ্তি_এ ক্ষেত্রগুলি প্রদর্শন করে।' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ca/addon.php b/addons/default/visiosoft/advs-module/resources/lang/ca/addon.php index bc21b238f..439741d34 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ca/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ca/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Anuncis', 'name' => 'Mòdul d’anuncis', 'description' => 'Mòdul d’anuncis', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ca/field.php b/addons/default/visiosoft/advs-module/resources/lang/ca/field.php index 05d9e7693..4a861af8f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ca/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ca/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Ubicació de l’anunci', 'owner' => 'Propietari', 'default_owner_instruction' => 'El propietari passarà per defecte a l\'usuari actual si no se selecciona cap usuari', + 'create_page_subtitle' => 'Creeu l’anunci perfectament introduint informació detallada sobre el vostre anunci.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Títol de l\'anunci', @@ -343,7 +347,8 @@ return [ 'view' => 'Veure', 'ads_with_map' => 'Anuncis amb mapa', 'advanced_sorting' => 'Ordenació avançada', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filtra per paraula', + 'filter_by' => 'Filtra per: nom', 'free' => 'Gratuït', 'ad_date' => 'Data de l\'anunci', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Preu antic' ], + 'save_search' => 'Desa la cerca', + 'publish_at' => [ + 'name' => 'Data de publicació' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ca/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ca/setting.php index ab4180f14..219d6a1d4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ca/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ca/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Mapa de coordenades llargues', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Logotip de Compartir social', - 'warning' => 'Hauria de tenir una resolució de 1200 x 630. ', + 'warning' => 'Hauria de tenir una resolució de 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Adreça del lloc', - 'warning' => 'S\'ha afegit automàticament www. www.nom ', + 'warning' => 'S\'ha afegit automàticament www. www.nom ', ], 'google_map_key' => [ 'name' => 'Clau API de Google Map', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Mercat', ], - 'price_area_hidden' => [ - 'name' => 'Zona de preus oculta', - ], + 'price_area_hidden' => [ + 'name' => 'Zona de preus oculta', + ], 'hide_price_filter' => [ 'name' => 'Amaga el filtre de preus', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Amaga la data de creació', 'instructions' => 'Amaga la data de creació a la pàgina de detalls dels anuncis', ], - 'hide_listing_header' => [ - 'name' => 'Amaga la capçalera del llistat', - 'instructions' => 'Ocultant els tipus d\'ordres i visualitzacions', - ], - 'hide_filter_section' => [ - 'name' => 'Amaga la secció del filtre', - 'instructions' => 'S’amaga a l’àrea de filtre esquerra a la pàgina de la llista', - ], - 'hide_seller_info' => [ - 'name' => 'Amaga la informació del venedor', - 'instructions' => 'Ocultació de la informació del venedor a la pàgina de detalls dels anuncis', - ], + 'hide_listing_header' => [ + 'name' => 'Amaga la capçalera del llistat', + 'instructions' => 'Ocultant els tipus d\'ordres i visualitzacions', + ], + 'hide_filter_section' => [ + 'name' => 'Amaga la secció del filtre', + 'instructions' => 'S’amaga a l’àrea de filtre esquerra a la pàgina de la llista', + ], + 'hide_seller_info' => [ + 'name' => 'Amaga la informació del venedor', + 'instructions' => 'Ocultació de la informació del venedor a la pàgina de detalls dels anuncis', + ], 'show_post_ad_agreement' => [ 'name' => 'Mostra l\'acord per publicar publicacions', 'instructions' => 'Activeu aquesta opció si voleu mostrar un acord de política de privadesa a la pàgina de creació d\'anuncis', @@ -251,9 +251,9 @@ return [ 'name' => 'GET Categories', 'instructions' => 'Representa les categories en què la propietat GET serà vàlida.' ], - 'disable_sentry' => [ - 'name' => 'Desactiva Sentry' - ], + 'disable_sentry' => [ + 'name' => 'Desactiva Sentry' + ], 'watermark' => [ 'name' => 'Filigrana', 'instructions' => 'La filigrana està activa?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Mostra subcategories a la visualització per a mòbils', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Mostrar preu només per a membres', + ], + 'hide_ad_cat' => [ + 'name' => 'Amaga les categories', + 'instructions' => 'Amaga les categories a la llista d\'anuncis' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Mostra la data de finalització i la data de publicació per crear', + 'instructions' => 'Mostra els camps publish_at i finish_at de la pàgina de creació d\'anuncis.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/cs/addon.php b/addons/default/visiosoft/advs-module/resources/lang/cs/addon.php index 31a8ffd72..6d5663c23 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/cs/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/cs/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Reklamy', 'name' => 'Modul reklam', 'description' => 'Modul reklam', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/cs/field.php b/addons/default/visiosoft/advs-module/resources/lang/cs/field.php index 993ff6102..b1e561b8f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/cs/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/cs/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Umístění reklamy', 'owner' => 'Majitel', 'default_owner_instruction' => 'Vlastník bude výchozí pro aktuálního uživatele, pokud není vybrán žádný uživatel', + 'create_page_subtitle' => 'Vytvořte reklamu bezchybně zadáním podrobných informací o reklamě.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Název reklamy', @@ -343,7 +347,8 @@ return [ 'view' => 'Pohled', 'ads_with_map' => 'Reklamy s mapou', 'advanced_sorting' => 'Pokročilé třídění', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filtrovat podle slova', + 'filter_by' => 'Filtrovat podle: názvu', 'free' => 'Volný, uvolnit', 'ad_date' => 'Datum inzerátu', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Stará cena' ], + 'save_search' => 'Uložit hledání', + 'publish_at' => [ + 'name' => 'Datum zveřejnění' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/cs/setting.php b/addons/default/visiosoft/advs-module/resources/lang/cs/setting.php index 8735e2958..24a56748a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/cs/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/cs/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Namapujte dlouhou souřadnici', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Logo sociální sdílení', - 'warning' => 'Mělo by to být v rozlišení 1200 x 630. ', + 'warning' => 'Mělo by to být v rozlišení 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Adresa webu', - 'warning' => 'Automaticky přidáno www. www.sitename.com ', + 'warning' => 'Automaticky přidáno www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Klíč Google Map Api', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Tržiště', ], - 'price_area_hidden' => [ - 'name' => 'Cenová oblast skrytá', - ], + 'price_area_hidden' => [ + 'name' => 'Cenová oblast skrytá', + ], 'hide_price_filter' => [ 'name' => 'Skrýt cenový filtr', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Skrýt datum vytvoření', 'instructions' => 'Skrýt datum vytvoření na stránce podrobností reklam', ], - 'hide_listing_header' => [ - 'name' => 'Skrýt záhlaví záznamu', - 'instructions' => 'Schovává se při objednávání a prohlížení typů', - ], - 'hide_filter_section' => [ - 'name' => 'Skrýt sekci filtru', - 'instructions' => 'Schovává se na levé straně oblasti filtru na stránce výpisu', - ], - 'hide_seller_info' => [ - 'name' => 'Skrýt informace o prodejci', - 'instructions' => 'Skrytí informací o prodejci na stránce s podrobnostmi o reklamách', - ], + 'hide_listing_header' => [ + 'name' => 'Skrýt záhlaví záznamu', + 'instructions' => 'Schovává se při objednávání a prohlížení typů', + ], + 'hide_filter_section' => [ + 'name' => 'Skrýt sekci filtru', + 'instructions' => 'Schovává se na levé straně oblasti filtru na stránce výpisu', + ], + 'hide_seller_info' => [ + 'name' => 'Skrýt informace o prodejci', + 'instructions' => 'Skrytí informací o prodejci na stránce s podrobnostmi o reklamách', + ], 'show_post_ad_agreement' => [ 'name' => 'Zobrazit smlouvu o příspěvku', 'instructions' => 'Tuto možnost zapněte, pokud chcete na stránce vytváření reklam zobrazit dohodu o zásadách ochrany osobních údajů', @@ -251,9 +251,9 @@ return [ 'name' => 'ZÍSKEJTE kategorie', 'instructions' => 'Představuje kategorie, ve kterých bude vlastnost GET platná.' ], - 'disable_sentry' => [ - 'name' => 'Zakázat Sentry' - ], + 'disable_sentry' => [ + 'name' => 'Zakázat Sentry' + ], 'watermark' => [ 'name' => 'Vodoznak', 'instructions' => 'Je vodoznak aktivní?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Zobrazit podkategorie v mobilním zobrazení', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Zobrazit cenu pouze pro členy', + ], + 'hide_ad_cat' => [ + 'name' => 'Skrýt kategorie', + 'instructions' => 'Skrýt kategorie v seznamu reklam' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Zobrazit datum dokončení a datum publikování pro vytvoření', + 'instructions' => 'Zobrazí pole publish_at a finish_at na stránce pro vytvoření reklamy.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/da/addon.php b/addons/default/visiosoft/advs-module/resources/lang/da/addon.php index b976e0b3c..db80f7a91 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/da/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/da/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Annoncer', 'name' => 'Annoncemodul', 'description' => 'Annoncemodul', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/da/field.php b/addons/default/visiosoft/advs-module/resources/lang/da/field.php index 763a8a791..a19d51dd5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/da/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/da/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Annonceplacering', 'owner' => 'Ejer', 'default_owner_instruction' => 'Ejeren vil som standard være den nuværende bruger, hvis ingen bruger er valgt', + 'create_page_subtitle' => 'Opret annoncen fejlfrit ved at indtaste detaljerede oplysninger om din annonce.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Annoncetitel', @@ -343,7 +347,8 @@ return [ 'view' => 'Udsigt', 'ads_with_map' => 'Annoncer med kort', 'advanced_sorting' => 'Avanceret sortering', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filtrer efter ord', + 'filter_by' => 'Filtrer efter: navn', 'free' => 'Gratis', 'ad_date' => 'Annoncedato', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Gammel pris' ], + 'save_search' => 'Gem søgning', + 'publish_at' => [ + 'name' => 'Udgivelsesdato' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/da/setting.php b/addons/default/visiosoft/advs-module/resources/lang/da/setting.php index 1b0307e67..aa2195ee0 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/da/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/da/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Kort Long Coordinate', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Social Share Logo', - 'warning' => 'Det skal have en opløsning på 1200 x 630. ', + 'warning' => 'Det skal have en opløsning på 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Webstedsadresse', - 'warning' => 'Automatisk tilføjet www. www.sitename.com ', + 'warning' => 'Automatisk tilføjet www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Google Map Api-nøgle', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Markedsplads', ], - 'price_area_hidden' => [ - 'name' => 'Prisområde skjult', - ], + 'price_area_hidden' => [ + 'name' => 'Prisområde skjult', + ], 'hide_price_filter' => [ 'name' => 'Skjul prisfilter', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Skjul oprettet dato', 'instructions' => 'Skjul oprettet dato på siden med annoncedetaljer', ], - 'hide_listing_header' => [ - 'name' => 'Skjul listeoverskrift', - 'instructions' => 'Skjuler sig for bestilling og visningstyper', - ], - 'hide_filter_section' => [ - 'name' => 'Skjul filtersektion', - 'instructions' => 'Skjuler sig til venstre filterområde på oversigtssiden', - ], - 'hide_seller_info' => [ - 'name' => 'Skjul sælgeroplysninger', - 'instructions' => 'Skjuler sig for sælgerinfo på siden med annoncer', - ], + 'hide_listing_header' => [ + 'name' => 'Skjul listeoverskrift', + 'instructions' => 'Skjuler sig for bestilling og visningstyper', + ], + 'hide_filter_section' => [ + 'name' => 'Skjul filtersektion', + 'instructions' => 'Skjuler sig til venstre filterområde på oversigtssiden', + ], + 'hide_seller_info' => [ + 'name' => 'Skjul sælgeroplysninger', + 'instructions' => 'Skjuler sig for sælgerinfo på siden med annoncer', + ], 'show_post_ad_agreement' => [ 'name' => 'Vis indlægsaftale', 'instructions' => 'Slå dette til, hvis du vil vise en aftale om fortrolighedspolitik på siden til oprettelse af annoncer', @@ -251,9 +251,9 @@ return [ 'name' => 'FÅ kategorier', 'instructions' => 'Det repræsenterer de kategorier, hvor GET-ejendommen er gyldig.' ], - 'disable_sentry' => [ - 'name' => 'Deaktiver vagtpost' - ], + 'disable_sentry' => [ + 'name' => 'Deaktiver vagtpost' + ], 'watermark' => [ 'name' => 'Vandmærke', 'instructions' => 'Er vandmærke aktivt?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Vis underkategorier i mobilvisning', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Vis pris kun til medlemmer', + ], + 'hide_ad_cat' => [ + 'name' => 'Skjul kategorier', + 'instructions' => 'Skjul kategorier i annoncelisten' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Vis slutdato og offentliggør dato for oprettelse', + 'instructions' => 'Viser felterne publish_at og finish_at på siden til annonceoprettelse.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/addon.php b/addons/default/visiosoft/advs-module/resources/lang/de/addon.php index 083e61d4a..8885dec49 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Anzeigen', 'name' => 'Anzeigenmodul', 'description' => 'Anzeigenmodul', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 018bf7d5a..c1c042566 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/field.php @@ -338,6 +338,9 @@ return [ 'owner' => 'Inhaber', 'default_owner_instruction' => 'Der Eigentümer verwendet standardmäßig den aktuellen Benutzer, wenn kein Benutzer ausgewählt ist', 'create_page_subtitle' => 'Erstellen Sie die Anzeige fehlerfrei, indem Sie detaillierte Informationen zu Ihrer Anzeige eingeben.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Anzeigentitel', @@ -346,6 +349,7 @@ return [ 'ads_with_map' => 'Anzeigen mit Karte', 'advanced_sorting' => 'Erweiterte Sortierung', 'filter_by_word' => 'Nach Wort filtern', + 'filter_by' => 'Filtern nach: Name', 'free' => 'Frei', 'ad_date' => 'Anzeigedatum', @@ -370,4 +374,10 @@ return [ 'name' => 'Alter Preis' ], 'save_search' => 'Sichere Suche', + 'publish_at' => [ + 'name' => 'Erscheinungsdatum' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 11fd1192f..1e18d43b8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Lange Koordinate abbilden', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Social Share Logo', - 'warning' => 'Die Auflösung sollte 1200 x 630 betragen.', + 'warning' => 'Die Auflösung sollte 1200 x 630 betragen.', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Website-Adresse', - 'warning' => 'Automatisch hinzugefügt www. www. sitename.com', + 'warning' => 'Automatisch hinzugefügt www. www. sitename.com', ], 'google_map_key' => [ 'name' => 'Google Map-API-Schlüssel', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Marktplatz', ], - 'price_area_hidden' => [ - 'name' => 'Preisbereich versteckt', - ], + 'price_area_hidden' => [ + 'name' => 'Preisbereich versteckt', + ], 'hide_price_filter' => [ 'name' => 'Preisfilter ausblenden', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Erstellungsdatum ausblenden', 'instructions' => 'Erstellungsdatum auf der Anzeigen-Detailseite ausblenden', ], - 'hide_listing_header' => [ - 'name' => 'Listenkopf ausblenden', - 'instructions' => 'Verstecken, um Typen zu bestellen und anzuzeigen', - ], - 'hide_filter_section' => [ - 'name' => 'Filterbereich ausblenden', - 'instructions' => 'Versteckt den linken Filterbereich auf der Listenseite', - ], - 'hide_seller_info' => [ - 'name' => 'Verkäuferinformationen ausblenden', - 'instructions' => 'Ausblenden von Verkäuferinformationen auf der Anzeigen-Detailseite', - ], + 'hide_listing_header' => [ + 'name' => 'Listenkopf ausblenden', + 'instructions' => 'Verstecken, um Typen zu bestellen und anzuzeigen', + ], + 'hide_filter_section' => [ + 'name' => 'Filterbereich ausblenden', + 'instructions' => 'Versteckt den linken Filterbereich auf der Listenseite', + ], + 'hide_seller_info' => [ + 'name' => 'Verkäuferinformationen ausblenden', + 'instructions' => 'Ausblenden von Verkäuferinformationen auf der Anzeigen-Detailseite', + ], 'show_post_ad_agreement' => [ 'name' => 'Show Post Ad Agreement anzeigen', 'instructions' => 'Aktivieren Sie diese Option, wenn Sie auf der Seite zur Anzeigenerstellung eine Datenschutzrichtlinie anzeigen möchten', @@ -251,9 +251,9 @@ return [ 'name' => 'Kategorien abrufen', 'instructions' => 'Es stellt die Kategorien dar, in denen die GET-Eigenschaft gültig ist.' ], - 'disable_sentry' => [ - 'name' => 'Sentry deaktivieren' - ], + 'disable_sentry' => [ + 'name' => 'Sentry deaktivieren' + ], 'watermark' => [ 'name' => 'Wasserzeichen', 'instructions' => 'Ist das Wasserzeichen aktiv?' @@ -265,11 +265,19 @@ return [ 'show_subcats_mobile' => [ 'name' => 'Unterkategorien in der mobilen Ansicht anzeigen', ], - 'show_price_to_members_only' => [ - 'name' => 'Preis nur für Mitglieder anzeigen', - ], - 'hide_ad_cat' => [ - 'name' => 'Kategorien ausblenden', - 'instructions' => 'Kategorien in der Anzeigenliste ausblenden' - ] + 'show_price_to_members_only' => [ + 'name' => 'Preis nur für Mitglieder anzeigen', + ], + 'hide_ad_cat' => [ + 'name' => 'Kategorien ausblenden', + 'instructions' => 'Kategorien in der Anzeigenliste ausblenden' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Enddatum anzeigen und Veröffentlichungsdatum für die Erstellung', + 'instructions' => 'Zeigt die Felder "Publish_at" und "Finish_at" auf der Seite zur Anzeigenerstellung an.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/addon.php b/addons/default/visiosoft/advs-module/resources/lang/el/addon.php index 81b7ce56e..d750fa1e1 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Διαφημίσεις', 'name' => 'Ενότητα διαφημίσεων', 'description' => 'Ενότητα διαφημίσεων', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 7ae748fdf..63121e797 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/field.php @@ -337,6 +337,10 @@ return [ 'ad_location' => 'Τοποθεσία διαφήμισης', 'owner' => 'Ιδιοκτήτης', 'default_owner_instruction' => 'Ο κάτοχος θα προεπιλογή στον τρέχοντα χρήστη εάν δεν έχει επιλεγεί κανένας χρήστης', + 'create_page_subtitle' => 'Δημιουργήστε τη διαφήμιση άψογα εισάγοντας λεπτομερείς πληροφορίες σχετικά με τη διαφήμισή σας.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Τίτλος διαφήμισης', @@ -344,7 +348,8 @@ return [ 'view' => 'Θέα', 'ads_with_map' => 'Διαφημίσεις με χάρτη', 'advanced_sorting' => 'Προηγμένη ταξινόμηση', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Φιλτράρισμα κατά λέξη', + 'filter_by' => 'Φιλτράρισμα κατά: όνομα', 'free' => 'Ελεύθερος', 'ad_date' => 'Ημερομηνία διαφήμισης', @@ -368,4 +373,11 @@ return [ 'old_price' => [ 'name' => 'Παλιά τιμή' ], + 'save_search' => 'Αποθήκευση αναζήτησης', + 'publish_at' => [ + 'name' => 'Ημερομηνία δημοσίευσης' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 391dd0799..bbb520fc8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Χάρτης Μεγάλος Συντονισμός', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Κοινωνικό Λογότυπο Share', - 'warning' => 'Θα πρέπει να έχει ανάλυση 1200 x 630.', + 'warning' => 'Θα πρέπει να έχει ανάλυση 1200 x 630.', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Διεύθυνση ιστοτόπου', - 'warning' => 'Αυτόματη προσθήκη www. www. sitename.com', + 'warning' => 'Αυτόματη προσθήκη www. www. sitename.com', ], 'google_map_key' => [ 'name' => 'Το Google Map Api Key', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Αγορά', ], - 'price_area_hidden' => [ - 'name' => 'Κρυφή περιοχή τιμών', - ], + 'price_area_hidden' => [ + 'name' => 'Κρυφή περιοχή τιμών', + ], 'hide_price_filter' => [ 'name' => 'Απόκρυψη φίλτρου τιμών', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Απόκρυψη ημερομηνίας δημιουργίας', 'instructions' => 'Απόκρυψη ημερομηνίας δημιουργίας στη σελίδα λεπτομερειών διαφημίσεων', ], - 'hide_listing_header' => [ - 'name' => 'Απόκρυψη κεφαλίδας καταχώρισης', - 'instructions' => 'Απόκρυψη σε παραγγελίες και προβολή τύπων', - ], - 'hide_filter_section' => [ - 'name' => 'Απόκρυψη ενότητας φίλτρου', - 'instructions' => 'Απόκρυψη στην αριστερή περιοχή φίλτρου στη σελίδα καταχώρισης', - ], - 'hide_seller_info' => [ - 'name' => 'Απόκρυψη πληροφοριών πωλητή', - 'instructions' => 'Απόκρυψη στις πληροφορίες πωλητή στη σελίδα λεπτομερειών διαφημίσεων', - ], + 'hide_listing_header' => [ + 'name' => 'Απόκρυψη κεφαλίδας καταχώρισης', + 'instructions' => 'Απόκρυψη σε παραγγελίες και προβολή τύπων', + ], + 'hide_filter_section' => [ + 'name' => 'Απόκρυψη ενότητας φίλτρου', + 'instructions' => 'Απόκρυψη στην αριστερή περιοχή φίλτρου στη σελίδα καταχώρισης', + ], + 'hide_seller_info' => [ + 'name' => 'Απόκρυψη πληροφοριών πωλητή', + 'instructions' => 'Απόκρυψη στις πληροφορίες πωλητή στη σελίδα λεπτομερειών διαφημίσεων', + ], 'show_post_ad_agreement' => [ 'name' => 'Εμφάνιση συμφωνίας μετά τη διαφήμιση', 'instructions' => 'Ενεργοποιήστε το αν θέλετε να εμφανίσετε μια συμφωνία πολιτικής απορρήτου στη σελίδα δημιουργίας διαφημίσεων', @@ -251,9 +251,9 @@ return [ 'name' => 'GET Κατηγορίες', 'instructions' => 'Αντιπροσωπεύει τις κατηγορίες στις οποίες η ιδιότητα GET θα είναι έγκυρη.' ], - 'disable_sentry' => [ - 'name' => 'Απενεργοποιήστε το Sentry' - ], + 'disable_sentry' => [ + 'name' => 'Απενεργοποιήστε το Sentry' + ], 'watermark' => [ 'name' => 'Στάθμη ύδατος', 'instructions' => 'Είναι ενεργό το υδατογράφημα;' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Εμφάνιση υποκατηγοριών σε προβολή για κινητά', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Εμφάνιση τιμής μόνο στα μέλη', + ], + 'hide_ad_cat' => [ + 'name' => 'Απόκρυψη κατηγοριών', + 'instructions' => 'Απόκρυψη κατηγοριών στη λίστα διαφημίσεων' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Εμφάνιση ημερομηνίας λήξης και ημερομηνίας δημοσίευσης για δημιουργία', + 'instructions' => 'Εμφανίζει τα πεδία publish_at και finish_at στη σελίδα δημιουργίας διαφημίσεων.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/addon.php b/addons/default/visiosoft/advs-module/resources/lang/es/addon.php index 25deee5e4..74df303f8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Anuncios', 'name' => 'Módulo de anuncios', 'description' => 'Módulo de anuncios', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 dab83a36d..3f91c0e65 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/field.php @@ -337,6 +337,10 @@ return [ 'ad_location' => 'Ubicación del anuncio', 'owner' => 'Propietario', 'default_owner_instruction' => 'El propietario utilizará de forma predeterminada el usuario actual si no se selecciona ningún usuario', + 'create_page_subtitle' => 'Cree el anuncio sin problemas ingresando información detallada sobre su anuncio.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Título del anuncio', @@ -344,7 +348,8 @@ return [ 'view' => 'Vista', 'ads_with_map' => 'Anuncios con mapa', 'advanced_sorting' => 'Clasificación avanzada', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filtrar por palabra', + 'filter_by' => 'Filtrar por: nombre', 'free' => 'Gratis', 'ad_date' => 'Fecha de anuncio', @@ -368,4 +373,11 @@ return [ 'old_price' => [ 'name' => 'Precio anterior' ], + 'save_search' => 'Guardar búsqueda', + 'publish_at' => [ + 'name' => 'Fecha de publicación' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 d5c330782..11e195966 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Mapa de coordenadas largas', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Logotipo de Social Share', - 'warning' => 'Debe tener una resolución de 1200 x 630.', + 'warning' => 'Debe tener una resolución de 1200 x 630.', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Dirección del sitio', - 'warning' => 'Auto añadido www. www. sitename.com', + 'warning' => 'Auto añadido www. www. sitename.com', ], 'google_map_key' => [ 'name' => 'Google Map Api Key', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Market Place', ], - 'price_area_hidden' => [ - 'name' => 'Zona de precio oculta', - ], + 'price_area_hidden' => [ + 'name' => 'Zona de precio oculta', + ], 'hide_price_filter' => [ 'name' => 'Ocultar filtro de precio', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Ocultar fecha de creación', 'instructions' => 'Ocultar la fecha de creación en la página de detalles de los anuncios', ], - 'hide_listing_header' => [ - 'name' => 'Ocultar encabezado de listado', - 'instructions' => 'Ocultar para ordenar y ver tipos', - ], - 'hide_filter_section' => [ - 'name' => 'Ocultar sección de filtro', - 'instructions' => 'Ocultar en el área de filtro izquierda en la página de listado', - ], - 'hide_seller_info' => [ - 'name' => 'Ocultar información del vendedor', - 'instructions' => 'Ocultar información del vendedor en la página de detalles de anuncios', - ], + 'hide_listing_header' => [ + 'name' => 'Ocultar encabezado de listado', + 'instructions' => 'Ocultar para ordenar y ver tipos', + ], + 'hide_filter_section' => [ + 'name' => 'Ocultar sección de filtro', + 'instructions' => 'Ocultar en el área de filtro izquierda en la página de listado', + ], + 'hide_seller_info' => [ + 'name' => 'Ocultar información del vendedor', + 'instructions' => 'Ocultar información del vendedor en la página de detalles de anuncios', + ], 'show_post_ad_agreement' => [ 'name' => 'Mostrar acuerdo de publicación', 'instructions' => 'Active esta opción si desea mostrar un acuerdo de política de privacidad en la página de creación de anuncios.', @@ -251,9 +251,9 @@ return [ 'name' => 'OBTENER Categorías', 'instructions' => 'Representa las categorías en las que será válida la propiedad GET.' ], - 'disable_sentry' => [ - 'name' => 'Desactivar centinela' - ], + 'disable_sentry' => [ + 'name' => 'Desactivar centinela' + ], 'watermark' => [ 'name' => 'Filigrana', 'instructions' => '¿Está activa la marca de agua?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Mostrar subcategorías en la vista móvil', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Mostrar precio solo para miembros', + ], + 'hide_ad_cat' => [ + 'name' => 'Ocultar categorías', + 'instructions' => 'Ocultar categorías en la lista de anuncios' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Mostrar fecha de finalización y fecha de publicación para crear', + 'instructions' => 'Muestra los campos publish_at y finish_at en la página de creación de anuncios.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/addon.php b/addons/default/visiosoft/advs-module/resources/lang/fa/addon.php index adc8717c6..79c9b2feb 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'تبلیغات', 'name' => 'ماژول تبلیغات', 'description' => 'ماژول تبلیغات', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 2c80a49e1..0ad41988d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'مکان تبلیغات', 'owner' => 'مالک', 'default_owner_instruction' => 'اگر هیچ کاربری انتخاب نشود ، مالک به عنوان کاربر پیش فرض عمل می کند', + 'create_page_subtitle' => 'با وارد کردن اطلاعات دقیق در مورد تبلیغ خود ، تبلیغ را بدون نقص ایجاد کنید.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'عنوان آگهی', @@ -343,7 +347,8 @@ return [ 'view' => 'چشم انداز', 'ads_with_map' => 'تبلیغات با نقشه', 'advanced_sorting' => 'مرتب سازی پیشرفته', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'فیلتر با کلمه', + 'filter_by' => 'فیلتر بر اساس: نام', 'free' => 'رایگان', 'ad_date' => 'تاریخ آگهی', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'قیمت قدیمی' ], + 'save_search' => 'ذخیره جستجو', + 'publish_at' => [ + 'name' => 'تاریخ انتشار' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 889e6fb11..b6bf1cebf 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'آیکن مورد علاقه', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'نقشه طولانی مربوط', ], 'map_coordinates_lat' => [ @@ -42,7 +42,7 @@ return [ 'ogImage' => [ 'name' => 'لوگوی اشتراک گذاری شبکه های اجتماعی ', - 'warning' => 'باید دارای کیفیت 1200X 630 باشد.', + 'warning' => 'باید دارای کیفیت 1200X 630 باشد.', ], 'currencies' => [ @@ -53,7 +53,7 @@ return [ ], 'site_address' => [ 'name' => 'آدرس سایت', - 'warning' => 'خودکار اضافه شد www. www sitename.com', + 'warning' => 'خودکار اضافه شد www. www sitename.com', ], 'google_map_key' => [ 'name' => 'Google Map Api Key', @@ -135,9 +135,9 @@ return [ 'market_place' => [ 'name' => 'محل بازار', ], - 'price_area_hidden' => [ - 'name' => 'منطقه پنهان', - ], + 'price_area_hidden' => [ + 'name' => 'منطقه پنهان', + ], 'hide_price_filter' => [ 'name' => 'فیلتر قیمت مخفی کنید', ], @@ -216,18 +216,18 @@ return [ 'name' => 'پنهان کردن تاریخ ایجاد شده', 'instructions' => 'تاریخ ایجاد شده را در صفحه جزئیات تبلیغات پنهان کنید', ], - 'hide_listing_header' => [ - 'name' => 'پنهان کردن عنوان لیست', - 'instructions' => 'مخفی شدن در سفارش و مشاهده انواع', - ], - 'hide_filter_section' => [ - 'name' => 'پنهان کردن بخش فیلتر', - 'instructions' => 'در صفحه لیست مخفی شدن در سمت چپ فیلتر', - ], - 'hide_seller_info' => [ - 'name' => 'پنهان کردن اطلاعات فروشنده', - 'instructions' => 'پنهان شدن در مورد اطلاعات فروشنده در صفحه جزئیات تبلیغات', - ], + 'hide_listing_header' => [ + 'name' => 'پنهان کردن عنوان لیست', + 'instructions' => 'مخفی شدن در سفارش و مشاهده انواع', + ], + 'hide_filter_section' => [ + 'name' => 'پنهان کردن بخش فیلتر', + 'instructions' => 'در صفحه لیست مخفی شدن در سمت چپ فیلتر', + ], + 'hide_seller_info' => [ + 'name' => 'پنهان کردن اطلاعات فروشنده', + 'instructions' => 'پنهان شدن در مورد اطلاعات فروشنده در صفحه جزئیات تبلیغات', + ], 'show_post_ad_agreement' => [ 'name' => 'نمایش قرارداد تبلیغات پست', 'instructions' => 'اگر می خواهید توافق نامه سیاست حفظ حریم خصوصی را در صفحه ایجاد آگهی نمایش دهید ، این گزینه را روشن کنید', @@ -252,9 +252,9 @@ return [ 'name' => 'دسته ها را دریافت کنید', 'instructions' => 'این نشان دهنده دسته هایی است که ویژگی GET در آنها معتبر خواهد بود.' ], - 'disable_sentry' => [ - 'name' => 'Sentry را غیرفعال کنید' - ], + 'disable_sentry' => [ + 'name' => 'Sentry را غیرفعال کنید' + ], 'watermark' => [ 'name' => 'علامت', 'instructions' => 'آیا علامت علامت فعال است؟' @@ -265,5 +265,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'زیر مجموعه ها را در نمای موبایل نشان دهید', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'نمایش قیمت فقط به اعضا', + ], + 'hide_ad_cat' => [ + 'name' => 'پنهان کردن دسته ها', + 'instructions' => 'پنهان کردن دسته ها در لیست تبلیغات' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'تاریخ پایان را نشان دهید و تاریخ ایجاد را ایجاد کنید', + 'instructions' => 'قسمت های publ_at و finish_at را در صفحه ایجاد تبلیغ نمایش می دهد.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fi/addon.php b/addons/default/visiosoft/advs-module/resources/lang/fi/addon.php index e4a1be561..b93cb393b 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fi/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fi/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Mainokset', 'name' => 'Mainosmoduuli', 'description' => 'Mainosmoduuli', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fi/field.php b/addons/default/visiosoft/advs-module/resources/lang/fi/field.php index f2193e87d..f33a5efcd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fi/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Mainoksen sijainti', 'owner' => 'Omistaja', 'default_owner_instruction' => 'Omistaja määrittää oletusasetukset nykyiselle käyttäjälle, jos ketään ei ole valittu', + 'create_page_subtitle' => 'Luo mainos moitteettomasti syöttämällä yksityiskohtaiset tiedot mainoksestasi.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Mainoksen otsikko', @@ -343,7 +347,8 @@ return [ 'view' => 'Näytä', 'ads_with_map' => 'Mainokset kartalla', 'advanced_sorting' => 'Edistynyt lajittelu', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Suodata sanan mukaan', + 'filter_by' => 'Suodata: nimen mukaan', 'free' => 'Vapaa', 'ad_date' => 'Ilmoituksen päivämäärä', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Vanha hinta' ], + 'save_search' => 'Tallenna haku', + 'publish_at' => [ + 'name' => 'Julkaisupäivä' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fi/setting.php b/addons/default/visiosoft/advs-module/resources/lang/fi/setting.php index a1cadb7b1..def67b993 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fi/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fi/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Kartta Long Coordinate', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Sosiaalisen osakkeen logo', - 'warning' => 'Sen tulisi olla resoluutio 1 200 x 630. ', + 'warning' => 'Sen tulisi olla resoluutio 1 200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Sivuston osoite', - 'warning' => 'Automaattinen lisäys www. www.sitename.com ', + 'warning' => 'Automaattinen lisäys www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Google Map Api Key', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Tori', ], - 'price_area_hidden' => [ - 'name' => 'Hinta-alue piilotettu', - ], + 'price_area_hidden' => [ + 'name' => 'Hinta-alue piilotettu', + ], 'hide_price_filter' => [ 'name' => 'Piilota hintasuodatin', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Piilota luontipäivä', 'instructions' => 'Piilota luotu päivämäärä mainosten tietosivulla', ], - 'hide_listing_header' => [ - 'name' => 'Piilota luettelootsikko', - 'instructions' => 'Piilotus tilaamiseen ja näkymiin', - ], - 'hide_filter_section' => [ - 'name' => 'Piilota suodatinosa', - 'instructions' => 'Piilotus vasemmalle suodatinalue luettelosivulle', - ], - 'hide_seller_info' => [ - 'name' => 'Piilota myyjän tiedot', - 'instructions' => 'Piilotus myyjän tietoihin ilmoitusten tietosivulla', - ], + 'hide_listing_header' => [ + 'name' => 'Piilota luettelootsikko', + 'instructions' => 'Piilotus tilaamiseen ja näkymiin', + ], + 'hide_filter_section' => [ + 'name' => 'Piilota suodatinosa', + 'instructions' => 'Piilotus vasemmalle suodatinalue luettelosivulle', + ], + 'hide_seller_info' => [ + 'name' => 'Piilota myyjän tiedot', + 'instructions' => 'Piilotus myyjän tietoihin ilmoitusten tietosivulla', + ], 'show_post_ad_agreement' => [ 'name' => 'Näytä postimainossopimus', 'instructions' => 'Ota tämä käyttöön, jos haluat näyttää tietosuojakäytännön mainoksen luomissivulla', @@ -251,9 +251,9 @@ return [ 'name' => 'HANKI luokkia', 'instructions' => 'Se edustaa luokkia, joissa GET-ominaisuus on voimassa.' ], - 'disable_sentry' => [ - 'name' => 'Poista Sentry käytöstä' - ], + 'disable_sentry' => [ + 'name' => 'Poista Sentry käytöstä' + ], 'watermark' => [ 'name' => 'Vesileima', 'instructions' => 'Onko vesileima aktiivinen?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Näytä alaluokat mobiilinäkymässä', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Näytä hinta vain jäsenille', + ], + 'hide_ad_cat' => [ + 'name' => 'Piilota luokat', + 'instructions' => 'Piilota luokat mainosluettelossa' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Näytä lopetuspäivä ja julkaisupäivä luomista varten', + 'instructions' => 'Näyttää julkaisun_at ja viimeistelyn_at-kentät mainoksen luomissivulla.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/addon.php b/addons/default/visiosoft/advs-module/resources/lang/fr/addon.php index c36630f5d..32828ad7c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Les publicités', 'name' => 'Module dannonces', 'description' => 'Module dannonces', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 0cf2fa7f8..438e7f0aa 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/field.php @@ -338,6 +338,9 @@ return [ 'owner' => 'Propriétaire', 'default_owner_instruction' => 'Le propriétaire utilisera par défaut l\'utilisateur actuel si aucun utilisateur n\'est sélectionné', 'create_page_subtitle' => 'Créez parfaitement l\'annonce en saisissant des informations détaillées sur votre annonce.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Ajouter un titre', @@ -346,6 +349,7 @@ return [ 'ads_with_map' => 'Annonces avec carte', 'advanced_sorting' => 'Tri avancé', 'filter_by_word' => 'Filtrer par mot', + 'filter_by' => 'Filtrer par: nom', 'free' => 'Gratuit', 'ad_date' => 'Date de l\'annonce', @@ -370,4 +374,10 @@ return [ 'name' => 'Ancien prix' ], 'save_search' => 'Sauvegarder la recherche', + 'publish_at' => [ + 'name' => 'Date de publication' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 8591da088..cea5f2a15 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Carte Longue Coordonnée', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Logo de partage social', - 'warning' => 'Il devrait être à une résolution de 1200 x 630.', + 'warning' => 'Il devrait être à une résolution de 1200 x 630.', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Adresse du site', - 'warning' => 'Auto ajouté www. www. sitename.com', + 'warning' => 'Auto ajouté www. www. sitename.com', ], 'google_map_key' => [ 'name' => 'Clé Api Google Map', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Place du marché', ], - 'price_area_hidden' => [ - 'name' => 'Zone de prix masquée', - ], + 'price_area_hidden' => [ + 'name' => 'Zone de prix masquée', + ], 'hide_price_filter' => [ 'name' => 'Masquer le filtre de prix', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Masquer la date de création', 'instructions' => 'Masquer la date de création dans la page de détail des annonces', ], - 'hide_listing_header' => [ - 'name' => 'Masquer l\'en-tête de l\'annonce', - 'instructions' => 'Masquage des types de commande et d\'affichage', - ], - 'hide_filter_section' => [ - 'name' => 'Masquer la section de filtre', - 'instructions' => 'Masquage dans la zone de filtre gauche de la page de liste', - ], - 'hide_seller_info' => [ - 'name' => 'Masquer les informations du vendeur', - 'instructions' => 'Masquage des informations du vendeur dans la page de détail des annonces', - ], + 'hide_listing_header' => [ + 'name' => 'Masquer l\'en-tête de l\'annonce', + 'instructions' => 'Masquage des types de commande et d\'affichage', + ], + 'hide_filter_section' => [ + 'name' => 'Masquer la section de filtre', + 'instructions' => 'Masquage dans la zone de filtre gauche de la page de liste', + ], + 'hide_seller_info' => [ + 'name' => 'Masquer les informations du vendeur', + 'instructions' => 'Masquage des informations du vendeur dans la page de détail des annonces', + ], 'show_post_ad_agreement' => [ 'name' => 'Afficher l\'accord de publication d\'annonce', 'instructions' => 'Activez cette option si vous souhaitez afficher un accord de politique de confidentialité sur la page de création d\'annonces', @@ -251,9 +251,9 @@ return [ 'name' => 'OBTENIR Catégories', 'instructions' => 'Il représente les catégories dans lesquelles la propriété GET sera valide.' ], - 'disable_sentry' => [ - 'name' => 'Désactiver Sentry' - ], + 'disable_sentry' => [ + 'name' => 'Désactiver Sentry' + ], 'watermark' => [ 'name' => 'Filigrane', 'instructions' => 'Le filigrane est-il actif?' @@ -265,11 +265,19 @@ return [ 'show_subcats_mobile' => [ 'name' => 'Afficher les sous-catégories sur la vue mobile', ], - 'show_price_to_members_only' => [ - 'name' => 'Afficher le prix aux membres seulement', - ], - 'hide_ad_cat' => [ - 'name' => 'Masquer les catégories', - 'instructions' => 'Masquer les catégories dans la liste des annonces' - ] + 'show_price_to_members_only' => [ + 'name' => 'Afficher le prix aux membres seulement', + ], + 'hide_ad_cat' => [ + 'name' => 'Masquer les catégories', + 'instructions' => 'Masquer les catégories dans la liste des annonces' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Afficher la date de fin et la date de publication pour la création', + 'instructions' => 'Affiche les champs publish_at et finish_at sur la page de création d\'annonce.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/addon.php b/addons/default/visiosoft/advs-module/resources/lang/he/addon.php index 18338893b..2ef2a7c3c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'מודעות', 'name' => 'מודול מודעות', 'description' => 'מודול מודעות', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 59cb0aa5c..4bcaa8135 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'מיקום מודעה', 'owner' => 'בעלים', 'default_owner_instruction' => 'הבעלים יוגדר כברירת מחדל למשתמש הנוכחי אם לא ייבחר משתמש', + 'create_page_subtitle' => 'צור את המודעה ללא רבב על ידי הזנת מידע מפורט אודות המודעה שלך.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'כותרת המודעה', @@ -343,7 +347,8 @@ return [ 'view' => 'נוף', 'ads_with_map' => 'מודעות עם מפה', 'advanced_sorting' => 'מיון מתקדם', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'סנן לפי מילה', + 'filter_by' => 'סנן לפי: שם', 'free' => 'חינם', 'ad_date' => 'תאריך מודעה', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'מחיר ישן' ], + 'save_search' => 'שמור חיפוש', + 'publish_at' => [ + 'name' => 'פרסם תאריך' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 84543e290..5558b0c4e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'פייביקון', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'מפה לתיאום ארוך', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'לוגו של שיתוף חברתי', - 'warning' => 'זה אמור להיות ברזולוציה של 1200 x 630. ', + 'warning' => 'זה אמור להיות ברזולוציה של 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'כתובת אתר', - 'warning' => 'נוסף אוטומטית www. www.sitename.com ', + 'warning' => 'נוסף אוטומטית www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'מפתח המפתח של גוגל', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'זירת מסחר', ], - 'price_area_hidden' => [ - 'name' => 'אזור מחיר מוסתר', - ], + 'price_area_hidden' => [ + 'name' => 'אזור מחיר מוסתר', + ], 'hide_price_filter' => [ 'name' => 'הסתר מסנן מחירים', ], @@ -215,18 +215,18 @@ return [ 'name' => 'הסתר תאריך יצירה', 'instructions' => 'הסתר את התאריך שנוצר בדף פרטי המודעות', ], - 'hide_listing_header' => [ - 'name' => 'הסתר כותרת רישום', - 'instructions' => 'הסתרה לסוגי הזמנה ותצוגה', - ], - 'hide_filter_section' => [ - 'name' => 'הסתר את קטע המסנן', - 'instructions' => 'הסתרת אזור הסינון השמאלי בדף הרישום', - ], - 'hide_seller_info' => [ - 'name' => 'הסתר מידע על מוכר', - 'instructions' => 'הסתרה למידע על מוכר בדף פירוט המודעות', - ], + 'hide_listing_header' => [ + 'name' => 'הסתר כותרת רישום', + 'instructions' => 'הסתרה לסוגי הזמנה ותצוגה', + ], + 'hide_filter_section' => [ + 'name' => 'הסתר את קטע המסנן', + 'instructions' => 'הסתרת אזור הסינון השמאלי בדף הרישום', + ], + 'hide_seller_info' => [ + 'name' => 'הסתר מידע על מוכר', + 'instructions' => 'הסתרה למידע על מוכר בדף פירוט המודעות', + ], 'show_post_ad_agreement' => [ 'name' => 'הצג הסכם מודעות לפרסום', 'instructions' => 'הפעל זאת אם ברצונך להציג הסכם מדיניות פרטיות בדף יצירת המודעות', @@ -251,9 +251,9 @@ return [ 'name' => 'קבל קטגוריות', 'instructions' => 'הוא מייצג את הקטגוריות בהן נכס ה- GET יהיה תקף.' ], - 'disable_sentry' => [ - 'name' => 'השבת זקיף' - ], + 'disable_sentry' => [ + 'name' => 'השבת זקיף' + ], 'watermark' => [ 'name' => 'סימן מים', 'instructions' => 'האם סימן מים פעיל?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'הצג קטגוריות משנה בתצוגת הנייד', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'הצג מחיר לחברים בלבד', + ], + 'hide_ad_cat' => [ + 'name' => 'הסתר קטגוריות', + 'instructions' => 'הסתר קטגוריות ברשימת המודעות' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'הצג תאריך סיום ופרסם תאריך ליצירה', + 'instructions' => 'מציג את השדות publish_at ו- finish_at בדף יצירת המודעות.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/addon.php b/addons/default/visiosoft/advs-module/resources/lang/hi/addon.php index da40a7d72..5bdeb31c2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'विज्ञापन', 'name' => 'विज्ञापन मॉड्यूल', 'description' => 'विज्ञापन मॉड्यूल', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 1e4407ada..e9059d5f3 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'विज्ञापन स्थान', 'owner' => 'मालिक', 'default_owner_instruction' => 'यदि कोई उपयोगकर्ता चयनित नहीं है, तो स्वामी वर्तमान उपयोगकर्ता को डिफ़ॉल्ट करेगा', + 'create_page_subtitle' => 'अपने विज्ञापन के बारे में विस्तृत जानकारी दर्ज करके विज्ञापन को त्रुटिपूर्ण बनाएं।', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'विज्ञापन शीर्षक', @@ -343,7 +347,8 @@ return [ 'view' => 'राय', 'ads_with_map' => 'मानचित्र के साथ विज्ञापन', 'advanced_sorting' => 'उन्नत छँटाई', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'शब्द द्वारा फ़िल्टर करें', + 'filter_by' => 'फ़िल्टर करके: नाम', 'free' => 'नि: शुल्क', 'ad_date' => 'विज्ञापन तिथि', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'पुरानी कीमत' ], + 'save_search' => 'खोज संग्रहित करें', + 'publish_at' => [ + 'name' => 'प्रकाशित तिथि' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 dbae02582..66f1cbc2c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'फ़ेविकॉन', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'मैप लॉन्ग कोऑर्डिनेट', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'सामाजिक शेयर लोगो', - 'warning' => 'यह 1200 x 630 के रिज़ॉल्यूशन पर होना चाहिए। ', + 'warning' => 'यह 1200 x 630 के रिज़ॉल्यूशन पर होना चाहिए। ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'साइट का पता', - 'warning' => 'ऑटो ने www। www।sitename.com ', + 'warning' => 'ऑटो ने www। www।sitename.com ', ], 'google_map_key' => [ 'name' => 'गूगल मैप एप की', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'मार्केट प्लेस', ], - 'price_area_hidden' => [ - 'name' => 'मूल्य क्षेत्र छिपा हुआ', - ], + 'price_area_hidden' => [ + 'name' => 'मूल्य क्षेत्र छिपा हुआ', + ], 'hide_price_filter' => [ 'name' => 'मूल्य फ़िल्टर छिपाएँ', ], @@ -215,18 +215,18 @@ return [ 'name' => 'बनाई गई तारीख छिपाएँ', 'instructions' => 'विज्ञापन विस्तार पृष्ठ में बनाई गई तिथि छिपाएँ', ], - 'hide_listing_header' => [ - 'name' => 'लिस्टिंग हैडर छिपाएं', - 'instructions' => 'ऑर्डर करने और देखने के प्रकारों के लिए छिपाना', - ], - 'hide_filter_section' => [ - 'name' => 'फ़िल्टर अनुभाग छिपाएँ', - 'instructions' => 'लिस्टिंग पृष्ठ में बाएं फिल्टर क्षेत्र में छिपा', - ], - 'hide_seller_info' => [ - 'name' => 'विक्रेता की जानकारी छिपाएँ', - 'instructions' => 'विज्ञापन विस्तार पृष्ठ में विक्रेता infos को छुपाता है', - ], + 'hide_listing_header' => [ + 'name' => 'लिस्टिंग हैडर छिपाएं', + 'instructions' => 'ऑर्डर करने और देखने के प्रकारों के लिए छिपाना', + ], + 'hide_filter_section' => [ + 'name' => 'फ़िल्टर अनुभाग छिपाएँ', + 'instructions' => 'लिस्टिंग पृष्ठ में बाएं फिल्टर क्षेत्र में छिपा', + ], + 'hide_seller_info' => [ + 'name' => 'विक्रेता की जानकारी छिपाएँ', + 'instructions' => 'विज्ञापन विस्तार पृष्ठ में विक्रेता infos को छुपाता है', + ], 'show_post_ad_agreement' => [ 'name' => 'विज्ञापन विज्ञापन दिखाएं', 'instructions' => 'यदि आप विज्ञापन निर्माण पृष्ठ पर गोपनीयता नीति अनुबंध प्रदर्शित करना चाहते हैं तो इसे चालू करें', @@ -251,9 +251,9 @@ return [ 'name' => 'श्रेणियाँ प्राप्त करें', 'instructions' => 'यह उन श्रेणियों का प्रतिनिधित्व करता है जिनमें GET संपत्ति मान्य होगी।' ], - 'disable_sentry' => [ - 'name' => 'संतरी अक्षम करें' - ], + 'disable_sentry' => [ + 'name' => 'संतरी अक्षम करें' + ], 'watermark' => [ 'name' => 'वाटर-मार्क', 'instructions' => 'क्या वॉटरमार्क सक्रिय है?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'मोबाइल दृश्य पर उपश्रेणियाँ दिखाएँ', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'केवल सदस्यों को मूल्य दिखाएं', + ], + 'hide_ad_cat' => [ + 'name' => 'श्रेणियाँ छिपाएँ', + 'instructions' => 'विज्ञापन सूची में श्रेणियां छिपाएं' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'बनाने के लिए समाप्ति तिथि और प्रकाशन तिथि दिखाएं', + 'instructions' => 'विज्ञापन निर्माण पृष्ठ पर publish_at और finish_at फ़ील्ड प्रदर्शित करता है।' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hu/addon.php b/addons/default/visiosoft/advs-module/resources/lang/hu/addon.php index bdeb44d92..9647907e2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hu/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hu/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Hirdetések', 'name' => 'Hirdetési modul', 'description' => 'Hirdetési modul', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hu/field.php b/addons/default/visiosoft/advs-module/resources/lang/hu/field.php index 9cb0e60d3..8111debc1 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hu/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hu/field.php @@ -337,6 +337,9 @@ return [ 'owner' => 'Tulajdonos', 'default_owner_instruction' => 'A tulajdonos alapértelmezés szerint az aktuális felhasználót állítja be, ha nincs kiválasztva felhasználó', 'create_page_subtitle' => 'Hozza létre a hirdetést hibátlanul a hirdetésével kapcsolatos részletes információk megadásával.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Hirdetés címe', @@ -345,6 +348,7 @@ return [ 'ads_with_map' => 'Hirdetések térképpel', 'advanced_sorting' => 'Haladó rendezés', 'filter_by_word' => 'Szűrés szó szerint', + 'filter_by' => 'Szűrés: név szerint', 'free' => 'Ingyenes', 'ad_date' => 'Hirdetés dátuma', @@ -369,4 +373,10 @@ return [ 'name' => 'Régi ár' ], 'save_search' => 'Keresés mentése', + 'publish_at' => [ + 'name' => 'Közzététel dátuma' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hu/setting.php b/addons/default/visiosoft/advs-module/resources/lang/hu/setting.php index 002b500b7..ef72afefd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hu/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hu/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Térkép hosszú koordinátája', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Közösségi logó', - 'warning' => '1200 x 630 felbontásban kell lennie. ', + 'warning' => '1200 x 630 felbontásban kell lennie. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Hely címe', - 'warning' => 'Automatikusan hozzáadta a www. www.sitename.com ', + 'warning' => 'Automatikusan hozzáadta a www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Google Map Api Key', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Piactér', ], - 'price_area_hidden' => [ - 'name' => 'Rejtett árterület', - ], + 'price_area_hidden' => [ + 'name' => 'Rejtett árterület', + ], 'hide_price_filter' => [ 'name' => 'Árszűrő elrejtése', ], @@ -215,18 +215,18 @@ return [ 'name' => 'A létrehozás dátumának elrejtése', 'instructions' => 'A létrehozás dátumának elrejtése a hirdetések részleteinek oldalán', ], - 'hide_listing_header' => [ - 'name' => 'A listafejléc elrejtése', - 'instructions' => 'Rejtés a sorrend és a nézettípusok felé', - ], - 'hide_filter_section' => [ - 'name' => 'Szűrő szakasz elrejtése', - 'instructions' => 'Elrejtés a szűrő bal oldalán a listázási oldalon', - ], - 'hide_seller_info' => [ - 'name' => 'Eladó információk elrejtése', - 'instructions' => 'Az eladó információinak elrejtése a hirdetések részletes oldalán', - ], + 'hide_listing_header' => [ + 'name' => 'A listafejléc elrejtése', + 'instructions' => 'Rejtés a sorrend és a nézettípusok felé', + ], + 'hide_filter_section' => [ + 'name' => 'Szűrő szakasz elrejtése', + 'instructions' => 'Elrejtés a szűrő bal oldalán a listázási oldalon', + ], + 'hide_seller_info' => [ + 'name' => 'Eladó információk elrejtése', + 'instructions' => 'Az eladó információinak elrejtése a hirdetések részletes oldalán', + ], 'show_post_ad_agreement' => [ 'name' => 'A hirdetés utáni megállapodás megjelenítése', 'instructions' => 'Kapcsolja be, ha adatvédelmi irányelveket szeretne megjeleníteni a hirdetés létrehozása oldalon', @@ -251,9 +251,9 @@ return [ 'name' => 'GET Kategóriák', 'instructions' => 'Azokat a kategóriákat képviseli, amelyekben a GET tulajdonság érvényes lesz.' ], - 'disable_sentry' => [ - 'name' => 'Letiltja a Sentry szolgáltatást' - ], + 'disable_sentry' => [ + 'name' => 'Letiltja a Sentry szolgáltatást' + ], 'watermark' => [ 'name' => 'Vízjel', 'instructions' => 'A vízjel aktív?' @@ -265,11 +265,19 @@ return [ 'show_subcats_mobile' => [ 'name' => 'Alkategóriák megjelenítése mobil nézetben', ], - 'show_price_to_members_only' => [ - 'name' => 'Árak megjelenítése csak tagoknak', - ], - 'hide_ad_cat' => [ - 'name' => 'Kategóriák elrejtése', - 'instructions' => 'Kategóriák elrejtése a hirdetési listában' - ] + 'show_price_to_members_only' => [ + 'name' => 'Árak megjelenítése csak tagoknak', + ], + 'hide_ad_cat' => [ + 'name' => 'Kategóriák elrejtése', + 'instructions' => 'Kategóriák elrejtése a hirdetési listában' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'A befejezés dátumának és a létrehozás közzétételének dátumának megjelenítése', + 'instructions' => 'Megjeleníti a public_at és a finish_at mezőket a hirdetés létrehozása oldalon.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/id/addon.php b/addons/default/visiosoft/advs-module/resources/lang/id/addon.php index 55ddb2f75..12b93da0e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/id/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/id/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Iklan', 'name' => 'Modul Iklan', 'description' => 'Modul Iklan', + 'info' => 'Ini adalah layar tempat Anda dapat menambahkan, menghapus, dan menyunting iklan dari halaman Iklan. Pada halaman ini, Anda dapat dengan mudah melakukan operasi seperti mengelola postingan dan konfigurasi iklan.' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/id/button.php b/addons/default/visiosoft/advs-module/resources/lang/id/button.php index a9e638ad2..69602be3e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/id/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/id/button.php @@ -12,23 +12,23 @@ return [ 'edit' => "Sunting", 'approve' => "Setujui", 'decline' => 'Tolak', - 'extend' => 'Bentangkan', - 'extend_all' => 'Bentangkan Semua', + 'extend' => 'Perpanjang', + 'extend_all' => 'Perpanjang Semua', 'convert_currency' => 'Konversi Mata Uang', 'categories' => 'Kategori', 'sub_category' => 'Sub Kategori', 'add_sub_category' => 'Tambahkan Sub Kategori', 'sub_cities' => 'Sub Kota', 'add_sub_cities' => 'Tambahkan Sub Kota', - 'add_sub_districts' => 'Tambahkan Kecamatan', + 'add_sub_districts' => 'Tambahkan Sub Kecamatan', 'add_sub_neighborhoods' => 'Tambahkan Sub Lingkungan', 'add_sub_village' => 'Tambahkan Sub Desa', - 'sub_districts' => 'Kecamatan', + 'sub_districts' => 'Sub Kecamatan', 'sub_neighborhoods' => 'Sub Lingkungan', 'sub_village' => 'Sub Desa', 'general_settings' => 'Pengaturan Umum', 'save_category' => 'Simpan Kategori', - 'change_owner' => 'Ubah Pemilik', + 'change_owner' => 'Ganti Pemilik', 'update_category' => [ 'name' => 'Perbaharui Kategori' ], diff --git a/addons/default/visiosoft/advs-module/resources/lang/id/field.php b/addons/default/visiosoft/advs-module/resources/lang/id/field.php index 67810dcaf..5eace01d9 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/id/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/id/field.php @@ -138,8 +138,8 @@ return [ 'filter' => 'Saring', 'sort' => 'Sortir', 'sort_by' => 'Sortir berdasarkan', - 'pick_option' => 'Pilih salah satu opsi', - 'pick_ordering' => 'Memesan', + 'pick_option' => 'Pilih sebuah opsi', + 'pick_ordering' => 'Urutan', 'price_high' => 'Harga Tinggi ke Rendah', 'price_low' => 'Harga Rendah ke Tinggi', 'newest' => 'Terbaru', @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Lokasi Iklan', 'owner' => 'Pemilik', 'default_owner_instruction' => 'Pemilik akan menggunakan pengguna saat ini secara bawaan/default jika tidak ada pengguna yang dipilih', + 'create_page_subtitle' => 'Buat iklan tanpa masalah dengan memasukkan informasi rinci tentang iklan Anda.', + 'with_my_phone_numbers' => 'Dengan nomor telepon saya', + 'not_with_my_phone_numbers' => "Saya tidak ingin dihubungi melalui telepon", + 'how_can_you_be_contacted' => "Bagaimana Anda dapat dihubungi?", // Listing page 'ad_title' => 'Judul Iklan', @@ -343,7 +347,8 @@ return [ 'view' => 'Melihat', 'ads_with_map' => 'Iklan Dengan Peta', 'advanced_sorting' => 'Penyortiran Lanjutan', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filter menurut kata', + 'filter_by' => 'Filter berdasarkan: nama', 'free' => 'Gratis', 'ad_date' => 'Tanggal Iklan', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Harga Lama' ], + 'save_search' => 'Simpan pencarian', + 'publish_at' => [ + 'name' => 'Tanggal Penerbitan' + ], + 'tax' => [ + 'name' => 'Pajak' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/id/setting.php b/addons/default/visiosoft/advs-module/resources/lang/id/setting.php index 5f421b928..d0e2b88c6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/id/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/id/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Ikonfav', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Koordinat Garis Bujur Peta', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Logo Bagikan (media sosial)', - 'warning' => 'Harus pada resolusi 1200 x 630. ', + 'warning' => 'Harus pada resolusi 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Alamat situs', - 'warning' => 'Otomatis www ditambahkan. www.sitename.com ', + 'warning' => 'Otomatis www ditambahkan. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Kunci API Peta Google', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Market Place', ], - 'price_area_hidden' => [ - 'name' => 'Area Harga Tersembunyi', - ], + 'price_area_hidden' => [ + 'name' => 'Area Harga Tersembunyi', + ], 'hide_price_filter' => [ 'name' => 'Sembunyikan Filter Harga', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Sembunyikan Tanggal Dibuat', 'instructions' => 'Sembunyikan tanggal pembuatan di halaman detail iklan', ], - 'hide_listing_header' => [ - 'name' => 'Sembunyikan Judul Cantuman', - 'instructions' => 'Menyembunyikan jenis pemesanan dan tampilan', - ], - 'hide_filter_section' => [ - 'name' => 'Sembunyikan Bagian Filter', - 'instructions' => 'Bersembunyi di area filter kiri di halaman daftar', - ], - 'hide_seller_info' => [ - 'name' => 'Sembunyikan Informasi Penjual', - 'instructions' => 'Menyembunyikan info penjual di halaman detail iklan', - ], + 'hide_listing_header' => [ + 'name' => 'Sembunyikan Judul Cantuman', + 'instructions' => 'Menyembunyikan jenis pemesanan dan tampilan', + ], + 'hide_filter_section' => [ + 'name' => 'Sembunyikan Bagian Filter', + 'instructions' => 'Bersembunyi di area filter kiri di halaman daftar', + ], + 'hide_seller_info' => [ + 'name' => 'Sembunyikan Informasi Penjual', + 'instructions' => 'Menyembunyikan info penjual di halaman detail iklan', + ], 'show_post_ad_agreement' => [ 'name' => 'Show Post Ad Agreement', 'instructions' => 'Aktifkan ini jika Anda ingin menampilkan perjanjian kebijakan privasi di halaman pembuatan iklan', @@ -251,9 +251,9 @@ return [ 'name' => 'DAPATKAN Kategori', 'instructions' => 'Ini mewakili kategori di mana properti GET akan berlaku.' ], - 'disable_sentry' => [ - 'name' => 'Nonaktifkan Sentry' - ], + 'disable_sentry' => [ + 'name' => 'Nonaktifkan Sentry' + ], 'watermark' => [ 'name' => 'Tanda air', 'instructions' => 'Apakah watermark aktif?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Tampilkan subkategori pada tampilan seluler', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Tunjukkan Harga Hanya Untuk Anggota', + ], + 'hide_ad_cat' => [ + 'name' => 'Sembunyikan Kategori', + 'instructions' => 'Sembunyikan kategori dalam daftar iklan' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Tampilkan Tanggal Selesai Dan Tanggal Publikasi Untuk Membuat', + 'instructions' => 'Menampilkan bidang publish_at dan finish_at pada halaman pembuatan iklan.' + ], + 'show_tax_field' => [ + 'name' => 'Tampilkan Baris Pajak', + 'instructions' => 'Ketika opsi ini diaktifkan, Anda dapat mengatur tarif pajak pada halaman pembuatan iklan.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/addon.php b/addons/default/visiosoft/advs-module/resources/lang/it/addon.php index ac58a64ea..ce0ff6626 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Annunci', 'name' => 'Modulo annunci', 'description' => 'Modulo annunci', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 3d94e16d9..7d2f88cf4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/field.php @@ -337,6 +337,10 @@ return [ 'ad_location' => 'Posizione dell\'annuncio', 'owner' => 'Proprietario', 'default_owner_instruction' => 'Se non è selezionato alcun utente, per impostazione predefinita il proprietario sarà l\'utente corrente', + 'create_page_subtitle' => 'Crea l\'annuncio in modo impeccabile inserendo informazioni dettagliate sul tuo annuncio.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Titolo dell\'annuncio', @@ -344,7 +348,8 @@ return [ 'view' => 'Visualizza', 'ads_with_map' => 'Annunci con mappa', 'advanced_sorting' => 'Ordinamento avanzato', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filtra per parola', + 'filter_by' => 'Filtra per: nome', 'free' => 'Gratuito', 'ad_date' => 'Data dell\'annuncio', @@ -368,4 +373,11 @@ return [ 'old_price' => [ 'name' => 'Vecchio prezzo' ], + 'save_search' => 'Salva ricerca', + 'publish_at' => [ + 'name' => 'Data di pubblicazione' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 5d4ac6b3c..71b541114 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Mappa lunga coordinata', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Logo di condivisione sociale', - 'warning' => 'Dovrebbe avere una risoluzione di 1200 x 630.', + 'warning' => 'Dovrebbe avere una risoluzione di 1200 x 630.', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Indirizzo del sito', - 'warning' => 'Aggiunta automatica www. www. sitename.com', + 'warning' => 'Aggiunta automatica www. www. sitename.com', ], 'google_map_key' => [ 'name' => 'Google Map Api Key', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Piazza del mercato', ], - 'price_area_hidden' => [ - 'name' => 'Area di Prezzo Nascosta', - ], + 'price_area_hidden' => [ + 'name' => 'Area di Prezzo Nascosta', + ], 'hide_price_filter' => [ 'name' => 'Nascondi filtro prezzo', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Nascondi data di creazione', 'instructions' => 'Nascondi la data di creazione nella pagina dei dettagli degli annunci', ], - 'hide_listing_header' => [ - 'name' => 'Nascondi intestazione elenco', - 'instructions' => 'Nascondersi per ordinare e visualizzare i tipi', - ], - 'hide_filter_section' => [ - 'name' => 'Nascondi sezione filtro', - 'instructions' => 'Nascondere nell\'area del filtro a sinistra nella pagina dell\'elenco', - ], - 'hide_seller_info' => [ - 'name' => 'Nascondi le informazioni sul venditore', - 'instructions' => 'Nascondere alle informazioni del venditore nella pagina dei dettagli degli annunci', - ], + 'hide_listing_header' => [ + 'name' => 'Nascondi intestazione elenco', + 'instructions' => 'Nascondersi per ordinare e visualizzare i tipi', + ], + 'hide_filter_section' => [ + 'name' => 'Nascondi sezione filtro', + 'instructions' => 'Nascondere nell\'area del filtro a sinistra nella pagina dell\'elenco', + ], + 'hide_seller_info' => [ + 'name' => 'Nascondi le informazioni sul venditore', + 'instructions' => 'Nascondere alle informazioni del venditore nella pagina dei dettagli degli annunci', + ], 'show_post_ad_agreement' => [ 'name' => 'Mostra accordo post annuncio', 'instructions' => 'Attiva questa opzione se desideri visualizzare un accordo sulla politica sulla privacy nella pagina di creazione dell\'annuncio', @@ -251,9 +251,9 @@ return [ 'name' => 'OTTIENI Categorie', 'instructions' => 'Rappresenta le categorie in cui sarà valida la proprietà GET.' ], - 'disable_sentry' => [ - 'name' => 'Disabilita Sentry' - ], + 'disable_sentry' => [ + 'name' => 'Disabilita Sentry' + ], 'watermark' => [ 'name' => 'Filigrana', 'instructions' => 'La filigrana è attiva?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Mostra le sottocategorie nella visualizzazione mobile', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Mostra prezzo solo per i membri', + ], + 'hide_ad_cat' => [ + 'name' => 'Nascondi categorie', + 'instructions' => 'Nascondi le categorie nell\'elenco degli annunci' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Mostra data di fine e data di pubblicazione per la creazione', + 'instructions' => 'Visualizza i campi publish_at e finish_at nella pagina di creazione dell\'annuncio.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/addon.php b/addons/default/visiosoft/advs-module/resources/lang/ja/addon.php index 1591b9a81..1d8f1c388 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/addon.php @@ -4,4 +4,5 @@ return [ 'title' => '広告', 'name' => '広告モジュール', 'description' => '広告モジュール', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 fb82eeff3..7a8152948 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => '広告の場所', 'owner' => 'オーナー', 'default_owner_instruction' => 'ユーザーが選択されていない場合、所有者はデフォルトで現在のユーザーになります', + 'create_page_subtitle' => '広告に関する詳細情報を入力して、完璧に広告を作成します。', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => '広告タイトル', @@ -343,7 +347,8 @@ return [ 'view' => '見る', 'ads_with_map' => '地図付きの広告', 'advanced_sorting' => '高度な並べ替え', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => '単語でフィルタリング', + 'filter_by' => ':nameでフィルタリング', 'free' => '自由', 'ad_date' => '広告日', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => '古い価格' ], + 'save_search' => '検索を保存', + 'publish_at' => [ + 'name' => '公開日' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 2daacef7c..1a647c00c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'ファビコン', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => '長い座標をマップ', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'ソーシャルシェアロゴ', - 'warning' => '1200 x 630の解像度である必要があります。 ', + 'warning' => '1200 x 630の解像度である必要があります。 ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'サイトアドレス', - 'warning' => '自動追加www。 www。sitename.com ', + 'warning' => '自動追加www。 www。sitename.com ', ], 'google_map_key' => [ 'name' => 'GoogleマップAPIキー', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'マーケットプレイス', ], - 'price_area_hidden' => [ - 'name' => '隠された価格帯', - ], + 'price_area_hidden' => [ + 'name' => '隠された価格帯', + ], 'hide_price_filter' => [ 'name' => '価格フィルターを非表示', ], @@ -215,18 +215,18 @@ return [ 'name' => '作成日を非表示', 'instructions' => '広告詳細ページで作成日を非表示', ], - 'hide_listing_header' => [ - 'name' => 'リストヘッダーを非表示', - 'instructions' => '注文と表示タイプの非表示', - ], - 'hide_filter_section' => [ - 'name' => 'フィルタセクションを非表示', - 'instructions' => 'リストページの左側のフィルター領域に非表示', - ], - 'hide_seller_info' => [ - 'name' => '売り手情報を隠す', - 'instructions' => '広告の詳細ページで販売者情報を非表示にする', - ], + 'hide_listing_header' => [ + 'name' => 'リストヘッダーを非表示', + 'instructions' => '注文と表示タイプの非表示', + ], + 'hide_filter_section' => [ + 'name' => 'フィルタセクションを非表示', + 'instructions' => 'リストページの左側のフィルター領域に非表示', + ], + 'hide_seller_info' => [ + 'name' => '売り手情報を隠す', + 'instructions' => '広告の詳細ページで販売者情報を非表示にする', + ], 'show_post_ad_agreement' => [ 'name' => 'ポスト広告契約を表示する', 'instructions' => '広告作成ページにプライバシーポリシー契約を表示する場合は、これをオンにします', @@ -251,9 +251,9 @@ return [ 'name' => 'カテゴリを取得', 'instructions' => 'これは、GETプロパティが有効になるカテゴリを表します。' ], - 'disable_sentry' => [ - 'name' => 'セントリーを無効にする' - ], + 'disable_sentry' => [ + 'name' => 'セントリーを無効にする' + ], 'watermark' => [ 'name' => '透かし', 'instructions' => '透かしはアクティブですか?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'モバイルビューでサブカテゴリを表示する', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'メンバーのみに価格を表示', + ], + 'hide_ad_cat' => [ + 'name' => 'カテゴリを非表示', + 'instructions' => '広告リストのカテゴリを非表示' + ], + 'show_finish_and_publish_date' => [ + 'name' => '作成の終了日と公開日を表示する', + 'instructions' => '広告作成ページにpublish_atフィールドとfinish_atフィールドを表示します。' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/addon.php b/addons/default/visiosoft/advs-module/resources/lang/ko/addon.php index 3c00783af..1449c7f06 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/addon.php @@ -4,4 +4,5 @@ return [ 'title' => '광고', 'name' => '광고 모듈', 'description' => '광고 모듈', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 93721349e..1949e2d17 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => '광고 위치', 'owner' => '소유자', 'default_owner_instruction' => '사용자가 선택되지 않은 경우 소유자는 기본적으로 현재 사용자로 설정됩니다.', + 'create_page_subtitle' => '광고에 대한 자세한 정보를 입력하여 완벽하게 광고를 만드십시오.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => '광고 제목', @@ -343,7 +347,8 @@ return [ 'view' => '전망', 'ads_with_map' => '지도가있는 광고', 'advanced_sorting' => '고급 정렬', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => '단어로 필터링', + 'filter_by' => ': 이름으로 필터링', 'free' => '비어 있는', 'ad_date' => '광고 날짜', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => '이전 가격' ], + 'save_search' => '검색 저장', + 'publish_at' => [ + 'name' => '게시 날짜' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 ff2fcff6b..06c66da6d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => '파비콘', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => '긴 좌표지도', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => '소셜 쉐어 로고', - 'warning' => '1200 x 630의 해상도 여야합니다. ', + 'warning' => '1200 x 630의 해상도 여야합니다. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => '사이트 주소', - 'warning' => '자동 추가 www. www.sitename.com ', + 'warning' => '자동 추가 www. www.sitename.com ', ], 'google_map_key' => [ 'name' => '구글 맵 API 키', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => '마켓 플레이스', ], - 'price_area_hidden' => [ - 'name' => '가격 영역 숨김', - ], + 'price_area_hidden' => [ + 'name' => '가격 영역 숨김', + ], 'hide_price_filter' => [ 'name' => '가격 필터 숨기기', ], @@ -215,18 +215,18 @@ return [ 'name' => '만든 날짜 숨기기', 'instructions' => '광고 세부 정보 페이지에서 만든 날짜 숨기기', ], - 'hide_listing_header' => [ - 'name' => '목록 헤더 숨기기', - 'instructions' => '주문 및보기 유형 숨기기', - ], - 'hide_filter_section' => [ - 'name' => '필터 섹션 숨기기', - 'instructions' => '목록 페이지에서 왼쪽 필터 영역으로 숨기기', - ], - 'hide_seller_info' => [ - 'name' => '판매자 정보 숨기기', - 'instructions' => '광고 세부 정보 페이지에서 판매자 정보 숨기기', - ], + 'hide_listing_header' => [ + 'name' => '목록 헤더 숨기기', + 'instructions' => '주문 및보기 유형 숨기기', + ], + 'hide_filter_section' => [ + 'name' => '필터 섹션 숨기기', + 'instructions' => '목록 페이지에서 왼쪽 필터 영역으로 숨기기', + ], + 'hide_seller_info' => [ + 'name' => '판매자 정보 숨기기', + 'instructions' => '광고 세부 정보 페이지에서 판매자 정보 숨기기', + ], 'show_post_ad_agreement' => [ 'name' => '광고 게시 계약 표시', 'instructions' => '광고 작성 페이지에 개인 정보 보호 정책을 표시하려면이 옵션을 켜십시오.', @@ -251,9 +251,9 @@ return [ 'name' => 'GET 카테고리', 'instructions' => 'GET 속성이 유효한 범주를 나타냅니다.' ], - 'disable_sentry' => [ - 'name' => '센트리 비활성화' - ], + 'disable_sentry' => [ + 'name' => '센트리 비활성화' + ], 'watermark' => [ 'name' => '양수표', 'instructions' => '워터 마크가 활성화되어 있습니까?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => '모바일보기에 하위 범주 표시', - ] + ], + 'show_price_to_members_only' => [ + 'name' => '회원에게만 가격 표시', + ], + 'hide_ad_cat' => [ + 'name' => '카테고리 숨기기', + 'instructions' => '광고 목록에서 카테고리 숨기기' + ], + 'show_finish_and_publish_date' => [ + 'name' => '작성을위한 완료 날짜 및 게시 날짜 표시', + 'instructions' => '광고 작성 페이지에 publish_at 및 finish_at 필드를 표시합니다.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/addon.php b/addons/default/visiosoft/advs-module/resources/lang/ku/addon.php index f45c28b92..7f4e5b224 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ku/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'ڕیکلامەکان', 'name' => 'مۆدیلی ڕیکلامەکان', 'description' => 'مۆدیلی ڕیکلامەکان', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/field.php b/addons/default/visiosoft/advs-module/resources/lang/ku/field.php index 0815a5276..a05863cbf 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ku/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/field.php @@ -432,6 +432,10 @@ return [ ', 'owner' => 'Xwedî', 'default_owner_instruction' => 'Ger bikarhêner neyê bijartin dê xwedêgiravî ji bikarhênerê heyî re veqetîne', + 'create_page_subtitle' => 'Bi ketina agahdariyên berfireh ên der barê reklama xwe de bêkêmasî reklamê biafirînin.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Sernavê reklamê', @@ -439,7 +443,8 @@ return [ 'view' => 'Dîtinî', 'ads_with_map' => 'Reklamên Bi Nexşe', 'advanced_sorting' => 'Rêzkirina Pêşkeftî', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Bi peyvê parzûn bikin', + 'filter_by' => 'Fîlterkirin bi: nav', 'free' => 'بەلاش', 'ad_date' => 'بەرواری ڕیکلام @@ -469,4 +474,11 @@ return [ 'name' => 'نرخی کۆن ' ], + 'save_search' => 'Lêgerînê Biparêzin', + 'publish_at' => [ + 'name' => 'Dîroka Weşanê' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ku/setting.php index 92d385d4d..b1bc1e0be 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ku/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Nexşeya Hevrêziya Dirêj', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Logoya Parvekirina Civakî', - 'warning' => 'Divê ew bi çareseriya 1200 x 630 be. ', + 'warning' => 'Divê ew bi çareseriya 1200 x 630 be. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Navnîşana malperê', - 'warning' => 'Auto zêdekirî www. www.sitename.com ', + 'warning' => 'Auto zêdekirî www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Nexşeya Google Key Api', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Cihê Sûkê', ], - 'price_area_hidden' => [ - 'name' => 'Qada Bihayê Veşartî', - ], + 'price_area_hidden' => [ + 'name' => 'Qada Bihayê Veşartî', + ], 'hide_price_filter' => [ 'name' => 'Parzûna Bihayê Veşêre', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Dîroka Afirandî Veşêre', 'instructions' => 'Di rûpela hûrguliyên reklaman de dîroka çêkirî veşêrin', ], - 'hide_listing_header' => [ - 'name' => 'Serê Navnîşê Veşêre', - 'instructions' => 'Ji bo rêzkirin û dîtina celeban vedişêrin', - ], - 'hide_filter_section' => [ - 'name' => 'Beşa Parzûnê Veşêre', - 'instructions' => 'Di rûpelê navnîşkirinê de xwe vedişêrin qada feltera çepê', - ], - 'hide_seller_info' => [ - 'name' => 'Agahdariya Firoterê Veşêre', - 'instructions' => 'Di rûpelê hûrguliyên reklaman de veşartina agahdariya firotanê', - ], + 'hide_listing_header' => [ + 'name' => 'Serê Navnîşê Veşêre', + 'instructions' => 'Ji bo rêzkirin û dîtina celeban vedişêrin', + ], + 'hide_filter_section' => [ + 'name' => 'Beşa Parzûnê Veşêre', + 'instructions' => 'Di rûpelê navnîşkirinê de xwe vedişêrin qada feltera çepê', + ], + 'hide_seller_info' => [ + 'name' => 'Agahdariya Firoterê Veşêre', + 'instructions' => 'Di rûpelê hûrguliyên reklaman de veşartina agahdariya firotanê', + ], 'show_post_ad_agreement' => [ 'name' => 'Peymana Ad Ad-ê nîşan bide', 'instructions' => 'Heke hûn dixwazin li ser rûpela afirandina reklamê peymana siyaseta nepenîtiyê nîşan bikin vê yekê vekin', @@ -251,9 +251,9 @@ return [ 'name' => 'Kategoriyan bistînin', 'instructions' => 'Ew kategoriyên ku tê de taybetmendiya GET dê derbasdar be temsîl dike.' ], - 'disable_sentry' => [ - 'name' => 'Sentry Disable' - ], + 'disable_sentry' => [ + 'name' => 'Sentry Disable' + ], 'watermark' => [ 'name' => 'Watermark', 'instructions' => 'Watermark çalak e?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Binkategoriyan li ser dîmendera mobîl nîşan bide', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Nîşan bidin Bihayê Tenê Endaman', + ], + 'hide_ad_cat' => [ + 'name' => 'Kategoriyan veşêrin', + 'instructions' => 'Di lîsteya reklaman de kategoriyan veşêrin' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Ji Bo Afirandinê Dîroka Dawî And Nîşan Bikin', + 'instructions' => 'Zeviyên publ_at û finish_at li ser rûpela afirandina reklaman nîşan dide.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/addon.php b/addons/default/visiosoft/advs-module/resources/lang/nl/addon.php index 1f2f29239..2404bc93d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'advertenties', 'name' => 'Advertenties module', 'description' => 'Advertenties module', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 868731e20..8b6ec07a5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/field.php @@ -337,6 +337,10 @@ return [ 'ad_location' => 'Advertentielocatie', 'owner' => 'Eigenaar', 'default_owner_instruction' => 'De eigenaar wordt standaard de huidige gebruiker als er geen gebruiker is geselecteerd', + 'create_page_subtitle' => 'Maak de advertentie feilloos door gedetailleerde informatie over uw advertentie in te voeren.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Voeg titel toe', @@ -344,7 +348,8 @@ return [ 'view' => 'Visie', 'ads_with_map' => 'Advertenties met kaart', 'advanced_sorting' => 'Geavanceerd sorteren', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filter op woord', + 'filter_by' => 'Filteren op: naam', 'free' => 'Vrij', 'ad_date' => 'Advertentiedatum', @@ -368,4 +373,11 @@ return [ 'old_price' => [ 'name' => 'Oude prijs' ], + 'save_search' => 'Zoekopdracht opslaan', + 'publish_at' => [ + 'name' => 'Publiceer datum' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 4502c1a32..d9bc4fcff 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Lange coördinaten in kaart brengen', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Social Share-logo', - 'warning' => 'Het moet een resolutie hebben van 1200 x 630.', + 'warning' => 'Het moet een resolutie hebben van 1200 x 630.', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Siteadres', - 'warning' => 'Auto toegevoegd www. www. sitename.com', + 'warning' => 'Auto toegevoegd www. www. sitename.com', ], 'google_map_key' => [ 'name' => 'Google Map Api Key', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Marktplaats', ], - 'price_area_hidden' => [ - 'name' => 'Prijsgebied verborgen', - ], + 'price_area_hidden' => [ + 'name' => 'Prijsgebied verborgen', + ], 'hide_price_filter' => [ 'name' => 'Prijsfilter verbergen', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Aanmaakdatum verbergen', 'instructions' => 'Verberg de aanmaakdatum op de detailpagina van de advertenties', ], - 'hide_listing_header' => [ - 'name' => 'Verberg koptekst', - 'instructions' => 'Verbergen om typen te bestellen en te bekijken', - ], - 'hide_filter_section' => [ - 'name' => 'Filtergedeelte verbergen', - 'instructions' => 'Verbergen naar linker filtergebied op lijstpagina', - ], - 'hide_seller_info' => [ - 'name' => 'Verberg verkopersinformatie', - 'instructions' => 'Verbergen voor verkopersinformatie op de detailpagina van advertenties', - ], + 'hide_listing_header' => [ + 'name' => 'Verberg koptekst', + 'instructions' => 'Verbergen om typen te bestellen en te bekijken', + ], + 'hide_filter_section' => [ + 'name' => 'Filtergedeelte verbergen', + 'instructions' => 'Verbergen naar linker filtergebied op lijstpagina', + ], + 'hide_seller_info' => [ + 'name' => 'Verberg verkopersinformatie', + 'instructions' => 'Verbergen voor verkopersinformatie op de detailpagina van advertenties', + ], 'show_post_ad_agreement' => [ 'name' => 'Toon advertentieovereenkomst', 'instructions' => 'Schakel dit in als u een privacybeleidsovereenkomst wilt weergeven op de pagina voor het maken van advertenties', @@ -251,9 +251,9 @@ return [ 'name' => 'GET Categorieën', 'instructions' => 'Het vertegenwoordigt de categorieën waarin de eigenschap GET geldig zal zijn.' ], - 'disable_sentry' => [ - 'name' => 'Schakel Sentry uit' - ], + 'disable_sentry' => [ + 'name' => 'Schakel Sentry uit' + ], 'watermark' => [ 'name' => 'Watermerk', 'instructions' => 'Is watermerk actief?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Toon subcategorieën op mobiele weergave', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Toon prijs alleen aan leden', + ], + 'hide_ad_cat' => [ + 'name' => 'Categorieën verbergen', + 'instructions' => 'Verberg categorieën in de lijst met advertenties' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Toon einddatum en publicatiedatum voor maken', + 'instructions' => 'Geeft de velden publish_at en finish_at weer op de pagina voor het maken van advertenties.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/no/addon.php b/addons/default/visiosoft/advs-module/resources/lang/no/addon.php index e38788077..670da8d77 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/no/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/no/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Annonser', 'name' => 'Annonsemodul', 'description' => 'Annonsemodul', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/no/field.php b/addons/default/visiosoft/advs-module/resources/lang/no/field.php index 62a122d4d..96160ba0d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/no/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/no/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Annonseplassering', 'owner' => 'Eieren', 'default_owner_instruction' => 'Eieren vil som standard være den nåværende brukeren hvis ingen bruker er valgt', + 'create_page_subtitle' => 'Opprett annonsen feilfritt ved å legge inn detaljert informasjon om annonsen din.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Annonsetittel', @@ -343,7 +347,8 @@ return [ 'view' => 'Utsikt', 'ads_with_map' => 'Annonser med kart', 'advanced_sorting' => 'Avansert sortering', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filtrer etter ord', + 'filter_by' => 'Filtrer etter: navn', 'free' => 'Gratis', 'ad_date' => 'Annonsedato', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Gammel pris' ], + 'save_search' => 'Lagre søk', + 'publish_at' => [ + 'name' => 'Publiseringsdato' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/no/setting.php b/addons/default/visiosoft/advs-module/resources/lang/no/setting.php index 660cdc351..083a0865f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/no/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/no/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Kart Long Coordinate', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Social Share-logo', - 'warning' => 'Den skal ha en oppløsning på 1200 x 630. ', + 'warning' => 'Den skal ha en oppløsning på 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Nettstedsadresse', - 'warning' => 'Automatisk lagt til www. www.sitename.com ', + 'warning' => 'Automatisk lagt til www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Google Map Api Key', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Markedsplass', ], - 'price_area_hidden' => [ - 'name' => 'Prisområde skjult', - ], + 'price_area_hidden' => [ + 'name' => 'Prisområde skjult', + ], 'hide_price_filter' => [ 'name' => 'Skjul prisfilter', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Skjul opprettet dato', 'instructions' => 'Skjul opprettet dato på siden med annonser', ], - 'hide_listing_header' => [ - 'name' => 'Skjul oppføringshode', - 'instructions' => 'Gjemmer seg for bestilling og visningstyper', - ], - 'hide_filter_section' => [ - 'name' => 'Skjul filterseksjonen', - 'instructions' => 'Gjemmer seg til venstre filterområde på oppføringssiden', - ], - 'hide_seller_info' => [ - 'name' => 'Skjul selgerinformasjon', - 'instructions' => 'Skjuler seg til selgerinformasjon på siden med annonser', - ], + 'hide_listing_header' => [ + 'name' => 'Skjul oppføringshode', + 'instructions' => 'Gjemmer seg for bestilling og visningstyper', + ], + 'hide_filter_section' => [ + 'name' => 'Skjul filterseksjonen', + 'instructions' => 'Gjemmer seg til venstre filterområde på oppføringssiden', + ], + 'hide_seller_info' => [ + 'name' => 'Skjul selgerinformasjon', + 'instructions' => 'Skjuler seg til selgerinformasjon på siden med annonser', + ], 'show_post_ad_agreement' => [ 'name' => 'Vis avtale om innleggsannonser', 'instructions' => 'Slå på dette hvis du vil vise en avtale om personvern på siden for annonseoppretting', @@ -251,9 +251,9 @@ return [ 'name' => 'FÅ kategorier', 'instructions' => 'Den representerer kategoriene der GET-egenskapen vil være gyldig.' ], - 'disable_sentry' => [ - 'name' => 'Deaktiver vaktpost' - ], + 'disable_sentry' => [ + 'name' => 'Deaktiver vaktpost' + ], 'watermark' => [ 'name' => 'Vannmerke', 'instructions' => 'Er vannmerke aktivt?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Vis underkategorier på mobilvisning', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Vis pris kun for medlemmer', + ], + 'hide_ad_cat' => [ + 'name' => 'Skjul kategorier', + 'instructions' => 'Skjul kategorier i annonselisten' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Vis sluttdato og publiser dato for oppretting', + 'instructions' => 'Viser feltene publish_at og finish_at på siden for annonseoppretting.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/addon.php b/addons/default/visiosoft/advs-module/resources/lang/pl/addon.php index d2f0fe597..896f86a40 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Reklamy', 'name' => 'Moduł reklam', 'description' => 'Moduł reklam', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 d53c7eb22..80b007046 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Lokalizacja reklamy', 'owner' => 'Właściciel', 'default_owner_instruction' => 'Właścicielem będzie domyślnie bieżący użytkownik, jeśli żaden użytkownik nie zostanie wybrany', + 'create_page_subtitle' => 'Utwórz reklamę bezbłędnie, wprowadzając szczegółowe informacje o swojej reklamie.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Tytuł ogłoszenia', @@ -343,7 +347,8 @@ return [ 'view' => 'Widok', 'ads_with_map' => 'Reklamy z mapą', 'advanced_sorting' => 'Zaawansowane sortowanie', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filtruj według słowa', + 'filter_by' => 'Filtruj według: nazwa', 'free' => 'Wolny', 'ad_date' => 'Data ogłoszenia', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Stara cena' ], + 'save_search' => 'Zapisz wyszukanie', + 'publish_at' => [ + 'name' => 'Data publikacji' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 61f17f84e..4d3857224 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Współrzędna długa mapy', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Logo akcji społecznościowych', - 'warning' => 'Powinien mieć rozdzielczość 1200 x 630. ', + 'warning' => 'Powinien mieć rozdzielczość 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Adres miejsca', - 'warning' => 'Dodano auto www. www.sitename.com ', + 'warning' => 'Dodano auto www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Google Map Api Key', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Rynek', ], - 'price_area_hidden' => [ - 'name' => 'Ukryty obszar cen', - ], + 'price_area_hidden' => [ + 'name' => 'Ukryty obszar cen', + ], 'hide_price_filter' => [ 'name' => 'Ukryj filtr cen', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Ukryj datę utworzenia', 'instructions' => 'Ukryj datę utworzenia na stronie szczegółów reklam', ], - 'hide_listing_header' => [ - 'name' => 'Ukryj nagłówek aukcji', - 'instructions' => 'Ukrywanie do porządkowania i przeglądania typów', - ], - 'hide_filter_section' => [ - 'name' => 'Ukryj sekcję filtrów', - 'instructions' => 'Ukrywanie w lewym obszarze filtra na stronie listy', - ], - 'hide_seller_info' => [ - 'name' => 'Ukryj informacje o sprzedającym', - 'instructions' => 'Ukrywanie informacji o sprzedawcy na stronie szczegółów ogłoszeń', - ], + 'hide_listing_header' => [ + 'name' => 'Ukryj nagłówek aukcji', + 'instructions' => 'Ukrywanie do porządkowania i przeglądania typów', + ], + 'hide_filter_section' => [ + 'name' => 'Ukryj sekcję filtrów', + 'instructions' => 'Ukrywanie w lewym obszarze filtra na stronie listy', + ], + 'hide_seller_info' => [ + 'name' => 'Ukryj informacje o sprzedającym', + 'instructions' => 'Ukrywanie informacji o sprzedawcy na stronie szczegółów ogłoszeń', + ], 'show_post_ad_agreement' => [ 'name' => 'Pokaż umowę opublikowania ogłoszenia', 'instructions' => 'Włącz tę opcję, jeśli chcesz wyświetlać umowę o polityce prywatności na stronie tworzenia reklamy', @@ -251,9 +251,9 @@ return [ 'name' => 'POBIERZ kategorie', 'instructions' => 'Reprezentuje kategorie, w których właściwość GET będzie ważna.' ], - 'disable_sentry' => [ - 'name' => 'Wyłącz Sentry' - ], + 'disable_sentry' => [ + 'name' => 'Wyłącz Sentry' + ], 'watermark' => [ 'name' => 'znak wodny', 'instructions' => 'Czy znak wodny jest aktywny?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Pokaż podkategorie w widoku mobilnym', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Pokaż cenę tylko członkom', + ], + 'hide_ad_cat' => [ + 'name' => 'Ukryj kategorie', + 'instructions' => 'Ukryj kategorie na liście ogłoszeń' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Pokaż datę zakończenia i datę publikacji do utworzenia', + 'instructions' => 'Wyświetla pola publ_at i finish_at na stronie tworzenia reklamy.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/addon.php b/addons/default/visiosoft/advs-module/resources/lang/pt/addon.php index 4d68cc6de..8f75d33f2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Publicidades', 'name' => 'Módulo de anúncios', 'description' => 'Módulo de anúncios', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 7ccf0f851..fc4bcd37c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/field.php @@ -337,6 +337,10 @@ return [ 'ad_location' => 'Localização do anúncio', 'owner' => 'Proprietário', 'default_owner_instruction' => 'O proprietário assumirá como padrão o usuário atual se nenhum usuário for selecionado', + 'create_page_subtitle' => 'Crie o anúncio perfeitamente inserindo informações detalhadas sobre o seu anúncio.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Título do anúncio', @@ -344,7 +348,8 @@ return [ 'view' => 'Visualizar', 'ads_with_map' => 'Anúncios com mapa', 'advanced_sorting' => 'Classificação Avançada', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filtrar por palavra', + 'filter_by' => 'Filtrar por: nome', 'free' => 'Livre', 'ad_date' => 'Data do Anúncio', @@ -368,4 +373,11 @@ return [ 'old_price' => [ 'name' => 'Preço antigo' ], + 'save_search' => 'Salvar busca', + 'publish_at' => [ + 'name' => 'Data de publicação' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 8c2a94658..d87e5c012 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Mapear Coordenadas Longas', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Social Share Logo', - 'warning' => 'Deve estar em uma resolução de 1200 x 630.', + 'warning' => 'Deve estar em uma resolução de 1200 x 630.', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Endereço do site', - 'warning' => 'Auto adicionado www. www. sitename.com', + 'warning' => 'Auto adicionado www. www. sitename.com', ], 'google_map_key' => [ 'name' => 'Chave da API do Google Map', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Mercado', ], - 'price_area_hidden' => [ - 'name' => 'Área de preço oculta', - ], + 'price_area_hidden' => [ + 'name' => 'Área de preço oculta', + ], 'hide_price_filter' => [ 'name' => 'Ocultar filtro de preço', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Ocultar data de criação', 'instructions' => 'Ocultar data de criação na página de detalhes de anúncios', ], - 'hide_listing_header' => [ - 'name' => 'Ocultar cabeçalho da lista', - 'instructions' => 'Escondendo os tipos de pedido e visualização', - ], - 'hide_filter_section' => [ - 'name' => 'Ocultar seção de filtro', - 'instructions' => 'Escondendo a área de filtro à esquerda na página de listagem', - ], - 'hide_seller_info' => [ - 'name' => 'Ocultar informações do vendedor', - 'instructions' => 'Escondendo as informações do vendedor na página de detalhes dos anúncios', - ], + 'hide_listing_header' => [ + 'name' => 'Ocultar cabeçalho da lista', + 'instructions' => 'Escondendo os tipos de pedido e visualização', + ], + 'hide_filter_section' => [ + 'name' => 'Ocultar seção de filtro', + 'instructions' => 'Escondendo a área de filtro à esquerda na página de listagem', + ], + 'hide_seller_info' => [ + 'name' => 'Ocultar informações do vendedor', + 'instructions' => 'Escondendo as informações do vendedor na página de detalhes dos anúncios', + ], 'show_post_ad_agreement' => [ 'name' => 'Mostrar Acordo de Postagem', 'instructions' => 'Ative-o se quiser exibir um acordo de política de privacidade na página de criação de anúncios', @@ -251,9 +251,9 @@ return [ 'name' => 'GET Categorias', 'instructions' => 'Representa as categorias nas quais a propriedade GET será válida.' ], - 'disable_sentry' => [ - 'name' => 'Desativar Sentinela' - ], + 'disable_sentry' => [ + 'name' => 'Desativar Sentinela' + ], 'watermark' => [ 'name' => 'Marca d\'água', 'instructions' => 'A marca d\'água está ativa?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Mostrar subcategorias na visualização móvel', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Mostrar preço apenas para membros', + ], + 'hide_ad_cat' => [ + 'name' => 'Ocultar categorias', + 'instructions' => 'Ocultar categorias na lista de anúncios' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Mostrar data de término e data de publicação para criar', + 'instructions' => 'Exibe os campos publish_at e finish_at na página de criação do anúncio.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/addon.php b/addons/default/visiosoft/advs-module/resources/lang/ro/addon.php index 6f00be684..7671eca1a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Reclame', 'name' => 'Modulul de reclame', 'description' => 'Modulul de reclame', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 b01f77e55..743816cdc 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Locația anunțului', 'owner' => 'Proprietar', 'default_owner_instruction' => 'Proprietarul va folosi implicit utilizatorul curent dacă nu este selectat niciun utilizator', + 'create_page_subtitle' => 'Creați anunțul impecabil introducând informații detaliate despre anunțul dvs.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Adaugă titlu', @@ -343,7 +347,8 @@ return [ 'view' => 'Vedere', 'ads_with_map' => 'Anunțuri cu hartă', 'advanced_sorting' => 'Sortare avansată', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filtrează după cuvânt', + 'filter_by' => 'Filtrează după: nume', 'free' => 'Gratuit', 'ad_date' => 'Data publicității', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Preț vechi' ], + 'save_search' => 'Salvează căutarea', + 'publish_at' => [ + 'name' => 'Data publicării' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 99ca70ec7..193c178ed 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Coordonarea pe hartă lungă', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Logo Social Share', - 'warning' => 'Ar trebui să fie la o rezoluție de 1200 x 630. ', + 'warning' => 'Ar trebui să fie la o rezoluție de 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Adresa site-ului', - 'warning' => 'Auto adăugat www. www.sitename.com ', + 'warning' => 'Auto adăugat www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Cheie Api Google Map', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Piata de desfacere', ], - 'price_area_hidden' => [ - 'name' => 'Zona de preț ascunsă', - ], + 'price_area_hidden' => [ + 'name' => 'Zona de preț ascunsă', + ], 'hide_price_filter' => [ 'name' => 'Ascundeți filtrul de preț', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Ascundeți data creată', 'instructions' => 'Ascundeți data creată în pagina de detalii a anunțurilor', ], - 'hide_listing_header' => [ - 'name' => 'Ascundeți antetul listării', - 'instructions' => 'Ascunderea la comanda și vizualizarea tipurilor', - ], - 'hide_filter_section' => [ - 'name' => 'Ascunde secțiunea de filtrare', - 'instructions' => 'Se ascunde în zona de filtrare din stânga în pagina listării', - ], - 'hide_seller_info' => [ - 'name' => 'Ascundeți informațiile despre vânzător', - 'instructions' => 'Ascunderea informațiilor despre vânzător în pagina de detalii a anunțurilor', - ], + 'hide_listing_header' => [ + 'name' => 'Ascundeți antetul listării', + 'instructions' => 'Ascunderea la comanda și vizualizarea tipurilor', + ], + 'hide_filter_section' => [ + 'name' => 'Ascunde secțiunea de filtrare', + 'instructions' => 'Se ascunde în zona de filtrare din stânga în pagina listării', + ], + 'hide_seller_info' => [ + 'name' => 'Ascundeți informațiile despre vânzător', + 'instructions' => 'Ascunderea informațiilor despre vânzător în pagina de detalii a anunțurilor', + ], 'show_post_ad_agreement' => [ 'name' => 'Afișați acordul de postare a anunțului', 'instructions' => 'Activați acest lucru dacă doriți să afișați un acord privind politica de confidențialitate pe pagina de creare a anunțului', @@ -251,9 +251,9 @@ return [ 'name' => 'GET Categorii', 'instructions' => 'Reprezintă categoriile în care proprietatea GET va fi validă.' ], - 'disable_sentry' => [ - 'name' => 'Dezactivați Sentinela' - ], + 'disable_sentry' => [ + 'name' => 'Dezactivați Sentinela' + ], 'watermark' => [ 'name' => 'Filigran', 'instructions' => 'Filigranul este activ?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Afișați subcategoriile pe ecranul mobil', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Afișați prețul numai membrilor', + ], + 'hide_ad_cat' => [ + 'name' => 'Ascundeți categoriile', + 'instructions' => 'Ascundeți categoriile din lista de anunțuri' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Afișați data de finalizare și data de publicare pentru a crea', + 'instructions' => 'Afișează câmpurile publish_at și finish_at de pe pagina de creare a anunțului.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/addon.php b/addons/default/visiosoft/advs-module/resources/lang/ru/addon.php index 390cfff21..c74d532db 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Объявления', 'name' => 'Рекламный модуль', 'description' => 'Рекламный модуль', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 a966b8735..c7b955f0a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/field.php @@ -337,6 +337,10 @@ return [ 'ad_location' => 'Местоположение объявления', 'owner' => 'Владелец', 'default_owner_instruction' => 'Если пользователь не выбран, владельцем по умолчанию будет текущий пользователь', + 'create_page_subtitle' => 'Создайте объявление безупречно, введя подробную информацию о нем.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Заголовок объявления', @@ -344,7 +348,8 @@ return [ 'view' => 'Вид', 'ads_with_map' => 'Объявления с картой', 'advanced_sorting' => 'Расширенная сортировка', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Фильтр по слову', + 'filter_by' => 'Фильтровать по: названию', 'free' => 'Бесплатно', 'ad_date' => 'Дата объявления', @@ -368,4 +373,11 @@ return [ 'old_price' => [ 'name' => 'Старая цена' ], + 'save_search' => 'Сохранить поиск', + 'publish_at' => [ + 'name' => 'Дата публикации' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 2e4214fa9..19c039459 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Карта Длинная координата', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Social Share Logo', - 'warning' => 'Это должно быть с разрешением 1200 х 630.', + 'warning' => 'Это должно быть с разрешением 1200 х 630.', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Адрес сайта', - 'warning' => 'Авто добавлено www. WWW. sitename.com', + 'warning' => 'Авто добавлено www. WWW. sitename.com', ], 'google_map_key' => [ 'name' => 'Google Map Api Key', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Рыночная площадь', ], - 'price_area_hidden' => [ - 'name' => 'Цена Площадь Скрыта', - ], + 'price_area_hidden' => [ + 'name' => 'Цена Площадь Скрыта', + ], 'hide_price_filter' => [ 'name' => 'Скрыть фильтр цен', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Скрыть дату создания', 'instructions' => 'Скрыть дату создания на странице сведений об объявлениях', ], - 'hide_listing_header' => [ - 'name' => 'Скрыть заголовок объявления', - 'instructions' => 'Скрытие для заказа и просмотра типов', - ], - 'hide_filter_section' => [ - 'name' => 'Скрыть раздел фильтра', - 'instructions' => 'Скрытие в левой области фильтра на странице списка', - ], - 'hide_seller_info' => [ - 'name' => 'Скрыть информацию о продавце', - 'instructions' => 'Скрытие информации о продавце на странице сведений о рекламе', - ], + 'hide_listing_header' => [ + 'name' => 'Скрыть заголовок объявления', + 'instructions' => 'Скрытие для заказа и просмотра типов', + ], + 'hide_filter_section' => [ + 'name' => 'Скрыть раздел фильтра', + 'instructions' => 'Скрытие в левой области фильтра на странице списка', + ], + 'hide_seller_info' => [ + 'name' => 'Скрыть информацию о продавце', + 'instructions' => 'Скрытие информации о продавце на странице сведений о рекламе', + ], 'show_post_ad_agreement' => [ 'name' => 'Показать соглашение о публикации рекламы', 'instructions' => 'Включите это, если вы хотите отображать соглашение о политике конфиденциальности на странице создания рекламы.', @@ -251,9 +251,9 @@ return [ 'name' => 'Получить Категории', 'instructions' => 'Он представляет категории, в которых будет действовать свойство GET.' ], - 'disable_sentry' => [ - 'name' => 'Отключить Sentry' - ], + 'disable_sentry' => [ + 'name' => 'Отключить Sentry' + ], 'watermark' => [ 'name' => 'Водяной знак', 'instructions' => 'Водяной знак активен?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Показывать подкатегории в мобильном представлении', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Показывать цену только участникам', + ], + 'hide_ad_cat' => [ + 'name' => 'Скрыть категории', + 'instructions' => 'Скрыть категории в списке объявлений' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Показать дату окончания и дату публикации для создания', + 'instructions' => 'Отображает поля publish_at и finish_at на странице создания объявления.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/addon.php b/addons/default/visiosoft/advs-module/resources/lang/sq/addon.php index 3317df431..22d3cc554 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Njoftime', 'name' => 'Moduli i Njoftime', 'description' => 'Moduli i Njoftime', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 0ca65db02..4a2d4ab7a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/field.php @@ -337,6 +337,10 @@ return [ 'ad_location' => 'Vendndodhja e reklamës', 'owner' => 'Pronar', 'default_owner_instruction' => 'Pronari do të zgjedhë përdoruesin aktual nëse nuk zgjidhet asnjë përdorues', + 'create_page_subtitle' => 'Krijoni reklamën në mënyrë të përsosur duke futur informacione të hollësishme në lidhje me reklamën tuaj.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Titulli i reklamës', @@ -344,7 +348,8 @@ return [ 'view' => 'Pamje', 'ads_with_map' => 'Reklama me hartë', 'advanced_sorting' => 'Renditja e avancuar', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filtro me fjalë', + 'filter_by' => 'Filtro sipas: emrit', 'free' => 'Falas', 'ad_date' => 'Data e shpalljes', @@ -368,4 +373,11 @@ return [ 'old_price' => [ 'name' => 'Çmimi i Vjetër' ], + 'save_search' => 'Ruaj kërkimin', + 'publish_at' => [ + 'name' => 'Data e Publikimit' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 cc938af2a..69ed71136 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Koordinata e gjatë e hartës', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Logo e përbashkët sociale', - 'warning' => 'Ajo duhet të jetë në një rezolutë prej 1200 x 630. ', + 'warning' => 'Ajo duhet të jetë në një rezolutë prej 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Adresa e Faqja internet', - 'warning' => 'Auto shtuar www. www.sitename.com ', + 'warning' => 'Auto shtuar www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Google Key Api Key', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Vendi i tregut', ], - 'price_area_hidden' => [ - 'name' => 'Zona e Çmimit e Fshehur', - ], + 'price_area_hidden' => [ + 'name' => 'Zona e Çmimit e Fshehur', + ], 'hide_price_filter' => [ 'name' => 'Fsheh Filterin e Pricemimeve', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Fshih datën e krijuar', 'instructions' => 'Fshih datën e krijuar në faqen e detajeve të reklamave', ], - 'hide_listing_header' => [ - 'name' => 'Fshih titullin e listës', - 'instructions' => 'Fshehja për renditjen dhe shikimin e llojeve', - ], - 'hide_filter_section' => [ - 'name' => 'Fshih pjesën e filtrit', - 'instructions' => 'Fshihet në zonën e majtë të filtrit në faqen e listës', - ], - 'hide_seller_info' => [ - 'name' => 'Fshih informacionin e shitësit', - 'instructions' => 'Fshehja e informacionit të shitësit në faqen e detajeve të reklamave', - ], + 'hide_listing_header' => [ + 'name' => 'Fshih titullin e listës', + 'instructions' => 'Fshehja për renditjen dhe shikimin e llojeve', + ], + 'hide_filter_section' => [ + 'name' => 'Fshih pjesën e filtrit', + 'instructions' => 'Fshihet në zonën e majtë të filtrit në faqen e listës', + ], + 'hide_seller_info' => [ + 'name' => 'Fshih informacionin e shitësit', + 'instructions' => 'Fshehja e informacionit të shitësit në faqen e detajeve të reklamave', + ], 'show_post_ad_agreement' => [ 'name' => 'Shfaq Marrëveshjen për shpalljen e postimit', 'instructions' => 'Aktivizo këtë nëse dëshiron të shfaqësh një marrëveshje të politikës së privatësisë në faqen e krijimit të reklamës', @@ -251,9 +251,9 @@ return [ 'name' => 'GET Kategoritë', 'instructions' => 'Ai përfaqëson kategoritë në të cilat prona GET do të jetë e vlefshme.' ], - 'disable_sentry' => [ - 'name' => 'Çaktivizo rojet' - ], + 'disable_sentry' => [ + 'name' => 'Çaktivizo rojet' + ], 'watermark' => [ 'name' => 'Filigranë', 'instructions' => 'A është ujëra aktive?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Shfaq nënkategoritë në pamjen e celularëve', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Shfaq Çmimin Vetëm Anëtarëve', + ], + 'hide_ad_cat' => [ + 'name' => 'Fshih kategoritë', + 'instructions' => 'Fshih kategoritë në listën e reklamave' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Trego datën e përfundimit dhe datën e publikimit për krijimin', + 'instructions' => 'Shfaq fushat publ_at dhe finish_at në faqen e krijimit të reklamave.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sr/addon.php b/addons/default/visiosoft/advs-module/resources/lang/sr/addon.php index ef97c11ee..29d742abd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sr/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sr/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Oglasi', 'name' => 'Oglasi Modul', 'description' => 'Oglasi Modul', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sr/field.php b/addons/default/visiosoft/advs-module/resources/lang/sr/field.php index 2852c1fe3..05bbc2cda 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sr/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Lokacija oglasa', 'owner' => 'Vlasnik', 'default_owner_instruction' => 'Vlasnik će podrazumevano biti trenutni korisnk, ukoliko korisnik nije izabran', + 'create_page_subtitle' => 'Create the ad flawlessly by entering detailed information about your ad.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Naslov oglasa', @@ -344,6 +348,7 @@ return [ 'ads_with_map' => 'Oglasi sa mapom', 'advanced_sorting' => 'Napredno sortiranje', 'filter_by_word' => 'Filter po reči', + 'filter_by' => 'Filter by :name', 'free' => 'Besplatno', 'ad_date' => 'Datum oglasa', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Stare cena' ], + 'save_search' => 'Save Search', + 'publish_at' => [ + 'name' => 'Publish Date' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sr/permission.php b/addons/default/visiosoft/advs-module/resources/lang/sr/permission.php index e1a2d35b1..d5777e683 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sr/permission.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sr/permission.php @@ -84,9 +84,9 @@ return [ 'option_configuration' => [ 'name' => 'Konfiguracija opcije', 'option' => [ - 'read' => 'Može da vidi Konfiguracija opcije?', - 'write' => 'Može da kreira/uređuje Konfiguracija opcije?', - 'delete' => 'Može da obriše Konfiguracija opcije?', + 'read' => 'Može da vidi konfiguraciju opcije?', + 'write' => 'Može da kreira / uređuje konfiguraciju opcije?', + 'delete' => 'Može da obriše konfiguraciju opcije?', ], ], 'option_configuration' => [ diff --git a/addons/default/visiosoft/advs-module/resources/lang/sr/setting.php b/addons/default/visiosoft/advs-module/resources/lang/sr/setting.php index c7f3989a8..3cd8ced00 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sr/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Map Long Koordinate', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Logo za deljenje na društvenim mrežama', - 'warning' => 'Trebalo bi da bude u rezoluciji 1200x630. ', + 'warning' => 'Trebalo bi da bude u rezoluciji 1200x630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Adresa sajta', - 'warning' => 'Automatski dodato www. www.sitename.com ', + 'warning' => 'Automatski dodato www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Google Map Api Key', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Trgovina', ], - 'price_area_hidden' => [ - 'name' => 'Područje cena skriveno', - ], + 'price_area_hidden' => [ + 'name' => 'Područje cena skriveno', + ], 'hide_price_filter' => [ 'name' => 'Sakrij filter cena', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Sakrij datum kreiranja', 'instructions' => 'Sakrij datum kreranja u detaljima oglasa', ], - 'hide_listing_header' => [ - 'name' => 'Sakrij Zaglavlje liste', - 'instructions' => 'Sakrivanje redosleda i tipova pregleda', - ], - 'hide_filter_section' => [ - 'name' => 'Sakrij filter sekciju', - 'instructions' => 'Sakrijte područje filtera sa leve strane u Listi', - ], - 'hide_seller_info' => [ - 'name' => 'Sakrij Informacije prodavca', - 'instructions' => 'Sakrij informacije o prodavcu na stranici sa detaljima oglasa', - ], + 'hide_listing_header' => [ + 'name' => 'Sakrij Zaglavlje liste', + 'instructions' => 'Sakrivanje redosleda i tipova pregleda', + ], + 'hide_filter_section' => [ + 'name' => 'Sakrij filter sekciju', + 'instructions' => 'Sakrijte područje filtera sa leve strane u Listi', + ], + 'hide_seller_info' => [ + 'name' => 'Sakrij Informacije prodavca', + 'instructions' => 'Sakrij informacije o prodavcu na stranici sa detaljima oglasa', + ], 'show_post_ad_agreement' => [ 'name' => 'Prikaži ugovor o objavljivanju oglasa', 'instructions' => 'Uključite ovo ako želite da na stranici za izradu oglasa prikažete ugovor o politici privatnosti', @@ -251,9 +251,9 @@ return [ 'name' => 'GET Kategorije', 'instructions' => 'Predstavlja kategorije u kojima će GET svojstvo biti važeće.' ], - 'disable_sentry' => [ - 'name' => 'Isključite Sentry' - ], + 'disable_sentry' => [ + 'name' => 'Isključite Sentry' + ], 'watermark' => [ 'name' => 'Vodeni žig', 'instructions' => 'Da li je aktivan vodeni žig?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Prikažite potkategorije na mobilnom prikazu', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Show Price To Members Only', + ], + 'hide_ad_cat' => [ + 'name' => 'Hide Categories', + 'instructions' => 'Hide categories in ads list' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Show Finish Date And Publish Date For Create', + 'instructions' => 'Displays the publish_at and finish_at fields on the ad creation page.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/addon.php b/addons/default/visiosoft/advs-module/resources/lang/sv/addon.php index 9dc84e9a3..ea2095da9 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'annonser', 'name' => 'Annonsmodul', 'description' => 'Annonsmodul', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 fd9147dce..0cb24b0d4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Annonsplats', 'owner' => 'Ägare', 'default_owner_instruction' => 'Ägaren kommer som standard att använda den nuvarande användaren om ingen användare har valts', + 'create_page_subtitle' => 'Skapa annonsen felfritt genom att ange detaljerad information om din annons.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Lägg till titel', @@ -343,7 +347,8 @@ return [ 'view' => 'Se', 'ads_with_map' => 'Annonser med karta', 'advanced_sorting' => 'Avancerad sortering', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Filtrera efter ord', + 'filter_by' => 'Filtrera efter: namn', 'free' => 'Fri', 'ad_date' => 'Annonsdatum', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Gammalt pris' ], + 'save_search' => 'Spara sökning', + 'publish_at' => [ + 'name' => 'Utgivningsdatum' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 db5ceee85..286196b4f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Karta över lång koordinat', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Social Share Logo', - 'warning' => 'Det ska vara i en upplösning på 1200 x 630. ', + 'warning' => 'Det ska vara i en upplösning på 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Webbplatsadress', - 'warning' => 'Auto lagt till www. www.sitename.com ', + 'warning' => 'Auto lagt till www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Google Map Api-nyckel', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Market Place', ], - 'price_area_hidden' => [ - 'name' => 'Prisområde dolt', - ], + 'price_area_hidden' => [ + 'name' => 'Prisområde dolt', + ], 'hide_price_filter' => [ 'name' => 'Dölj prisfilter', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Dölj skapat datum', 'instructions' => 'Dölj skapat datum på sidan med annonser', ], - 'hide_listing_header' => [ - 'name' => 'Dölj listhuvud', - 'instructions' => 'Döljer för beställning och visningstyper', - ], - 'hide_filter_section' => [ - 'name' => 'Dölj filteravsnittet', - 'instructions' => 'Gömmer till vänster filterområde på listningssidan', - ], - 'hide_seller_info' => [ - 'name' => 'Dölj säljarinformation', - 'instructions' => 'Dölja information till säljare på sidan med annonser', - ], + 'hide_listing_header' => [ + 'name' => 'Dölj listhuvud', + 'instructions' => 'Döljer för beställning och visningstyper', + ], + 'hide_filter_section' => [ + 'name' => 'Dölj filteravsnittet', + 'instructions' => 'Gömmer till vänster filterområde på listningssidan', + ], + 'hide_seller_info' => [ + 'name' => 'Dölj säljarinformation', + 'instructions' => 'Dölja information till säljare på sidan med annonser', + ], 'show_post_ad_agreement' => [ 'name' => 'Visa annonsannonsavtal', 'instructions' => 'Aktivera detta om du vill visa ett integritetspolicyavtal på sidan för skapande av annonser', @@ -251,9 +251,9 @@ return [ 'name' => 'Hämta kategorier', 'instructions' => 'Det representerar de kategorier i vilka GET-egenskapen är giltig.' ], - 'disable_sentry' => [ - 'name' => 'Inaktivera vaktpost' - ], + 'disable_sentry' => [ + 'name' => 'Inaktivera vaktpost' + ], 'watermark' => [ 'name' => 'Vattenstämpel', 'instructions' => 'Är vattenstämpel aktivt?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Visa underkategorier i mobilvy', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Visa pris endast för medlemmar', + ], + 'hide_ad_cat' => [ + 'name' => 'Dölj kategorier', + 'instructions' => 'Dölj kategorier i annonslistan' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Visa slutdatum och publicera datum för skapande', + 'instructions' => 'Visar fälten publish_at och finish_at på sidan för att skapa annonser.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/addon.php b/addons/default/visiosoft/advs-module/resources/lang/tr/addon.php index e67f5e588..f3be3d8de 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'İlanlar', 'name' => 'İlanlar Modülü', 'description' => 'İlan Modülü', + 'info' => 'İlanlar sayfasından ilan ekleyebileceğini, silebileceğiniz ve düzenleyebileceğiniz ekrandır. Bu sayfada yüklenmiş ilan veya ürünlerin yönetimini ve yapılandırılmasını basitçe yapabilirsiniz.' ]; 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 3500a0ce0..01550dbbf 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/field.php @@ -339,6 +339,10 @@ return [ 'owner' => 'Sahip', 'default_owner_instruction' => 'Hiçbir kullanıcı seçilmezse, sahip varsayılan olarak mevcut kullanıcıyı kullanır', 'create_page_subtitle' => 'Ürün veya ilan hakkında detaylı bilgi girebilirsiniz', + 'with_my_phone_numbers' => 'Telefon numaralarım ile', + 'not_with_my_phone_numbers' => "Telefonla ulaşım sağlamak istemiyorum.", + 'how_can_you_be_contacted' => "Nasıl iletişime geçilebilir? +", // Listing page 'ad_title' => 'Başlık', @@ -347,6 +351,7 @@ return [ 'ads_with_map' => 'Haritalı İlanlar', 'advanced_sorting' => 'Gelişmiş Sıralama', 'filter_by_word' => 'Kelime İle Filtrele', + 'filter_by' => 'Filtreleme ölçütü: ad', 'free' => 'Bedava', 'ad_date' => 'İlan Tarihi', @@ -372,7 +377,10 @@ return [ ], 'save_search' => 'Aramayı Kaydet', 'publish_at' => [ - 'name' => 'Publish Date' + 'name' => 'Yayın tarihi' + ], + 'tax' => [ + 'name' => 'Vergi' ], 'tax' => [ 'name' => 'KDV Oranı' 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 1feccdf46..83eb4d178 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php @@ -273,11 +273,11 @@ return [ 'instructions' => 'İlan listelemede ilan kategorilerini gizle' ], 'show_finish_and_publish_date' => [ - 'name' => 'İlan Oluşturma Sayfasında Publish_at ve Finish_at göster', - 'instructions' => 'İlan oluşturma sayfasında Publish_at ve Finish_at alanlarını gösterir.' + 'name' => 'İlan ekleme ve düzenleme sayfasında Bitiş Tarihini ve Yayınlanma Tarihini Göster', + 'instructions' => 'Kullanıcı yayınlama tarihini ve bitiş tarihini görebilir. ' ], 'show_tax_field' => [ - 'name' => 'Vergi Oranı Seçmeyi Göster', - 'instructions' => 'Bu seçenek etkinleştirildiğinde ilan oluşturma sayfasında vergi oranı belirleyebilirsiniz.' - ], + 'name' => 'KDV (Vergi) Oranı Seçmeyi Göster', + 'instructions' => 'Bu seçenek etkinleştirildiğinde, ilan veya ürün oluşturma sayfasında vergi oranını ayarlayabilirsiniz.' + ] ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/addon.php b/addons/default/visiosoft/advs-module/resources/lang/uk/addon.php index d2931112b..19d08773e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Оголошення', 'name' => 'Модуль реклами', 'description' => 'Модуль реклами', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 0f7536876..b52ebecaa 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Місце розташування оголошення', 'owner' => 'Власник', 'default_owner_instruction' => 'Власник встановить за замовчуванням поточного користувача, якщо не вибрано жодного користувача', + 'create_page_subtitle' => 'Створіть оголошення бездоганно, ввівши детальну інформацію про нього.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Заголовок оголошення', @@ -343,7 +347,8 @@ return [ 'view' => 'Переглянути', 'ads_with_map' => 'Оголошення з картою', 'advanced_sorting' => 'Розширене сортування', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Фільтрувати за словом', + 'filter_by' => 'Фільтрувати за: назвою', 'free' => 'Безкоштовно', 'ad_date' => 'Дата оголошення', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Стара ціна' ], + 'save_search' => 'Зберегти пошук', + 'publish_at' => [ + 'name' => 'Дата публікації' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 276733ed0..148596230 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Фавікон', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Карта довгий координат', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Соціальний логотип Share', - 'warning' => 'Він повинен бути при роздільній здатності 1200 x 630. ', + 'warning' => 'Він повинен бути при роздільній здатності 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Адреса сайту', - 'warning' => 'Авто додано www. www.sitename.com ', + 'warning' => 'Авто додано www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Ключ Api Google Map', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Ринок', ], - 'price_area_hidden' => [ - 'name' => 'Цінова область прихована', - ], + 'price_area_hidden' => [ + 'name' => 'Цінова область прихована', + ], 'hide_price_filter' => [ 'name' => 'Сховати фільтр цін', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Сховати дату створення', 'instructions' => 'Сховати дату створення на сторінці деталей оголошень', ], - 'hide_listing_header' => [ - 'name' => 'Сховати заголовок списку', - 'instructions' => 'Приховування впорядкування та перегляду типів', - ], - 'hide_filter_section' => [ - 'name' => 'Сховати розділ фільтра', - 'instructions' => 'Приховання лівої області фільтра на сторінці списку', - ], - 'hide_seller_info' => [ - 'name' => 'Сховати інформацію про продавця', - 'instructions' => 'Приховування інформації про продавця на сторінці деталей оголошень', - ], + 'hide_listing_header' => [ + 'name' => 'Сховати заголовок списку', + 'instructions' => 'Приховування впорядкування та перегляду типів', + ], + 'hide_filter_section' => [ + 'name' => 'Сховати розділ фільтра', + 'instructions' => 'Приховання лівої області фільтра на сторінці списку', + ], + 'hide_seller_info' => [ + 'name' => 'Сховати інформацію про продавця', + 'instructions' => 'Приховування інформації про продавця на сторінці деталей оголошень', + ], 'show_post_ad_agreement' => [ 'name' => 'Показати угоду про розміщення оголошень', 'instructions' => 'Увімкніть це, якщо ви хочете відображати угоду про політику конфіденційності на сторінці створення оголошення', @@ -251,9 +251,9 @@ return [ 'name' => 'ОТРИМАТИ Категорії', 'instructions' => 'Він представляє категорії, в яких буде дійсним властивість GET.' ], - 'disable_sentry' => [ - 'name' => 'Вимкнути Sentry' - ], + 'disable_sentry' => [ + 'name' => 'Вимкнути Sentry' + ], 'watermark' => [ 'name' => 'Водяний знак', 'instructions' => 'Активний водяний знак?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Показувати підкатегорії в мобільному режимі', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Показувати ціну лише учасникам', + ], + 'hide_ad_cat' => [ + 'name' => 'Приховати категорії', + 'instructions' => 'Сховати категорії в списку оголошень' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Показати дату завершення та дату публікації для створення', + 'instructions' => 'Відображає поля pub_at і finish_at на сторінці створення оголошення.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/addon.php b/addons/default/visiosoft/advs-module/resources/lang/ur/addon.php index a9412aa5c..363b34292 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'اشتہارات', 'name' => 'اشتہارات ماڈیول', 'description' => 'اشتہارات ماڈیول', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 415a88f3d..12ab2a0f8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'اشتہار کی جگہ', 'owner' => 'مالک', 'default_owner_instruction' => 'اگر کوئی صارف منتخب نہیں ہوتا ہے تو مالک موجودہ صارف سے ڈیفالٹ ہوجائے گا', + 'create_page_subtitle' => 'اپنے اشتہار کے بارے میں تفصیلی معلومات داخل کرکے بلا اشتعال اشتہار بنائیں۔', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'اشتہار کا عنوان', @@ -343,7 +347,8 @@ return [ 'view' => 'دیکھیں', 'ads_with_map' => 'نقشہ والے اشتہارات', 'advanced_sorting' => 'اعلی درجے کی ترتیب', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'لفظ بہ فلٹر', + 'filter_by' => 'فلٹر بذریعہ: نام', 'free' => 'مفت', 'ad_date' => 'اشتہاری تاریخ', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'پرانی قیمت' ], + 'save_search' => 'تلاش محفوظ کریں', + 'publish_at' => [ + 'name' => 'تاریخ شائع کریں' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 d7cc0f2cf..c87124729 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'فیویکن', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'نقشہ لانگ کوآرڈینیٹ', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'سوشل شیئر لوگو', - 'warning' => 'یہ 1200 x 630 کی قرارداد میں ہونا چاہئے۔ ', + 'warning' => 'یہ 1200 x 630 کی قرارداد میں ہونا چاہئے۔ ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'سائٹ کا پتہ', - 'warning' => 'آٹو شامل www. www.sitename.com ', + 'warning' => 'آٹو شامل www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'گوگل میپ آپ کی کلید', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'مارکیٹ پلیس', ], - 'price_area_hidden' => [ - 'name' => 'قیمت کا رقبہ پوشیدہ ہے', - ], + 'price_area_hidden' => [ + 'name' => 'قیمت کا رقبہ پوشیدہ ہے', + ], 'hide_price_filter' => [ 'name' => 'پرائس فلٹر چھپائیں', ], @@ -215,18 +215,18 @@ return [ 'name' => 'بنائی گئی تاریخ چھپائیں', 'instructions' => 'تخلیق شدہ تاریخ کو اشتہارات کے تفصیل والے صفحے میں چھپائیں', ], - 'hide_listing_header' => [ - 'name' => 'لسٹنگ ہیڈر چھپائیں', - 'instructions' => 'ترتیب دینے اور دیکھنے کی اقسام کو چھپا رہا ہے', - ], - 'hide_filter_section' => [ - 'name' => 'فلٹر سیکشن چھپائیں', - 'instructions' => 'صفحہ کے لسٹنگ میں بائیں فلٹر کے علاقے میں چھپا', - ], - 'hide_seller_info' => [ - 'name' => 'بیچنے والے کی معلومات چھپائیں', - 'instructions' => 'اشتہارات کے تفصیل والے صفحے میں بیچنے والے انفو کو چھپا رہے ہیں', - ], + 'hide_listing_header' => [ + 'name' => 'لسٹنگ ہیڈر چھپائیں', + 'instructions' => 'ترتیب دینے اور دیکھنے کی اقسام کو چھپا رہا ہے', + ], + 'hide_filter_section' => [ + 'name' => 'فلٹر سیکشن چھپائیں', + 'instructions' => 'صفحہ کے لسٹنگ میں بائیں فلٹر کے علاقے میں چھپا', + ], + 'hide_seller_info' => [ + 'name' => 'بیچنے والے کی معلومات چھپائیں', + 'instructions' => 'اشتہارات کے تفصیل والے صفحے میں بیچنے والے انفو کو چھپا رہے ہیں', + ], 'show_post_ad_agreement' => [ 'name' => 'پوسٹ اشتہار کا معاہدہ دکھائیں', 'instructions' => 'اگر آپ اشتہار تخلیق کے صفحے پر رازداری کی پالیسی کا معاہدہ ظاہر کرنا چاہتے ہیں تو اسے آن کریں', @@ -251,9 +251,9 @@ return [ 'name' => 'زمرہ جات حاصل کریں', 'instructions' => 'یہ ان زمروں کی نمائندگی کرتا ہے جن میں جی ای ٹی پراپرٹی درست ہوگی۔' ], - 'disable_sentry' => [ - 'name' => 'سینٹری کو غیر فعال کریں' - ], + 'disable_sentry' => [ + 'name' => 'سینٹری کو غیر فعال کریں' + ], 'watermark' => [ 'name' => 'واٹر مارک', 'instructions' => 'کیا واٹر مارک سرگرم ہے؟' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'موبائل ویو پر ذیلی زمرہ جات دکھائیں', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'صرف ممبروں کو قیمت دکھائیں', + ], + 'hide_ad_cat' => [ + 'name' => 'زمرہ جات چھپائیں', + 'instructions' => 'اشتہارات کی فہرست میں زمرے چھپائیں' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'تخلیق کیلئے آخری تاریخ اور اشاعت کی تاریخ دکھائیں', + 'instructions' => 'اشتہار تخلیق کے صفحے پر پبلک_اٹ اور فائنل_اٹ فیلڈز دکھاتا ہے۔' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/addon.php b/addons/default/visiosoft/advs-module/resources/lang/vi/addon.php index 5544b7aee..c488f588c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Quảng cáo', 'name' => 'Mô-đun quảng cáo', 'description' => 'Mô-đun quảng cáo', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; 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 82a459959..92f04d5a8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => 'Vị trí Quảng cáo', 'owner' => 'Chủ nhân', 'default_owner_instruction' => 'Chủ sở hữu sẽ mặc định là người dùng hiện tại nếu không có người dùng nào được chọn', + 'create_page_subtitle' => 'Tạo quảng cáo hoàn hảo bằng cách nhập thông tin chi tiết về quảng cáo của bạn.', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => 'Tiêu đề quảng cáo', @@ -343,7 +347,8 @@ return [ 'view' => 'Lượt xem', 'ads_with_map' => 'Quảng cáo có Bản đồ', 'advanced_sorting' => 'Sắp xếp nâng cao', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => 'Lọc theo từ', + 'filter_by' => 'Lọc theo: tên', 'free' => 'Miễn phí', 'ad_date' => 'Ngày quảng cáo', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => 'Giá cũ' ], + 'save_search' => 'Lưu tìm kiếm', + 'publish_at' => [ + 'name' => 'Ngày xuất bản' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; 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 542ad4e2e..3bb963be9 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => 'Favicon', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => 'Bản đồ tọa độ dài', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => 'Logo chia sẻ xã hội', - 'warning' => 'Nó phải ở độ phân giải 1200 x 630. ', + 'warning' => 'Nó phải ở độ phân giải 1200 x 630. ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => 'Địa chỉ trang web', - 'warning' => 'Tự động thêm www. www.sitename.com ', + 'warning' => 'Tự động thêm www. www.sitename.com ', ], 'google_map_key' => [ 'name' => 'Khóa bản đồ Google', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => 'Thương trường', ], - 'price_area_hidden' => [ - 'name' => 'Vùng giá bị ẩn', - ], + 'price_area_hidden' => [ + 'name' => 'Vùng giá bị ẩn', + ], 'hide_price_filter' => [ 'name' => 'Ẩn bộ lọc giá', ], @@ -215,18 +215,18 @@ return [ 'name' => 'Ẩn ngày tạo', 'instructions' => 'Ẩn ngày tạo trong trang chi tiết quảng cáo', ], - 'hide_listing_header' => [ - 'name' => 'Ẩn tiêu đề danh sách', - 'instructions' => 'Ẩn để đặt hàng và xem các loại', - ], - 'hide_filter_section' => [ - 'name' => 'Ẩn phần bộ lọc', - 'instructions' => 'Ẩn vùng lọc bên trái trong trang danh sách', - ], - 'hide_seller_info' => [ - 'name' => 'Ẩn thông tin người bán', - 'instructions' => 'Ẩn thông tin người bán trong trang chi tiết quảng cáo', - ], + 'hide_listing_header' => [ + 'name' => 'Ẩn tiêu đề danh sách', + 'instructions' => 'Ẩn để đặt hàng và xem các loại', + ], + 'hide_filter_section' => [ + 'name' => 'Ẩn phần bộ lọc', + 'instructions' => 'Ẩn vùng lọc bên trái trong trang danh sách', + ], + 'hide_seller_info' => [ + 'name' => 'Ẩn thông tin người bán', + 'instructions' => 'Ẩn thông tin người bán trong trang chi tiết quảng cáo', + ], 'show_post_ad_agreement' => [ 'name' => 'Hiển thị Thỏa thuận Quảng cáo Đăng', 'instructions' => 'Bật tính năng này nếu bạn muốn hiển thị thỏa thuận chính sách bảo mật trên trang tạo quảng cáo', @@ -251,9 +251,9 @@ return [ 'name' => 'NHẬN danh mục', 'instructions' => 'Nó đại diện cho các danh mục mà thuộc tính GET sẽ hợp lệ.' ], - 'disable_sentry' => [ - 'name' => 'Tắt Sentry' - ], + 'disable_sentry' => [ + 'name' => 'Tắt Sentry' + ], 'watermark' => [ 'name' => 'Chữ ký ảnh', 'instructions' => 'Hình mờ có hoạt động không?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => 'Hiển thị các danh mục phụ trên chế độ xem trên thiết bị di động', - ] + ], + 'show_price_to_members_only' => [ + 'name' => 'Chỉ hiển thị giá cho thành viên', + ], + 'hide_ad_cat' => [ + 'name' => 'Ẩn danh mục', + 'instructions' => 'Ẩn danh mục trong danh sách quảng cáo' + ], + 'show_finish_and_publish_date' => [ + 'name' => 'Hiển thị ngày kết thúc và ngày xuất bản để tạo', + 'instructions' => 'Hiển thị các trường Publishing_at và finish_at trên trang tạo quảng cáo.' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/zh/addon.php b/addons/default/visiosoft/advs-module/resources/lang/zh/addon.php index d3e22e83d..484375c8b 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/zh/addon.php +++ b/addons/default/visiosoft/advs-module/resources/lang/zh/addon.php @@ -4,4 +4,5 @@ return [ 'title' => '广告', 'name' => '广告模块', 'description' => '广告模块', + 'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/zh/field.php b/addons/default/visiosoft/advs-module/resources/lang/zh/field.php index 64b2b6817..14b24daa7 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/zh/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/zh/field.php @@ -336,6 +336,10 @@ return [ 'ad_location' => '广告位置', 'owner' => '所有者', 'default_owner_instruction' => '如果未选择任何用户,所有者将默认为当前用户', + 'create_page_subtitle' => '输入有关您广告的详细信息,以完美无瑕地制作广告。', + 'with_my_phone_numbers' => 'With my phone numbers', + 'not_with_my_phone_numbers' => "I don't want to be reached by phone", + 'how_can_you_be_contacted' => "How can you be contacted?", // Listing page 'ad_title' => '广告标题', @@ -343,7 +347,8 @@ return [ 'view' => '看法', 'ads_with_map' => '带有地图的广告', 'advanced_sorting' => '高级排序', - 'filter_by_word' => 'Filter by word', + 'filter_by_word' => '按字过滤', + 'filter_by' => '筛选:名称', 'free' => '自由', 'ad_date' => '广告日期', @@ -367,4 +372,11 @@ return [ 'old_price' => [ 'name' => '旧价格' ], + 'save_search' => '保存搜索', + 'publish_at' => [ + 'name' => '发布日期' + ], + 'tax' => [ + 'name' => 'Tax' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/zh/setting.php b/addons/default/visiosoft/advs-module/resources/lang/zh/setting.php index 3be422261..32cd4aa49 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/zh/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/zh/setting.php @@ -27,7 +27,7 @@ return [ 'favicon' => [ 'name' => '网站图标', ] - ,'map_coordinates_long' => [ + , 'map_coordinates_long' => [ 'name' => '地图长坐标', ], 'map_coordinates_lat' => [ @@ -41,7 +41,7 @@ return [ ], 'ogImage' => [ 'name' => '社交分享徽标', - 'warning' => '分辨率应为1200 x 630。 ', + 'warning' => '分辨率应为1200 x 630。 ', ], 'currencies' => [ @@ -52,7 +52,7 @@ return [ ], 'site_address' => [ 'name' => '网站地址', - 'warning' => '自动添加www。万维网。sitename.com ', + 'warning' => '自动添加www。万维网。sitename.com ', ], 'google_map_key' => [ 'name' => 'Google Map Api密钥', @@ -134,9 +134,9 @@ return [ 'market_place' => [ 'name' => '市场地点', ], - 'price_area_hidden' => [ - 'name' => '隐藏价格区', - ], + 'price_area_hidden' => [ + 'name' => '隐藏价格区', + ], 'hide_price_filter' => [ 'name' => '隐藏价格过滤器', ], @@ -215,18 +215,18 @@ return [ 'name' => '隐藏创建日期', 'instructions' => '在广告详细信息页面中隐藏创建日期', ], - 'hide_listing_header' => [ - 'name' => '隐藏列表标题', - 'instructions' => '隐藏订购和视图类型', - ], - 'hide_filter_section' => [ - 'name' => '隐藏筛选器部分', - 'instructions' => '隐藏在列表页面的左侧过滤器区域', - ], - 'hide_seller_info' => [ - 'name' => '隐藏卖家信息', - 'instructions' => '隐藏在广告详细信息页面中的卖方信息', - ], + 'hide_listing_header' => [ + 'name' => '隐藏列表标题', + 'instructions' => '隐藏订购和视图类型', + ], + 'hide_filter_section' => [ + 'name' => '隐藏筛选器部分', + 'instructions' => '隐藏在列表页面的左侧过滤器区域', + ], + 'hide_seller_info' => [ + 'name' => '隐藏卖家信息', + 'instructions' => '隐藏在广告详细信息页面中的卖方信息', + ], 'show_post_ad_agreement' => [ 'name' => '显示发布广告协议', 'instructions' => '如果要在广告制作页面上显示隐私权政策协议,请启用此功能', @@ -251,9 +251,9 @@ return [ 'name' => '获取类别', 'instructions' => '它代表GET属性将在其中有效的类别。' ], - 'disable_sentry' => [ - 'name' => '禁用哨兵' - ], + 'disable_sentry' => [ + 'name' => '禁用哨兵' + ], 'watermark' => [ 'name' => '水印', 'instructions' => '水印活跃吗?' @@ -264,5 +264,20 @@ return [ ], 'show_subcats_mobile' => [ 'name' => '在移动视图中显示子类别', - ] + ], + 'show_price_to_members_only' => [ + 'name' => '仅向会员显示价格', + ], + 'hide_ad_cat' => [ + 'name' => '隐藏类别', + 'instructions' => '隐藏广告列表中的类别' + ], + 'show_finish_and_publish_date' => [ + 'name' => '显示完成日期并发布创建日期', + 'instructions' => '在广告创建页面上显示publish_at和finish_at字段。' + ], + 'show_tax_field' => [ + 'name' => 'Show Tax Field', + 'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.' + ], ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/af/addon.php b/addons/default/visiosoft/cats-module/resources/lang/af/addon.php index 49b9fad5b..4ef927aca 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/af/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/af/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategorie', 'name' => 'Kategoriemodule', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/af/field.php b/addons/default/visiosoft/cats-module/resources/lang/af/field.php index 9880bf713..9d7c6f72a 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/af/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/af/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Dit word gebruik om ikone by te voeg wat die kategorietipe aandui.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Wag asseblief. Verwyder subkategorieë', 'category_selection' => 'Kategorie seleksie', 'go_to_parent' => 'Gaan na ouer', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ar/addon.php b/addons/default/visiosoft/cats-module/resources/lang/ar/addon.php index 87806f433..5320e1b64 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ar/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ar/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'الفئة', 'name' => 'وحدة الفئة', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ar/field.php b/addons/default/visiosoft/cats-module/resources/lang/ar/field.php index ddb11f131..1251e6b11 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ar/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'يتم استخدامه لإضافة الرموز التي تشير إلى نوع الفئة.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'يرجى الانتظار', 'category_selection' => 'اختيار الفئة', 'go_to_parent' => 'انتقل إلى الأصل', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/az/addon.php b/addons/default/visiosoft/cats-module/resources/lang/az/addon.php index f185d26b1..130cff1e1 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/az/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/az/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kateqoriya', 'name' => 'Kateqoriya Modulu', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/az/field.php b/addons/default/visiosoft/cats-module/resources/lang/az/field.php index 89ff3626f..c201f1ace 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/az/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Bu kateqoriya növünü göstərən nişanlar əlavə etmək üçün istifadə olunur.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Xahiş edirəm gözləyin. Alt kateqoriyaların silinməsi', 'category_selection' => 'Kateqoriya seçimi', 'go_to_parent' => 'Valideynə get', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/bg/addon.php b/addons/default/visiosoft/cats-module/resources/lang/bg/addon.php index f620b591c..e305f1bf6 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/bg/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/bg/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Категория', 'name' => 'Категория Модул', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/bg/field.php b/addons/default/visiosoft/cats-module/resources/lang/bg/field.php index ec776f682..d10cedcdd 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/bg/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/bg/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Използва се за добавяне на икони, указващи типа категория.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Моля, изчакайте Изтриване на подкатегории', 'category_selection' => 'Избор на категория', 'go_to_parent' => 'Отидете при родител', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/bn/addon.php b/addons/default/visiosoft/cats-module/resources/lang/bn/addon.php index 611a37897..50ab47aa9 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/bn/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/bn/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'বিভাগ', 'name' => 'বিভাগ মডিউল', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/bn/field.php b/addons/default/visiosoft/cats-module/resources/lang/bn/field.php index f0d573cb6..f0a8546a9 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/bn/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'বিভাগের ধরণটি চিহ্নিত করে আইকন যুক্ত করতে এটি ব্যবহৃত হয়।', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'অনুগ্রহ করে অপেক্ষা করুন Sub সাব বিভাগগুলি মোছা', 'category_selection' => 'বিভাগ নির্বাচন', 'go_to_parent' => 'পিতামাতায় যান', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ca/addon.php b/addons/default/visiosoft/cats-module/resources/lang/ca/addon.php index b5fb4781c..8c45306ab 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ca/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ca/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Categoria', 'name' => 'Mòdul de categoria', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ca/field.php b/addons/default/visiosoft/cats-module/resources/lang/ca/field.php index 1115151c3..93321ac6f 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ca/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ca/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'S\'utilitza per afegir icones que indiquen el tipus de categoria.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Si us plau, espereu. Esborra les subcategories', 'category_selection' => 'Selecció de categories', 'go_to_parent' => 'Ves al pare', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/cs/addon.php b/addons/default/visiosoft/cats-module/resources/lang/cs/addon.php index c418bf33a..8f77627d8 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/cs/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/cs/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategorie', 'name' => 'Modul kategorie', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/cs/field.php b/addons/default/visiosoft/cats-module/resources/lang/cs/field.php index 49d82c08b..03d7bf169 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/cs/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/cs/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Používá se k přidání ikon označujících typ kategorie.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Čekejte prosím. Odstranění podkategorií', 'category_selection' => 'Výběr kategorie', 'go_to_parent' => 'Přejít na rodiče', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/da/addon.php b/addons/default/visiosoft/cats-module/resources/lang/da/addon.php index b2be7d9bb..f5a8c8e2a 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/da/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/da/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategori', 'name' => 'Kategorimodul', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/da/field.php b/addons/default/visiosoft/cats-module/resources/lang/da/field.php index 0d64de3ee..7d70ccf61 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/da/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/da/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Det bruges til at tilføje ikoner, der angiver kategoritypen.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Vent venligst. Sletning af underkategorier', 'category_selection' => 'Valg af kategori', 'go_to_parent' => 'Gå til forælder', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/de/addon.php b/addons/default/visiosoft/cats-module/resources/lang/de/addon.php index 8e56287c0..7744b6709 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/de/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/de/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategorie', 'name' => 'Kategoriemodul', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/de/field.php b/addons/default/visiosoft/cats-module/resources/lang/de/field.php index 5190244bf..a73cb3da8 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/de/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Es wird verwendet, um Symbole hinzuzufügen, die den Kategorietyp angeben.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Bitte warten. Löschen von Unterkategorien', 'category_selection' => 'Kategorieauswahl', 'go_to_parent' => 'Gehe zu Eltern', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/el/addon.php b/addons/default/visiosoft/cats-module/resources/lang/el/addon.php index 7270d4af9..fddd6c79f 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/el/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/el/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Κατηγορία', 'name' => 'Μονάδα κατηγορίας', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/el/field.php b/addons/default/visiosoft/cats-module/resources/lang/el/field.php index afe187183..804979f7e 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/el/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Χρησιμοποιείται για την προσθήκη εικονιδίων που υποδεικνύουν τον τύπο κατηγορίας.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Παρακαλώ περιμένετε. Διαγραφή υπο-κατηγοριών', 'category_selection' => 'Επιλογή κατηγορίας', 'go_to_parent' => 'Μετάβαση στο γονέα', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/es/addon.php b/addons/default/visiosoft/cats-module/resources/lang/es/addon.php index 8329d62ba..b180fdf4e 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/es/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/es/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Categoría', 'name' => 'Módulo de categoría', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/es/field.php b/addons/default/visiosoft/cats-module/resources/lang/es/field.php index ec87156b4..30af8c0d7 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/es/field.php @@ -30,8 +30,13 @@ return [ 'instructions' => 'Se utiliza para agregar iconos que indican el tipo de categoría.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Por favor, espere. Eliminar subcategorías', 'category_selection' => 'Selección de categoría', 'go_to_parent' => 'Ir a los padres', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/fa/addon.php b/addons/default/visiosoft/cats-module/resources/lang/fa/addon.php index 73ab56373..eb06ae781 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/fa/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/fa/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'دسته بندی', 'name' => 'ماژول دسته', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/fa/field.php b/addons/default/visiosoft/cats-module/resources/lang/fa/field.php index d4e095c62..b4ad056ce 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/fa/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'برای اضافه کردن نمادهایی که نوع طبقه را نشان می دهد ، استفاده می شود.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'لطفاً صبر کنید. حذف دسته بندی های فرعی', 'category_selection' => 'انتخاب دسته', 'go_to_parent' => 'به والدین بروید', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/fi/addon.php b/addons/default/visiosoft/cats-module/resources/lang/fi/addon.php index 2c0e63d7f..915e5e136 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/fi/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/fi/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategoria', 'name' => 'Luokkamoduuli', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/fi/field.php b/addons/default/visiosoft/cats-module/resources/lang/fi/field.php index e130c280b..a625d509c 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/fi/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/fi/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Sitä käytetään lisäämään kuvakkeet, jotka osoittavat luokan tyypin.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Odota. Poistetaan alaluokat', 'category_selection' => 'Luokan valinta', 'go_to_parent' => 'Mene vanhemmalle', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/fr/addon.php b/addons/default/visiosoft/cats-module/resources/lang/fr/addon.php index 1ac743faf..a13668c56 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/fr/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/fr/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Catégorie', 'name' => 'Module de catégorie', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/fr/field.php b/addons/default/visiosoft/cats-module/resources/lang/fr/field.php index 1db8e27c3..cfca98baa 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/fr/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Il est utilisé pour ajouter des icônes indiquant le type de catégorie.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Veuillez patienter. Suppression des sous-catégories', 'category_selection' => 'Sélection de catégorie', 'go_to_parent' => 'Aller au parent', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/he/addon.php b/addons/default/visiosoft/cats-module/resources/lang/he/addon.php index 5435bfe37..eb841e390 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/he/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/he/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'קטגוריה', 'name' => 'מודול קטגוריה', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/he/field.php b/addons/default/visiosoft/cats-module/resources/lang/he/field.php index 53fcd2422..ab857d883 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/he/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'הוא משמש להוספת סמלים המציינים את סוג הקטגוריה.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'אנא המתן. מחיקת קטגוריות משנה', 'category_selection' => 'בחירת קטגוריה', 'go_to_parent' => 'עבור להורה', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/hi/addon.php b/addons/default/visiosoft/cats-module/resources/lang/hi/addon.php index d64801955..2c7a37768 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/hi/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/hi/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'वर्ग', 'name' => 'श्रेणी मॉड्यूल', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/hi/field.php b/addons/default/visiosoft/cats-module/resources/lang/hi/field.php index 748257e2b..c5889a82f 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/hi/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'इसका उपयोग श्रेणी प्रकार को इंगित करने वाले आइकन जोड़ने के लिए किया जाता है।', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'कृपया प्रतीक्षा करें। सबलेटिंग सब श्रेणियां', 'category_selection' => 'श्रेणी चयन', 'go_to_parent' => 'जनक के पास जाओ', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/hu/addon.php b/addons/default/visiosoft/cats-module/resources/lang/hu/addon.php index 232764386..e54a1cade 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/hu/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/hu/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategória', 'name' => 'Kategória modul', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/hu/field.php b/addons/default/visiosoft/cats-module/resources/lang/hu/field.php index 92d9514e3..0143a116c 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/hu/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/hu/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'A kategória típusát jelző ikonok hozzáadására szolgál.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Kérjük, várjon. Alkategóriák törlése', 'category_selection' => 'Kategória kiválasztása', 'go_to_parent' => 'Menjen a Szülőhöz', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/id/addon.php b/addons/default/visiosoft/cats-module/resources/lang/id/addon.php index f0906b0e5..48baba163 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/id/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/id/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategori', 'name' => 'Modul Kategori', - 'description' => '' + 'description' => '', + 'info' => 'Ini adalah layar dimana Anda dapat menambah, menghapus, dan menyunting kategori dari halaman kategori. Anda dapat dengan mudah mengelola kategori dan subkategori utama dari halaman ini.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/id/field.php b/addons/default/visiosoft/cats-module/resources/lang/id/field.php index 20f9ce043..c35f15691 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/id/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/id/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Ini digunakan untuk menambahkan ikon yang menunjukkan jenis kategori.', ], + 'parent' => 'Induk', + 'level' => 'Tingkat', + 'count' => 'Jumlah Iklan', + 'please_wait' => 'Harap tunggu. Menghapus Sub Kategori', 'category_selection' => 'Pemilihan Kategori', 'go_to_parent' => 'Buka Orang Tua', + 'preview' => 'Pratinjau' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/it/addon.php b/addons/default/visiosoft/cats-module/resources/lang/it/addon.php index d340ba752..53b4220f1 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/it/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/it/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Categoria', 'name' => 'Modulo di categoria', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/it/field.php b/addons/default/visiosoft/cats-module/resources/lang/it/field.php index afd33025f..afd4b3ae2 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/it/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Viene utilizzato per aggiungere icone che indicano il tipo di categoria.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Attendere. Eliminazione delle sottocategorie', 'category_selection' => 'Selezione della categoria', 'go_to_parent' => 'Vai al genitore', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ja/addon.php b/addons/default/visiosoft/cats-module/resources/lang/ja/addon.php index 9cb639a4c..554d2ac7a 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ja/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ja/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'カテゴリー', 'name' => 'カテゴリモジュール', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ja/field.php b/addons/default/visiosoft/cats-module/resources/lang/ja/field.php index 1705f064a..dc96a8fde 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ja/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'カテゴリタイプを示すアイコンを追加するために使用されます。', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'サブカテゴリを削除しています', 'category_selection' => 'カテゴリー選択', 'go_to_parent' => '親に移動', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ko/addon.php b/addons/default/visiosoft/cats-module/resources/lang/ko/addon.php index 113943ddf..b5e0dedaa 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ko/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ko/addon.php @@ -3,5 +3,6 @@ return [ 'title' => '범주', 'name' => '카테고리 모듈', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ko/field.php b/addons/default/visiosoft/cats-module/resources/lang/ko/field.php index dde7f7f41..22fb9afaf 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ko/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => '카테고리 유형을 나타내는 아이콘을 추가하는 데 사용됩니다.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => '하위 카테고리 삭제', 'category_selection' => '카테고리 선택', 'go_to_parent' => '부모로 이동', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/addon.php b/addons/default/visiosoft/cats-module/resources/lang/ku/addon.php index 5b153df4b..c7b7aabea 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ku/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/addon.php @@ -4,5 +4,6 @@ return [ 'title' => 'کەتێگۆری', 'name' => 'مۆدیلی کەتێگۆری ', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/field.php b/addons/default/visiosoft/cats-module/resources/lang/ku/field.php index 4083011ca..d50481597 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ku/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/field.php @@ -36,10 +36,15 @@ return [ ', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Please wait. Deleting Sub Categories ', 'category_selection' => 'هەڵبژاردنی کەتێگۆری ', 'go_to_parent' => 'Go To Parent ', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/nl/addon.php b/addons/default/visiosoft/cats-module/resources/lang/nl/addon.php index fb60184dc..050c018fe 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/nl/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/nl/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Categorie', 'name' => 'Categorie Module', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/nl/field.php b/addons/default/visiosoft/cats-module/resources/lang/nl/field.php index 4e27679c8..785640a63 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/nl/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Het wordt gebruikt om pictogrammen toe te voegen die het categorietype aangeven.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Een ogenblik geduld. Subcategorieën verwijderen', 'category_selection' => 'Categorie selectie', 'go_to_parent' => 'Ga naar de ouder', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/no/addon.php b/addons/default/visiosoft/cats-module/resources/lang/no/addon.php index b2be7d9bb..f5a8c8e2a 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/no/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/no/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategori', 'name' => 'Kategorimodul', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/no/field.php b/addons/default/visiosoft/cats-module/resources/lang/no/field.php index 0cdf66727..7b972299a 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/no/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/no/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Den brukes til å legge til ikoner som angir kategoritypen.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Vent. Sletter underkategorier', 'category_selection' => 'Kategorivalg', 'go_to_parent' => 'Gå til foreldre', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/pl/addon.php b/addons/default/visiosoft/cats-module/resources/lang/pl/addon.php index 10835e69c..1e812cbf6 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/pl/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/pl/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategoria', 'name' => 'Moduł kategorii', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/pl/field.php b/addons/default/visiosoft/cats-module/resources/lang/pl/field.php index bf7faa501..46afc811d 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/pl/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Służy do dodawania ikon wskazujących typ kategorii.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Proszę czekać. Usuwanie podkategorii', 'category_selection' => 'Wybór kategorii', 'go_to_parent' => 'Idź do rodzica', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/pt/addon.php b/addons/default/visiosoft/cats-module/resources/lang/pt/addon.php index 4273ea860..2d2e72346 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/pt/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/pt/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Categoria', 'name' => 'Módulo de categoria', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/pt/field.php b/addons/default/visiosoft/cats-module/resources/lang/pt/field.php index 5f41cced2..d84de4312 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/pt/field.php @@ -30,8 +30,13 @@ return [ 'instructions' => 'É usado para adicionar ícones indicando o tipo de categoria.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Por favor, aguarde. Excluindo Subcategorias', 'category_selection' => 'Seleção de categoria', 'go_to_parent' => 'Vá para o pai', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ro/addon.php b/addons/default/visiosoft/cats-module/resources/lang/ro/addon.php index 8a7ababb0..9e5a09e16 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ro/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ro/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Categorie', 'name' => 'Modul de categorie', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ro/field.php b/addons/default/visiosoft/cats-module/resources/lang/ro/field.php index cfd2e6b36..ec9a84d7c 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ro/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Este folosit pentru a adăuga pictograme care indică tipul de categorie.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Vă rugăm să așteptați. Ștergeți subcategorii', 'category_selection' => 'Selectarea categoriei', 'go_to_parent' => 'Mergeți la părinte', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ru/addon.php b/addons/default/visiosoft/cats-module/resources/lang/ru/addon.php index 46ed83c9d..ec8faeed8 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ru/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ru/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'категория', 'name' => 'Модуль категории', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ru/field.php b/addons/default/visiosoft/cats-module/resources/lang/ru/field.php index e6d2203e8..8935a2b74 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ru/field.php @@ -30,8 +30,13 @@ return [ 'instructions' => 'Используется для добавления значков, обозначающих тип категории.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Пожалуйста, подождите. Удаление подкатегорий', 'category_selection' => 'Выбор категории', 'go_to_parent' => 'Перейти к родителю', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/sq/addon.php b/addons/default/visiosoft/cats-module/resources/lang/sq/addon.php index 3b90597f8..30c1bc457 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/sq/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/sq/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategorija', 'name' => 'Moduli i Kategorisë', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/sq/field.php b/addons/default/visiosoft/cats-module/resources/lang/sq/field.php index 6f998502b..a0640fcbc 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/sq/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Përdoret për të shtuar ikona që tregojnë llojin e kategorisë.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Ju lutemi prisni. Zgjedhja e kategorive nën', 'category_selection' => 'Zgjedhja e kategorisë', 'go_to_parent' => 'Shkoni te Prindi', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/sr/addon.php b/addons/default/visiosoft/cats-module/resources/lang/sr/addon.php index 9f7c3ebad..cd28f0cce 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/sr/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/sr/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategorija', 'name' => 'Kategorija Modul', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/sr/field.php b/addons/default/visiosoft/cats-module/resources/lang/sr/field.php index fad023bf0..dcd6949f6 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/sr/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/sr/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Koristi se za dodavanje ikona koje označavaju vrstu kategorije.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Molimo pričekajte.Brisanje potkategorija', 'category_selection' => 'Selekcija kategorija', 'go_to_parent' => 'Idi na Parent-a', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/sv/addon.php b/addons/default/visiosoft/cats-module/resources/lang/sv/addon.php index b2be7d9bb..f5a8c8e2a 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/sv/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/sv/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategori', 'name' => 'Kategorimodul', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/sv/field.php b/addons/default/visiosoft/cats-module/resources/lang/sv/field.php index 15f361522..75da273d2 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/sv/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Det används för att lägga till ikoner som anger kategoritypen.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Vänta. Ta bort underkategorier', 'category_selection' => 'Val av kategori', 'go_to_parent' => 'Gå till förälder', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/tr/addon.php b/addons/default/visiosoft/cats-module/resources/lang/tr/addon.php index 39d49f09d..ebbea35db 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/tr/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/tr/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Kategori', 'name' => 'Kategori Modülü', - 'description' => '' + 'description' => '', + 'info' => 'Kategori sayfasından kategori ekleme, silme ve düzenleme yapabileceğiniz ekrandır. Ana kategorileri ve alt kategorileri bu sayfadan kolayca yönetebilirsiniz.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/tr/field.php b/addons/default/visiosoft/cats-module/resources/lang/tr/field.php index 02fde3830..a50dfcbd1 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/tr/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Kategori türünü belirten ikon eklemeye yarar.', ], + 'parent' => 'Kategori', + 'level' => 'Seviye', + 'count' => 'İlan/ürün Sayıları', + 'please_wait' => 'Lütfen bekleyin. Alt Kategoriler Siliniyor', 'category_selection' => 'Kategori Seçimi', 'go_to_parent' => 'Kategoriye Dön', + 'preview' => 'Ön İzleme' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/uk/addon.php b/addons/default/visiosoft/cats-module/resources/lang/uk/addon.php index ca173f22b..28fd4df8d 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/uk/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/uk/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'Категорія', 'name' => 'Модуль категорії', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/uk/field.php b/addons/default/visiosoft/cats-module/resources/lang/uk/field.php index 156ab88f5..9517e6f87 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/uk/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Він використовується для додавання піктограм із зазначенням типу категорії.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Будь ласка, зачекайте. Вибір підкатегорій', 'category_selection' => 'Вибір категорії', 'go_to_parent' => 'Перейти до батьків', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ur/addon.php b/addons/default/visiosoft/cats-module/resources/lang/ur/addon.php index 2805128db..e889e856d 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ur/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ur/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'قسم', 'name' => 'زمرہ ماڈیول', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ur/field.php b/addons/default/visiosoft/cats-module/resources/lang/ur/field.php index abc99c653..c4f56323e 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/ur/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'اس قسم کا اشارہ کرنے والی شبیہیں شامل کرنے کے لئے استعمال کیا جاتا ہے۔', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'براہ کرم انتظار کریں۔ ذیلی زمرے ختم کرنا', 'category_selection' => 'زمرہ انتخاب', 'go_to_parent' => 'پیرنٹ پر جائیں', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/vi/addon.php b/addons/default/visiosoft/cats-module/resources/lang/vi/addon.php index 8396eee0f..a9434d3ca 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/vi/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/vi/addon.php @@ -3,5 +3,6 @@ return [ 'title' => 'thể loại', 'name' => 'Mô-đun danh mục', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/vi/field.php b/addons/default/visiosoft/cats-module/resources/lang/vi/field.php index 03bf89727..4d069eff5 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/vi/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => 'Nó được sử dụng để thêm các biểu tượng chỉ ra loại danh mục.', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => 'Xin vui lòng chờ. Xóa danh mục phụ', 'category_selection' => 'Lựa chọn danh mục', 'go_to_parent' => 'Đi tới cha mẹ', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/zh/addon.php b/addons/default/visiosoft/cats-module/resources/lang/zh/addon.php index c775f428a..918cebb06 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/zh/addon.php +++ b/addons/default/visiosoft/cats-module/resources/lang/zh/addon.php @@ -3,5 +3,6 @@ return [ 'title' => '类别', 'name' => '分类模块', - 'description' => '' + 'description' => '', + 'info' => 'This is the screen where you can add, delete and edit categories from the category page. You can easily manage main categories and sub-categories from this page.', ]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/zh/field.php b/addons/default/visiosoft/cats-module/resources/lang/zh/field.php index 2b24539d9..be06df434 100644 --- a/addons/default/visiosoft/cats-module/resources/lang/zh/field.php +++ b/addons/default/visiosoft/cats-module/resources/lang/zh/field.php @@ -30,7 +30,12 @@ return [ 'instructions' => '用于添加指示类别类型的图标。', ], + 'parent' => 'Parent', + 'level' => 'Level', + 'count' => 'Ad Counts', + 'please_wait' => '请稍候。正在删除子类别', 'category_selection' => '类别选择', 'go_to_parent' => '去父母', + 'preview' => 'Preview' ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/af/addon.php b/addons/default/visiosoft/location-module/resources/lang/af/addon.php index fbd2ba951..04080b1ee 100644 --- a/addons/default/visiosoft/location-module/resources/lang/af/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/af/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Ligging', 'name' => 'Ligging Module', 'description' => 'Beskrywing', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ar/addon.php b/addons/default/visiosoft/location-module/resources/lang/ar/addon.php index ea05f5421..018334485 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ar/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/ar/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'موقعك', 'name' => 'وحدة الموقع', 'description' => 'وصف', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/az/addon.php b/addons/default/visiosoft/location-module/resources/lang/az/addon.php index f7b06cd32..219e41ac9 100644 --- a/addons/default/visiosoft/location-module/resources/lang/az/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/az/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Yer', 'name' => 'Yer Modulu', 'description' => 'Təsvir', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/bg/addon.php b/addons/default/visiosoft/location-module/resources/lang/bg/addon.php index 9dd9f66fb..6a70b0afa 100644 --- a/addons/default/visiosoft/location-module/resources/lang/bg/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/bg/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Местоположение', 'name' => 'Модул за местоположение', 'description' => 'Описание', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/bn/addon.php b/addons/default/visiosoft/location-module/resources/lang/bn/addon.php index 1008ad5e8..5637600ad 100644 --- a/addons/default/visiosoft/location-module/resources/lang/bn/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/bn/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'অবস্থান', 'name' => 'অবস্থান মডিউল', 'description' => 'বিবরণ', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ca/addon.php b/addons/default/visiosoft/location-module/resources/lang/ca/addon.php index cff68ff4c..7c30f8188 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ca/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/ca/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Ubicació', 'name' => 'Mòdul d\'ubicació', 'description' => 'Descripció', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/cs/addon.php b/addons/default/visiosoft/location-module/resources/lang/cs/addon.php index 7f0ad3ce8..0d35f2c85 100644 --- a/addons/default/visiosoft/location-module/resources/lang/cs/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/cs/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Umístění', 'name' => 'Lokalizační modul', 'description' => 'Popis', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/da/addon.php b/addons/default/visiosoft/location-module/resources/lang/da/addon.php index 2195ba15f..2bf096de0 100644 --- a/addons/default/visiosoft/location-module/resources/lang/da/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/da/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Beliggenhed', 'name' => 'Placeringsmodul', 'description' => 'Beskrivelse', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/de/addon.php b/addons/default/visiosoft/location-module/resources/lang/de/addon.php index d563fd080..26e4b14e7 100644 --- a/addons/default/visiosoft/location-module/resources/lang/de/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/de/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Ort', 'name' => 'Standortmodul', 'description' => 'Beschreibung', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/el/addon.php b/addons/default/visiosoft/location-module/resources/lang/el/addon.php index 72828ab81..5b20ef950 100644 --- a/addons/default/visiosoft/location-module/resources/lang/el/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/el/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Τοποθεσία', 'name' => 'Μονάδα τοποθεσίας', 'description' => 'Περιγραφή', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/es/addon.php b/addons/default/visiosoft/location-module/resources/lang/es/addon.php index 52351206d..98cd927fc 100644 --- a/addons/default/visiosoft/location-module/resources/lang/es/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/es/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Ubicación', 'name' => 'Módulo de localización', 'description' => 'Descripción', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/fa/addon.php b/addons/default/visiosoft/location-module/resources/lang/fa/addon.php index 58a1824a6..1ddf80a87 100644 --- a/addons/default/visiosoft/location-module/resources/lang/fa/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/fa/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'محل', 'name' => 'ماژول مکان', 'description' => 'شرح', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/fi/addon.php b/addons/default/visiosoft/location-module/resources/lang/fi/addon.php index a9a7b80ac..1a657a847 100644 --- a/addons/default/visiosoft/location-module/resources/lang/fi/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/fi/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Sijainti', 'name' => 'Sijainti-moduuli', 'description' => 'Kuvaus', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/fr/addon.php b/addons/default/visiosoft/location-module/resources/lang/fr/addon.php index 459ad65e8..7df5fcb70 100644 --- a/addons/default/visiosoft/location-module/resources/lang/fr/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/fr/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Emplacement', 'name' => 'Module de localisation', 'description' => 'La description', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/he/addon.php b/addons/default/visiosoft/location-module/resources/lang/he/addon.php index e75986b0a..9caea2e21 100644 --- a/addons/default/visiosoft/location-module/resources/lang/he/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/he/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'מקום', 'name' => 'מודול מיקום', 'description' => 'תיאור', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/hi/addon.php b/addons/default/visiosoft/location-module/resources/lang/hi/addon.php index 7763f7923..cc1500ff5 100644 --- a/addons/default/visiosoft/location-module/resources/lang/hi/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/hi/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'स्थान', 'name' => 'स्थान मॉड्यूल', 'description' => 'विवरण', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/hu/addon.php b/addons/default/visiosoft/location-module/resources/lang/hu/addon.php index 304c2cea1..974147e63 100644 --- a/addons/default/visiosoft/location-module/resources/lang/hu/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/hu/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Elhelyezkedés', 'name' => 'Hely modul', 'description' => 'Leírás', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/id/addon.php b/addons/default/visiosoft/location-module/resources/lang/id/addon.php index a5128b7b0..85706a76a 100644 --- a/addons/default/visiosoft/location-module/resources/lang/id/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/id/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Lokasi', 'name' => 'Modul Lokasi', 'description' => 'Deskripsi', + 'info' => 'Di halaman ini, Anda dapat mengelola informasi negara, kota, kecamatan, lingkungan dan desa.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/it/addon.php b/addons/default/visiosoft/location-module/resources/lang/it/addon.php index 0d895cfa8..9b34c4154 100644 --- a/addons/default/visiosoft/location-module/resources/lang/it/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/it/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Posizione', 'name' => 'Modulo di localizzazione', 'description' => 'Descrizione', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ja/addon.php b/addons/default/visiosoft/location-module/resources/lang/ja/addon.php index d1fef69b1..15006df67 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ja/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/ja/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'ロケーション', 'name' => 'ロケーションモジュール', 'description' => '説明文', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ko/addon.php b/addons/default/visiosoft/location-module/resources/lang/ko/addon.php index 230248820..e2cbc9d6d 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ko/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/ko/addon.php @@ -4,4 +4,5 @@ return [ 'title' => '위치', 'name' => '위치 모듈', 'description' => '기술', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ku/addon.php b/addons/default/visiosoft/location-module/resources/lang/ku/addon.php index c123111e7..6db22aac1 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ku/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/ku/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'شوێن', 'name' => 'مۆدیلی شوێن', 'description' => 'دەربارە', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/nl/addon.php b/addons/default/visiosoft/location-module/resources/lang/nl/addon.php index b6cd4bab6..00b5b992e 100644 --- a/addons/default/visiosoft/location-module/resources/lang/nl/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/nl/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Plaats', 'name' => 'Locatiemodule', 'description' => 'Omschrijving', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/no/addon.php b/addons/default/visiosoft/location-module/resources/lang/no/addon.php index 0a1aac724..87f956d9d 100644 --- a/addons/default/visiosoft/location-module/resources/lang/no/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/no/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'plassering', 'name' => 'Plasseringsmodul', 'description' => 'Beskrivelse', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/pl/addon.php b/addons/default/visiosoft/location-module/resources/lang/pl/addon.php index 47232805b..d0f16699f 100644 --- a/addons/default/visiosoft/location-module/resources/lang/pl/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/pl/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Lokalizacja', 'name' => 'Moduł lokalizacji', 'description' => 'Opis', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/pt/addon.php b/addons/default/visiosoft/location-module/resources/lang/pt/addon.php index f04e2841f..410d38107 100644 --- a/addons/default/visiosoft/location-module/resources/lang/pt/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/pt/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Localização', 'name' => 'Módulo de localização', 'description' => 'Descrição', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ro/addon.php b/addons/default/visiosoft/location-module/resources/lang/ro/addon.php index 3c02f1554..9e69847f9 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ro/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/ro/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Locație', 'name' => 'Modulul de locație', 'description' => 'Descriere', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ru/addon.php b/addons/default/visiosoft/location-module/resources/lang/ru/addon.php index 495fbd36b..259895436 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ru/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/ru/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Место нахождения', 'name' => 'Модуль расположения', 'description' => 'Описание', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/sq/addon.php b/addons/default/visiosoft/location-module/resources/lang/sq/addon.php index 1f91ffd9a..a978826a5 100644 --- a/addons/default/visiosoft/location-module/resources/lang/sq/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/sq/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Vendndodhja', 'name' => 'Moduli i vendndodhjes', 'description' => 'Përshkrim', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/sr/addon.php b/addons/default/visiosoft/location-module/resources/lang/sr/addon.php index 19578a736..51b013be9 100644 --- a/addons/default/visiosoft/location-module/resources/lang/sr/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/sr/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Lokacija', 'name' => 'Modul lokacije', 'description' => 'Opis', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/sv/addon.php b/addons/default/visiosoft/location-module/resources/lang/sv/addon.php index 5762c7f0b..4967f4fa5 100644 --- a/addons/default/visiosoft/location-module/resources/lang/sv/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/sv/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Plats', 'name' => 'Platsmodul', 'description' => 'Beskrivning', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/tr/addon.php b/addons/default/visiosoft/location-module/resources/lang/tr/addon.php index 5d572b9c7..bbd161bd1 100644 --- a/addons/default/visiosoft/location-module/resources/lang/tr/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/tr/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Lokasyon', 'name' => 'Lokasyon Modülü', 'description' => 'Lokasyon Modülü', + 'info' => 'Bu sayfa üzerinde ülke, şehir, ilçe, mahalle ve köy bilgilerini düzenleyebilirsiniz. ', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/uk/addon.php b/addons/default/visiosoft/location-module/resources/lang/uk/addon.php index 13541c4d6..8bc4a21e4 100644 --- a/addons/default/visiosoft/location-module/resources/lang/uk/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/uk/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Розташування', 'name' => 'Модуль розташування', 'description' => 'Опис', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ur/addon.php b/addons/default/visiosoft/location-module/resources/lang/ur/addon.php index 54101661b..978c80626 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ur/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/ur/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'مقام', 'name' => 'مقام ماڈیول', 'description' => 'تفصیل', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/vi/addon.php b/addons/default/visiosoft/location-module/resources/lang/vi/addon.php index b81e4dedf..2569dc763 100644 --- a/addons/default/visiosoft/location-module/resources/lang/vi/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/vi/addon.php @@ -4,4 +4,5 @@ return [ 'title' => 'Vị trí', 'name' => 'Mô-đun vị trí', 'description' => 'Sự miêu tả', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/zh/addon.php b/addons/default/visiosoft/location-module/resources/lang/zh/addon.php index 2aa2fa0bf..4ca822b81 100644 --- a/addons/default/visiosoft/location-module/resources/lang/zh/addon.php +++ b/addons/default/visiosoft/location-module/resources/lang/zh/addon.php @@ -4,4 +4,5 @@ return [ 'title' => '位置', 'name' => '定位模块', 'description' => '描述', + 'info' => 'On this page, you can manage country, city, district, neighborhood and village information.', ]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/af/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/af/addon.php new file mode 100644 index 000000000..0081a9da5 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/af/addon.php @@ -0,0 +1,7 @@ + 'Verskeie', + 'name' => 'Meervoudige veldtipe', + 'description' => '\'N Meervoudige verhouding veldtipe.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/af/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/af/config.php new file mode 100644 index 000000000..97ff8b91f --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/af/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Verwante stroom', + 'instructions' => 'Spesifiseer die verwante stroominskrywings wat in die keuselys vertoon moet word.', + ], + 'mode' => [ + 'label' => 'Invoermodus', + 'option' => [ + 'tags' => 'Merkers', + 'lookup' => 'Soek', + 'checkboxes' => 'Merkblokkies', + ], + ], + 'min' => [ + 'label' => 'Minimum keuses', + 'instructions' => 'Spesifiseer die minimum aantal toegelate keuses.', + ], + 'max' => [ + 'label' => 'Maksimum keuses', + 'instructions' => 'Spesifiseer die maksimum aantal toegelate keuses.', + ], + 'title_name' => [ + 'label' => 'Titelveld', + 'placeholder' => 'eerste naam', + 'instructions' => 'Spesifiseer die slak van die veld om te vertoon vir die keuselys / soekopsies.
U kan ontleedbare titels spesifiseer soos {entry.first_name} {entry.last_name}
Die titelkolom van die verwante stroom sal standaard gebruik word.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/af/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/af/input.php new file mode 100644 index 000000000..e613a2832 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/af/input.php @@ -0,0 +1,6 @@ + 'Kies \'n opsie ...', + 'help' => 'Skei waardes met \'n komma of deur op "Enter" te druk.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/af/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/af/message.php new file mode 100644 index 000000000..f5fcd0ba3 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/af/message.php @@ -0,0 +1,5 @@ + 'Kies die inskrywings wat u wil byvoeg.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/az/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/az/addon.php new file mode 100644 index 000000000..250e8b0a4 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/az/addon.php @@ -0,0 +1,7 @@ + 'Çoxdur', + 'name' => 'Birden çox sahə növü', + 'description' => 'Çoxsaylı münasibət sahəsi.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/az/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/az/config.php new file mode 100644 index 000000000..dff3b9f46 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/az/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Əlaqəli axın', + 'instructions' => 'Açılan siyahıda göstəriləcək əlaqəli axın girişlərini göstərin.', + ], + 'mode' => [ + 'label' => 'Giriş rejimi', + 'option' => [ + 'tags' => 'Teqlər', + 'lookup' => 'Axtarış', + 'checkboxes' => 'Onay qutuları', + ], + ], + 'min' => [ + 'label' => 'Minimum seçimlər', + 'instructions' => 'Minimum icazə verilən seçim sayını göstərin.', + ], + 'max' => [ + 'label' => 'Maksimum seçimlər', + 'instructions' => 'İcazəli seçimlərin maksimum sayını göstərin.', + ], + 'title_name' => [ + 'label' => 'Başlıq sahəsi', + 'placeholder' => 'ilk_ad', + 'instructions' => 'Açılan / axtarış seçimləri üçün göstəriləcək sahənin slug göstərin.
{entry.first_name} {entry.last_name}
kimi ayrıştırılabilir başlıqlar təyin edə bilərsiniz. Müvafiq yayının başlıq sütunu varsayılan olaraq istifadə ediləcək.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/az/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/az/input.php new file mode 100644 index 000000000..27ede429b --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/az/input.php @@ -0,0 +1,6 @@ + 'Bir seçim seçin ...', + 'help' => 'Vergilərlə və ya "Enter" düyməsini basaraq dəyərləri ayırın.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/az/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/az/message.php new file mode 100644 index 000000000..c360fc60c --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/az/message.php @@ -0,0 +1,5 @@ + 'Əlavə etmək istədiyiniz yazıları seçin.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/bg/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/bg/addon.php new file mode 100644 index 000000000..8e194ec72 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/bg/addon.php @@ -0,0 +1,7 @@ + 'Многократни', + 'name' => 'Тип на множество полета', + 'description' => 'Тип поле с множество връзки.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/bg/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/bg/config.php new file mode 100644 index 000000000..7c442b430 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/bg/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Свързан поток', + 'instructions' => 'Посочете свързаните записи в потока, които да се показват в падащото меню.', + ], + 'mode' => [ + 'label' => 'Режим на въвеждане', + 'option' => [ + 'tags' => 'Етикети', + 'lookup' => 'Погледни нагоре', + 'checkboxes' => 'Квадратчета за отметка', + ], + ], + 'min' => [ + 'label' => 'Минимални селекции', + 'instructions' => 'Посочете минималния брой разрешени селекции.', + ], + 'max' => [ + 'label' => 'Максимален избор', + 'instructions' => 'Посочете максималния брой разрешени селекции.', + ], + 'title_name' => [ + 'label' => 'Поле за заглавие', + 'placeholder' => 'първо име', + 'instructions' => 'Посочете slug за показване за падащи опции / опции за търсене.
Можете да посочите синтаксируеми заглавия като {entry.first_name} {entry.last_name}
По подразбиране ще се използва заглавната колона на свързания поток.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/bg/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/bg/input.php new file mode 100644 index 000000000..6c1291987 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/bg/input.php @@ -0,0 +1,6 @@ + 'Избери опция...', + 'help' => 'Отделете стойностите със запетая или чрез натискане на „Enter“.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/bg/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/bg/message.php new file mode 100644 index 000000000..1b37ac098 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/bg/message.php @@ -0,0 +1,5 @@ + 'Изберете записите, които искате да добавите.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/bn/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/bn/addon.php new file mode 100644 index 000000000..c955a1923 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/bn/addon.php @@ -0,0 +1,7 @@ + 'একাধিক', + 'name' => 'একাধিক ক্ষেত্র প্রকার', + 'description' => 'একাধিক সম্পর্কের ক্ষেত্র প্রকার।', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/bn/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/bn/config.php new file mode 100644 index 000000000..3833336c1 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/bn/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'সম্পর্কিত স্ট্রিম', + 'instructions' => 'ড্রপডাউনতে প্রদর্শন করতে সম্পর্কিত স্ট্রিম এন্ট্রিগুলি নির্দিষ্ট করুন।', + ], + 'mode' => [ + 'label' => 'ইনপুট মোড', + 'option' => [ + 'tags' => 'ট্যাগ', + 'lookup' => 'খুঁজে দেখো', + 'checkboxes' => 'চেকবাক্স', + ], + ], + 'min' => [ + 'label' => 'ন্যূনতম নির্বাচন', + 'instructions' => 'অনুমোদিত নির্বাচনের সর্বনিম্ন সংখ্যা নির্দিষ্ট করুন।', + ], + 'max' => [ + 'label' => 'সর্বোচ্চ নির্বাচন', + 'instructions' => 'অনুমোদিত নির্বাচনের সর্বাধিক সংখ্যা উল্লেখ করুন।', + ], + 'title_name' => [ + 'label' => 'শিরোনাম ক্ষেত্র', + 'placeholder' => 'নামের প্রথম অংশ', + 'instructions' => 'ড্রপডাউন / অনুসন্ধান বিকল্পগুলির জন্য প্রদর্শন করতে ক্ষেত্রের স্লাগ উল্লেখ করুন।
{entry.first_name} {entry.last_name}
এর মতো পার্সেবল শিরোনাম নির্দিষ্ট করতে পারেন সম্পর্কিত স্ট্রিমের শিরোনাম কলামটি ডিফল্টরূপে ব্যবহৃত হবে।', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/bn/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/bn/input.php new file mode 100644 index 000000000..274ebe157 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/bn/input.php @@ -0,0 +1,6 @@ + 'একটি বিকল্প নির্বাচন করুন...', + 'help' => 'কমা দিয়ে বা "এন্টার" টিপে মান পৃথক করুন।', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/bn/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/bn/message.php new file mode 100644 index 000000000..ca47a5a9c --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/bn/message.php @@ -0,0 +1,5 @@ + 'আপনি যোগ করতে চান এন্ট্রি নির্বাচন করুন।', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ca/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ca/addon.php new file mode 100644 index 000000000..74c5d1e44 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ca/addon.php @@ -0,0 +1,7 @@ + 'Múltiples', + 'name' => 'Tipus de camp múltiple', + 'description' => 'Un tipus de camp de relació múltiple.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ca/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ca/config.php new file mode 100644 index 000000000..f301e06c4 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ca/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Corrent relacionat', + 'instructions' => 'Especifiqueu les entrades de flux relacionades que es mostraran al menú desplegable.', + ], + 'mode' => [ + 'label' => 'Mode d\'entrada', + 'option' => [ + 'tags' => 'Etiquetes', + 'lookup' => 'Cercar', + 'checkboxes' => 'Caselles de selecció', + ], + ], + 'min' => [ + 'label' => 'Seleccions mínimes', + 'instructions' => 'Especifiqueu el nombre mínim de seleccions permeses.', + ], + 'max' => [ + 'label' => 'Seleccions màximes', + 'instructions' => 'Especifiqueu el nombre màxim de seleccions permeses.', + ], + 'title_name' => [ + 'label' => 'Camp del títol', + 'placeholder' => 'nom', + 'instructions' => 'Especifiqueu el slug de camp que es mostrarà per a les opcions desplegables / de cerca.
Podeu especificar títols analitzables com {entry.first_name} {entry.last_name}
per defecte s\'utilitzarà la columna de títol del flux relacionat.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ca/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ca/input.php new file mode 100644 index 000000000..49fd81e56 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ca/input.php @@ -0,0 +1,6 @@ + 'Trieu una opció ...', + 'help' => 'Separeu els valors amb una coma o prement "Retorn".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ca/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ca/message.php new file mode 100644 index 000000000..5141497fe --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ca/message.php @@ -0,0 +1,5 @@ + 'Seleccioneu les entrades que vulgueu afegir.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/cs/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/cs/addon.php new file mode 100644 index 000000000..154baab91 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/cs/addon.php @@ -0,0 +1,7 @@ + 'Násobek', + 'name' => 'Více typů polí', + 'description' => 'Typ pole s více vztahy.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/cs/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/cs/config.php new file mode 100644 index 000000000..d1e289edf --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/cs/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Související stream', + 'instructions' => 'Určete související položky streamu, které se mají zobrazit v rozbalovací nabídce.', + ], + 'mode' => [ + 'label' => 'Režim vstupu', + 'option' => [ + 'tags' => 'Značky', + 'lookup' => 'Vzhlédnout', + 'checkboxes' => 'Zaškrtávací políčka', + ], + ], + 'min' => [ + 'label' => 'Minimální výběr', + 'instructions' => 'Určete minimální počet povolených výběrů.', + ], + 'max' => [ + 'label' => 'Maximální výběr', + 'instructions' => 'Zadejte maximální počet povolených výběrů.', + ], + 'title_name' => [ + 'label' => 'Pole názvu', + 'placeholder' => 'jméno', + 'instructions' => 'Určete slimáka pole, které se má zobrazit pro možnosti rozevíracího seznamu / vyhledávání.
Můžete zadat srovnatelné tituly jako {entry.first_name} {entry.last_name}
Ve výchozím nastavení se použije sloupec názvu souvisejícího streamu.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/cs/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/cs/input.php new file mode 100644 index 000000000..04b150546 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/cs/input.php @@ -0,0 +1,6 @@ + 'Vyberte možnost...', + 'help' => 'Hodnoty oddělte čárkou nebo stisknutím klávesy „Enter“.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/cs/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/cs/message.php new file mode 100644 index 000000000..6b3be918a --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/cs/message.php @@ -0,0 +1,5 @@ + 'Vyberte položky, které chcete přidat.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/da/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/da/addon.php new file mode 100644 index 000000000..f3067f4ac --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/da/addon.php @@ -0,0 +1,7 @@ + 'Mange', + 'name' => 'Flere felttyper', + 'description' => 'En felttype med flere forhold.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/da/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/da/config.php new file mode 100644 index 000000000..780a6dfcb --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/da/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Relateret strøm', + 'instructions' => 'Angiv de relaterede strømindgange, der skal vises i rullemenuen.', + ], + 'mode' => [ + 'label' => 'Input-tilstand', + 'option' => [ + 'tags' => 'Mærker', + 'lookup' => 'Kig op', + 'checkboxes' => 'Afkrydsningsfelter', + ], + ], + 'min' => [ + 'label' => 'Minimumsvalg', + 'instructions' => 'Angiv det mindste antal tilladte valg.', + ], + 'max' => [ + 'label' => 'Maksimale valg', + 'instructions' => 'Angiv det maksimale antal tilladte valg.', + ], + 'title_name' => [ + 'label' => 'Titelfelt', + 'placeholder' => 'fornavn', + 'instructions' => 'Angiv slug i feltet, der skal vises, for rullemenu / søgemuligheder.
Du kan specificere parsable titler som {entry.first_name} {entry.last_name}
Den relaterede streams titelsøjle bruges som standard.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/da/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/da/input.php new file mode 100644 index 000000000..153f68266 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/da/input.php @@ -0,0 +1,6 @@ + 'Vælg en mulighed ...', + 'help' => 'Adskil værdierne med et komma eller ved at trykke på "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/da/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/da/message.php new file mode 100644 index 000000000..da8b8ac27 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/da/message.php @@ -0,0 +1,5 @@ + 'Vælg de poster, du vil tilføje.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/el/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/el/addon.php new file mode 100644 index 000000000..37f3aceb5 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/el/addon.php @@ -0,0 +1,7 @@ + 'Πολλαπλούς', + 'name' => 'Τύπος πολλαπλού πεδίου', + 'description' => 'Ένας τύπος πεδίου πολλαπλών σχέσεων.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/el/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/el/config.php new file mode 100644 index 000000000..6bb5c54a6 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/el/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Σχετική ροή', + 'instructions' => 'Καθορίστε τις σχετικές καταχωρήσεις ροής που θα εμφανίζονται στο αναπτυσσόμενο μενού.', + ], + 'mode' => [ + 'label' => 'Λειτουργία εισαγωγής', + 'option' => [ + 'tags' => 'Ετικέτες', + 'lookup' => 'Ψάχνω', + 'checkboxes' => 'Πλαίσια ελέγχου', + ], + ], + 'min' => [ + 'label' => 'Ελάχιστες επιλογές', + 'instructions' => 'Καθορίστε τον ελάχιστο αριθμό επιτρεπόμενων επιλογών.', + ], + 'max' => [ + 'label' => 'Μέγιστες επιλογές', + 'instructions' => 'Καθορίστε τον μέγιστο αριθμό επιτρεπόμενων επιλογών.', + ], + 'title_name' => [ + 'label' => 'Πεδίο τίτλου', + 'placeholder' => 'όνομα', + 'instructions' => 'Καθορίστε το πεδίο slug για εμφάνιση για αναπτυσσόμενες επιλογές / επιλογές αναζήτησης.
Μπορείτε να καθορίσετε αναλύσιμους τίτλους όπως {entry.first_name} {entry.last_name}
Η στήλη τίτλου της σχετικής ροής θα χρησιμοποιηθεί από προεπιλογή.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/el/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/el/input.php new file mode 100644 index 000000000..fdd5ad881 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/el/input.php @@ -0,0 +1,6 @@ + 'Διάλεξε μια επιλογή...', + 'help' => 'Διαχωρίστε τις τιμές με κόμμα ή πατώντας "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/el/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/el/message.php new file mode 100644 index 000000000..6560107e9 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/el/message.php @@ -0,0 +1,5 @@ + 'Επιλέξτε τις καταχωρήσεις που θέλετε να προσθέσετε.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/es/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/es/addon.php new file mode 100644 index 000000000..93565dd3d --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/es/addon.php @@ -0,0 +1,7 @@ + 'Múltiple', + 'name' => 'Tipo de campo múltiple', + 'description' => 'Un tipo de campo de relación múltiple.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/es/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/es/config.php new file mode 100644 index 000000000..d095797ed --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/es/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Corriente relacionada', + 'instructions' => 'Especifique las entradas de flujo relacionadas para mostrar en el menú desplegable.', + ], + 'mode' => [ + 'label' => 'Modo de entrada', + 'option' => [ + 'tags' => 'Etiquetas', + 'lookup' => 'Buscar', + 'checkboxes' => 'Casillas de verificación', + ], + ], + 'min' => [ + 'label' => 'Selecciones mínimas', + 'instructions' => 'Especifique el número mínimo de selecciones permitidas.', + ], + 'max' => [ + 'label' => 'Selecciones máximas', + 'instructions' => 'Especifique el número máximo de selecciones permitidas.', + ], + 'title_name' => [ + 'label' => 'Campo de título', + 'placeholder' => 'primer nombre', + 'instructions' => 'Especifique el slug del campo para mostrar las opciones de búsqueda / menú desplegable.
Puede especificar títulos analizables como {entry.first_name} {entry.last_name}
La columna de título de la secuencia relacionada se utilizará de forma predeterminada.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/es/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/es/input.php new file mode 100644 index 000000000..b966b9b75 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/es/input.php @@ -0,0 +1,6 @@ + 'Elige una opcion...', + 'help' => 'Separe los valores con una coma o presionando "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/es/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/es/message.php new file mode 100644 index 000000000..a2a0580a9 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/es/message.php @@ -0,0 +1,5 @@ + 'Seleccione las entradas que le gustaría agregar.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/fa/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/fa/addon.php new file mode 100644 index 000000000..2e5914072 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/fa/addon.php @@ -0,0 +1,7 @@ + 'چندتایی', + 'name' => 'نوع زمینه چندگانه', + 'description' => 'یک نوع زمینه ارتباط چندگانه.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/fa/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/fa/config.php new file mode 100644 index 000000000..2411fad46 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/fa/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'جریان مرتبط', + 'instructions' => 'ورودی های مربوط به جریان را برای نمایش در لیست کشویی مشخص کنید.', + ], + 'mode' => [ + 'label' => 'حالت ورودی', + 'option' => [ + 'tags' => 'برچسب ها', + 'lookup' => 'جستجو', + 'checkboxes' => 'کادرهای تأیید', + ], + ], + 'min' => [ + 'label' => 'حداقل انتخاب ها', + 'instructions' => 'حداقل تعداد انتخاب مجاز را مشخص کنید.', + ], + 'max' => [ + 'label' => 'حداکثر انتخاب ها', + 'instructions' => 'حداکثر تعداد انتخاب مجاز را مشخص کنید.', + ], + 'title_name' => [ + 'label' => 'فیلد عنوان', + 'placeholder' => 'نام کوچک', + 'instructions' => 'برای نمایش گزینه های کشویی / جستجو ، فیلد Slug مشخص کنید.
می توانید عناوین قابل تجزیه را مانند {entry.first_name} {entry.last_name}
مشخص کنید ستون عنوان جریان مرتبط به طور پیش فرض استفاده می شود.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/fa/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/fa/input.php new file mode 100644 index 000000000..38f67e496 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/fa/input.php @@ -0,0 +1,6 @@ + 'گزینه ای را انتخاب کنید ...', + 'help' => 'مقادیر را با ویرگول یا با فشار دادن "Enter" جدا کنید.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/fa/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/fa/message.php new file mode 100644 index 000000000..2bcea0e3e --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/fa/message.php @@ -0,0 +1,5 @@ + 'ورودی هایی را که می خواهید اضافه کنید انتخاب کنید.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/fi/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/fi/addon.php new file mode 100644 index 000000000..efa5bc094 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/fi/addon.php @@ -0,0 +1,7 @@ + 'Useita', + 'name' => 'Useiden kenttien tyyppi', + 'description' => 'Usean suhteen kenttätyyppi.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/fi/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/fi/config.php new file mode 100644 index 000000000..6a4ac0e9f --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/fi/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Liittyvä virta', + 'instructions' => 'Määritä liittyvät stream-merkinnät näytettäväksi pudotusvalikossa.', + ], + 'mode' => [ + 'label' => 'Tulotila', + 'option' => [ + 'tags' => 'Tunnisteet', + 'lookup' => 'Katso ylös', + 'checkboxes' => 'Valintaruudut', + ], + ], + 'min' => [ + 'label' => 'Vähimmäisvalinnat', + 'instructions' => 'Määritä sallittujen valintojen vähimmäismäärä.', + ], + 'max' => [ + 'label' => 'Suurin valikoima', + 'instructions' => 'Määritä sallittujen valintojen enimmäismäärä.', + ], + 'title_name' => [ + 'label' => 'Otsikkokenttä', + 'placeholder' => 'etunimi', + 'instructions' => 'Määritä avattavien valintojen / hakuvaihtoehtojen yhteydessä näytettävän kentän
Voit määrittää jäsennettäviä otsikoita, kuten {entry.first_name} {entry.last_name}
, oletuksena käytetään siihen liittyvän suoran otsikon saraketta.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/fi/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/fi/input.php new file mode 100644 index 000000000..390bda4d5 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/fi/input.php @@ -0,0 +1,6 @@ + 'Valitse vaihtoehto...', + 'help' => 'Erota arvot pilkulla tai painamalla "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/fi/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/fi/message.php new file mode 100644 index 000000000..5eaa57e01 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/fi/message.php @@ -0,0 +1,5 @@ + 'Valitse lisättävät merkinnät.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/he/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/he/addon.php new file mode 100644 index 000000000..ea7826552 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/he/addon.php @@ -0,0 +1,7 @@ + 'מרובות', + 'name' => 'סוג שדה מרובה', + 'description' => 'סוג שדה יחסים מרובה.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/he/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/he/config.php new file mode 100644 index 000000000..b3881d212 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/he/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'זרם קשור', + 'instructions' => 'ציין את ערכי הזרם הקשורים שיוצגו בתפריט הנפתח.', + ], + 'mode' => [ + 'label' => 'מצב קלט', + 'option' => [ + 'tags' => 'תגים', + 'lookup' => 'הבט מעלה', + 'checkboxes' => 'תיבות סימון', + ], + ], + 'min' => [ + 'label' => 'בחירות מינימליות', + 'instructions' => 'ציין את המספר המינימלי של הבחירות המותרות.', + ], + 'max' => [ + 'label' => 'בחירות מרביות', + 'instructions' => 'ציין את המספר המרבי של הבחירות המותרות.', + ], + 'title_name' => [ + 'label' => 'שדה כותרת', + 'placeholder' => 'שם פרטי', + 'instructions' => 'ציין את שבלול של השדה לתצוגה עבור אפשרויות נפתחות / חיפוש.
ניתן לציין כותרות ניתנות כמו {entry.first_name} {entry.last_name}
בעמודת הכותרת של הזרם הקשור ישמש כברירת מחדל.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/he/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/he/input.php new file mode 100644 index 000000000..64f35d185 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/he/input.php @@ -0,0 +1,6 @@ + 'בחר אפשרות...', + 'help' => 'הפרד את הערכים באמצעות פסיק או על ידי לחיצה על "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/he/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/he/message.php new file mode 100644 index 000000000..d198a8127 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/he/message.php @@ -0,0 +1,5 @@ + 'בחר את הערכים שברצונך להוסיף.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/hi/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/hi/addon.php new file mode 100644 index 000000000..532ecc61b --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/hi/addon.php @@ -0,0 +1,7 @@ + 'विभिन्न', + 'name' => 'एकाधिक फ़ील्ड प्रकार', + 'description' => 'एक एकाधिक संबंध फ़ील्ड प्रकार।', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/hi/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/hi/config.php new file mode 100644 index 000000000..5ac446808 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/hi/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'संबंधित स्ट्रीम', + 'instructions' => 'ड्रॉपडाउन में प्रदर्शित करने के लिए संबंधित स्ट्रीम प्रविष्टियों को निर्दिष्ट करें।', + ], + 'mode' => [ + 'label' => 'इनपुट मोड', + 'option' => [ + 'tags' => 'टैग', + 'lookup' => 'ऊपर देखो', + 'checkboxes' => 'चेक बॉक्स', + ], + ], + 'min' => [ + 'label' => 'न्यूनतम चयन', + 'instructions' => 'अनुमत चयनों की न्यूनतम संख्या निर्दिष्ट करें।', + ], + 'max' => [ + 'label' => 'अधिकतम चयन', + 'instructions' => 'अनुमत चयन की अधिकतम संख्या निर्दिष्ट करें।', + ], + 'title_name' => [ + 'label' => 'शीर्षक क्षेत्र', + 'placeholder' => 'पहला नाम', + 'instructions' => 'ड्रॉपडाउन / खोज विकल्पों के लिए प्रदर्शित करने के लिए फ़ील्ड के स्लग
{entry.first_name} {entry.last_name}
जैसे पार्स करने योग्य शीर्षक निर्दिष्ट कर सकते हैं। संबंधित स्ट्रीम का शीर्षक कॉलम डिफ़ॉल्ट रूप से उपयोग किया जाएगा।', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/hi/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/hi/input.php new file mode 100644 index 000000000..10c892e23 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/hi/input.php @@ -0,0 +1,6 @@ + 'एक विकल्प चुनें...', + 'help' => 'कॉमा के साथ या "एन्टर" दबाकर अलग मान।', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/hi/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/hi/message.php new file mode 100644 index 000000000..45c246dbb --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/hi/message.php @@ -0,0 +1,5 @@ + 'उन प्रविष्टियों का चयन करें जिन्हें आप जोड़ना चाहते हैं।', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/id/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/id/addon.php new file mode 100644 index 000000000..46a9343a9 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/id/addon.php @@ -0,0 +1,7 @@ + 'Banyak', + 'name' => 'Jenis Bidang Ganda', + 'description' => 'Jenis bidang hubungan ganda.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/id/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/id/config.php new file mode 100644 index 000000000..89f70d95e --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/id/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Aliran Terkait', + 'instructions' => 'Tentukan entri aliran terkait untuk ditampilkan di tarik-turun.', + ], + 'mode' => [ + 'label' => 'Mode Masukan', + 'option' => [ + 'tags' => 'Tag', + 'lookup' => 'Mencari', + 'checkboxes' => 'Kotak centang', + ], + ], + 'min' => [ + 'label' => 'Seleksi Minimum', + 'instructions' => 'Tentukan jumlah minimum pilihan yang diizinkan.', + ], + 'max' => [ + 'label' => 'Pilihan Maksimum', + 'instructions' => 'Tentukan jumlah maksimum pilihan yang diperbolehkan.', + ], + 'title_name' => [ + 'label' => 'Bidang Judul', + 'placeholder' => 'nama depan', + 'instructions' => 'Tentukan bidang siput akan ditampilkan untuk opsi tarik-turun / pencarian.
Anda dapat menentukan judul yang dapat diuraikan seperti {entry.first_name} {entry.last_name}
Kolom judul aliran terkait akan digunakan secara default.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/id/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/id/input.php new file mode 100644 index 000000000..3d12cef96 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/id/input.php @@ -0,0 +1,6 @@ + 'Pilih salah satu opsi ...', + 'help' => 'Pisahkan nilai dengan koma atau dengan menekan "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/id/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/id/message.php new file mode 100644 index 000000000..5de6b972e --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/id/message.php @@ -0,0 +1,5 @@ + 'Pilih entri yang ingin Anda tambahkan.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/it/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/it/addon.php new file mode 100644 index 000000000..e6e061dd6 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/it/addon.php @@ -0,0 +1,7 @@ + 'Molteplici', + 'name' => 'Tipo di campo multiplo', + 'description' => 'Un tipo di campo relazione multipla.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/it/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/it/config.php new file mode 100644 index 000000000..0980ef4da --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/it/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Stream correlato', + 'instructions' => 'Specificare le voci del flusso correlate da visualizzare nel menu a discesa.', + ], + 'mode' => [ + 'label' => 'Modalità di immissione', + 'option' => [ + 'tags' => 'Tag', + 'lookup' => 'Consultare', + 'checkboxes' => 'Caselle di controllo', + ], + ], + 'min' => [ + 'label' => 'Selezioni minime', + 'instructions' => 'Specificare il numero minimo di selezioni consentite.', + ], + 'max' => [ + 'label' => 'Selezioni massime', + 'instructions' => 'Specificare il numero massimo di selezioni consentite.', + ], + 'title_name' => [ + 'label' => 'Campo del titolo', + 'placeholder' => 'nome di battesimo', + 'instructions' => 'Specificare lo slug del campo da visualizzare per le opzioni di menu a discesa / ricerca.
È possibile specificare titoli analizzabili come {entry.first_name} {entry.last_name}
La colonna del titolo del flusso correlato verrà utilizzata per impostazione predefinita.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/it/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/it/input.php new file mode 100644 index 000000000..29c5b3439 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/it/input.php @@ -0,0 +1,6 @@ + 'Scegliere un\'opzione...', + 'help' => 'Separare i valori con una virgola o premendo "Invio".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/it/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/it/message.php new file mode 100644 index 000000000..07f504ada --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/it/message.php @@ -0,0 +1,5 @@ + 'Seleziona le voci che desideri aggiungere.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ja/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ja/addon.php new file mode 100644 index 000000000..760eca916 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ja/addon.php @@ -0,0 +1,7 @@ + '複数', + 'name' => '複数のフィールドタイプ', + 'description' => '複数の関係フィールドタイプ。', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ja/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ja/config.php new file mode 100644 index 000000000..444c4b2ed --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ja/config.php @@ -0,0 +1,29 @@ + [ + 'label' => '関連ストリーム', + 'instructions' => 'ドロップダウンに表示する関連ストリームエントリを指定します。', + ], + 'mode' => [ + 'label' => '入力モード', + 'option' => [ + 'tags' => 'タグ', + 'lookup' => '見上げる', + 'checkboxes' => 'チェックボックス', + ], + ], + 'min' => [ + 'label' => '最小選択', + 'instructions' => '許可される選択の最小数を指定します。', + ], + 'max' => [ + 'label' => '最大選択数', + 'instructions' => '許可される選択の最大数を指定します。', + ], + 'title_name' => [ + 'label' => 'タイトルフィールド', + 'placeholder' => 'ファーストネーム', + 'instructions' => 'ドロップダウン/検索オプションに表示するフィールドの スラッグ を指定します。
あなたのような解析可能なタイトルを指定することができます {entry.first_name} {entry.last_name}
関連ストリームのタイトル欄は、デフォルトで使用されますが。', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ja/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ja/input.php new file mode 100644 index 000000000..499e4ba6d --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ja/input.php @@ -0,0 +1,6 @@ + 'オプションを選択...', + 'help' => '値はコンマで区切るか、「Enter」を押してください。', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ja/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ja/message.php new file mode 100644 index 000000000..ae8cf29fe --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ja/message.php @@ -0,0 +1,5 @@ + '追加するエントリを選択します。', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ko/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ko/addon.php new file mode 100644 index 000000000..92bbcb9eb --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ko/addon.php @@ -0,0 +1,7 @@ + '배수', + 'name' => '다중 필드 유형', + 'description' => '다중 관계 필드 유형입니다.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ko/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ko/config.php new file mode 100644 index 000000000..73806f5f2 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ko/config.php @@ -0,0 +1,29 @@ + [ + 'label' => '관련 스트림', + 'instructions' => '드롭 다운에 표시 할 관련 스트림 항목을 지정합니다.', + ], + 'mode' => [ + 'label' => '입력 모드', + 'option' => [ + 'tags' => '태그', + 'lookup' => '조회', + 'checkboxes' => '체크 박스', + ], + ], + 'min' => [ + 'label' => '최소 선택', + 'instructions' => '허용되는 최소 선택 수를 지정합니다.', + ], + 'max' => [ + 'label' => '최대 선택', + 'instructions' => '허용되는 최대 선택 수를 지정합니다.', + ], + 'title_name' => [ + 'label' => '제목 필드', + 'placeholder' => '이름', + 'instructions' => '드롭 다운 / 검색 옵션에 대해 표시 할 필드 슬러그 을 지정합니다.
{entry.first_name} {entry.last_name}
과 같이 구문 분석 가능한 제목을 지정할 수 있습니다. 관련 스트림의 제목 열이 기본적으로 사용됩니다.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ko/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ko/input.php new file mode 100644 index 000000000..8c24265c6 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ko/input.php @@ -0,0 +1,6 @@ + '옵션을 선택하세요...', + 'help' => '쉼표 또는 "Enter"를 눌러 값을 구분하십시오.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ko/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ko/message.php new file mode 100644 index 000000000..c7c1d6856 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ko/message.php @@ -0,0 +1,5 @@ + '추가 할 항목을 선택하십시오.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ku/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ku/addon.php new file mode 100644 index 000000000..47d11e679 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Pircar', + 'name' => 'Tîpa Zeviya Pirjimar', + 'description' => 'Celebek qada pêwendiya pirzimanî.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ku/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ku/config.php new file mode 100644 index 000000000..38c4a9b0d --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ku/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Stream related', + 'instructions' => 'Navnîşên weşanên pêwendîdar diyar bikin ku di hilweşînê de werin xuyang kirin.', + ], + 'mode' => [ + 'label' => 'Modeya Input', + 'option' => [ + 'tags' => 'Tags', + 'lookup' => 'Peyda kirin', + 'checkboxes' => 'Checkboxes', + ], + ], + 'min' => [ + 'label' => 'Hilbijarkên Kêmtirîn', + 'instructions' => 'Hilbijartinên destûrkirî yên herî kêm hejmar bikin.', + ], + 'max' => [ + 'label' => 'Hilbijartinên Maksîmûm', + 'instructions' => 'Hilbijartinên destûra jimareya herî zêde diyar bikin.', + ], + 'title_name' => [ + 'label' => 'Qada Sernavê', + 'placeholder' => 'nav', + 'instructions' => 'slug a zeviyê diyar bikin da ku ji bo vebijarkên vekişînê / lêgerînê nîşan bide.
Hûn dikarin sernavên parselbar ên wekî {entry.first_name} {entry.last_name}
Diyar bikin ku stûna sernavê ya têkildar dê ji hêla default ve were bikar anîn.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ku/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ku/input.php new file mode 100644 index 000000000..55e59b938 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ku/input.php @@ -0,0 +1,7 @@ + 'بژاردەیەک هەڵبژێرە +', + 'help' => 'Nirxan bi kumika an bi tikandina "Enter" veqetînin.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ku/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ku/message.php new file mode 100644 index 000000000..288c7e401 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ku/message.php @@ -0,0 +1,5 @@ + 'Navnîşên ku hûn dixwazin lê zêde bikin hilbijêrin.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/nl/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/nl/addon.php new file mode 100644 index 000000000..bf8cb3f45 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/nl/addon.php @@ -0,0 +1,7 @@ + 'Meerdere', + 'name' => 'Meerdere veldtypen', + 'description' => 'Een veldtype met meerdere relaties.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/nl/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/nl/config.php new file mode 100644 index 000000000..de52b30df --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/nl/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Gerelateerde stream', + 'instructions' => 'Geef de gerelateerde streamvermeldingen op die in de vervolgkeuzelijst moeten worden weergegeven.', + ], + 'mode' => [ + 'label' => 'Invoer modus', + 'option' => [ + 'tags' => 'Tags', + 'lookup' => 'Opzoeken', + 'checkboxes' => 'Selectievakjes', + ], + ], + 'min' => [ + 'label' => 'Minimale selecties', + 'instructions' => 'Specificeer het minimum aantal toegestane selecties.', + ], + 'max' => [ + 'label' => 'Maximale selecties', + 'instructions' => 'Specificeer het maximum aantal toegestane selecties.', + ], + 'title_name' => [ + 'label' => 'Titelveld', + 'placeholder' => 'Voornaam', + 'instructions' => 'Specificeer slug van veld om weer te geven voor vervolgkeuzelijst / zoekopties.
U kunt parseerbare titels specificeren, zoals {entry.first_name} {entry.last_name}
De titelkolom van de gerelateerde stream wordt standaard gebruikt.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/nl/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/nl/input.php new file mode 100644 index 000000000..663efdaba --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/nl/input.php @@ -0,0 +1,6 @@ + 'Kies een optie...', + 'help' => 'Scheid waarden met een komma of door op "Enter" te drukken.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/nl/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/nl/message.php new file mode 100644 index 000000000..1ca324d31 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/nl/message.php @@ -0,0 +1,5 @@ + 'Selecteer de vermeldingen die u wilt toevoegen.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/no/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/no/addon.php new file mode 100644 index 000000000..7b60c4de3 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/no/addon.php @@ -0,0 +1,7 @@ + 'Flere', + 'name' => 'Flere felttyper', + 'description' => 'En felttype med flere forhold.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/no/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/no/config.php new file mode 100644 index 000000000..6c5107d7e --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/no/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Relatert strøm', + 'instructions' => 'Spesifiser de relaterte strømoppføringene som skal vises i rullegardinmenyen.', + ], + 'mode' => [ + 'label' => 'Inndatamodus', + 'option' => [ + 'tags' => 'Merker', + 'lookup' => 'Se opp', + 'checkboxes' => 'Avkrysningsruter', + ], + ], + 'min' => [ + 'label' => 'Minimumsvalg', + 'instructions' => 'Spesifiser minimum antall tillatte valg.', + ], + 'max' => [ + 'label' => 'Maksimum utvalg', + 'instructions' => 'Spesifiser maksimalt antall tillatte valg.', + ], + 'title_name' => [ + 'label' => 'Tittelfelt', + 'placeholder' => 'fornavn', + 'instructions' => 'Spesifiser slug i feltet som skal vises for rullegardin / søkealternativer.
Du kan spesifisere parsable titler som {entry.first_name} {entry.last_name}
Den relaterte streamens tittelkolonne vil bli brukt som standard.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/no/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/no/input.php new file mode 100644 index 000000000..53f277dd0 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/no/input.php @@ -0,0 +1,6 @@ + 'Velg et alternativ...', + 'help' => 'Separer verdiene med komma eller ved å trykke "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/no/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/no/message.php new file mode 100644 index 000000000..42a55031e --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/no/message.php @@ -0,0 +1,5 @@ + 'Velg oppføringene du vil legge til.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/pl/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/pl/addon.php new file mode 100644 index 000000000..b3408dd1f --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/pl/addon.php @@ -0,0 +1,7 @@ + 'Wielokrotność', + 'name' => 'Typ wielu pól', + 'description' => 'Typ pola wielu relacji.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/pl/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/pl/config.php new file mode 100644 index 000000000..43a571862 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/pl/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Powiązany strumień', + 'instructions' => 'Określ powiązane wpisy strumieni, które mają być wyświetlane na liście rozwijanej.', + ], + 'mode' => [ + 'label' => 'Tryb wejściowy', + 'option' => [ + 'tags' => 'Tagi', + 'lookup' => 'Wyszukaj', + 'checkboxes' => 'Pola wyboru', + ], + ], + 'min' => [ + 'label' => 'Minimalne wybory', + 'instructions' => 'Określ minimalną liczbę dozwolonych wyborów.', + ], + 'max' => [ + 'label' => 'Maksymalne wybory', + 'instructions' => 'Określ maksymalną liczbę dozwolonych wyborów.', + ], + 'title_name' => [ + 'label' => 'Pole tytułu', + 'placeholder' => 'Imię', + 'instructions' => 'Określ slug pola, które ma być wyświetlane dla opcji menu rozwijanego / wyszukiwania.
Możesz określić tytuły do analizy, takie jak {entry.first_name} {entry.last_name}
Kolumna tytułu powiązanego strumienia będzie używana domyślnie.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/pl/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/pl/input.php new file mode 100644 index 000000000..74eb7d7d6 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/pl/input.php @@ -0,0 +1,6 @@ + 'Wybierz opcję...', + 'help' => 'Oddziel wartości przecinkami lub naciskając „Enter”.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/pl/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/pl/message.php new file mode 100644 index 000000000..de70403f6 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/pl/message.php @@ -0,0 +1,5 @@ + 'Wybierz wpisy, które chcesz dodać.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/pt/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/pt/addon.php new file mode 100644 index 000000000..80bd7ca27 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/pt/addon.php @@ -0,0 +1,7 @@ + 'Múltiplo', + 'name' => 'Tipo de campo múltiplo', + 'description' => 'Um tipo de campo de relacionamento múltiplo.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/pt/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/pt/config.php new file mode 100644 index 000000000..c08c776c7 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/pt/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Stream Relacionado', + 'instructions' => 'Especifique as entradas de fluxo relacionadas a serem exibidas na lista suspensa.', + ], + 'mode' => [ + 'label' => 'Modo de entrada', + 'option' => [ + 'tags' => 'Tag', + 'lookup' => 'Olho para cima', + 'checkboxes' => 'Caixas de seleção', + ], + ], + 'min' => [ + 'label' => 'Seleções mínimas', + 'instructions' => 'Especifique o número mínimo de seleções permitidas.', + ], + 'max' => [ + 'label' => 'Seleções máximas', + 'instructions' => 'Especifique o número máximo de seleções permitidas.', + ], + 'title_name' => [ + 'label' => 'Campo de Título', + 'placeholder' => 'primeiro nome', + 'instructions' => 'Especifique slug do campo a ser exibido nas opções suspensas / de pesquisa.
Você pode especificar títulos analisáveis como {entry.first_name} {entry.last_name}
A coluna de título do fluxo relacionado será usada por padrão.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/pt/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/pt/input.php new file mode 100644 index 000000000..a5b83dbda --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/pt/input.php @@ -0,0 +1,6 @@ + 'Escolha uma opção...', + 'help' => 'Separe os valores com uma vírgula ou pressionando "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/pt/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/pt/message.php new file mode 100644 index 000000000..9cebca47f --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/pt/message.php @@ -0,0 +1,5 @@ + 'Selecione as entradas que deseja adicionar.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ro/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ro/addon.php new file mode 100644 index 000000000..b4f92af17 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ro/addon.php @@ -0,0 +1,7 @@ + 'Multiplu', + 'name' => 'Tip de câmp multiplu', + 'description' => 'Un tip de câmp de relații multiple.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ro/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ro/config.php new file mode 100644 index 000000000..60d1aaccd --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ro/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Flux asociat', + 'instructions' => 'Specificați intrările de flux aferente care vor fi afișate în meniul derulant.', + ], + 'mode' => [ + 'label' => 'Modul de introducere', + 'option' => [ + 'tags' => 'Etichete', + 'lookup' => 'Privește în sus', + 'checkboxes' => 'Casete de selectare', + ], + ], + 'min' => [ + 'label' => 'Selecții minime', + 'instructions' => 'Specificați numărul minim de selecții permise.', + ], + 'max' => [ + 'label' => 'Selecții maxime', + 'instructions' => 'Specificați numărul maxim de selecții permise.', + ], + 'title_name' => [ + 'label' => 'Câmpul de titlu', + 'placeholder' => 'Nume', + 'instructions' => 'Specificați slug de câmp de afișat pentru opțiunile drop-down / căutare.
Puteți specifica titluri analizate precum {entry.first_name} {entry.last_name}
Coloana de titlu a fluxului aferent va fi utilizată în mod implicit.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ro/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ro/input.php new file mode 100644 index 000000000..8783866d5 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ro/input.php @@ -0,0 +1,6 @@ + 'Alege o opțiune...', + 'help' => 'Separați valorile cu o virgulă sau apăsând pe „Enter”.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ro/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ro/message.php new file mode 100644 index 000000000..e91a60a2a --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ro/message.php @@ -0,0 +1,5 @@ + 'Selectați intrările pe care doriți să le adăugați.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ru/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ru/addon.php new file mode 100644 index 000000000..f5c243f2e --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ru/addon.php @@ -0,0 +1,7 @@ + 'Несколько', + 'name' => 'Множественный тип поля', + 'description' => 'Тип поля с несколькими отношениями.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ru/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ru/config.php new file mode 100644 index 000000000..b081543e0 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ru/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Связанный поток', + 'instructions' => 'Укажите связанные записи потока для отображения в раскрывающемся списке.', + ], + 'mode' => [ + 'label' => 'Режим ввода', + 'option' => [ + 'tags' => 'Теги', + 'lookup' => 'Уважать', + 'checkboxes' => 'Флажки', + ], + ], + 'min' => [ + 'label' => 'Минимальный выбор', + 'instructions' => 'Укажите минимальное количество разрешенных вариантов выбора.', + ], + 'max' => [ + 'label' => 'Максимальный выбор', + 'instructions' => 'Укажите максимальное количество разрешенных вариантов выбора.', + ], + 'title_name' => [ + 'label' => 'Поле заголовка', + 'placeholder' => 'имя', + 'instructions' => 'Укажите слизняка поле для отображения для выбора параметров выпадающего / поиска.
Вы можете указать заголовки, которые можно анализировать, например, {entry.first_name} {entry.last_name}
Столбец заголовков связанного потока будет использоваться по умолчанию.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ru/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ru/input.php new file mode 100644 index 000000000..b0cb737b4 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ru/input.php @@ -0,0 +1,6 @@ + 'Выберите опцию...', + 'help' => 'Разделяйте значения запятой или нажатием «Enter».', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ru/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ru/message.php new file mode 100644 index 000000000..911e83fca --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ru/message.php @@ -0,0 +1,5 @@ + 'Выберите записи, которые вы хотите добавить.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/sq/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/sq/addon.php new file mode 100644 index 000000000..6b832fccd --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/sq/addon.php @@ -0,0 +1,7 @@ + 'Shumëfish', + 'name' => 'Lloji i fushës së shumëfishtë', + 'description' => 'Një lloj i fushës së marrëdhënieve të shumëfishta.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/sq/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/sq/config.php new file mode 100644 index 000000000..cd2e7f878 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/sq/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Rryma e ngjashme', + 'instructions' => 'Specifikoni shënimet përkatëse të transmetimit për t\'u shfaqur në dropdown.', + ], + 'mode' => [ + 'label' => 'Modaliteti i hyrjes', + 'option' => [ + 'tags' => 'Etiketat', + 'lookup' => 'Kërkim', + 'checkboxes' => 'Kutitë e zgjedhjes', + ], + ], + 'min' => [ + 'label' => 'Përzgjedhjet minimale', + 'instructions' => 'Specifikoni numrin minimal të zgjedhjeve të lejuara.', + ], + 'max' => [ + 'label' => 'Përzgjedhjet maksimale', + 'instructions' => 'Specifikoni numrin maksimal të zgjedhjeve të lejuara.', + ], + 'title_name' => [ + 'label' => 'Fusha e Titullit', + 'placeholder' => 'Emri', + 'instructions' => 'Specifikoni goditje e fortë e fushës për të ekranit për mundësitë dropdown / e kërkimit.
Mund të specifikoni tituj të analizueshëm si {entry.first_name} {entry.last_name}
Kolona e titullit të rrymës përkatëse do të përdoret si parazgjedhje.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/sq/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/sq/input.php new file mode 100644 index 000000000..df3de15e1 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/sq/input.php @@ -0,0 +1,6 @@ + 'Zgjidhni një opsion ...', + 'help' => 'Ndani vlerat me një presje ose duke shtypur "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/sq/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/sq/message.php new file mode 100644 index 000000000..3718a0645 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/sq/message.php @@ -0,0 +1,5 @@ + 'Zgjidhni shënimet që dëshironi të shtoni.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/sr/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/sr/addon.php new file mode 100644 index 000000000..b58237ed9 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/sr/addon.php @@ -0,0 +1,7 @@ + 'Multiple', + 'name' => 'Multiple Field Type', + 'description' => 'A multiple relationship field type.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/sr/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/sr/config.php new file mode 100644 index 000000000..575a7c5a3 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/sr/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Related Stream', + 'instructions' => 'Specify the related stream entries to display in the dropdown.', + ], + 'mode' => [ + 'label' => 'Mod unosa', + 'option' => [ + 'tags' => 'Tags', + 'lookup' => 'Lookup', + 'checkboxes' => 'Checkboxes', + ], + ], + 'min' => [ + 'label' => 'Minimalni odabir', + 'instructions' => 'Specify the minimum number of allowed selections.', + ], + 'max' => [ + 'label' => 'Maksimalni odabir', + 'instructions' => 'Specify the maximum number of allowed selections.', + ], + 'title_name' => [ + 'label' => 'Title Field', + 'placeholder' => 'first_name', + 'instructions' => 'Specify the slug of field to display for dropdown/search options.
You can specify parsable titles like {entry.first_name} {entry.last_name}
The related stream\'s title column will be used by default.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/sr/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/sr/input.php new file mode 100644 index 000000000..8395e6523 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/sr/input.php @@ -0,0 +1,6 @@ + 'Odaberite Opciju...', + 'help' => 'Separate values with a comma or by pressing "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/sr/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/sr/message.php new file mode 100644 index 000000000..212311d7a --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/sr/message.php @@ -0,0 +1,5 @@ + 'Select the entries you would like to add.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/sv/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/sv/addon.php new file mode 100644 index 000000000..c4afed5f1 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/sv/addon.php @@ -0,0 +1,7 @@ + 'Flera olika', + 'name' => 'Flera fälttyper', + 'description' => 'En fälttyp med flera förhållanden.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/sv/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/sv/config.php new file mode 100644 index 000000000..0787c0033 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/sv/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Relaterad ström', + 'instructions' => 'Ange relaterade strömposter som ska visas i rullgardinsmenyn.', + ], + 'mode' => [ + 'label' => 'Ingångsläge', + 'option' => [ + 'tags' => 'Taggar', + 'lookup' => 'Slå upp', + 'checkboxes' => 'Kryssrutor', + ], + ], + 'min' => [ + 'label' => 'Minsta val', + 'instructions' => 'Ange det minsta antalet tillåtna val.', + ], + 'max' => [ + 'label' => 'Maximala val', + 'instructions' => 'Ange det maximala antalet tillåtna val.', + ], + 'title_name' => [ + 'label' => 'Titelfält', + 'placeholder' => 'förnamn', + 'instructions' => 'Ange slug i fältet som ska visas för rullgardins- / sökalternativ.
Du kan ange tolkbara titlar som {entry.first_name} {entry.last_name}
Den relaterade strömens titelkolumn används som standard.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/sv/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/sv/input.php new file mode 100644 index 000000000..cef35c241 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/sv/input.php @@ -0,0 +1,6 @@ + 'Välj ett alternativ...', + 'help' => 'Separera värdena med ett komma eller genom att trycka på "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/sv/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/sv/message.php new file mode 100644 index 000000000..7bc977687 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/sv/message.php @@ -0,0 +1,5 @@ + 'Välj de poster du vill lägga till.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/uk/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/uk/addon.php new file mode 100644 index 000000000..dca53fabe --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/uk/addon.php @@ -0,0 +1,7 @@ + 'Множинні', + 'name' => 'Кілька типів полів', + 'description' => 'Тип поля множинних відносин.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/uk/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/uk/config.php new file mode 100644 index 000000000..fb2b0e59f --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/uk/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Пов’язаний потік', + 'instructions' => 'Вкажіть відповідні записи потоку, які відображатимуться у спадному меню.', + ], + 'mode' => [ + 'label' => 'Режим введення', + 'option' => [ + 'tags' => 'Теги', + 'lookup' => 'Пошук', + 'checkboxes' => 'Прапорці', + ], + ], + 'min' => [ + 'label' => 'Мінімальний вибір', + 'instructions' => 'Вкажіть мінімальну кількість дозволених виділень.', + ], + 'max' => [ + 'label' => 'Максимальний вибір', + 'instructions' => 'Вкажіть максимальну кількість дозволених виділень.', + ], + 'title_name' => [ + 'label' => 'Поле заголовка', + 'placeholder' => 'ім\'я', + 'instructions' => 'Вкажіть поле slug яке відображатиметься для розкривного меню / параметрів пошуку.
Ви можете вказати синтаксичні заголовки, такі як {entry.first_name} {entry.last_name}
Стовпець заголовка відповідного потоку буде використовуватися за замовчуванням.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/uk/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/uk/input.php new file mode 100644 index 000000000..dbd5b6403 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/uk/input.php @@ -0,0 +1,6 @@ + 'Виберіть варіант ...', + 'help' => 'Відокремте значення комою або натиснувши "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/uk/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/uk/message.php new file mode 100644 index 000000000..b676773ee --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/uk/message.php @@ -0,0 +1,5 @@ + 'Виберіть записи, які ви хочете додати.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ur/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ur/addon.php new file mode 100644 index 000000000..6ea3bab0d --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ur/addon.php @@ -0,0 +1,7 @@ + 'متعدد', + 'name' => 'ایک سے زیادہ فیلڈ کی قسم', + 'description' => 'ایک سے زیادہ تعلقات کی فیلڈ کی قسم۔', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ur/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ur/config.php new file mode 100644 index 000000000..4bd4065e2 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ur/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'متعلقہ سلسلہ', + 'instructions' => 'ڈراپ ڈاؤن میں نمائش کے ل stream متعلقہ اسٹریم اندراجات کی وضاحت کریں۔', + ], + 'mode' => [ + 'label' => 'ان پٹ وضع', + 'option' => [ + 'tags' => 'ٹیگز', + 'lookup' => 'اوپر دیکھو', + 'checkboxes' => 'چیک باکسز', + ], + ], + 'min' => [ + 'label' => 'کم سے کم انتخاب', + 'instructions' => 'اجازت شدہ انتخاب کی کم سے کم تعداد بتائیں۔', + ], + 'max' => [ + 'label' => 'زیادہ سے زیادہ انتخاب', + 'instructions' => 'اجازت شدہ انتخاب کی زیادہ سے زیادہ تعداد بتائیں۔', + ], + 'title_name' => [ + 'label' => 'ٹائٹل فیلڈ', + 'placeholder' => 'پہلا نام', + 'instructions' => 'ڈراپ ڈاؤن / تلاش کے اختیارات کے ل display ڈسپلے کرنے کیلئے فیلڈ کا سلگ بتائیں۔
آپ پارس ایبل عنوانز کی وضاحت کرسکتے ہیں جیسے {entry.first_name} {entry.last_name}
متعلقہ اسٹریم کا عنوان کالم بطور ڈیفالٹ استعمال ہوگا۔', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ur/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ur/input.php new file mode 100644 index 000000000..cc6dc2013 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ur/input.php @@ -0,0 +1,6 @@ + 'ایک آپشن منتخب کریں ...', + 'help' => 'کوما سے یا "داخل کریں" کو دبانے سے اقدار الگ کریں۔', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/ur/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/ur/message.php new file mode 100644 index 000000000..e9f886745 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/ur/message.php @@ -0,0 +1,5 @@ + 'آپ جو اندراجات شامل کرنا چاہیں ان کا انتخاب کریں۔', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/vi/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/vi/addon.php new file mode 100644 index 000000000..f8a8998f8 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/vi/addon.php @@ -0,0 +1,7 @@ + 'Nhiều', + 'name' => 'Nhiều loại trường', + 'description' => 'Một loại trường nhiều mối quan hệ.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/vi/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/vi/config.php new file mode 100644 index 000000000..199feca13 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/vi/config.php @@ -0,0 +1,29 @@ + [ + 'label' => 'Luồng liên quan', + 'instructions' => 'Chỉ định các mục nhập luồng liên quan để hiển thị trong menu thả xuống.', + ], + 'mode' => [ + 'label' => 'Chế độ đầu vào', + 'option' => [ + 'tags' => 'Thẻ', + 'lookup' => 'Tra cứu', + 'checkboxes' => 'Hộp kiểm', + ], + ], + 'min' => [ + 'label' => 'Lựa chọn tối thiểu', + 'instructions' => 'Chỉ định số lượng tối thiểu các lựa chọn được phép.', + ], + 'max' => [ + 'label' => 'Lựa chọn tối đa', + 'instructions' => 'Chỉ định số lượng tối đa các lựa chọn được phép.', + ], + 'title_name' => [ + 'label' => 'Trường tiêu đề', + 'placeholder' => 'tên đầu tiên', + 'instructions' => 'Chỉ định slug của trường để hiển thị cho các tùy chọn thả xuống / tìm kiếm.
Bạn có thể chỉ định tiêu đề có thể phân tích cú pháp như {entry.first_name} {entry.last_name}
Cột tiêu đề của luồng liên quan sẽ được sử dụng theo mặc định.', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/vi/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/vi/input.php new file mode 100644 index 000000000..3e80a66ed --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/vi/input.php @@ -0,0 +1,6 @@ + 'Chọn một sự lựa chọn...', + 'help' => 'Phân tách các giá trị bằng dấu phẩy hoặc bằng cách nhấn "Enter".', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/vi/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/vi/message.php new file mode 100644 index 000000000..40a07154f --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/vi/message.php @@ -0,0 +1,5 @@ + 'Chọn các mục bạn muốn thêm.', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/zh/addon.php b/addons/default/visiosoft/multiple-field_type/resources/lang/zh/addon.php new file mode 100644 index 000000000..7a8970cf5 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/zh/addon.php @@ -0,0 +1,7 @@ + '多', + 'name' => '多字段类型', + 'description' => '多重关系字段类型。', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/zh/config.php b/addons/default/visiosoft/multiple-field_type/resources/lang/zh/config.php new file mode 100644 index 000000000..09b5278b8 --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/zh/config.php @@ -0,0 +1,29 @@ + [ + 'label' => '相关流', + 'instructions' => '指定要显示在下拉列表中的相关流条目。', + ], + 'mode' => [ + 'label' => '输入模式', + 'option' => [ + 'tags' => '标签', + 'lookup' => '抬头', + 'checkboxes' => '选框', + ], + ], + 'min' => [ + 'label' => '最少选择', + 'instructions' => '指定允许的选择的最小数量。', + ], + 'max' => [ + 'label' => '最大选择', + 'instructions' => '指定允许的最大选择数。', + ], + 'title_name' => [ + 'label' => '标题栏', + 'placeholder' => '名', + 'instructions' => '指定要显示的下拉列表/搜索选项的字段 条子
您可以指定解析的游戏,比如 {entry.first_name} {entry.last_name}
的相关数据流的标题栏将会被默认使用。', + ], +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/zh/input.php b/addons/default/visiosoft/multiple-field_type/resources/lang/zh/input.php new file mode 100644 index 000000000..bff0e0c0e --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/zh/input.php @@ -0,0 +1,6 @@ + '选择一个选项...', + 'help' => '用逗号或按“ Enter”分隔值。', +]; diff --git a/addons/default/visiosoft/multiple-field_type/resources/lang/zh/message.php b/addons/default/visiosoft/multiple-field_type/resources/lang/zh/message.php new file mode 100644 index 000000000..3bb192ace --- /dev/null +++ b/addons/default/visiosoft/multiple-field_type/resources/lang/zh/message.php @@ -0,0 +1,5 @@ + '选择您要添加的条目。', +]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/af/setting.php b/addons/default/visiosoft/profile-module/resources/lang/af/setting.php index 847a234eb..9a48fd419 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/af/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/af/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Versteek die veld van die registertipe op die profielbewerkingsbladsy.', ], 'required_district' => [ - 'name' => 'Vereiste distrik' + 'name' => 'Vereiste distrik', + 'instructions' => 'Die byvoeging van \'n adres verteenwoordig die distriksverpligting.', + ], + 'show_extends_actions' => [ + 'name' => 'Wys verleng aksies', + 'instructions' => 'Verteenwoordig die Uitbreidings-opsies wat beskikbaar is op die bladsy met my profiel-advertensies.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ar/setting.php index dd3131441..0d0ba6d48 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'يخفي حقل نوع التسجيل في صفحة تحرير الملف الشخصي.', ], 'required_district' => [ - 'name' => 'المنطقة المطلوبة' + 'name' => 'المنطقة المطلوبة', + 'instructions' => 'إضافة عنوان يمثل التزام المنطقة.', + ], + 'show_extends_actions' => [ + 'name' => 'إظهار يمتد الإجراءات', + 'instructions' => 'يمثل خيارات الامتداد المتوفرة في صفحة إعلانات ملفي الشخصي.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/setting.php b/addons/default/visiosoft/profile-module/resources/lang/az/setting.php index 04d2868e0..0ad118720 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Profil redaktə səhifəsində qeyd növü sahəsini gizlədir.', ], 'required_district' => [ - 'name' => 'Zəruri rayon' + 'name' => 'Zəruri rayon', + 'instructions' => 'Ünvan əlavə etmək rayon öhdəliyini əks etdirir.', + ], + 'show_extends_actions' => [ + 'name' => 'Şou Əməliyyatları Genişləndirir', + 'instructions' => 'Profil reklam səhifəmdə mövcud olan Genişləndirmə seçimlərini təmsil edir.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/bg/setting.php b/addons/default/visiosoft/profile-module/resources/lang/bg/setting.php index a1dd9bd21..15fd8e2cb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bg/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bg/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Скрива полето тип регистър в страницата за редактиране на профила.', ], 'required_district' => [ - 'name' => 'Задължителен район' + 'name' => 'Задължителен район', + 'instructions' => 'Добавянето на адрес представлява задължението на областта.', + ], + 'show_extends_actions' => [ + 'name' => 'Показване на действия за разширяване', + 'instructions' => 'Представлява опциите за разширения, налични на страницата с реклами в моя профил.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/setting.php b/addons/default/visiosoft/profile-module/resources/lang/bn/setting.php index 5b081337f..d71c487d2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'প্রোফাইল সম্পাদনা পৃষ্ঠায় নিবন্ধকের ধরণের ক্ষেত্রটি লুকিয়ে রাখে।', ], 'required_district' => [ - 'name' => 'প্রয়োজনীয় জেলা' + 'name' => 'প্রয়োজনীয় জেলা', + 'instructions' => 'ঠিকানা যুক্ত করা জেলার দায়বদ্ধতার প্রতিনিধিত্ব করে।', + ], + 'show_extends_actions' => [ + 'name' => 'প্রসারিত ক্রিয়াগুলি দেখান', + 'instructions' => 'আমার প্রোফাইল বিজ্ঞাপন পৃষ্ঠায় উপলভ্য বর্ধিত বিকল্পগুলির প্রতিনিধিত্ব করে।', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ca/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ca/setting.php index 60e1610bb..d94542fe4 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ca/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ca/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Amaga el camp tipus de registre a la pàgina d\'edició del perfil.', ], 'required_district' => [ - 'name' => 'Districte obligatori' + 'name' => 'Districte obligatori', + 'instructions' => 'Afegir una adreça representa l’obligació del districte.', + ], + 'show_extends_actions' => [ + 'name' => 'Mostra les accions ampliades', + 'instructions' => 'Representa les opcions Extends disponibles a la pàgina Anuncis del meu perfil.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/cs/setting.php b/addons/default/visiosoft/profile-module/resources/lang/cs/setting.php index d9adebc2f..3cd35fbe9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/cs/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/cs/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Skryje pole typu registru na stránce pro úpravu profilu.', ], 'required_district' => [ - 'name' => 'Povinný okres' + 'name' => 'Povinný okres', + 'instructions' => 'Přidání adresy představuje povinnost okresu.', + ], + 'show_extends_actions' => [ + 'name' => 'Zobrazit rozšiřuje akce', + 'instructions' => 'Představuje možnosti rozšíření dostupné na stránce Reklamy mého profilu.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/da/setting.php b/addons/default/visiosoft/profile-module/resources/lang/da/setting.php index ad24f5131..a1af2c599 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/da/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/da/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Skjuler registertypefeltet på profilredigeringssiden.', ], 'required_district' => [ - 'name' => 'Påkrævet distrikt' + 'name' => 'Påkrævet distrikt', + 'instructions' => 'Tilføjelse af en adresse repræsenterer distriktsforpligtelsen.', + ], + 'show_extends_actions' => [ + 'name' => 'Vis udvider handlinger', + 'instructions' => 'Repræsenterer de tilgængelige udvidelsesmuligheder på siden med min profilannoncer.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/setting.php b/addons/default/visiosoft/profile-module/resources/lang/de/setting.php index c4706b69e..ef2f7b1a3 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Blendet das Registertypfeld auf der Profilbearbeitungsseite aus.', ], 'required_district' => [ - 'name' => 'Erforderlicher Bezirk' + 'name' => 'Erforderlicher Bezirk', + 'instructions' => 'Das Hinzufügen einer Adresse stellt die Distriktverpflichtung dar.', + ], + 'show_extends_actions' => [ + 'name' => 'Show erweitert Aktionen', + 'instructions' => 'Stellt die auf der Seite "Meine Profilanzeigen" verfügbaren Erweiterungsoptionen dar.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/setting.php b/addons/default/visiosoft/profile-module/resources/lang/el/setting.php index b9e344c1d..78f45cc3d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Απόκρυψη του πεδίου τύπου μητρώου στη σελίδα επεξεργασίας προφίλ.', ], 'required_district' => [ - 'name' => 'Απαιτούμενη περιοχή' + 'name' => 'Απαιτούμενη περιοχή', + 'instructions' => 'Η προσθήκη διεύθυνσης αντιπροσωπεύει την υποχρέωση περιοχής.', + ], + 'show_extends_actions' => [ + 'name' => 'Εμφάνιση επεκτάσεων ενεργειών', + 'instructions' => 'Αντιπροσωπεύει τις διαθέσιμες επιλογές στη σελίδα Διαφημίσεις προφίλ μου.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/setting.php b/addons/default/visiosoft/profile-module/resources/lang/es/setting.php index ab95084b4..f894dad2c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Oculta el campo de tipo de registro en la página de edición del perfil.', ], 'required_district' => [ - 'name' => 'Distrito requerido' + 'name' => 'Distrito requerido', + 'instructions' => 'Agregar una dirección representa la obligación del distrito.', + ], + 'show_extends_actions' => [ + 'name' => 'Mostrar acciones extendidas', + 'instructions' => 'Representa las opciones de Extensiones disponibles en la página Anuncios de mi perfil.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/setting.php b/addons/default/visiosoft/profile-module/resources/lang/fa/setting.php index 6df860f46..d5e1a2c42 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'قسمت نوع ثبت نام را در صفحه ویرایش نمایه پنهان می کند.', ], 'required_district' => [ - 'name' => 'منطقه مورد نیاز' + 'name' => 'منطقه مورد نیاز', + 'instructions' => 'افزودن آدرس نشان دهنده تعهد منطقه است.', + ], + 'show_extends_actions' => [ + 'name' => 'نمایش اقدامات گسترده', + 'instructions' => 'گزینه های Extends موجود در صفحه تبلیغات نمایه من را نشان می دهد.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fi/setting.php b/addons/default/visiosoft/profile-module/resources/lang/fi/setting.php index a28983f1c..174083f6e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fi/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fi/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Piilottaa rekisterityypin kentän profiilin muokkaussivulla.', ], 'required_district' => [ - 'name' => 'Vaadittu piiri' + 'name' => 'Vaadittu piiri', + 'instructions' => 'Osoitteen lisääminen edustaa piirivelvoitetta.', + ], + 'show_extends_actions' => [ + 'name' => 'Näytä laajentaa toimintoja', + 'instructions' => 'Edustaa Profiilimainokset-sivulla käytettävissä olevia Laajennukset-vaihtoehtoja.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/setting.php b/addons/default/visiosoft/profile-module/resources/lang/fr/setting.php index e743b45d8..246bd5adf 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Masque le champ de type de registre dans la page de modification de profil.', ], 'required_district' => [ - 'name' => 'District obligatoire' + 'name' => 'District obligatoire', + 'instructions' => 'L\'ajout d\'une adresse représente l\'obligation du district.', + ], + 'show_extends_actions' => [ + 'name' => 'Afficher étend les actions', + 'instructions' => 'Représente les options d\'extension disponibles sur la page d\'annonces de mon profil.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/setting.php b/addons/default/visiosoft/profile-module/resources/lang/he/setting.php index 27c5b7ff6..a65eeb478 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'מסתיר את שדה סוג הרישום בדף עריכת הפרופיל.', ], 'required_district' => [ - 'name' => 'מחוז חובה' + 'name' => 'מחוז חובה', + 'instructions' => 'הוספת כתובת מייצגת את החובה המחוזית.', + ], + 'show_extends_actions' => [ + 'name' => 'הצג מאריך פעולות', + 'instructions' => 'מייצג את אפשרויות הרחבות הזמינות בדף מודעות הפרופיל שלי.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/setting.php b/addons/default/visiosoft/profile-module/resources/lang/hi/setting.php index d03ea183e..811575649 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'प्रोफाइल एडिट पेज में रजिस्टर टाइप फील्ड को छुपाता है।', ], 'required_district' => [ - 'name' => 'आवश्यक जिला' + 'name' => 'आवश्यक जिला', + 'instructions' => 'एक पता जोड़ना जिले के दायित्व का प्रतिनिधित्व करता है।', + ], + 'show_extends_actions' => [ + 'name' => 'एक्सटेंशन्स दिखाओ', + 'instructions' => 'मेरे प्रोफ़ाइल विज्ञापन पृष्ठ पर उपलब्ध विस्तार विकल्प का प्रतिनिधित्व करता है।', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/hu/setting.php b/addons/default/visiosoft/profile-module/resources/lang/hu/setting.php index 5a160f021..331a54150 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hu/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hu/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Elrejti a regisztertípus mezőt a profilszerkesztő oldalon.', ], 'required_district' => [ - 'name' => 'Szükséges körzet' + 'name' => 'Szükséges körzet', + 'instructions' => 'Cím hozzáadása a kerületi kötelezettséget jelenti.', + ], + 'show_extends_actions' => [ + 'name' => 'Megjeleníti a műveletek kiterjesztését', + 'instructions' => 'A Saját profil hirdetések oldalon elérhető kiterjesztési lehetőségeket képviseli.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/id/setting.php b/addons/default/visiosoft/profile-module/resources/lang/id/setting.php index 227155d0c..21b168571 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/id/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/id/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Menyembunyikan bidang tipe register di halaman edit profil.', ], 'required_district' => [ - 'name' => 'Distrik Wajib' + 'name' => 'Distrik Wajib', + 'instructions' => 'Menambahkan alamat mewakili kewajiban distrik.', + ], + 'show_extends_actions' => [ + 'name' => 'Tunjukkan Memperluas Tindakan', + 'instructions' => 'Mewakili opsi Perluas yang tersedia di halaman Iklan profil saya.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/setting.php b/addons/default/visiosoft/profile-module/resources/lang/it/setting.php index 9dfe2f7de..ddd343208 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Nasconde il campo del tipo di registro nella pagina di modifica del profilo.', ], 'required_district' => [ - 'name' => 'Distretto richiesto' + 'name' => 'Distretto richiesto', + 'instructions' => 'L\'aggiunta di un indirizzo rappresenta l\'obbligo del distretto.', + ], + 'show_extends_actions' => [ + 'name' => 'Mostra azioni estensioni', + 'instructions' => 'Rappresenta le opzioni Estende disponibili nella pagina Annunci del mio profilo.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ja/setting.php index 1ac19f15d..99f5500da 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'プロファイル編集ページのレジスタタイプフィールドを非表示にします。', ], 'required_district' => [ - 'name' => '必要な地区' + 'name' => '必要な地区', + 'instructions' => '住所の追加は、地区の義務を表しています。', + ], + 'show_extends_actions' => [ + 'name' => 'Show ExtendsActions', + 'instructions' => 'マイプロフィール広告ページで利用可能な拡張オプションを表します。', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ko/setting.php index 0cd696bf5..64aa188ff 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => '프로필 편집 페이지에서 레지스터 유형 필드를 숨 깁니다.', ], 'required_district' => [ - 'name' => '필수 지구' + 'name' => '필수 지구', + 'instructions' => '주소 추가는 지구 의무를 나타냅니다.', + ], + 'show_extends_actions' => [ + 'name' => '확장 동작 표시', + 'instructions' => '내 프로필 광고 페이지에서 사용할 수있는 확장 옵션을 나타냅니다.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ku/setting.php index a24516f8d..4055d62ef 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ku/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Zeviya tomara tomarê di rûpelê guheztina profîlê de vedişêre.', ], 'required_district' => [ - 'name' => 'Navçeya Pêdivî' + 'name' => 'Navçeya Pêdivî', + 'instructions' => 'Zêdekirina navnîşanek berpirsiyariya navçeyê temsîl dike.', + ], + 'show_extends_actions' => [ + 'name' => 'Kiryarên Berfireh nîşan bide', + 'instructions' => 'Vebijarkên Dirêjkirinê yên li ser rûpelê Reklamên profîla min hene temsîl dike.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/setting.php b/addons/default/visiosoft/profile-module/resources/lang/nl/setting.php index 72e3562ca..6cfab7a43 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Verbergt het registertypeveld op de profielbewerkingspagina.', ], 'required_district' => [ - 'name' => 'Vereist district' + 'name' => 'Vereist district', + 'instructions' => 'Het toevoegen van een adres vertegenwoordigt de wijkverplichting.', + ], + 'show_extends_actions' => [ + 'name' => 'Toon uitgebreide acties', + 'instructions' => 'Vertegenwoordigt de uitbreidingsopties die beschikbaar zijn op de pagina Mijn profieladvertenties.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/no/setting.php b/addons/default/visiosoft/profile-module/resources/lang/no/setting.php index 21c407f1a..88fdfb4f7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/no/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/no/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Skjuler registertypefeltet i profilredigeringssiden.', ], 'required_district' => [ - 'name' => 'Nødvendig distrikt' + 'name' => 'Nødvendig distrikt', + 'instructions' => 'Å legge til en adresse representerer distriktsplikten.', + ], + 'show_extends_actions' => [ + 'name' => 'Vis utvider handlinger', + 'instructions' => 'Representerer utvidelsesalternativene som er tilgjengelige på min profilannonseside.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/setting.php b/addons/default/visiosoft/profile-module/resources/lang/pl/setting.php index eaec24c91..3489c682a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Ukrywa pole typu rejestru na stronie edycji profilu.', ], 'required_district' => [ - 'name' => 'Okręg wymagany' + 'name' => 'Okręg wymagany', + 'instructions' => 'Dodanie adresu jest obowiązkiem powiatu.', + ], + 'show_extends_actions' => [ + 'name' => 'Pokaż działania rozszerzeń', + 'instructions' => 'Reprezentuje opcje Rozszerzenia dostępne na stronie Mój profil Reklamy.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/setting.php b/addons/default/visiosoft/profile-module/resources/lang/pt/setting.php index ae7957e0f..7b78d53a7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Oculta o campo do tipo de registro na página de edição do perfil.', ], 'required_district' => [ - 'name' => 'Distrito Requerido' + 'name' => 'Distrito Requerido', + 'instructions' => 'Adicionar um endereço representa a obrigação do distrito.', + ], + 'show_extends_actions' => [ + 'name' => 'Mostrar ações de extensão', + 'instructions' => 'Representa as opções de extensão disponíveis na página de anúncios do meu perfil.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ro/setting.php index eee2d40e3..cd7309f76 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Ascunde câmpul tip de înregistrare în pagina de editare a profilului.', ], 'required_district' => [ - 'name' => 'Districtul necesar' + 'name' => 'Districtul necesar', + 'instructions' => 'Adăugarea unei adrese reprezintă obligația districtului.', + ], + 'show_extends_actions' => [ + 'name' => 'Afișați acțiuni extinse', + 'instructions' => 'Reprezintă opțiunile Extinde disponibile în pagina Anunțuri din profilul meu.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ru/setting.php index 6e9f18f19..55c5d778f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Скрывает поле типа регистра на странице редактирования профиля.', ], 'required_district' => [ - 'name' => 'Требуемый район' + 'name' => 'Требуемый район', + 'instructions' => 'Добавление адреса представляет собой обязанность округа.', + ], + 'show_extends_actions' => [ + 'name' => 'Показать расширяет действия', + 'instructions' => 'Представляет параметры расширений, доступные на странице объявлений в моем профиле.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/setting.php b/addons/default/visiosoft/profile-module/resources/lang/sq/setting.php index 41ecb0886..f804b9c27 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Fsheh fushën e llojit të regjistrit në faqen e redaktimit të profilit.', ], 'required_district' => [ - 'name' => 'Rrethi i kërkuar' + 'name' => 'Rrethi i kërkuar', + 'instructions' => 'Shtimi i një adrese përfaqëson detyrimin e rrethit.', + ], + 'show_extends_actions' => [ + 'name' => 'Shfaq veprimet e zgjatura', + 'instructions' => 'Përfaqëson opsionet Zgjat në dispozicion në faqen time Reklama të profilit tim.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sr/setting.php b/addons/default/visiosoft/profile-module/resources/lang/sr/setting.php index c46f5412d..b782e2d41 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sr/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sr/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Sakriva polje tipa registra na stranici za uređivanje profila.', ], 'required_district' => [ - 'name' => 'Obavezan deo grada' + 'name' => 'Obavezan deo grada', + 'instructions' => 'Adding an address represents the district obligation.', + ], + 'show_extends_actions' => [ + 'name' => 'Show Extends Actions', + 'instructions' => 'Represents the Extends options available on the my profile Ads page.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/setting.php b/addons/default/visiosoft/profile-module/resources/lang/sv/setting.php index ee2aa5b2d..98cc6736f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Döljer registertypfältet i profilredigeringssidan.', ], 'required_district' => [ - 'name' => 'Obligatoriskt distrikt' + 'name' => 'Obligatoriskt distrikt', + 'instructions' => 'Att lägga till en adress representerar distriktsförpliktelsen.', + ], + 'show_extends_actions' => [ + 'name' => 'Visa förlänger åtgärder', + 'instructions' => 'Representerar de alternativ som finns tillgängliga på sidan Min profilannonser.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/setting.php b/addons/default/visiosoft/profile-module/resources/lang/tr/setting.php index 6fad618e5..0402fd808 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/setting.php @@ -51,7 +51,6 @@ return [ 'name' => 'İlçe Zorunluluğu', 'instructions' => 'Adres kayıtta ilçe zorunluluğunu temsil eder.', ], - 'show_extends_actions' => [ 'name' => 'Süre Uzatma Seçeneklerini Göster', 'instructions' => 'Profilim İlanlar sayfasında bulunan Süre uzatma seçeneklerini temsil eder.', diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/setting.php b/addons/default/visiosoft/profile-module/resources/lang/uk/setting.php index 1c9988341..5b116ec0e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Приховує поле типу реєстру на сторінці редагування профілю.', ], 'required_district' => [ - 'name' => 'Обов’язковий округ' + 'name' => 'Обов’язковий округ', + 'instructions' => 'Додавання адреси означає зобов’язання району.', + ], + 'show_extends_actions' => [ + 'name' => 'Показати розширені дії', + 'instructions' => 'Представляє параметри розширень, доступні на моїй сторінці Оголошення профілю.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ur/setting.php index 071fc702b..e69c45e4d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'پروفائل میں ترمیم والے صفحے میں رجسٹر قسم کے فیلڈ کو چھپاتا ہے۔', ], 'required_district' => [ - 'name' => 'مطلوبہ ضلع' + 'name' => 'مطلوبہ ضلع', + 'instructions' => 'ایڈریس شامل کرنا ضلعی ذمہ داری کی نمائندگی کرتا ہے۔', + ], + 'show_extends_actions' => [ + 'name' => 'توسیعی کارروائیوں کو دکھائیں', + 'instructions' => 'میرے پروفائل اشتہارات کے صفحے پر دستیاب توسیعی اختیارات کی نمائندگی کرتا ہے۔', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/setting.php b/addons/default/visiosoft/profile-module/resources/lang/vi/setting.php index d319fb417..edb99ffdd 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => 'Ẩn trường loại đăng ký trong trang chỉnh sửa hồ sơ.', ], 'required_district' => [ - 'name' => 'Quận bắt buộc' + 'name' => 'Quận bắt buộc', + 'instructions' => 'Thêm một địa chỉ thể hiện nghĩa vụ của học khu.', + ], + 'show_extends_actions' => [ + 'name' => 'Hiển thị các hành động mở rộng', + 'instructions' => 'Trình bày các tùy chọn Tiện ích mở rộng có sẵn trên trang Quảng cáo hồ sơ của tôi.', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/zh/setting.php b/addons/default/visiosoft/profile-module/resources/lang/zh/setting.php index 74781d4ec..130b52404 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/zh/setting.php +++ b/addons/default/visiosoft/profile-module/resources/lang/zh/setting.php @@ -48,6 +48,11 @@ return [ 'instructions' => '隐藏配置文件编辑页面中的寄存器类型字段。', ], 'required_district' => [ - 'name' => '必选地区' + 'name' => '必选地区', + 'instructions' => '添加地址代表地区义务。', + ], + 'show_extends_actions' => [ + 'name' => '显示扩展动作', + 'instructions' => '代表我的个人资料广告页面上可用的扩展选项。', ], ]; From 2aad0bb11afe9636937499d0728b95c9a8ec4d66 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Thu, 3 Jun 2021 12:55:54 +0300 Subject: [PATCH 07/31] #4092 missing images and icons on first install --- composer.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 6ea064e89..b6c905bd8 100644 --- a/composer.json +++ b/composer.json @@ -92,8 +92,7 @@ "filp/whoops": "~2.0", "fzaninotto/faker": "~1.4", "symfony/css-selector": "3.1.*", - "symfony/dom-crawler": "3.1.*", - "anomaly/installer-module": "~2.4.0" + "symfony/dom-crawler": "3.1.*" }, "repositories": [ { @@ -112,7 +111,7 @@ "psr-4": { "App\\": "app/", "Database\\Factories\\": "database/factories/", - "Database\\Seeders\\": "database/seeders/" + "Database\\Seeders\\": "database/seeder/" } }, "autoload-dev": { From c188b37edb794a84d391e61290550b33265b3eb0 Mon Sep 17 00:00:00 2001 From: vedatakd Date: Thu, 3 Jun 2021 14:00:38 +0300 Subject: [PATCH 08/31] sentry fixed --- app/Exceptions/ExceptionHandler.php | 44 +++++++++-------------------- config/streams.php | 2 +- 2 files changed, 15 insertions(+), 31 deletions(-) diff --git a/app/Exceptions/ExceptionHandler.php b/app/Exceptions/ExceptionHandler.php index ecd41f005..9f3f95065 100644 --- a/app/Exceptions/ExceptionHandler.php +++ b/app/Exceptions/ExceptionHandler.php @@ -2,34 +2,19 @@ namespace App\Exceptions; -use Anomaly\Streams\Platform\Exception\ExceptionIdentifier; -use Exception; +use Swift_TransportException; +use Throwable; +use Illuminate\Support\Facades\Auth; use Illuminate\Auth\AuthenticationException; use Illuminate\Foundation\Exceptions\Handler; -use Illuminate\Http\Request; -use Illuminate\Http\Response; -use Illuminate\Support\Facades\Auth; -use Swift_TransportException; -use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -use Throwable; - +use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface; class ExceptionHandler extends Handler { - - /** - * The exception instance. - * - * @var Exception - */ protected $original; - /** - * A list of the exception types that should not be reported. - * - * @var array - */ + protected $internalDontReport = [ \Illuminate\Auth\AuthenticationException::class, \Illuminate\Auth\Access\AuthorizationException::class, @@ -39,14 +24,14 @@ class ExceptionHandler extends Handler \Illuminate\Validation\ValidationException::class, ]; - protected function prepareException(Exception $e) + protected function prepareException(Throwable $e) { $this->original = $e; return parent::prepareException($e); // TODO: Change the autogenerated stub } - public function render($request, Exception $e) + public function render($request, Throwable $e) { if ($e instanceof AuthenticationException) { return $this->unauthenticated($request, $e); @@ -67,10 +52,10 @@ class ExceptionHandler extends Handler $summary = $e->getMessage(); $headers = $e->getHeaders(); - $code = $e->getStatusCode(); - $name = trans("streams::error.{$code}.name"); + $code = $e->getStatusCode(); + $name = trans("streams::error.{$code}.name"); $message = trans("streams::error.{$code}.message"); - $id = $this->container->make(ExceptionIdentifier::class)->identify($this->original); + $id = $this->container->make(ExceptionIdentifier::class)->identify($this->original); if (view()->exists($view = "streams::errors/{$code}")) { return response()->view($view, compact('id', 'code', 'name', 'message', 'summary'), $code, $headers); @@ -84,8 +69,7 @@ class ExceptionHandler extends Handler ); } - - public function report(Exception $e) + public function report(Throwable $e) { if (app()->bound('sentry') && $this->shouldReport($e) @@ -107,9 +91,9 @@ class ExceptionHandler extends Handler try { return array_filter( [ - 'user' => Auth::id(), - 'email' => Auth::user() ? Auth::user()->email : null, - 'url' => request() ? request()->fullUrl() : null, + 'user' => Auth::id(), + 'email' => Auth::user() ? Auth::user()->email : null, + 'url' => request() ? request()->fullUrl() : null, 'identifier' => $this->container->make(ExceptionIdentifier::class)->identify($this->original), ] ); diff --git a/config/streams.php b/config/streams.php index c085a2c12..7add737bb 100644 --- a/config/streams.php +++ b/config/streams.php @@ -32,7 +32,7 @@ return [ */ 'bindings' => [ - // 'Anomaly\Streams\Platform\Exception\ExceptionHandler' => ExceptionHandler::class + 'Anomaly\Streams\Platform\Exception\ExceptionHandler' => ExceptionHandler::class ], /* From 74aeb6b0034dce772ab2d1dccc525cd5f36f22e3 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Fri, 4 Jun 2021 12:08:19 +0300 Subject: [PATCH 09/31] #4092 missing images and icons on first install --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index b6c905bd8..4c71fce37 100644 --- a/composer.json +++ b/composer.json @@ -92,7 +92,8 @@ "filp/whoops": "~2.0", "fzaninotto/faker": "~1.4", "symfony/css-selector": "3.1.*", - "symfony/dom-crawler": "3.1.*" + "symfony/dom-crawler": "3.1.*", + "anomaly/installer-module": "~2.4.0" }, "repositories": [ { From 05425b810b356dd1cc9abde70d775a4a87aa2164 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Mon, 7 Jun 2021 10:55:54 +0300 Subject: [PATCH 10/31] add twig function for check installed module --- .../default/visiosoft/advs-module/src/AdvsModulePlugin.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php b/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php index 162329dc5..4c07c89ac 100644 --- a/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php +++ b/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php @@ -115,6 +115,12 @@ class AdvsModulePlugin extends Plugin ); } ), + new \Twig_SimpleFunction( + 'is_module_installed', + function ($moduleNamespace) { + return is_module_installed($moduleNamespace); + } + ) ]; } From 2d554ff3542322402fb5822045a73cf9380ca30a Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Mon, 7 Jun 2021 18:03:54 +0300 Subject: [PATCH 11/31] is_installed function fixed for twig --- .../default/visiosoft/advs-module/src/AdvsModulePlugin.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php b/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php index 4c07c89ac..0a1bcc3e3 100644 --- a/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php +++ b/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php @@ -116,9 +116,9 @@ class AdvsModulePlugin extends Plugin } ), new \Twig_SimpleFunction( - 'is_module_installed', - function ($moduleNamespace) { - return is_module_installed($moduleNamespace); + 'is_module_enabled', + function ($slug) { + return app(AdvModel::class)->is_enabled($slug); } ) ]; From 9b7f48fad7fc659b8837ebf42153941ac3890f9f Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Tue, 8 Jun 2021 14:53:00 +0300 Subject: [PATCH 12/31] fixed composer.json --- composer.json | 2 +- database/{seeder => seeders}/DatabaseSeeder.php | 0 database/{seeder => seeders}/GridSeeder.php | 0 database/{seeder => seeders}/WidgetSeeder.php | 0 database/{seeder => seeders}/settings.sql | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename database/{seeder => seeders}/DatabaseSeeder.php (100%) rename database/{seeder => seeders}/GridSeeder.php (100%) rename database/{seeder => seeders}/WidgetSeeder.php (100%) rename database/{seeder => seeders}/settings.sql (100%) diff --git a/composer.json b/composer.json index 4c71fce37..6ea064e89 100644 --- a/composer.json +++ b/composer.json @@ -112,7 +112,7 @@ "psr-4": { "App\\": "app/", "Database\\Factories\\": "database/factories/", - "Database\\Seeders\\": "database/seeder/" + "Database\\Seeders\\": "database/seeders/" } }, "autoload-dev": { diff --git a/database/seeder/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php similarity index 100% rename from database/seeder/DatabaseSeeder.php rename to database/seeders/DatabaseSeeder.php diff --git a/database/seeder/GridSeeder.php b/database/seeders/GridSeeder.php similarity index 100% rename from database/seeder/GridSeeder.php rename to database/seeders/GridSeeder.php diff --git a/database/seeder/WidgetSeeder.php b/database/seeders/WidgetSeeder.php similarity index 100% rename from database/seeder/WidgetSeeder.php rename to database/seeders/WidgetSeeder.php diff --git a/database/seeder/settings.sql b/database/seeders/settings.sql similarity index 100% rename from database/seeder/settings.sql rename to database/seeders/settings.sql From cc27e142419aaa18e70cdfc6155ba032163e9146 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Thu, 10 Jun 2021 10:56:45 +0300 Subject: [PATCH 13/31] added filter reset button --- .../advs-module/resources/css/list-new.scss | 2 +- .../visiosoft/advs-module/resources/js/list.js | 7 +++++++ .../advs-module/resources/lang/en/field.php | 1 + .../views/list/partials/list-filter.twig | 16 +++++++++++----- database/{seeder => seeders}/.gitkeep | 0 5 files changed, 20 insertions(+), 6 deletions(-) rename database/{seeder => seeders}/.gitkeep (100%) diff --git a/addons/default/visiosoft/advs-module/resources/css/list-new.scss b/addons/default/visiosoft/advs-module/resources/css/list-new.scss index 3abc7da39..a5fd6f3db 100644 --- a/addons/default/visiosoft/advs-module/resources/css/list-new.scss +++ b/addons/default/visiosoft/advs-module/resources/css/list-new.scss @@ -238,7 +238,7 @@ ul { /* End Keyword */ /* Filter submit */ - #filterSubmit { + #filterSubmit, #filterReset { button { background-color: #52C946; font-size: calc(12rem / 16); diff --git a/addons/default/visiosoft/advs-module/resources/js/list.js b/addons/default/visiosoft/advs-module/resources/js/list.js index b8d1099da..52f1fa1f7 100644 --- a/addons/default/visiosoft/advs-module/resources/js/list.js +++ b/addons/default/visiosoft/advs-module/resources/js/list.js @@ -160,6 +160,13 @@ $(document).ready(function () { $("select[name=filter_City]").select2({ placeholder: $('select[name=filter_City] option:first-child').text() }); + + $('.filter-form-reset').on('click', function () { + let form = $("#listFilterForm"); + form.find('input:text, input:password, input:file, input[type="number"], select, textarea').val(''); + form.find('input:radio, input:checkbox').removeAttr('checked').removeAttr('selected'); + form.submit(); + }); }); function getCities(country) { 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 559a3f737..eff1272dd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/en/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/en/field.php @@ -134,6 +134,7 @@ return [ 'home' => 'Home', 'list-page' => 'List Page', 'search' => 'Search', + 'reset' => 'Reset', 'recommended' => 'Recommended Ads for You', 'filter' => 'Filter', 'sort' => 'Sort', diff --git a/addons/default/visiosoft/advs-module/resources/views/list/partials/list-filter.twig b/addons/default/visiosoft/advs-module/resources/views/list/partials/list-filter.twig index 8572406bb..678a8ca6c 100644 --- a/addons/default/visiosoft/advs-module/resources/views/list/partials/list-filter.twig +++ b/addons/default/visiosoft/advs-module/resources/views/list/partials/list-filter.twig @@ -148,10 +148,16 @@
- -
- +
+
+ +
+
+ +
diff --git a/database/seeder/.gitkeep b/database/seeders/.gitkeep similarity index 100% rename from database/seeder/.gitkeep rename to database/seeders/.gitkeep From c96893da793988d1b62eb4ec7ca5653cce9be782 Mon Sep 17 00:00:00 2001 From: Diatrex Date: Mon, 14 Jun 2021 13:24:42 +0300 Subject: [PATCH 14/31] #4154 usd are design edit --- .../visiosoft/advs-module/resources/css/new-create-new.scss | 2 ++ .../advs-module/resources/views/new-ad/new-create.twig | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/addons/default/visiosoft/advs-module/resources/css/new-create-new.scss b/addons/default/visiosoft/advs-module/resources/css/new-create-new.scss index ca1269cc7..9fe3ff8d5 100644 --- a/addons/default/visiosoft/advs-module/resources/css/new-create-new.scss +++ b/addons/default/visiosoft/advs-module/resources/css/new-create-new.scss @@ -207,6 +207,7 @@ label { } &:first-child { + width: 100%; @media only screen and (min-width: 576px) { width: 47.5%; } @@ -219,6 +220,7 @@ label { } &:last-child { + width: 100%; @media only screen and (min-width: 576px) { width: 50.75%; } diff --git a/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig b/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig index 8631885bc..faa206aef 100644 --- a/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig +++ b/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig @@ -123,9 +123,9 @@
- +
{% set standardPriceValue = form.fields.standard_price.value|split('.') %} - {% if setting_value('visiosoft.field_type.decimal::showDecimal') %} @@ -134,7 +134,7 @@ value="{{ standardPriceValue[1] }}" maxlength="2"> {% endif %} - +
-
+ +
+ {% endif %}
{% if setting_value('visiosoft.module.advs::show_post_ad_agreement') %} From 1ce71411e1affe3c56ba6644715795fabbdff41a Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Tue, 22 Jun 2021 09:24:00 +0300 Subject: [PATCH 27/31] #4177 --- addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php index 9adb892c3..2161d1fe6 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php +++ b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php @@ -58,8 +58,7 @@ class AdvRepository extends EntryRepository implements AdvRepositoryInterface $delimiter = '_'; $keyword = str_slug($param['keyword'], $delimiter); $query = $query->where(function ($query) use ($keyword) { - $query->where('advs_advs_translations.advs_desc', 'like', $keyword) - ->orWhere('slug', 'like', '%' . $keyword . '%') + $query->where('slug', 'like', '%' . $keyword . '%') ->orWhere('advs_advs_translations.name', 'like', '%' . $keyword . '%'); }); } From 7fe9bc41c8aca89997cf5a89196d69a9d31ac837 Mon Sep 17 00:00:00 2001 From: Diatrex Date: Tue, 22 Jun 2021 10:44:19 +0300 Subject: [PATCH 28/31] #4145 offline design when you have no connection --- .../base-theme/resources/css/offline.scss | 37 +++++++++++++++++++ .../base-theme/resources/images/unplugged.svg | 2 + .../resources/js/theme/initialize.js | 25 ++++++++++--- .../base-theme/resources/lang/en/field.php | 6 +++ .../resources/views/layouts/booking.twig | 2 + .../resources/views/layouts/default.twig | 2 + .../resources/views/layouts/error.twig | 3 ++ .../resources/views/layouts/no-container.twig | 2 + .../resources/views/layouts/page.twig | 2 + .../resources/views/partials/metadata.twig | 1 + .../resources/views/partials/offline.twig | 18 +++++++++ 11 files changed, 95 insertions(+), 5 deletions(-) create mode 100644 addons/default/visiosoft/base-theme/resources/css/offline.scss create mode 100644 addons/default/visiosoft/base-theme/resources/images/unplugged.svg create mode 100644 addons/default/visiosoft/base-theme/resources/views/partials/offline.twig diff --git a/addons/default/visiosoft/base-theme/resources/css/offline.scss b/addons/default/visiosoft/base-theme/resources/css/offline.scss new file mode 100644 index 000000000..03b25a263 --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/css/offline.scss @@ -0,0 +1,37 @@ +#offline { + display: none; + + & > div { + min-height: 100vh; + + svg { + height: 12rem; + width: auto; + } + + h1 { + font-weight: 400; + font-size: 1.5rem; + } + + p { + color: #7B7B90; + } + + button { + background-color: #ebeeff; + color: #007eff; + padding: .75rem 1.75rem; + font-weight: 700; + border-radius: 7px; + + &:focus { + outline: 5px auto #007eff; + } + + .spinner-border { + display: none; + } + } + } +} \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/images/unplugged.svg b/addons/default/visiosoft/base-theme/resources/images/unplugged.svg new file mode 100644 index 000000000..4152a2b22 --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/images/unplugged.svg @@ -0,0 +1,2 @@ + + diff --git a/addons/default/visiosoft/base-theme/resources/js/theme/initialize.js b/addons/default/visiosoft/base-theme/resources/js/theme/initialize.js index a52c5dc3e..89c727b4d 100644 --- a/addons/default/visiosoft/base-theme/resources/js/theme/initialize.js +++ b/addons/default/visiosoft/base-theme/resources/js/theme/initialize.js @@ -1,5 +1,20 @@ -// (function (window, document) { -// -// // Go! -// -// })(window, document); +(function (window, document) { + /* Offline */ + window.addEventListener('offline', () => { + $('body > *').hide(); + $('#offline').show(); + }); + + $('#offline button').click(function () { + $('.spinner-border', this).css('display', 'inline-block') + + setTimeout(() => { + if (window.navigator.onLine) { + window.location.reload(); + } else { + $('.spinner-border', this).hide() + } + }, 250) + }) + /* End Offline */ +})(window, document); diff --git a/addons/default/visiosoft/base-theme/resources/lang/en/field.php b/addons/default/visiosoft/base-theme/resources/lang/en/field.php index 4c0d09949..1dbcef01d 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/en/field.php +++ b/addons/default/visiosoft/base-theme/resources/lang/en/field.php @@ -56,4 +56,10 @@ return [ 'list' => 'List', 'instruction_description' => 'Instruction Description', 'instruction_list' => 'Instruction List', + + // Offline + 'connection_problem' => 'Connection problem', + 'your_internet_connection_is_broken' => 'Your internet connection is broken,', + 'we_miss_you_so_much_already' => 'we miss you so much already!', + 'try_again' => 'Try again', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/views/layouts/booking.twig b/addons/default/visiosoft/base-theme/resources/views/layouts/booking.twig index 04b3fefe9..e7973bae5 100644 --- a/addons/default/visiosoft/base-theme/resources/views/layouts/booking.twig +++ b/addons/default/visiosoft/base-theme/resources/views/layouts/booking.twig @@ -14,5 +14,7 @@ {% endblock %}
+{% include "visiosoft.theme.base::partials/offline" %} + diff --git a/addons/default/visiosoft/base-theme/resources/views/layouts/default.twig b/addons/default/visiosoft/base-theme/resources/views/layouts/default.twig index 76d07b450..a06220c3a 100644 --- a/addons/default/visiosoft/base-theme/resources/views/layouts/default.twig +++ b/addons/default/visiosoft/base-theme/resources/views/layouts/default.twig @@ -35,6 +35,8 @@ +{% include "visiosoft.theme.base::partials/offline" %} + {% include "visiosoft.theme.base::partials/footer" %} {% include "visiosoft.theme.base::partials/assets" %} {% include "visiosoft.theme.base::partials/settings" %} diff --git a/addons/default/visiosoft/base-theme/resources/views/layouts/error.twig b/addons/default/visiosoft/base-theme/resources/views/layouts/error.twig index 4a34650d5..9f42adf74 100644 --- a/addons/default/visiosoft/base-theme/resources/views/layouts/error.twig +++ b/addons/default/visiosoft/base-theme/resources/views/layouts/error.twig @@ -18,6 +18,9 @@ {% block content %}{% endblock %} + +{% include "visiosoft.theme.base::partials/offline" %} + \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/views/layouts/no-container.twig b/addons/default/visiosoft/base-theme/resources/views/layouts/no-container.twig index 20fe9b629..d3b9896bd 100644 --- a/addons/default/visiosoft/base-theme/resources/views/layouts/no-container.twig +++ b/addons/default/visiosoft/base-theme/resources/views/layouts/no-container.twig @@ -34,6 +34,8 @@ +{% include "visiosoft.theme.base::partials/offline" %} + {% include "visiosoft.theme.base::partials/footer" %} {% include "visiosoft.theme.base::partials/assets" %} {% include "visiosoft.theme.base::partials/settings" %} diff --git a/addons/default/visiosoft/base-theme/resources/views/layouts/page.twig b/addons/default/visiosoft/base-theme/resources/views/layouts/page.twig index e4cb45c72..5bfeaa861 100644 --- a/addons/default/visiosoft/base-theme/resources/views/layouts/page.twig +++ b/addons/default/visiosoft/base-theme/resources/views/layouts/page.twig @@ -30,6 +30,8 @@ +{% include "visiosoft.theme.base::partials/offline" %} + {% include "visiosoft.theme.base::partials/footer" %} {% include "visiosoft.theme.base::partials/settings" %} diff --git a/addons/default/visiosoft/base-theme/resources/views/partials/metadata.twig b/addons/default/visiosoft/base-theme/resources/views/partials/metadata.twig index 3bc627f64..2ad8eb479 100644 --- a/addons/default/visiosoft/base-theme/resources/views/partials/metadata.twig +++ b/addons/default/visiosoft/base-theme/resources/views/partials/metadata.twig @@ -19,6 +19,7 @@ {{ asset_add("theme.css", "visiosoft.theme.base::css/select2.css") }} {{ asset_add("theme.css", "visiosoft.theme.base::css/font-awesome.min.css") }} {{ asset_add("theme.css", "visiosoft.theme.base::css/intlTelInput.css") }} +{{ asset_style("visiosoft.theme.base::css/offline.scss") }} {{ asset_script('visiosoft.theme.base::js/visiosoft.js') }} diff --git a/addons/default/visiosoft/base-theme/resources/views/partials/offline.twig b/addons/default/visiosoft/base-theme/resources/views/partials/offline.twig new file mode 100644 index 000000000..e770a409e --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/views/partials/offline.twig @@ -0,0 +1,18 @@ +
+
+ {{ img('visiosoft.theme.base::images/unplugged.svg').data|raw }} + +

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

+ +

+ {{ trans('visiosoft.theme.base::field.your_internet_connection_is_broken') }} +
+ {{ trans('visiosoft.theme.base::field.we_miss_you_so_much_already') }} +

+ + +
+
From afda1893d11c98e56fa4c851f4b68fd8a185c960 Mon Sep 17 00:00:00 2001 From: vedatakd Date: Wed, 23 Jun 2021 09:50:23 +0300 Subject: [PATCH 29/31] fixed fast create --- addons/default/visiosoft/advs-module/src/Adv/AdvModel.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php b/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php index 8fd62f983..e9e653c1e 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php +++ b/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php @@ -28,7 +28,11 @@ class AdvModel extends AdvsAdvsEntryModel implements AdvInterface public function getDetailUrlAttribute() { - return $this->getAdvDetailLinkByModel($this, 'list'); + // Checking for slug + if($this->attributes) + { + return $this->getAdvDetailLinkByModel($this, 'list'); + } } public function getCurrencyPriceAttribute() From f9da388729b85646c6240435ab31305156bf82a6 Mon Sep 17 00:00:00 2001 From: Diatrex Date: Thu, 24 Jun 2021 13:33:54 +0300 Subject: [PATCH 30/31] fix js error --- .../advs-module/resources/js/editContactInformation.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/addons/default/visiosoft/advs-module/resources/js/editContactInformation.js b/addons/default/visiosoft/advs-module/resources/js/editContactInformation.js index 07a186a57..486f14192 100644 --- a/addons/default/visiosoft/advs-module/resources/js/editContactInformation.js +++ b/addons/default/visiosoft/advs-module/resources/js/editContactInformation.js @@ -46,9 +46,13 @@ $('.editInformationUser').on('click', function () { var profile = response.data; $('input[name="first_name"]').val(profile.first_name); $('input[name="last_name"]').val(profile.last_name); - intlTelInput(document.querySelector("input[name='gsm_phone']")).setNumber(profile.gsm_phone); - intlTelInput(document.querySelector("input[name='office_phone']")).setNumber(profile.office_phone); - intlTelInput(document.querySelector("input[name='land_phone']")).setNumber(profile.land_phone); + const numbers = ['gsm_phone', 'office_phone', 'land_phone']; + for (let i = 0; i < numbers.length; i++) { + const number = numbers[i]; + if (profile[number]) { + intlTelInput(document.querySelector(`input[name=${number}]`)).setNumber(profile[number]); + } + } } } }); From b2edb1d09c3593d754444cb5d0ec251a58a792eb Mon Sep 17 00:00:00 2001 From: vedatakd Date: Fri, 25 Jun 2021 10:40:18 +0300 Subject: [PATCH 31/31] added connect module --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index cd33fbb01..e7cb719fc 100644 --- a/composer.json +++ b/composer.json @@ -83,7 +83,8 @@ "wikimedia/composer-merge-plugin": "2.*", "pusher/pusher-php-server": "^5.0", "simplepie/simplepie": "^1.5.0", - "guzzlehttp/guzzle": "^7.3" + "guzzlehttp/guzzle": "^7.3", + "visiosoft/connect-module": "^1.0" }, "replace": { "anomaly/streams-platform": "*"