From 4a424ea7bd3f067e5fc430a23ac29960d0ddfdb7 Mon Sep 17 00:00:00 2001 From: Diatrex Date: Fri, 16 Oct 2020 12:42:55 +0300 Subject: [PATCH 01/25] #2329 Duplicate pages without canonical --- addons/default/visiosoft/advs-module/resources/css/list.css | 4 ++++ .../advs-module/src/Http/Controller/advsController.php | 6 ++++++ .../base-theme/resources/views/partials/metatags.twig | 3 +++ 3 files changed, 13 insertions(+) diff --git a/addons/default/visiosoft/advs-module/resources/css/list.css b/addons/default/visiosoft/advs-module/resources/css/list.css index cc6bb4d82..cc9d284f0 100644 --- a/addons/default/visiosoft/advs-module/resources/css/list.css +++ b/addons/default/visiosoft/advs-module/resources/css/list.css @@ -200,6 +200,10 @@ a.sort-by-open-dropdown:hover { color: #8598AA; } +.list-view-type button { + background-color: unset; +} + .list-view-type button:focus { outline: none; } diff --git a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php index bea56a763..012671856 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -398,6 +398,12 @@ class AdvsController extends PublicController $this->template->set('meta_title', $user->name() . ' ' . trans('visiosoft.module.advs::field.ads')); } + // Set rel="canonical" + $canonParam = $param; + unset($canonParam['sort_by'], $canonParam['doping']); + $canonUrl = fullLink($canonParam, \request()->url()); + $this->template->set('additional_meta', ""); + $compact = compact('advs', 'countries', 'mainCats', 'subCats', 'checkboxes', 'param', 'user', 'featured_advs', 'viewType', 'topfields', 'selectDropdown', 'selectRange', 'selectImage', 'ranges', 'seenList', 'radio', 'categoryId', 'cityId', 'allCats', 'catText', 'cFArray'); diff --git a/addons/default/visiosoft/base-theme/resources/views/partials/metatags.twig b/addons/default/visiosoft/base-theme/resources/views/partials/metatags.twig index e7ab06471..017843463 100644 --- a/addons/default/visiosoft/base-theme/resources/views/partials/metatags.twig +++ b/addons/default/visiosoft/base-theme/resources/views/partials/metatags.twig @@ -9,6 +9,9 @@ {{ setting_value('visiosoft.module.advs::google_statistic_code')|raw }} +{% set additionalMeta = template.get('additional_meta') %} +{{ additionalMeta ? additionalMeta|raw }} + {% set title = trans(template.meta_title) %} {% set showTitle = template.showTitle is same as(false) ? false : true %} From 86261755ec69a2d46691849b9625b0fc6f9c71e0 Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Fri, 16 Oct 2020 16:46:19 +0300 Subject: [PATCH 02/25] #2365 ad share not showing image and title --- .../advs-module/src/Http/Controller/advsController.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 012671856..a79574eee 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -506,7 +506,14 @@ class AdvsController extends PublicController $coverPhoto = \Illuminate\Support\Facades\Request::root() . '/' . $adv->cover_photo; } } - $this->template->set('meta_image', $coverPhoto); + $coverPhotoInfo = pathinfo($coverPhoto); + if (substr($coverPhotoInfo['basename'], 0, 3) === "tn-") { + $ogImage = substr(basename($coverPhotoInfo['basename']), 3); + $ogImage = $coverPhotoInfo['dirname'] . "/$ogImage"; + } else { + $ogImage = $coverPhoto; + } + $this->template->set('meta_image', $ogImage); if ($adv->created_by_id == isset(auth()->user()->id) or $adv->status == "approved") { return $this->view->make('visiosoft.module.advs::ad-detail/detail', compact('adv', 'complaints', From 65f7c7a78c2b11d299b4bd7fabec1cc037130147 Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Fri, 16 Oct 2020 16:57:44 +0300 Subject: [PATCH 03/25] #2364 ad watermark doesnt show on default --- .../advs-module/resources/js/settings.js | 24 ++++++++++++------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/addons/default/visiosoft/advs-module/resources/js/settings.js b/addons/default/visiosoft/advs-module/resources/js/settings.js index 119d656dd..14817b7b4 100644 --- a/addons/default/visiosoft/advs-module/resources/js/settings.js +++ b/addons/default/visiosoft/advs-module/resources/js/settings.js @@ -1,13 +1,21 @@ // Hide watermark_image by default -$(".watermark_image").hide(); +const watermarkType = $("select[name='watermark_type']") +const watermarkText = $(".watermark_text") +const watermarkImage = $(".watermark_image") -$("select[name='watermark_type']").change((event) => { - let watermarkType = event.target.value; - if (watermarkType === 'text') { - $(".watermark_image").hide(); - $(".watermark_text").show() +if (watermarkType.val() === 'text') { + watermarkImage.hide(); +} else { + watermarkText.hide(); +} + +$(watermarkType).change((event) => { + const watermarkTypeValue = event.target.value; + if (watermarkTypeValue === 'text') { + watermarkImage.hide(); + watermarkText.show() } else if (event.target.value === 'image') { - $(".watermark_image").show(); - $(".watermark_text").hide() + watermarkImage.show(); + watermarkText.hide() } }); \ No newline at end of file From 96d9176e0fc731348ec355a274d7dbf0cacac4c9 Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Mon, 19 Oct 2020 15:07:51 +0300 Subject: [PATCH 04/25] #2399 e-madencilik ads bug --- .../advs-module/resources/views/ad-detail/partials/detail.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig b/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig index efd963ad9..80f58bf24 100644 --- a/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig +++ b/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig @@ -1,7 +1,7 @@ <div class="slider-text"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 offered-field offered-row"> {% set standardPrice = adv.standard_price.value %} - {% if standardPrice %} + {% if standardPrice and standardPrice > 0 %} <div class="d-flex flex-wrap align-items-center"> <h3 class="ad-price-standard mr-3 text-truncate"> <b>{{ adv.standard_price.currency(null,'currency') }}</b> From 314b29cc996fc0f74c529c93d560525fb70ca780 Mon Sep 17 00:00:00 2001 From: Muammer Top <muammer@visiosoft.com.tr> Date: Tue, 20 Oct 2020 10:50:32 +0300 Subject: [PATCH 05/25] abv added to countries table --- .../location-module/src/countries.sql | 37 ++----------------- 1 file changed, 4 insertions(+), 33 deletions(-) diff --git a/addons/default/visiosoft/location-module/src/countries.sql b/addons/default/visiosoft/location-module/src/countries.sql index 6dfdd2c75..4553ac505 100644 --- a/addons/default/visiosoft/location-module/src/countries.sql +++ b/addons/default/visiosoft/location-module/src/countries.sql @@ -1,31 +1,9 @@ --- phpMyAdmin SQL Dump --- version 4.8.4 --- https://www.phpmyadmin.net/ --- --- Host: localhost --- Generation Time: Jan 31, 2019 at 12:17 PM --- Server version: 10.3.11-MariaDB --- PHP Version: 7.2.13 - SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - --- --- Database: `celep` --- - --- --- Dumping data for table `default_location_countries` --- - +TRUNCATE `default_location_countries`; INSERT INTO `default_location_countries` (`id`, `sort_order`, `created_at`, `created_by_id`, `updated_at`, `updated_by_id`, `slug`, `order`) VALUES (1, 1, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'afghanistan', NULL), (2, 2, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'albania', NULL), @@ -260,10 +238,7 @@ INSERT INTO `default_location_countries` (`id`, `sort_order`, `created_at`, `cre (231, 231, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'zimbabwe', NULL), (232, 232, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'kktc', NULL); --- --- Dumping data for table `default_location_countries_translations` --- - +TRUNCATE `default_location_countries_translations`; INSERT INTO `default_location_countries_translations` (`id`, `entry_id`, `created_at`, `created_by_id`, `updated_at`, `updated_by_id`, `locale`, `name`, `abv`) VALUES (1, 1, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Afghanistan', 'AF'), (2, 2, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Albania', 'AL'), @@ -496,9 +471,5 @@ INSERT INTO `default_location_countries_translations` (`id`, `entry_id`, `create (229, 229, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Yemen', 'YE'), (230, 230, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Zambia', 'ZM'), (231, 231, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Zimbabwe', 'ZW'), -(232, 232, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'KKTC', 'ZW'); -COMMIT; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +(232, 232, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'KKTC', 'KKTC'); +COMMIT; \ No newline at end of file From f1b8b2fb5af1682858001a82328efaea7395a0fb Mon Sep 17 00:00:00 2001 From: Muammer Top <muammer@visiosoft.com.tr> Date: Tue, 20 Oct 2020 11:04:45 +0300 Subject: [PATCH 06/25] register, country error on phone fields --- .../resources/config/settings/settings.php | 16 - .../users-module/partials/register-form.twig | 2 +- .../resources/config/settings/sections.php | 2 +- .../resources/config/settings/settings.php | 13 + .../resources/lang/en/setting.php | 3 + .../src/LocationModuleSeeder.php | 8 +- .../location-module/src/countries.sql | 475 ------------------ 7 files changed, 22 insertions(+), 497 deletions(-) delete mode 100644 addons/default/visiosoft/location-module/src/countries.sql diff --git a/addons/default/visiosoft/base-theme/resources/config/settings/settings.php b/addons/default/visiosoft/base-theme/resources/config/settings/settings.php index c67ca3596..813cf0050 100644 --- a/addons/default/visiosoft/base-theme/resources/config/settings/settings.php +++ b/addons/default/visiosoft/base-theme/resources/config/settings/settings.php @@ -71,20 +71,4 @@ return [ 'style' => [ 'type' => 'anomaly.field_type.editor', ], - - 'default_country' => [ - 'bind' => 'visiosoft.theme.base::countries.enabled', - 'env' => 'ADV_ENABLED_COUNTRIES', - 'type' => 'anomaly.field_type.select', - 'required' => false, - 'config' => [ - 'default_value' => function () { - return config('visiosoft.theme.base::countries.default'); - }, - 'options' => function () { - $array = CountryModel::query()->get()->pluck('name', 'abv')->toArray(); - return $array; - }, - ], - ], ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/views/addons/anomaly/users-module/partials/register-form.twig b/addons/default/visiosoft/base-theme/resources/views/addons/anomaly/users-module/partials/register-form.twig index ab4c2dbea..24946f203 100644 --- a/addons/default/visiosoft/base-theme/resources/views/addons/anomaly/users-module/partials/register-form.twig +++ b/addons/default/visiosoft/base-theme/resources/views/addons/anomaly/users-module/partials/register-form.twig @@ -56,7 +56,7 @@ <div class="input-wrapper validate-phone"> {{ form.fields.phone.setValue(form.fields.phone.value).input|raw }} - <div id="country" class="hidden">{{ setting_value('visiosoft.theme.base::default_country') }}</div> + <div id="country" class="hidden">{{ setting_value('visiosoft.module.location::country_for_phone_field') }}</div> </div> </div> </div> diff --git a/addons/default/visiosoft/location-module/resources/config/settings/sections.php b/addons/default/visiosoft/location-module/resources/config/settings/sections.php index dc87cbf02..01994dcc0 100644 --- a/addons/default/visiosoft/location-module/resources/config/settings/sections.php +++ b/addons/default/visiosoft/location-module/resources/config/settings/sections.php @@ -7,7 +7,7 @@ return [ 'general' => [ 'title' => 'visiosoft.module.location::section.general', 'fields' => [ - 'home_page_location', 'list_page_location', 'detail_page_location', 'create_ad_page_location', + 'home_page_location', 'list_page_location', 'detail_page_location', 'create_ad_page_location', 'country_for_phone_field' ], ], 'map' => [ diff --git a/addons/default/visiosoft/location-module/resources/config/settings/settings.php b/addons/default/visiosoft/location-module/resources/config/settings/settings.php index 5a75e3123..3d9a797a6 100644 --- a/addons/default/visiosoft/location-module/resources/config/settings/settings.php +++ b/addons/default/visiosoft/location-module/resources/config/settings/settings.php @@ -33,6 +33,19 @@ return [ 'default_value' => 212, ] ], + 'country_for_phone_field' => [ + 'type' => 'anomaly.field_type.select', + 'required' => false, + 'config' => [ + 'default_value' => function () { + return config('visiosoft.theme.base::countries.default'); + }, + 'options' => function () { + $array = \Visiosoft\LocationModule\Country\CountryModel::query()->get()->pluck('name', 'abv')->toArray(); + return $array; + }, + ], + ], 'default_city' => [ 'type' => 'anomaly.field_type.select', ], diff --git a/addons/default/visiosoft/location-module/resources/lang/en/setting.php b/addons/default/visiosoft/location-module/resources/lang/en/setting.php index 05cfd8e38..459166207 100644 --- a/addons/default/visiosoft/location-module/resources/lang/en/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/en/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Hide Location Filter', ], + 'country_for_phone_field' => [ + 'name' => 'Default Country For Register Phone Field' + ] ]; diff --git a/addons/default/visiosoft/location-module/src/LocationModuleSeeder.php b/addons/default/visiosoft/location-module/src/LocationModuleSeeder.php index 7d7b8973d..c4c638003 100644 --- a/addons/default/visiosoft/location-module/src/LocationModuleSeeder.php +++ b/addons/default/visiosoft/location-module/src/LocationModuleSeeder.php @@ -20,13 +20,13 @@ class LocationModuleSeeder extends Seeder { //Download demo SQL $repository = "https://raw.githubusercontent.com/openclassify/Openclassify-Demo-Data/master/"; - file_put_contents(__DIR__ . "/countries.sql", fopen($repository . "countries.sql", 'r')); - file_put_contents(__DIR__ . "/cities.sql", fopen($repository . "cities.sql", 'r')); + file_put_contents(storage_path('countries.sql'), fopen($repository . "countries.sql", 'r')); + file_put_contents(storage_path('cities.sql'), fopen($repository . "cities.sql", 'r')); /* Demo Start */ Model::unguard(); - DB::unprepared(file_get_contents(__DIR__ . '/countries.sql')); - DB::unprepared(file_get_contents(__DIR__ . '/cities.sql')); + DB::unprepared(file_get_contents(storage_path('countries.sql'))); + DB::unprepared(file_get_contents(storage_path('cities.sql'))); Model::reguard(); /* Demo Stop*/ } diff --git a/addons/default/visiosoft/location-module/src/countries.sql b/addons/default/visiosoft/location-module/src/countries.sql deleted file mode 100644 index 4553ac505..000000000 --- a/addons/default/visiosoft/location-module/src/countries.sql +++ /dev/null @@ -1,475 +0,0 @@ -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - -TRUNCATE `default_location_countries`; -INSERT INTO `default_location_countries` (`id`, `sort_order`, `created_at`, `created_by_id`, `updated_at`, `updated_by_id`, `slug`, `order`) VALUES -(1, 1, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'afghanistan', NULL), -(2, 2, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'albania', NULL), -(3, 3, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'algeria', NULL), -(4, 4, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'american_samoa', NULL), -(5, 5, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'andorra', NULL), -(6, 6, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'angola', NULL), -(7, 7, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'anguilla', NULL), -(8, 8, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'antarctica', NULL), -(9, 9, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'antigua_and_barbuda', NULL), -(10, 10, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'argentina', NULL), -(11, 11, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'armenia', NULL), -(12, 12, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'aruba', NULL), -(13, 13, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'australia', NULL), -(14, 14, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'austria', NULL), -(15, 15, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'azerbaijan', NULL), -(16, 16, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'bahamas', NULL), -(17, 17, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'bahrain', NULL), -(18, 18, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'bangladesh', NULL), -(19, 19, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'barbados', NULL), -(20, 20, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'belarus', NULL), -(21, 21, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'belgium', NULL), -(22, 22, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'belize', NULL), -(23, 23, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'benin', NULL), -(24, 24, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'bermuda', NULL), -(25, 25, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'bhutan', NULL), -(26, 26, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'bolivia', NULL), -(27, 27, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'bosnia_and_herzegovina', NULL), -(28, 28, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'botswana', NULL), -(29, 29, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'brazil', NULL), -(30, 30, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'british_virgin_islands', NULL), -(31, 31, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'brunei', NULL), -(32, 32, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'bulgaria', NULL), -(33, 33, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'burkina_faso', NULL), -(34, 34, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'burundi', NULL), -(35, 35, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'cambodia', NULL), -(36, 36, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'cameroon', NULL), -(37, 37, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'canada', NULL), -(38, 38, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'cape_verde', NULL), -(39, 39, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'cayman_islands', NULL), -(40, 40, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'central_african_republic', NULL), -(41, 41, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'chad', NULL), -(42, 42, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'chile', NULL), -(43, 43, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'china', NULL), -(44, 44, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'christmas_island', NULL), -(45, 45, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'cocos_keeling_islands', NULL), -(46, 46, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'colombia', NULL), -(47, 47, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'comoros', NULL), -(48, 48, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'congo_drc', NULL), -(49, 49, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'congo_republic', NULL), -(50, 50, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'cook_islands', NULL), -(51, 51, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'costa_rica', NULL), -(52, 52, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'croatia', NULL), -(53, 53, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'cuba', NULL), -(54, 54, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'cyprus', NULL), -(55, 55, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'czech_republic', NULL), -(56, 56, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'denmark', NULL), -(57, 57, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'djibouti', NULL), -(58, 58, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'dominica', NULL), -(59, 59, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'dominican_republic', NULL), -(60, 60, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'east_timor', NULL), -(61, 61, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'ecuador', NULL), -(62, 62, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'egypt', NULL), -(63, 63, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'el_salvador', NULL), -(64, 64, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'equatorial_guinea', NULL), -(65, 65, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'eritrea', NULL), -(66, 66, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'estonia', NULL), -(67, 67, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'ethiopia', NULL), -(68, 68, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'falkland_islands', NULL), -(69, 69, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'faroe_islands', NULL), -(70, 70, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'fiji', NULL), -(71, 71, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'finland', NULL), -(72, 72, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'france', NULL), -(73, 73, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'french_guiana', NULL), -(74, 74, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'french_polynesia', NULL), -(75, 75, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'french_southern_territories', NULL), -(76, 76, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'gabon', NULL), -(77, 77, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'gambia', NULL), -(78, 78, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'georgia', NULL), -(79, 79, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'germany', NULL), -(80, 80, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'ghana', NULL), -(81, 81, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'gibraltar', NULL), -(82, 82, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'greece', NULL), -(83, 83, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'greenland', NULL), -(84, 84, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'grenada', NULL), -(85, 85, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'guadeloupe', NULL), -(86, 86, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'guam', NULL), -(87, 87, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'guatemala', NULL), -(88, 88, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'guinea', NULL), -(89, 89, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'guinea_bissau', NULL), -(90, 90, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'guyana', NULL), -(91, 91, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'haiti', NULL), -(92, 92, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'honduras', NULL), -(93, 93, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'hong_kong', NULL), -(94, 94, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'hungary', NULL), -(95, 95, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'iceland', NULL), -(96, 96, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'india', NULL), -(97, 97, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'indonesia', NULL), -(98, 98, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'iran', NULL), -(99, 99, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'iraq', NULL), -(100, 100, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'ireland', NULL), -(101, 101, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'isle_of_man', NULL), -(102, 102, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'israel', NULL), -(103, 103, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'italy', NULL), -(104, 104, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'ivory_coast', NULL), -(105, 105, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'jamaica', NULL), -(106, 106, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'japan', NULL), -(107, 107, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'jordan', NULL), -(108, 108, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'kazakhstan', NULL), -(109, 109, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'kenya', NULL), -(110, 110, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'kiribati', NULL), -(111, 111, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'kosovo', NULL), -(112, 112, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'kuwait', NULL), -(113, 113, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'kyrgyzstan', NULL), -(114, 114, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'laos', NULL), -(115, 115, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'latvia', NULL), -(116, 116, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'lebanon', NULL), -(117, 117, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'lesotho', NULL), -(118, 118, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'liberia', NULL), -(119, 119, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'libya', NULL), -(120, 120, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'liechtenstein', NULL), -(121, 121, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'lithuania', NULL), -(122, 122, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'luxembourg', NULL), -(123, 123, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'macau', NULL), -(124, 124, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'macedonia', NULL), -(125, 125, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'madagascar', NULL), -(126, 126, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'malawi', NULL), -(127, 127, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'malaysia', NULL), -(128, 128, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'maldives', NULL), -(129, 129, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'mali', NULL), -(130, 130, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'malta', NULL), -(131, 131, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'marshall_islands', NULL), -(132, 132, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'martinique', NULL), -(133, 133, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'mauritania', NULL), -(134, 134, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'mauritius', NULL), -(135, 135, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'mayotte', NULL), -(136, 136, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'mexico', NULL), -(137, 137, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'micronesia', NULL), -(138, 138, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'moldova', NULL), -(139, 139, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'monaco', NULL), -(140, 140, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'mongolia', NULL), -(141, 141, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'montserrat', NULL), -(142, 142, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'morocco', NULL), -(143, 143, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'mozambique', NULL), -(144, 144, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'myanmar_burma', NULL), -(145, 145, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'namibia', NULL), -(146, 146, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'nauru', NULL), -(147, 147, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'nepal', NULL), -(148, 148, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'netherlands', NULL), -(149, 149, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'netherlands_antilles', NULL), -(150, 150, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'new_caledonia', NULL), -(151, 151, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'new_zealand', NULL), -(152, 152, '2019-01-31 10:27:51', NULL, '2019-01-31 10:27:51', NULL, 'nicaragua', NULL), -(153, 153, '2019-01-31 10:27:51', NULL, '2019-01-31 10:27:51', NULL, 'niger', NULL), -(154, 154, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'nigeria', NULL), -(155, 155, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'niue', NULL), -(156, 156, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'norfolk_island', NULL), -(157, 157, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'north_korea', NULL), -(158, 158, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'norway', NULL), -(159, 159, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'oman', NULL), -(160, 160, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'pakistan', NULL), -(161, 161, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'palau', NULL), -(162, 162, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'panama', NULL), -(163, 163, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'papua_new_guinea', NULL), -(164, 164, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'paraguay', NULL), -(165, 165, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'peru', NULL), -(166, 166, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'philippines', NULL), -(167, 167, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'pitcairn_islands', NULL), -(168, 168, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'poland', NULL), -(169, 169, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'portugal', NULL), -(170, 170, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'puerto_rico', NULL), -(171, 171, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'qatar', NULL), -(172, 172, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'r', NULL), -(173, 173, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'romania', NULL), -(174, 174, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'russia', NULL), -(175, 175, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'rwanda', NULL), -(176, 176, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'saint_helena', NULL), -(177, 177, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'saint_kitts_and_nevis', NULL), -(178, 178, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'saint_lucia', NULL), -(179, 179, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'saint_pierre_and_miquelon', NULL), -(180, 180, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'saint_vincent_and_the_grenadines', NULL), -(181, 181, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'san_marino', NULL), -(182, 182, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'sao_tome_and_principe', NULL), -(183, 183, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'saudi_arabia', NULL), -(184, 184, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'senegal', NULL), -(185, 185, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'serbia', NULL), -(186, 186, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'seychelles', NULL), -(187, 187, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'sierra_leone', NULL), -(188, 188, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'singapore', NULL), -(189, 189, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'slovakia', NULL), -(190, 190, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'slovenia', NULL), -(191, 191, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'solomon_islands', NULL), -(192, 192, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'somalia', NULL), -(193, 193, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'south_africa', NULL), -(194, 194, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'south_korea', NULL), -(195, 195, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'spain', NULL), -(196, 196, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'sri_lanka', NULL), -(197, 197, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'sudan', NULL), -(198, 198, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'suriname', NULL), -(199, 199, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'swaziland', NULL), -(200, 200, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'sweden', NULL), -(201, 201, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'switzerland', NULL), -(202, 202, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'syria', NULL), -(203, 203, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'taiwan', NULL), -(204, 204, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'tajikistan', NULL), -(205, 205, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'tanzania', NULL), -(206, 206, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'thailand', NULL), -(207, 207, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'togo', NULL), -(208, 208, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'tokelau', NULL), -(209, 209, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'tonga', NULL), -(210, 210, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'trinidad_and_tobago', NULL), -(211, 211, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'tunisia', NULL), -(212, 212, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'turkey', NULL), -(213, 213, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'turkmenistan', NULL), -(214, 214, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'turks_and_caicos_islands', NULL), -(215, 215, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'tuvalu', NULL), -(216, 216, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'us_virgin_islands', NULL), -(217, 217, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'uganda', NULL), -(218, 218, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'ukraine', NULL), -(219, 219, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'united_arab_emirates', NULL), -(220, 220, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'united_kingdom', NULL), -(221, 221, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'united_states', NULL), -(222, 222, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'uruguay', NULL), -(223, 223, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'uzbekistan', NULL), -(224, 224, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'vanuatu', NULL), -(225, 225, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'vatican_city', NULL), -(226, 226, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'venezuela', NULL), -(227, 227, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'vietnam', NULL), -(228, 228, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'wallis_and_futuna', NULL), -(229, 229, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'yemen', NULL), -(230, 230, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'zambia', NULL), -(231, 231, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'zimbabwe', NULL), -(232, 232, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'kktc', NULL); - -TRUNCATE `default_location_countries_translations`; -INSERT INTO `default_location_countries_translations` (`id`, `entry_id`, `created_at`, `created_by_id`, `updated_at`, `updated_by_id`, `locale`, `name`, `abv`) VALUES -(1, 1, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Afghanistan', 'AF'), -(2, 2, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Albania', 'AL'), -(3, 3, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Algeria', 'DZ'), -(4, 4, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'American Samoa', 'AS'), -(5, 5, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Andorra', 'AD'), -(6, 6, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Angola', 'AO'), -(7, 7, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Anguilla', 'AI'), -(8, 8, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Antarctica', 'ZW'), -(9, 9, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Antigua and Barbuda', 'AG'), -(10, 10, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Argentina', 'AR'), -(11, 11, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Armenia', 'AM'), -(12, 12, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Aruba', 'AW'), -(13, 13, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Australia', 'AU'), -(14, 14, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Austria', 'AT'), -(15, 15, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Azerbaijan', 'AZ'), -(16, 16, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Bahamas', 'BS'), -(17, 17, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Bahrain', 'BH'), -(18, 18, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Bangladesh', 'BD'), -(19, 19, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Barbados', 'BB'), -(20, 20, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Belarus', 'BY'), -(21, 21, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Belgium', 'BE'), -(22, 22, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Belize', 'BZ'), -(23, 23, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Benin', 'BJ'), -(24, 24, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Bermuda', 'BM'), -(25, 25, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Bhutan', 'BT'), -(26, 26, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Bolivia', 'BO'), -(27, 27, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Bosnia and Herzegovina', 'BA'), -(28, 28, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Botswana', 'BW'), -(29, 29, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Brazil', 'BR'), -(30, 30, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'British Virgin Islands', 'VG'), -(31, 31, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Brunei', 'ZW'), -(32, 32, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Bulgaria', 'BG'), -(33, 33, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Burkina Faso', 'BF'), -(34, 34, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Burundi', 'BI'), -(35, 35, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Cambodia', 'KH'), -(36, 36, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Cameroon', 'CM'), -(37, 37, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Canada', 'CA'), -(38, 38, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Cape Verde', 'CV'), -(39, 39, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Cayman Islands', 'KY'), -(40, 40, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Central African Republic', 'CF'), -(41, 41, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Chad', 'TD'), -(42, 42, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Chile', 'CL'), -(43, 43, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'China', 'CN'), -(44, 44, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Christmas Island', 'ZW'), -(45, 45, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Cocos [Keeling] Islands', 'ZW'), -(46, 46, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Colombia', 'CO'), -(47, 47, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Comoros', 'KM'), -(48, 48, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Congo [DRC]', 'ZW'), -(49, 49, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Congo [Republic]', 'ZW'), -(50, 50, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Cook Islands', 'CK'), -(51, 51, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Costa Rica', 'CR'), -(52, 52, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Croatia', 'HR'), -(53, 53, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Cuba', 'CU'), -(54, 54, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Cyprus', 'CY'), -(55, 55, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Czech Republic', 'CZ'), -(56, 56, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Denmark', 'DK'), -(57, 57, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Djibouti', 'DJ'), -(58, 58, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Dominica', 'DM'), -(59, 59, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Dominican Republic', 'DO'), -(60, 60, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'East Timor', 'ZW'), -(61, 61, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Ecuador', 'EC'), -(62, 62, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Egypt', 'EG'), -(63, 63, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'El Salvador', 'SV'), -(64, 64, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Equatorial Guinea', 'GQ'), -(65, 65, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Eritrea', 'ER'), -(66, 66, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Estonia', 'EE'), -(67, 67, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Ethiopia', 'ET'), -(68, 68, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Falkland Islands', 'FK'), -(69, 69, '2019-01-31 10:27:49', NULL, '2019-01-31 10:27:49', NULL, 'en', 'Faroe Islands', 'ZW'), -(70, 70, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Fiji', 'FJ'), -(71, 71, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Finland', 'FI'), -(72, 72, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'France', 'FR'), -(73, 73, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'French Guiana', 'GF'), -(74, 74, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'French Polynesia', 'PF'), -(75, 75, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'French Southern Territories', 'ZW'), -(76, 76, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Gabon', 'GA'), -(77, 77, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Gambia', 'GM'), -(78, 78, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Georgia', 'GE'), -(79, 79, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Germany', 'DE'), -(80, 80, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Ghana', 'GH'), -(81, 81, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Gibraltar', 'GI'), -(82, 82, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Greece', 'GR'), -(83, 83, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Greenland', 'GL'), -(84, 84, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Grenada', 'GD'), -(85, 85, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Guadeloupe', 'GP'), -(86, 86, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Guam', 'GU'), -(87, 87, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Guatemala', 'GT'), -(88, 88, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Guinea', 'GN'), -(89, 89, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Guinea-Bissau', 'GW'), -(90, 90, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Guyana', 'GY'), -(91, 91, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Haiti', 'HT'), -(92, 92, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Honduras', 'HN'), -(93, 93, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Hong Kong', 'HK'), -(94, 94, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Hungary', 'HU'), -(95, 95, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Iceland', 'IS'), -(96, 96, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'India', 'IN'), -(97, 97, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Indonesia', 'ID'), -(98, 98, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Iran', 'IR'), -(99, 99, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Iraq', 'IQ'), -(100, 100, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Ireland', 'IE'), -(101, 101, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Isle of Man', 'IM'), -(102, 102, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Israel', 'IL'), -(103, 103, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Italy', 'IT'), -(104, 104, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Ivory Coast', 'ZW'), -(105, 105, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Jamaica', 'JM'), -(106, 106, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Japan', 'JP'), -(107, 107, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Jordan', 'JO'), -(108, 108, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Kazakhstan', 'KZ'), -(109, 109, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Kenya', 'KE'), -(110, 110, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Kiribati', 'KI'), -(111, 111, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Kosovo', 'ZW'), -(112, 112, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Kuwait', 'KW'), -(113, 113, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Kyrgyzstan', 'KG'), -(114, 114, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Laos', 'LA'), -(115, 115, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Latvia', 'LV'), -(116, 116, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Lebanon', 'LB'), -(117, 117, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Lesotho', 'LS'), -(118, 118, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Liberia', 'LR'), -(119, 119, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Libya', 'ZW'), -(120, 120, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Liechtenstein', 'LI'), -(121, 121, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Lithuania', 'LT'), -(122, 122, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Luxembourg', 'LU'), -(123, 123, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Macau', 'ZW'), -(124, 124, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Macedonia', 'MK'), -(125, 125, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Madagascar', 'MG'), -(126, 126, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Malawi', 'MW'), -(127, 127, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Malaysia', 'MY'), -(128, 128, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Maldives', 'MV'), -(129, 129, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Mali', 'ML'), -(130, 130, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Malta', 'MT'), -(131, 131, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Marshall Islands', 'MH'), -(132, 132, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Martinique', 'MQ'), -(133, 133, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Mauritania', 'MR'), -(134, 134, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Mauritius', 'MU'), -(135, 135, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Mayotte', 'YT'), -(136, 136, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Mexico', 'MX'), -(137, 137, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Micronesia', 'FM'), -(138, 138, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Moldova', 'MD'), -(139, 139, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Monaco', 'MC'), -(140, 140, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Mongolia', 'MN'), -(141, 141, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Montserrat', 'MS'), -(142, 142, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Morocco', 'MA'), -(143, 143, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Mozambique', 'MZ'), -(144, 144, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Myanmar [Burma]', 'ZW'), -(145, 145, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Namibia', 'NA'), -(146, 146, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Nauru', 'NR'), -(147, 147, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Nepal', 'NP'), -(148, 148, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Netherlands', 'NL'), -(149, 149, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'Netherlands Antilles', 'AN'), -(150, 150, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'New Caledonia', 'NC'), -(151, 151, '2019-01-31 10:27:50', NULL, '2019-01-31 10:27:50', NULL, 'en', 'New Zealand', 'NZ'), -(152, 152, '2019-01-31 10:27:51', NULL, '2019-01-31 10:27:51', NULL, 'en', 'Nicaragua', 'NI'), -(153, 153, '2019-01-31 10:27:51', NULL, '2019-01-31 10:27:51', NULL, 'en', 'Niger', 'NE'), -(154, 154, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Nigeria', 'NG'), -(155, 155, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Niue', 'NU'), -(156, 156, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Norfolk Island', 'NF'), -(157, 157, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'North Korea', 'KP'), -(158, 158, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Norway', 'NO'), -(159, 159, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Oman', 'OM'), -(160, 160, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Pakistan', 'PK'), -(161, 161, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Palau', 'PW'), -(162, 162, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Panama', 'PA'), -(163, 163, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Papua New Guinea', 'PG'), -(164, 164, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Paraguay', 'PY'), -(165, 165, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Peru', 'PE'), -(166, 166, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Philippines', 'PH'), -(167, 167, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Pitcairn Islands', 'ZW'), -(168, 168, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Poland', 'PL'), -(169, 169, '2019-01-31 10:27:52', NULL, '2019-01-31 10:27:52', NULL, 'en', 'Portugal', 'PT'), -(170, 170, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'Puerto Rico', 'PR'), -(171, 171, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'Qatar', 'QA'), -(172, 172, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'R', 'ZW'), -(173, 173, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'Romania', 'RO'), -(174, 174, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'Russia', 'ZW'), -(175, 175, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'Rwanda', 'RW'), -(176, 176, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'Saint Helena', 'SH'), -(177, 177, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'Saint Kitts and Nevis', 'KN'), -(178, 178, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'Saint Lucia', 'LC'), -(179, 179, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'Saint Pierre and Miquelon', 'PM'), -(180, 180, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'Saint Vincent and the Grenadines', 'VC'), -(181, 181, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'San Marino', 'SM'), -(182, 182, '2019-01-31 10:27:53', NULL, '2019-01-31 10:27:53', NULL, 'en', 'Sao Tome and Principe', 'ST'), -(183, 183, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Saudi Arabia', 'SA'), -(184, 184, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Senegal', 'SN'), -(185, 185, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Serbia', 'RS'), -(186, 186, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Seychelles', 'SC'), -(187, 187, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Sierra Leone', 'SL'), -(188, 188, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Singapore', 'SG'), -(189, 189, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Slovakia', 'SK'), -(190, 190, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Slovenia', 'SI'), -(191, 191, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Solomon Islands', 'SB'), -(192, 192, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Somalia', 'SO'), -(193, 193, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'South Africa', 'ZA'), -(194, 194, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'South Korea', 'KR'), -(195, 195, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Spain', 'ES'), -(196, 196, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Sri Lanka', 'LK'), -(197, 197, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Sudan', 'SD'), -(198, 198, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Suriname', 'SR'), -(199, 199, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Swaziland', 'SZ'), -(200, 200, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Sweden', 'SE'), -(201, 201, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Switzerland', 'CH'), -(202, 202, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Syria', 'ZW'), -(203, 203, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Taiwan', 'ZW'), -(204, 204, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Tajikistan', 'TJ'), -(205, 205, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Tanzania', 'TZ'), -(206, 206, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Thailand', 'TH'), -(207, 207, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Togo', 'TG'), -(208, 208, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Tokelau', 'TK'), -(209, 209, '2019-01-31 10:27:54', NULL, '2019-01-31 10:27:54', NULL, 'en', 'Tonga', 'TO'), -(210, 210, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Trinidad and Tobago', 'TT'), -(211, 211, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Tunisia', 'TN'), -(212, 212, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Turkey', 'TR'), -(213, 213, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Turkmenistan', 'TM'), -(214, 214, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Turks and Caicos Islands', 'TC'), -(215, 215, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Tuvalu', 'TV'), -(216, 216, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'U.S. Virgin Islands', 'VI'), -(217, 217, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Uganda', 'UG'), -(218, 218, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Ukraine', 'UA'), -(219, 219, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'United Arab Emirates', 'AE'), -(220, 220, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'United Kingdom', 'UK'), -(221, 221, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'United States', 'US'), -(222, 222, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Uruguay', 'UY'), -(223, 223, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Uzbekistan', 'UZ'), -(224, 224, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Vanuatu', 'VU'), -(225, 225, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Vatican City', 'ZW'), -(226, 226, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Venezuela', 'VE'), -(227, 227, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Vietnam', 'ZW'), -(228, 228, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Wallis and Futuna', 'ZW'), -(229, 229, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Yemen', 'YE'), -(230, 230, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Zambia', 'ZM'), -(231, 231, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'Zimbabwe', 'ZW'), -(232, 232, '2019-01-31 10:27:55', NULL, '2019-01-31 10:27:55', NULL, 'en', 'KKTC', 'KKTC'); -COMMIT; \ No newline at end of file From 22d9267588000bbd4454dedc9a443664665411a2 Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Tue, 20 Oct 2020 12:05:40 +0300 Subject: [PATCH 07/25] #2340 Packages module changes - ad post (e-madencilik) --- .../advs-module/src/Adv/AdvRepository.php | 12 ++++++++++++ .../src/Adv/Contract/AdvRepositoryInterface.php | 2 ++ .../src/Http/Controller/advsController.php | 15 ++++++++++++--- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php index e39e5580a..a843841bd 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php +++ b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php @@ -447,4 +447,16 @@ class AdvRepository extends EntryRepository implements AdvRepositoryInterface ->orderBy('count_show_ad', 'desc') ->paginate(setting_value('visiosoft.module.advs::popular_ads_limit', setting_value('streams::per_page'))); } + + public function approveAds($adsIDs) + { + $defaultAdPublishTime = setting_value('visiosoft.module.advs::default_published_time'); + $ads = $this->newQuery()->where('advs_advs.id', $adsIDs)->update([ + 'status' => 'approved', + 'finish_at' => date('Y-m-d H:i:s', strtotime(date('Y-m-d H:i:s') . ' + ' . $defaultAdPublishTime . ' day')), + 'publish_at' => date('Y-m-d H:i:s') + ]); + + return $ads; + } } diff --git a/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvRepositoryInterface.php b/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvRepositoryInterface.php index 4118d90a4..eb59f6eb2 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvRepositoryInterface.php +++ b/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvRepositoryInterface.php @@ -44,4 +44,6 @@ interface AdvRepositoryInterface extends EntryRepositoryInterface public function getByUsersIDs($usersIDs); public function getPopular(); + + public function approveAds($adsIDs); } 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 a79574eee..67c5961f3 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -672,10 +672,15 @@ class AdvsController extends PublicController /* Update Adv */ $adv = AdvsAdvsEntryModel::find($request->update_id); + $allowPendingAdCreation = false; if ($advModel->is_enabled('packages') and $adv->slug == "") { $cat = app('Visiosoft\PackagesModule\Http\Controller\PackageFEController')->AdLimitForNewAd($request); if (!is_null($cat)) { - return redirect('/'); + if (is_array($cat) && array_key_exists('allowPendingAds', $cat)) { + $allowPendingAdCreation = $cat['allowPendingAds']; + } else { + return redirect('/'); + } } } @@ -730,7 +735,7 @@ class AdvsController extends PublicController } // Auto approve - if (setting_value('visiosoft.module.advs::auto_approve')) { + if (setting_value('visiosoft.module.advs::auto_approve') && !$allowPendingAdCreation) { $defaultAdPublishTime = setting_value('visiosoft.module.advs::default_published_time'); $adv->update([ 'status' => 'approved', @@ -775,7 +780,11 @@ class AdvsController extends PublicController return redirect('/advs/edit_advs/' . $request->update_id)->with('cats_d', $cats_d)->with('request', $request); } event(new CreatedAd($adv)); - return redirect(route('advs_preview', [$request->update_id])); + if ($allowPendingAdCreation) { + return redirect(route("visiosoft.module.packages::buy_package") . '?ad_id=' . $adv->id); + } else { + return redirect(route('advs_preview', [$request->update_id])); + } } /* New Create Adv */ From e3bfd83615bec138fc2d75b0d54161da090a9b7a Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Tue, 20 Oct 2020 12:10:18 +0300 Subject: [PATCH 08/25] #2329 Duplicate pages without canonical #723 --- .../advs-module/src/Http/Controller/advsController.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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 67c5961f3..969f80a16 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -399,10 +399,12 @@ class AdvsController extends PublicController } // Set rel="canonical" - $canonParam = $param; - unset($canonParam['sort_by'], $canonParam['doping']); - $canonUrl = fullLink($canonParam, \request()->url()); - $this->template->set('additional_meta', "<link rel='canonical' href='$canonUrl'/>"); + if (array_key_exists('sort_by', $param) || array_key_exists('doping', $param)) { + $canonParam = $param; + unset($canonParam['sort_by'], $canonParam['doping']); + $canonUrl = fullLink($canonParam, \request()->url()); + $this->template->set('additional_meta', "<link rel='canonical' href='$canonUrl'/>"); + } $compact = compact('advs', 'countries', 'mainCats', 'subCats', 'checkboxes', 'param', 'user', 'featured_advs', 'viewType', 'topfields', 'selectDropdown', 'selectRange', 'selectImage', 'ranges', From ea5d738ed1c06ac849f4e3d6416ce5073be8e3e1 Mon Sep 17 00:00:00 2001 From: Muammer Top <muammer@visiosoft.com.tr> Date: Tue, 20 Oct 2020 16:40:52 +0300 Subject: [PATCH 09/25] phonefield.js console error fixed --- addons/default/visiosoft/base-theme/resources/js/phonefield.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/default/visiosoft/base-theme/resources/js/phonefield.js b/addons/default/visiosoft/base-theme/resources/js/phonefield.js index 155532c75..ef6dc6dde 100644 --- a/addons/default/visiosoft/base-theme/resources/js/phonefield.js +++ b/addons/default/visiosoft/base-theme/resources/js/phonefield.js @@ -1,5 +1,6 @@ function phoneMask(fields) { - var country = document.getElementById('country').innerText; + var country = document.getElementById('country') + ? document.getElementById('country').innerText : null; var inputQueries = document.querySelectorAll(fields); inputQueries.forEach(function (inputQuery, key) { var iti = intlTelInput(inputQuery, { From 3c0c978706dc175abefb37bcc196fdfdbce2b68c Mon Sep 17 00:00:00 2001 From: vedatakd <vedat@vebze.com> Date: Wed, 21 Oct 2020 10:13:50 +0300 Subject: [PATCH 10/25] added markdown and Update Date doping types --- ...ft.module.advs__create_old_price_field.php | 27 +++++++++++++++++++ .../advs-module/resources/lang/en/field.php | 3 +++ .../src/Http/Controller/advsController.php | 6 +++++ 3 files changed, 36 insertions(+) create mode 100644 addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php diff --git a/addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php b/addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php new file mode 100644 index 000000000..f559bed8e --- /dev/null +++ b/addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php @@ -0,0 +1,27 @@ +<?php + +use Anomaly\Streams\Platform\Database\Migration\Migration; + +class VisiosoftModuleAdvsCreateOldPriceField extends Migration +{ + protected $delete = false; + + protected $stream = [ + 'slug' => 'advs', + ]; + + protected $fields = [ + 'old_price' => [ + 'type' => 'visiosoft.field_type.decimal', + 'config' => [ + 'decimal' => 2, + 'separator' => '.', + 'point' => ',' + ], + ], + ]; + + protected $assignments = [ + 'old_price' + ]; +} diff --git a/addons/default/visiosoft/advs-module/resources/lang/en/field.php b/addons/default/visiosoft/advs-module/resources/lang/en/field.php index 7ebc16101..bd9bfeb76 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/en/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/en/field.php @@ -313,4 +313,7 @@ return [ 'site' => 'Site', 'subscription' => 'Subscription', 'created' => 'Created', + 'old_price' => [ + 'name' => 'Old Price' + ], ]; 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 969f80a16..dadc699a7 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -674,6 +674,12 @@ class AdvsController extends PublicController /* Update Adv */ $adv = AdvsAdvsEntryModel::find($request->update_id); + + //Set Old Price + $old_price = ($adv->slug == "") ? $request->price : $adv->price; + $adv->old_price = $old_price; + + $allowPendingAdCreation = false; if ($advModel->is_enabled('packages') and $adv->slug == "") { $cat = app('Visiosoft\PackagesModule\Http\Controller\PackageFEController')->AdLimitForNewAd($request); From 694603ab88631755f1808b9dca9ae15d9790831b Mon Sep 17 00:00:00 2001 From: Muammer Top <muammer@visiosoft.com.tr> Date: Wed, 21 Oct 2020 10:15:10 +0300 Subject: [PATCH 11/25] phonefield default country fixed --- .../default/visiosoft/base-theme/resources/js/phonefield.js | 5 +++-- .../addons/anomaly/users-module/partials/register-form.twig | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/addons/default/visiosoft/base-theme/resources/js/phonefield.js b/addons/default/visiosoft/base-theme/resources/js/phonefield.js index ef6dc6dde..9f91e799e 100644 --- a/addons/default/visiosoft/base-theme/resources/js/phonefield.js +++ b/addons/default/visiosoft/base-theme/resources/js/phonefield.js @@ -1,6 +1,7 @@ function phoneMask(fields) { - var country = document.getElementById('country') - ? document.getElementById('country').innerText : null; + var country = document.getElementById('default-phone-country') + ? document.getElementById('default-phone-country').innerText : null; + alert(country) var inputQueries = document.querySelectorAll(fields); inputQueries.forEach(function (inputQuery, key) { var iti = intlTelInput(inputQuery, { diff --git a/addons/default/visiosoft/base-theme/resources/views/addons/anomaly/users-module/partials/register-form.twig b/addons/default/visiosoft/base-theme/resources/views/addons/anomaly/users-module/partials/register-form.twig index 24946f203..00e7c48d7 100644 --- a/addons/default/visiosoft/base-theme/resources/views/addons/anomaly/users-module/partials/register-form.twig +++ b/addons/default/visiosoft/base-theme/resources/views/addons/anomaly/users-module/partials/register-form.twig @@ -56,7 +56,7 @@ <div class="input-wrapper validate-phone"> {{ form.fields.phone.setValue(form.fields.phone.value).input|raw }} - <div id="country" class="hidden">{{ setting_value('visiosoft.module.location::country_for_phone_field') }}</div> + <div id="default-phone-country" class="hidden">{{ setting_value('visiosoft.module.location::country_for_phone_field') }}</div> </div> </div> </div> From 3f9d5c33817fcdf8fae545f3fac6ad67f725d5fb Mon Sep 17 00:00:00 2001 From: Muammer Top <muammer@visiosoft.com.tr> Date: Wed, 21 Oct 2020 10:25:37 +0300 Subject: [PATCH 12/25] phonefield default country fixed --- addons/default/visiosoft/base-theme/resources/js/phonefield.js | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/default/visiosoft/base-theme/resources/js/phonefield.js b/addons/default/visiosoft/base-theme/resources/js/phonefield.js index 9f91e799e..0bffd3409 100644 --- a/addons/default/visiosoft/base-theme/resources/js/phonefield.js +++ b/addons/default/visiosoft/base-theme/resources/js/phonefield.js @@ -1,7 +1,6 @@ function phoneMask(fields) { var country = document.getElementById('default-phone-country') ? document.getElementById('default-phone-country').innerText : null; - alert(country) var inputQueries = document.querySelectorAll(fields); inputQueries.forEach(function (inputQuery, key) { var iti = intlTelInput(inputQuery, { From 5ee2b011c5050f90dbcb4a8f5c1c1d51778f8157 Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Wed, 21 Oct 2020 10:26:53 +0300 Subject: [PATCH 13/25] #2411 [emadencilik] [bonus] Fields to fill in to earn bonuses --- .../profile-module/resources/lang/en/message.php | 1 + .../src/Profile/Profile/ProfileFormHandler.php | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/message.php b/addons/default/visiosoft/profile-module/resources/lang/en/message.php index e35fde682..49cef7e64 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'No address or not authorized to view.', 'empty_password_sms_message' => 'Due to security issues, we changed your password! Your new password is:', 'required_all' => "All Field is Required!", + 'can_not_remove_filled_fields' => "You can not remove filled fields!", // Forgot Password 'email_phone_not_found' => 'The E-mail, Phone Number is not correct!', diff --git a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php index 3a5b2a9bf..f98368903 100644 --- a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php +++ b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php @@ -33,6 +33,14 @@ class ProfileFormHandler $user = $userModel->newQuery()->find(\auth()->id()); + // Prevent removing already filled fields + foreach ($parameters as $field => $value) { + if ($user->$field && !$value) { + $messages->error('visiosoft.module.profile::message.can_not_changed_filled_fields'); + return; + } + } + $oldCustomerInfo = $user->toArray(); $changes = $this->change($user, $parameters); From 2f8bed62bd2b437950d8f579957583fa17cd4e6d Mon Sep 17 00:00:00 2001 From: Fatih Alp <fatihalp89@gmail.com> Date: Wed, 21 Oct 2020 15:38:41 +0300 Subject: [PATCH 14/25] New Crowdin updates (#734) * New translations field.php (Italian) * New translations button.php (Japanese) * New translations field.php (Japanese) * New translations button.php (Korean) * New translations field.php (Korean) * New translations button.php (Dutch) * New translations field.php (Dutch) * New translations button.php (Polish) * New translations field.php (Hindi) * New translations setting.php (Romanian) * New translations setting.php (Russian) * New translations setting.php (Azerbaijani) * New translations setting.php (Bengali) * New translations setting.php (Persian) * New translations setting.php (Vietnamese) * New translations setting.php (Urdu (Pakistan)) * New translations setting.php (Ukrainian) * New translations setting.php (Turkish) * New translations setting.php (Swedish) * New translations setting.php (Albanian) * New translations setting.php (Portuguese) * New translations setting.php (French) * New translations setting.php (Polish) * New translations setting.php (Dutch) * New translations setting.php (Korean) * New translations setting.php (Japanese) * New translations setting.php (Italian) * New translations setting.php (Hebrew) * New translations setting.php (Greek) * New translations setting.php (German) * New translations setting.php (Arabic) * New translations setting.php (Spanish) * New translations setting.php (Hindi) * New translations setting.php (Romanian) * New translations setting.php (Russian) * New translations setting.php (Azerbaijani) * New translations setting.php (Bengali) * New translations setting.php (Persian) * New translations setting.php (Vietnamese) * New translations setting.php (Urdu (Pakistan)) * New translations setting.php (Ukrainian) * New translations setting.php (Turkish) * New translations setting.php (Swedish) * New translations setting.php (Albanian) * New translations setting.php (Portuguese) * New translations setting.php (French) * New translations setting.php (Polish) * New translations setting.php (Dutch) * New translations setting.php (Korean) * New translations setting.php (Japanese) * New translations setting.php (Italian) * New translations setting.php (Hebrew) * New translations setting.php (Greek) * New translations setting.php (German) * New translations setting.php (Arabic) * New translations setting.php (Spanish) * New translations setting.php (Hindi) * New translations field.php (Romanian) * New translations field.php (Urdu (Pakistan)) * New translations message.php (Russian) * New translations field.php (Albanian) * New translations message.php (Albanian) * New translations field.php (Swedish) * New translations message.php (Swedish) * New translations field.php (Turkish) * New translations message.php (Turkish) * New translations field.php (Ukrainian) * New translations message.php (Ukrainian) * New translations message.php (Urdu (Pakistan)) * New translations message.php (Portuguese) * New translations field.php (Vietnamese) * New translations message.php (Vietnamese) * New translations field.php (Persian) * New translations message.php (Persian) * New translations field.php (Bengali) * New translations message.php (Bengali) * New translations field.php (Azerbaijani) * New translations message.php (Azerbaijani) * New translations field.php (Hindi) * New translations field.php (Russian) * New translations field.php (Portuguese) * New translations message.php (Romanian) * New translations message.php (Greek) * New translations field.php (French) * New translations message.php (French) * New translations field.php (Spanish) * New translations message.php (Spanish) * New translations field.php (Arabic) * New translations message.php (Arabic) * New translations field.php (German) * New translations message.php (German) * New translations field.php (Greek) * New translations field.php (Hebrew) * New translations message.php (Polish) * New translations message.php (Hebrew) * New translations field.php (Italian) * New translations message.php (Italian) * New translations field.php (Japanese) * New translations message.php (Japanese) * New translations field.php (Korean) * New translations message.php (Korean) * New translations field.php (Dutch) * New translations message.php (Dutch) * New translations field.php (Polish) * New translations message.php (Hindi) * New translations setting.php (Italian) * New translations button.php (Italian) * New translations field.php (Italian) * New translations setting.php (Italian) * New translations button.php (Japanese) * New translations setting.php (Japanese) * New translations field.php (Japanese) * New translations field.php (Italian) * New translations message.php (Italian) * New translations button.php (Hebrew) * New translations field.php (Hebrew) * New translations setting.php (Hebrew) * New translations field.php (Greek) * New translations message.php (Greek) * New translations field.php (Hebrew) * New translations message.php (Hebrew) * New translations setting.php (Hebrew) * New translations setting.php (Dutch) * New translations button.php (Dutch) * New translations field.php (Dutch) * New translations button.php (Polish) * New translations field.php (Polish) * New translations setting.php (Dutch) * New translations field.php (Dutch) * New translations message.php (Dutch) * New translations message.php (Japanese) * New translations button.php (Korean) * New translations field.php (Japanese) * New translations setting.php (Japanese) * New translations field.php (Korean) * New translations setting.php (Korean) * New translations field.php (Korean) * New translations message.php (Korean) * New translations setting.php (Korean) * New translations button.php (Spanish) * New translations field.php (Spanish) * New translations setting.php (French) * New translations message.php (French) * New translations field.php (French) * New translations setting.php (Spanish) * New translations field.php (Spanish) * New translations message.php (Spanish) * New translations setting.php (Spanish) * New translations setting.php (Romanian) * New translations field.php (Romanian) * New translations setting.php (Romanian) * New translations setting.php (French) * New translations field.php (French) * New translations button.php (French) * New translations field.php (Romanian) * New translations message.php (Romanian) * New translations field.php (German) * New translations setting.php (German) * New translations message.php (German) * New translations setting.php (Greek) * New translations field.php (Greek) * New translations button.php (Greek) * New translations setting.php (Greek) * New translations setting.php (German) * New translations setting.php (Arabic) * New translations button.php (Arabic) * New translations field.php (Arabic) * New translations field.php (German) * New translations setting.php (Arabic) * New translations message.php (Arabic) * New translations field.php (Albanian) * New translations message.php (Albanian) * New translations setting.php (Swedish) * New translations field.php (Swedish) * New translations button.php (Swedish) * New translations setting.php (Albanian) * New translations field.php (Albanian) * New translations button.php (Albanian) * New translations setting.php (Albanian) * New translations setting.php (Turkish) * New translations field.php (Turkish) * New translations setting.php (Turkish) * New translations section.php (Turkish) * New translations message.php (Turkish) * New translations field.php (Turkish) * New translations setting.php (Turkish) * New translations button.php (Turkish) * New translations setting.php (Swedish) * New translations message.php (Swedish) * New translations field.php (Swedish) * New translations field.php (Portuguese) * New translations button.php (Portuguese) * New translations setting.php (Portuguese) * New translations setting.php (Polish) * New translations message.php (Polish) * New translations field.php (Polish) * New translations setting.php (Polish) * New translations setting.php (Russian) * New translations setting.php (Russian) * New translations message.php (Russian) * New translations field.php (Russian) * New translations message.php (Portuguese) * New translations field.php (Portuguese) * New translations setting.php (Portuguese) * New translations field.php (Russian) * New translations button.php (Russian) * New translations setting.php (Bengali) * New translations field.php (Bengali) * New translations message.php (Bengali) * New translations field.php (Azerbaijani) * New translations button.php (Azerbaijani) * New translations message.php (Persian) * New translations field.php (Persian) * New translations setting.php (Persian) * New translations field.php (Bengali) * New translations setting.php (Bengali) * New translations button.php (Bengali) * New translations setting.php (Hindi) * New translations setting.php (Hindi) * New translations message.php (Hindi) * New translations field.php (Hindi) * New translations setting.php (Azerbaijani) * New translations setting.php (Azerbaijani) * New translations field.php (Hindi) * New translations button.php (Hindi) * New translations message.php (Azerbaijani) * New translations field.php (Azerbaijani) * New translations button.php (Urdu (Pakistan)) * New translations message.php (Ukrainian) * New translations field.php (Ukrainian) * New translations field.php (Urdu (Pakistan)) * New translations setting.php (Urdu (Pakistan)) * New translations button.php (Turkish) * New translations field.php (Ukrainian) * New translations button.php (Ukrainian) * New translations message.php (Turkish) * New translations field.php (Turkish) * New translations setting.php (Ukrainian) * New translations setting.php (Ukrainian) * New translations message.php (Vietnamese) * New translations field.php (Vietnamese) * New translations setting.php (Vietnamese) * New translations setting.php (Persian) * New translations field.php (Persian) * New translations button.php (Persian) * New translations message.php (Urdu (Pakistan)) * New translations setting.php (Urdu (Pakistan)) * New translations setting.php (Vietnamese) * New translations field.php (Vietnamese) * New translations button.php (Vietnamese) --- .../advs-module/resources/lang/ar/button.php | 1 + .../advs-module/resources/lang/ar/field.php | 10 ++++++++++ .../advs-module/resources/lang/az/button.php | 1 + .../advs-module/resources/lang/az/field.php | 10 ++++++++++ .../advs-module/resources/lang/bn/button.php | 1 + .../advs-module/resources/lang/bn/field.php | 10 ++++++++++ .../advs-module/resources/lang/de/button.php | 1 + .../advs-module/resources/lang/de/field.php | 10 ++++++++++ .../advs-module/resources/lang/el/button.php | 1 + .../advs-module/resources/lang/el/field.php | 10 ++++++++++ .../advs-module/resources/lang/es/button.php | 1 + .../advs-module/resources/lang/es/field.php | 10 ++++++++++ .../advs-module/resources/lang/fa/button.php | 1 + .../advs-module/resources/lang/fa/field.php | 10 ++++++++++ .../advs-module/resources/lang/fr/button.php | 1 + .../advs-module/resources/lang/fr/field.php | 10 ++++++++++ .../advs-module/resources/lang/he/button.php | 1 + .../advs-module/resources/lang/he/field.php | 10 ++++++++++ .../advs-module/resources/lang/hi/button.php | 1 + .../advs-module/resources/lang/hi/field.php | 10 ++++++++++ .../advs-module/resources/lang/it/button.php | 1 + .../advs-module/resources/lang/it/field.php | 10 ++++++++++ .../advs-module/resources/lang/ja/button.php | 1 + .../advs-module/resources/lang/ja/field.php | 10 ++++++++++ .../advs-module/resources/lang/ko/button.php | 1 + .../advs-module/resources/lang/ko/field.php | 10 ++++++++++ .../advs-module/resources/lang/nl/button.php | 1 + .../advs-module/resources/lang/nl/field.php | 10 ++++++++++ .../advs-module/resources/lang/pl/button.php | 1 + .../advs-module/resources/lang/pl/field.php | 10 ++++++++++ .../advs-module/resources/lang/pt/button.php | 1 + .../advs-module/resources/lang/pt/field.php | 10 ++++++++++ .../advs-module/resources/lang/ro/button.php | 1 + .../advs-module/resources/lang/ro/field.php | 10 ++++++++++ .../advs-module/resources/lang/ru/button.php | 1 + .../advs-module/resources/lang/ru/field.php | 10 ++++++++++ .../advs-module/resources/lang/sq/button.php | 1 + .../advs-module/resources/lang/sq/field.php | 10 ++++++++++ .../advs-module/resources/lang/sv/button.php | 1 + .../advs-module/resources/lang/sv/field.php | 10 ++++++++++ .../advs-module/resources/lang/tr/button.php | 1 + .../advs-module/resources/lang/tr/field.php | 18 ++++++++++++++---- .../advs-module/resources/lang/tr/message.php | 4 ++-- .../advs-module/resources/lang/tr/section.php | 2 +- .../advs-module/resources/lang/tr/setting.php | 4 ++-- .../advs-module/resources/lang/uk/button.php | 1 + .../advs-module/resources/lang/uk/field.php | 10 ++++++++++ .../advs-module/resources/lang/ur/button.php | 1 + .../advs-module/resources/lang/ur/field.php | 10 ++++++++++ .../advs-module/resources/lang/vi/button.php | 1 + .../advs-module/resources/lang/vi/field.php | 10 ++++++++++ .../base-theme/resources/lang/ar/setting.php | 3 +++ .../base-theme/resources/lang/az/setting.php | 3 +++ .../base-theme/resources/lang/bn/setting.php | 3 +++ .../base-theme/resources/lang/de/setting.php | 3 +++ .../base-theme/resources/lang/el/setting.php | 3 +++ .../base-theme/resources/lang/es/setting.php | 3 +++ .../base-theme/resources/lang/fa/setting.php | 3 +++ .../base-theme/resources/lang/fr/setting.php | 3 +++ .../base-theme/resources/lang/he/setting.php | 3 +++ .../base-theme/resources/lang/hi/setting.php | 3 +++ .../base-theme/resources/lang/it/setting.php | 3 +++ .../base-theme/resources/lang/ja/setting.php | 3 +++ .../base-theme/resources/lang/ko/setting.php | 3 +++ .../base-theme/resources/lang/nl/setting.php | 3 +++ .../base-theme/resources/lang/pl/setting.php | 3 +++ .../base-theme/resources/lang/pt/setting.php | 3 +++ .../base-theme/resources/lang/ro/setting.php | 3 +++ .../base-theme/resources/lang/ru/setting.php | 3 +++ .../base-theme/resources/lang/sq/setting.php | 3 +++ .../base-theme/resources/lang/sv/setting.php | 3 +++ .../base-theme/resources/lang/tr/field.php | 8 ++++---- .../base-theme/resources/lang/tr/setting.php | 7 +++++-- .../base-theme/resources/lang/uk/setting.php | 3 +++ .../base-theme/resources/lang/ur/setting.php | 3 +++ .../base-theme/resources/lang/vi/setting.php | 3 +++ .../resources/lang/tr/button.php | 2 +- .../resources/lang/ar/setting.php | 3 +++ .../resources/lang/az/setting.php | 3 +++ .../resources/lang/bn/setting.php | 3 +++ .../resources/lang/de/setting.php | 3 +++ .../resources/lang/el/setting.php | 3 +++ .../resources/lang/es/setting.php | 3 +++ .../resources/lang/fa/setting.php | 3 +++ .../resources/lang/fr/setting.php | 3 +++ .../resources/lang/he/setting.php | 3 +++ .../resources/lang/hi/setting.php | 3 +++ .../resources/lang/it/setting.php | 3 +++ .../resources/lang/ja/setting.php | 3 +++ .../resources/lang/ko/setting.php | 3 +++ .../resources/lang/nl/setting.php | 3 +++ .../resources/lang/pl/setting.php | 3 +++ .../resources/lang/pt/setting.php | 3 +++ .../resources/lang/ro/setting.php | 3 +++ .../resources/lang/ru/setting.php | 3 +++ .../resources/lang/sq/setting.php | 3 +++ .../resources/lang/sv/setting.php | 3 +++ .../resources/lang/tr/setting.php | 5 ++++- .../resources/lang/uk/setting.php | 3 +++ .../resources/lang/ur/setting.php | 3 +++ .../resources/lang/vi/setting.php | 3 +++ .../profile-module/resources/lang/ar/field.php | 3 +++ .../resources/lang/ar/message.php | 1 + .../profile-module/resources/lang/az/field.php | 3 +++ .../resources/lang/az/message.php | 1 + .../profile-module/resources/lang/bn/field.php | 3 +++ .../resources/lang/bn/message.php | 1 + .../profile-module/resources/lang/de/field.php | 3 +++ .../resources/lang/de/message.php | 1 + .../profile-module/resources/lang/el/field.php | 3 +++ .../resources/lang/el/message.php | 1 + .../profile-module/resources/lang/es/field.php | 3 +++ .../resources/lang/es/message.php | 1 + .../profile-module/resources/lang/fa/field.php | 3 +++ .../resources/lang/fa/message.php | 1 + .../profile-module/resources/lang/fr/field.php | 3 +++ .../resources/lang/fr/message.php | 1 + .../profile-module/resources/lang/he/field.php | 3 +++ .../resources/lang/he/message.php | 1 + .../profile-module/resources/lang/hi/field.php | 3 +++ .../resources/lang/hi/message.php | 1 + .../profile-module/resources/lang/it/field.php | 3 +++ .../resources/lang/it/message.php | 1 + .../profile-module/resources/lang/ja/field.php | 3 +++ .../resources/lang/ja/message.php | 1 + .../profile-module/resources/lang/ko/field.php | 3 +++ .../resources/lang/ko/message.php | 1 + .../profile-module/resources/lang/nl/field.php | 3 +++ .../resources/lang/nl/message.php | 1 + .../profile-module/resources/lang/pl/field.php | 3 +++ .../resources/lang/pl/message.php | 1 + .../profile-module/resources/lang/pt/field.php | 3 +++ .../resources/lang/pt/message.php | 1 + .../profile-module/resources/lang/ro/field.php | 3 +++ .../resources/lang/ro/message.php | 1 + .../profile-module/resources/lang/ru/field.php | 3 +++ .../resources/lang/ru/message.php | 1 + .../profile-module/resources/lang/sq/field.php | 3 +++ .../resources/lang/sq/message.php | 1 + .../profile-module/resources/lang/sv/field.php | 3 +++ .../resources/lang/sv/message.php | 1 + .../profile-module/resources/lang/tr/field.php | 3 +++ .../resources/lang/tr/message.php | 3 ++- .../profile-module/resources/lang/uk/field.php | 3 +++ .../resources/lang/uk/message.php | 1 + .../profile-module/resources/lang/ur/field.php | 3 +++ .../resources/lang/ur/message.php | 1 + .../profile-module/resources/lang/vi/field.php | 3 +++ .../resources/lang/vi/message.php | 1 + 149 files changed, 522 insertions(+), 18 deletions(-) diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/button.php b/addons/default/visiosoft/advs-module/resources/lang/ar/button.php index 619791e2c..48e15c7a6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'تحديث الفئة' ], 'new_option' => 'خيار جديد', + 'export' => 'تصدير' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/field.php b/addons/default/visiosoft/advs-module/resources/lang/ar/field.php index e9700e6ad..76f2ec990 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'و ما فوق', 'and_below' => 'و تحت', 'clear_all' => 'امسح الكل', + 'balances' => 'الرصيد', + 'packages' => 'الحزمة', + 'dopings' => 'المنشطات', + 'advs' => 'Advs', + 'site' => 'الموقع', + 'subscription' => 'اشتراك', + 'created' => 'خلقت', + 'old_price' => [ + 'name' => 'سعر قديم' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/button.php b/addons/default/visiosoft/advs-module/resources/lang/az/button.php index 2b2b78363..d3d3d0609 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Kateqoriya yeniləyin' ], 'new_option' => 'Yeni Seçim', + 'export' => 'İxrac' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/field.php b/addons/default/visiosoft/advs-module/resources/lang/az/field.php index 15e855630..401ee36bc 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'və yuxarıda', 'and_below' => 'və aşağıda', 'clear_all' => 'Hamısını sil, hamısını təmizlə', + 'balances' => 'Qalıqlar', + 'packages' => 'Paketlər', + 'dopings' => 'Dopinqlər', + 'advs' => 'Advs', + 'site' => 'Sayt', + 'subscription' => 'Abunə', + 'created' => 'Yarandı', + 'old_price' => [ + 'name' => 'Köhnə Qiymət' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/button.php b/addons/default/visiosoft/advs-module/resources/lang/bn/button.php index 0eb42cdbf..507b20b1e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'আপডেট বিভাগ' ], 'new_option' => 'নতুন বিকল্প', + 'export' => 'রফতানি' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/field.php b/addons/default/visiosoft/advs-module/resources/lang/bn/field.php index daac50ac7..aa268613f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'এবং উপরে', 'and_below' => 'এবং নিচে', 'clear_all' => 'সব পরিষ্কার করে দাও', + 'balances' => 'ব্যালেন্স', + 'packages' => 'প্যাকেজগুলি', + 'dopings' => 'ডোপিংস', + 'advs' => 'অ্যাড', + 'site' => 'সাইট', + 'subscription' => 'সাবস্ক্রিপশন', + 'created' => 'তৈরি হয়েছে', + 'old_price' => [ + 'name' => 'পুরাতন মূল্য' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/button.php b/addons/default/visiosoft/advs-module/resources/lang/de/button.php index f396f1363..bdff5f8bf 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Kategorie aktualisieren' ], 'new_option' => 'Neue Option', + 'export' => 'Export' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/field.php b/addons/default/visiosoft/advs-module/resources/lang/de/field.php index ed94fe3fe..547cef5eb 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'und darüber', 'and_below' => 'und darunter', 'clear_all' => 'Alles löschen', + 'balances' => 'Guthaben', + 'packages' => 'Pakete', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Seite? ˅', + 'subscription' => 'Abonnement', + 'created' => 'Erstellt', + 'old_price' => [ + 'name' => 'Alter Preis' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/button.php b/addons/default/visiosoft/advs-module/resources/lang/el/button.php index 9f8e6dda7..2d57a0c0a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Ενημέρωση κατηγορίας' ], 'new_option' => 'Νέα επιλογή', + 'export' => 'Εξαγωγή' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/field.php b/addons/default/visiosoft/advs-module/resources/lang/el/field.php index 1a6ee9765..8765550a7 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'και παραπανω', 'and_below' => 'και παρακάτω', 'clear_all' => 'Τα καθαρίζω όλα', + 'balances' => 'Υπόλοιπα', + 'packages' => 'Πακέτα', + 'dopings' => 'Ντόπινγκ', + 'advs' => 'Advs', + 'site' => 'Ιστοσελίδα', + 'subscription' => 'Συνδρομή', + 'created' => 'Δημιουργήθηκε', + 'old_price' => [ + 'name' => 'Παλιά τιμή' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/button.php b/addons/default/visiosoft/advs-module/resources/lang/es/button.php index 02ae9a86e..f5ccc5cf2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Actualizar categoría' ], 'new_option' => 'Nueva opción', + 'export' => 'Exportar' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/field.php b/addons/default/visiosoft/advs-module/resources/lang/es/field.php index e6794e3d7..bf50bef0f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'y por encima', 'and_below' => 'y por debajo', 'clear_all' => 'Limpiar todo', + 'balances' => 'Saldos', + 'packages' => 'Paquetes', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Sitio', + 'subscription' => 'Suscripción', + 'created' => 'Creado', + 'old_price' => [ + 'name' => 'Precio anterior' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/button.php b/addons/default/visiosoft/advs-module/resources/lang/fa/button.php index 47ed58fa8..f047c1f03 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'رده به روزرسانی' ], 'new_option' => 'گزینه جدید', + 'export' => 'صادرات' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/field.php b/addons/default/visiosoft/advs-module/resources/lang/fa/field.php index 24f7a4e22..95588f96a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'و بالاتر', 'and_below' => 'و در زیر', 'clear_all' => 'همه را پاک کن', + 'balances' => 'موازنه', + 'packages' => 'بسته ها', + 'dopings' => 'دوپینگ', + 'advs' => 'تبلیغات', + 'site' => 'سایت', + 'subscription' => 'اشتراک، ابونمان', + 'created' => 'ایجاد شده', + 'old_price' => [ + 'name' => 'قیمت قدیمی' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/button.php b/addons/default/visiosoft/advs-module/resources/lang/fr/button.php index 43f94b5d4..a0d77878b 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Mettre à jour la catégorie' ], 'new_option' => 'Nouvelle option', + 'export' => 'Exportation' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/field.php b/addons/default/visiosoft/advs-module/resources/lang/fr/field.php index 82bb8cffc..599c32431 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'et ci-dessus', 'and_below' => 'et plus bas', 'clear_all' => 'Tout effacer', + 'balances' => 'Soldes', + 'packages' => 'Paquets', + 'dopings' => 'Dopage', + 'advs' => 'Advs', + 'site' => 'Site', + 'subscription' => 'Abonnement', + 'created' => 'Créé', + 'old_price' => [ + 'name' => 'Ancien prix' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/button.php b/addons/default/visiosoft/advs-module/resources/lang/he/button.php index b68b537ce..466fdbe0e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'עדכן קטגוריה' ], 'new_option' => 'אפשרות חדשה', + 'export' => 'יְצוּא' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/field.php b/addons/default/visiosoft/advs-module/resources/lang/he/field.php index cf39a5c15..ff06ade7a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'ומעל', 'and_below' => 'ומתחת', 'clear_all' => 'נקה הכל', + 'balances' => 'יתרות', + 'packages' => 'חבילות', + 'dopings' => 'סמים', + 'advs' => 'עו"ד', + 'site' => 'אֲתַר', + 'subscription' => 'מִנוּי', + 'created' => 'נוצר', + 'old_price' => [ + 'name' => 'מחיר ישן' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/button.php b/addons/default/visiosoft/advs-module/resources/lang/hi/button.php index 802142448..04d35da16 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'अद्यतन श्रेणी' ], 'new_option' => 'नया विकल्प', + 'export' => 'निर्यात' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/field.php b/addons/default/visiosoft/advs-module/resources/lang/hi/field.php index 3e21a0cba..c4ad70f8c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'और ऊपर', 'and_below' => 'और नीचे', 'clear_all' => 'सभी साफ करें', + 'balances' => 'शेष', + 'packages' => 'संकुल', + 'dopings' => 'dopings', + 'advs' => 'advs', + 'site' => 'साइट', + 'subscription' => 'अंशदान', + 'created' => 'बनाया था', + 'old_price' => [ + 'name' => 'पुरानी कीमत' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/button.php b/addons/default/visiosoft/advs-module/resources/lang/it/button.php index eebc61d89..973973321 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Categoria di aggiornamento' ], 'new_option' => 'Nuova opzione', + 'export' => 'Esportare' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/field.php b/addons/default/visiosoft/advs-module/resources/lang/it/field.php index 528ef3366..6f2d10da6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'e al di sopra', 'and_below' => 'e sotto', 'clear_all' => 'Cancella tutto', + 'balances' => 'Saldi', + 'packages' => 'Pacchi', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Luogo', + 'subscription' => 'Sottoscrizione', + 'created' => 'Creato', + 'old_price' => [ + 'name' => 'Vecchio prezzo' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/button.php b/addons/default/visiosoft/advs-module/resources/lang/ja/button.php index b937e7866..2e19aa162 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'カテゴリを更新' ], 'new_option' => '新しいオプション', + 'export' => '書き出す' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/field.php b/addons/default/visiosoft/advs-module/resources/lang/ja/field.php index 9b68ead52..46ea2dc81 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => '以上', 'and_below' => '以下', 'clear_all' => 'すべてクリア', + 'balances' => 'バランス', + 'packages' => 'パッケージ', + 'dopings' => 'ドーピング', + 'advs' => 'アドバンス', + 'site' => '地点', + 'subscription' => 'サブスクリプション', + 'created' => '作成した', + 'old_price' => [ + 'name' => '古い価格' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/button.php b/addons/default/visiosoft/advs-module/resources/lang/ko/button.php index db3009a49..2870d56ec 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/button.php @@ -32,4 +32,5 @@ return [ 'name' => '카테고리 업데이트' ], 'new_option' => '새로운 옵션', + 'export' => '수출' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/field.php b/addons/default/visiosoft/advs-module/resources/lang/ko/field.php index e19e6a372..7d762de2c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => '이상', 'and_below' => '이하', 'clear_all' => '모두 지우기', + 'balances' => '균형', + 'packages' => '패키지', + 'dopings' => '도핑', + 'advs' => 'Advs', + 'site' => '대지', + 'subscription' => '신청', + 'created' => '만들어진', + 'old_price' => [ + 'name' => '이전 가격' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/button.php b/addons/default/visiosoft/advs-module/resources/lang/nl/button.php index bc54f1937..0d59ef1fd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Categorie bijwerken' ], 'new_option' => 'Nieuwe optie', + 'export' => 'Exporteren' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/field.php b/addons/default/visiosoft/advs-module/resources/lang/nl/field.php index 95d2cc31f..b6c3e3252 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'en hoger', 'and_below' => 'en onder', 'clear_all' => 'Wis alles', + 'balances' => 'Weegschalen', + 'packages' => 'Pakketjes', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Site', + 'subscription' => 'Abonnement', + 'created' => 'Gemaakt', + 'old_price' => [ + 'name' => 'Oude prijs' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/button.php b/addons/default/visiosoft/advs-module/resources/lang/pl/button.php index 36752c315..b5b6249a8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Zaktualizuj kategorię' ], 'new_option' => 'Nowa opcja', + 'export' => 'Eksport' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/field.php b/addons/default/visiosoft/advs-module/resources/lang/pl/field.php index 3d1d8b019..f47f2ad86 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'i powyżej', 'and_below' => 'i poniżej', 'clear_all' => 'Wyczyść wszystko', + 'balances' => 'Salda', + 'packages' => 'Pakiety', + 'dopings' => 'Dopingi', + 'advs' => 'Advs', + 'site' => 'Teren', + 'subscription' => 'Subskrypcja', + 'created' => 'Utworzony', + 'old_price' => [ + 'name' => 'Stara cena' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/button.php b/addons/default/visiosoft/advs-module/resources/lang/pt/button.php index 53d5d0a7e..b443ea231 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Atualizar categoria' ], 'new_option' => 'Nova Opção', + 'export' => 'Exportar' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/field.php b/addons/default/visiosoft/advs-module/resources/lang/pt/field.php index 1429a94fe..60067ae2c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'e acima', 'and_below' => 'e abaixo', 'clear_all' => 'Limpar tudo', + 'balances' => 'Saldos', + 'packages' => 'Pacotes', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Local', + 'subscription' => 'Inscrição', + 'created' => 'Criado', + 'old_price' => [ + 'name' => 'Preço antigo' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/button.php b/addons/default/visiosoft/advs-module/resources/lang/ro/button.php index b9170691e..05365e89e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Actualizare categorie' ], 'new_option' => 'Opțiune nouă', + 'export' => 'Export' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/field.php b/addons/default/visiosoft/advs-module/resources/lang/ro/field.php index 07aabded1..3a7c2ce03 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'Si mai sus', 'and_below' => 'si sub', 'clear_all' => 'Curata tot', + 'balances' => 'Solduri', + 'packages' => 'Pachete', + 'dopings' => 'Dopaje', + 'advs' => 'Sfaturi', + 'site' => 'Site', + 'subscription' => 'Abonament', + 'created' => 'Creată', + 'old_price' => [ + 'name' => 'Preț vechi' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/button.php b/addons/default/visiosoft/advs-module/resources/lang/ru/button.php index ef3b7785c..7db3d66cb 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Обновить категорию' ], 'new_option' => 'Новый вариант', + 'export' => 'Экспорт' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/field.php b/addons/default/visiosoft/advs-module/resources/lang/ru/field.php index 63f2056ce..8cc41cf7a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'и выше', 'and_below' => 'и ниже', 'clear_all' => 'Очистить все', + 'balances' => 'Балансы', + 'packages' => 'Пакеты', + 'dopings' => 'Допинг', + 'advs' => 'Advs', + 'site' => 'Сайт', + 'subscription' => 'Подписка', + 'created' => 'Создано', + 'old_price' => [ + 'name' => 'Старая цена' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/button.php b/addons/default/visiosoft/advs-module/resources/lang/sq/button.php index 004a53e08..ea5c36fbd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Kategoria Azhornimeve' ], 'new_option' => 'Opsioni i ri', + 'export' => 'Eksporto' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/field.php b/addons/default/visiosoft/advs-module/resources/lang/sq/field.php index 5364d6b0c..58fe05860 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'dhe më lart', 'and_below' => 'dhe më poshtë', 'clear_all' => 'Pastroji të gjitha', + 'balances' => 'Bilancet', + 'packages' => 'Paketat', + 'dopings' => 'Dopingët', + 'advs' => 'Adv', + 'site' => 'Faqen', + 'subscription' => 'Abonim', + 'created' => 'Krijuar', + 'old_price' => [ + 'name' => 'Çmimi i Vjetër' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/button.php b/addons/default/visiosoft/advs-module/resources/lang/sv/button.php index fe78e694e..f992ccff6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Uppdatera kategori' ], 'new_option' => 'Nytt alternativ', + 'export' => 'Exportera' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/field.php b/addons/default/visiosoft/advs-module/resources/lang/sv/field.php index 2a05f75c9..634294430 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'och ovan', 'and_below' => 'och under', 'clear_all' => 'Rensa alla', + 'balances' => 'Balanser', + 'packages' => 'Paket', + 'dopings' => 'Dopings', + 'advs' => 'Adv', + 'site' => 'Webbplats', + 'subscription' => 'Prenumeration', + 'created' => 'Skapad', + 'old_price' => [ + 'name' => 'Gammalt pris' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/button.php b/addons/default/visiosoft/advs-module/resources/lang/tr/button.php index 6721c2085..0ee3ab8a2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Kategori Güncelle' ], 'new_option' => 'Yeni Seçenek', + 'export' => 'İhracat' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/field.php b/addons/default/visiosoft/advs-module/resources/lang/tr/field.php index cc2f95416..e1c05d54c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/field.php @@ -150,7 +150,7 @@ return [ 'search_desc' => 'Burada favori arama seçimlerinizi ekleyebilir ve yönetebilirsiniz.', 'complaint_placeholder' => 'Şikayet ayrıntılarınızı buraya yazın.', 'show_details' => 'Detayları göster', - 'ad_actions' => 'Reklam İşlemleri', + 'ad_actions' => 'İlan İşlemleri', 'edit' => 'Düzenle', 'approve' => 'Onayla', 'passive' => "Pasif", @@ -275,11 +275,11 @@ return [ "were_found" => 'bulundular.', // Pending screen - 'pending_message_1' => 'Reklam Onay Sürecinde', - 'pending_message_2' => "Reklamın Güncelleme Tarihi", + 'pending_message_1' => 'İlan Onay Sürecinde', + 'pending_message_2' => "İlan Güncelleme Tarihi", 'pending_message_3' => 'Tahmini Bekleme Süresi', 'pending_message_4' => 'Onay sürecinde geçirilen süre doping zamanına eklenecektir.', - 'pending_message_5' => 'Onay sürecinde reklamla ilgili çağrı merkezinden hiçbir işlem yapılamaz.', + 'pending_message_5' => 'Onay sürecinde ilanla ilgili çağrı merkezinden hiçbir işlem yapılamaz.', 'hours' => 'saatler', // Preview page @@ -308,4 +308,14 @@ return [ 'and_above' => 've yukarıda', 'and_below' => 've aşağıda', 'clear_all' => 'Hepsini temizle', + 'balances' => 'Bakiyeler', + 'packages' => 'Paketler', + 'dopings' => 'Dopingler', + 'advs' => 'Advs', + 'site' => 'Site', + 'subscription' => 'Abonelik', + 'created' => 'Oluşturuldu', + 'old_price' => [ + 'name' => 'Eski fiyat' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/message.php b/addons/default/visiosoft/advs-module/resources/lang/tr/message.php index 00fd03e21..82df978e8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/message.php @@ -23,6 +23,6 @@ return [ 'choose_user' => 'Bir kullanıcı seçin', 'owner_updated_successfully' => 'Sahibi Başarıyla Güncellenmiştir!', 'no_add_found' => 'İlan Bulunamadı!', - 'replicated_success' => 'Reklam başarıyla kopyalandı!', - 'ad_doesnt_exist' => "Bu reklam mevcut değil!", + 'replicated_success' => 'İlan başarıyla kopyalandı!', + 'ad_doesnt_exist' => "Bu İlan mevcut değil!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/section.php b/addons/default/visiosoft/advs-module/resources/lang/tr/section.php index 5b566bbef..f7adc843e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/section.php @@ -44,5 +44,5 @@ return [ 'options' => [ 'title' => 'Seçenekler', ], - 'ads_image' => 'Reklam Resmi', + 'ads_image' => 'İlan Resmi', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php b/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php index f09745ac0..9e3c9d652 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php @@ -9,7 +9,7 @@ return [ ], 'hide_zero_price' => [ 'name' => 'Sıfır ise Fiyatı Gizle', - 'instructions' => 'Reklam fiyatı 0 ise fiyatı gizle', + 'instructions' => 'İlan fiyatı 0 ise fiyatı gizle', ], 'estimated_pending_time' => [ 'name' => 'Tahmini Bekleme Süresi', @@ -129,7 +129,7 @@ return [ 'name' => 'TCMB Exchange URL\'si', ], 'popular_ads_limit' => [ - 'name' => 'Popüler Reklam Limiti', + 'name' => 'Popüler İlan Limiti', ], //Image diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/button.php b/addons/default/visiosoft/advs-module/resources/lang/uk/button.php index 6b7277f53..fe6de7c4a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Оновити категорію' ], 'new_option' => 'Нова опція', + 'export' => 'Експорт' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/field.php b/addons/default/visiosoft/advs-module/resources/lang/uk/field.php index 628c6f494..09fe095f1 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'і вище', 'and_below' => 'і нижче', 'clear_all' => 'Очистити все', + 'balances' => 'Баланси', + 'packages' => 'Пакети', + 'dopings' => 'Допінг', + 'advs' => 'Advs', + 'site' => 'Сайт', + 'subscription' => 'Передплата', + 'created' => 'Створено', + 'old_price' => [ + 'name' => 'Стара ціна' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/button.php b/addons/default/visiosoft/advs-module/resources/lang/ur/button.php index 9b412a895..48e176b96 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'زمرہ اپ ڈیٹ کریں' ], 'new_option' => 'نیا آپشن', + 'export' => 'برآمد کریں' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/field.php b/addons/default/visiosoft/advs-module/resources/lang/ur/field.php index 000857a60..d38e74af5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'اور اوپر', 'and_below' => 'اور نیچے', 'clear_all' => 'تمام کو صاف کریں', + 'balances' => 'توازن', + 'packages' => 'پیکیجز', + 'dopings' => 'ڈوپنگز', + 'advs' => 'ایڈز', + 'site' => 'سائٹ', + 'subscription' => 'سب سکریپشن', + 'created' => 'بنائی گئی', + 'old_price' => [ + 'name' => 'پرانی قیمت' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/button.php b/addons/default/visiosoft/advs-module/resources/lang/vi/button.php index 5cc1766d8..f1f73f281 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Cập nhật danh mục' ], 'new_option' => 'Tùy chọn mới', + 'export' => 'Xuất khẩu' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/field.php b/addons/default/visiosoft/advs-module/resources/lang/vi/field.php index 50d4e9dd8..0b5e767e2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'trở lên', 'and_below' => 'và dưới đây', 'clear_all' => 'Làm sạch tất cả', + 'balances' => 'Cân bằng', + 'packages' => 'Các gói', + 'dopings' => 'Liều lượng', + 'advs' => 'Lời khuyên', + 'site' => 'Địa điểm', + 'subscription' => 'Đăng ký', + 'created' => 'Tạo', + 'old_price' => [ + 'name' => 'Giá cũ' + ], ]; diff --git a/addons/default/visiosoft/base-theme/resources/lang/ar/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ar/setting.php index 8221638f8..8ccab5bff 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ar/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ar/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'حد الفئات الفرعية للصفحة الرئيسية', ], + 'default_country' => [ + 'name' => 'صفحة التسجيل ، البلد الافتراضي للهاتف', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/az/setting.php b/addons/default/visiosoft/base-theme/resources/lang/az/setting.php index 8317d134d..d3d7a5483 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/az/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/az/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Əsas alt kateqoriyalar məhdudiyyəti', ], + 'default_country' => [ + 'name' => 'Qeydiyyat səhifəsi, telefon üçün standart ölkə', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/bn/setting.php b/addons/default/visiosoft/base-theme/resources/lang/bn/setting.php index 37dd14199..083bc581b 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/bn/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/bn/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'হোমপেজ সাব বিভাগের সীমা', ], + 'default_country' => [ + 'name' => 'ফোনের জন্য পৃষ্ঠা, ডিফল্ট দেশ নিবন্ধ করুন', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/de/setting.php b/addons/default/visiosoft/base-theme/resources/lang/de/setting.php index ec0ba8165..b535ea2ec 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/de/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/de/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Homepage Unterkategorien Limit', ], + 'default_country' => [ + 'name' => 'Registrierungsseite, Standardland für Telefon', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/el/setting.php b/addons/default/visiosoft/base-theme/resources/lang/el/setting.php index 4f4c3ecfc..7f8e37b92 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/el/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/el/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Όριο υποκατηγοριών αρχικής σελίδας', ], + 'default_country' => [ + 'name' => 'Σελίδα εγγραφής, προεπιλεγμένη χώρα για τηλέφωνο', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/es/setting.php b/addons/default/visiosoft/base-theme/resources/lang/es/setting.php index f6a949c76..d505c2f04 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/es/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/es/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Límite de subcategorías de la página de inicio', ], + 'default_country' => [ + 'name' => 'Página de registro, país predeterminado para el teléfono', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/fa/setting.php b/addons/default/visiosoft/base-theme/resources/lang/fa/setting.php index d77025933..3c0671d87 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/fa/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/fa/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'زیرمجموعه ها', ], + 'default_country' => [ + 'name' => 'صفحه ثبت نام ، کشور پیش فرض تلفن', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/fr/setting.php b/addons/default/visiosoft/base-theme/resources/lang/fr/setting.php index c9b04e6e3..4cdc5fe72 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/fr/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/fr/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Limite des sous-catégories de la page d\'accueil', ], + 'default_country' => [ + 'name' => 'Page d\'enregistrement, pays par défaut pour le téléphone', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/he/setting.php b/addons/default/visiosoft/base-theme/resources/lang/he/setting.php index fd6e10e06..77f45592b 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/he/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/he/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'מגבלת קטגוריות המשנה לדף הבית', ], + 'default_country' => [ + 'name' => 'דף הרשמה, ארץ ברירת המחדל לטלפון', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/hi/setting.php b/addons/default/visiosoft/base-theme/resources/lang/hi/setting.php index 91ac0ef7e..fb4dcb8d2 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/hi/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/hi/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'मुखपृष्ठ उप श्रेणियाँ श्रेणियाँ सीमा', ], + 'default_country' => [ + 'name' => 'रजिस्टर पेज, फोन के लिए डिफ़ॉल्ट देश', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/it/setting.php b/addons/default/visiosoft/base-theme/resources/lang/it/setting.php index 30d283ac0..f6ba36f00 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/it/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/it/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Limite delle sottocategorie della home page', ], + 'default_country' => [ + 'name' => 'Pagina di registrazione, paese predefinito per il telefono', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ja/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ja/setting.php index 9ca3676c1..f91bc8f5f 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ja/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ja/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'ホームページのサブカテゴリの制限', ], + 'default_country' => [ + 'name' => '登録ページ、電話のデフォルトの国', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ko/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ko/setting.php index d1fa6353e..8baafa55e 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ko/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ko/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => '홈페이지 하위 카테고리 제한', ], + 'default_country' => [ + 'name' => '등록 페이지, 전화의 기본 국가', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/nl/setting.php b/addons/default/visiosoft/base-theme/resources/lang/nl/setting.php index 2b23dac74..96546c7ac 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/nl/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/nl/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Limiet subcategorieën op homepage', ], + 'default_country' => [ + 'name' => 'Registratiepagina, standaardland voor telefoon', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/pl/setting.php b/addons/default/visiosoft/base-theme/resources/lang/pl/setting.php index 5f3e95453..511898486 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/pl/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/pl/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Limit podkategorii strony głównej', ], + 'default_country' => [ + 'name' => 'Strona rejestracji, domyślny kraj dla telefonu', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/pt/setting.php b/addons/default/visiosoft/base-theme/resources/lang/pt/setting.php index 26ef6f439..f192800fe 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/pt/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/pt/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Limite de subcategorias da página inicial', ], + 'default_country' => [ + 'name' => 'Página de registro, país padrão para telefone', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ro/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ro/setting.php index 10067e769..03263f563 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ro/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ro/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Limita de subcategorii pentru pagina principală', ], + 'default_country' => [ + 'name' => 'Pagina de înregistrare, țara implicită pentru telefon', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ru/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ru/setting.php index 9849ee374..08dfb72f6 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ru/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ru/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Ограничение подкатегорий домашней страницы', ], + 'default_country' => [ + 'name' => 'Страница регистрации, страна по умолчанию для телефона', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/sq/setting.php b/addons/default/visiosoft/base-theme/resources/lang/sq/setting.php index 7286cbb1a..b6b542e51 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/sq/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/sq/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Nënkategoritë e faqes kryesore Kufiri', ], + 'default_country' => [ + 'name' => 'Faqja e regjistrimit, vendi i paracaktuar për telefon', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/sv/setting.php b/addons/default/visiosoft/base-theme/resources/lang/sv/setting.php index 9d805bc60..052911649 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/sv/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/sv/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Hemsida Underkategorier Begränsning', ], + 'default_country' => [ + 'name' => 'Registrera sida, standardland för telefon', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/tr/field.php b/addons/default/visiosoft/base-theme/resources/lang/tr/field.php index 5ff970318..161be2f65 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/tr/field.php +++ b/addons/default/visiosoft/base-theme/resources/lang/tr/field.php @@ -27,9 +27,9 @@ return [ // Registration instructions 'personal_registration_header' => 'Bireysel Üyelik Avantajları Nelerdir?', 'personal_registration_body' => 'Evinizi, arabanızı satmak ve kiralamak, kullanılmayan eşyalarınızı satmak, yenilerini almak.', - 'personal_registration_list_1' => 'Ücretsiz bir reklam gönderin,', - 'personal_registration_list_2' => 'İlgilendiğiniz reklamları ekleyin, favorilerinize ekledikten sonra fiyat değişikliklerini takip edin, kriterlerinize uygun favori aramalar oluşturun,', - 'personal_registration_list_3' => 'Sitedeki reklam sahiplerine mesaj gönderin.', + 'personal_registration_list_1' => 'Ücretsiz bir İlan gönderin,', + 'personal_registration_list_2' => 'İlgilendiğiniz ilanları ekleyin, favorilerinize ekledikten sonra fiyat değişikliklerini takip edin, kriterlerinize uygun favori aramalar oluşturun,', + 'personal_registration_list_3' => 'Sitedeki İlan sahiplerine mesaj gönderin.', 'register_information_note' => 'Bu sayfadaki bilgiler ' . env('APPLICATION_DOMAIN') . ' üyelik. Kişisel verilerin korunması hakkında ayrıntılı bilgiyi burada bulabilirsiniz.', // Register page @@ -45,7 +45,7 @@ return [ // Side menu links 'company_directory' => 'Firma Rehberi', - 'popular_ads' => 'popüler reklamlar', + 'popular_ads' => 'Popüler İlanlar', 'last_48_hours' => 'son 48 saat', 'secure_e-commerce_ads' => 'güvenli e-ticaret', 'sms' => 'Kısa Mesaj Gönder (SMS)', diff --git a/addons/default/visiosoft/base-theme/resources/lang/tr/setting.php b/addons/default/visiosoft/base-theme/resources/lang/tr/setting.php index b5e3e3bb3..0ab08307f 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/tr/setting.php @@ -20,10 +20,10 @@ return [ 'name' => 'Breadcrumb', ], 'ad_details' => [ - 'name' => 'Reklam Ayrıntıları', + 'name' => 'İlan Ayrıntıları', ], 'ad_details_tab' => [ - 'name' => 'Reklam Ayrıntıları Sekmesi', + 'name' => 'İlan Ayrıntıları Sekmesi', ], 'latest_and_view_all_btn' => [ 'name' => 'Tümünü Görüntüle', @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Ana Sayfa Alt Kategoriler Sınırı', ], + 'default_country' => [ + 'name' => 'Kayıt sayfası, telefon için varsayılan ülke', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/uk/setting.php b/addons/default/visiosoft/base-theme/resources/lang/uk/setting.php index f74df18be..564dca707 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/uk/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/uk/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Підкатегорії домашньої сторінки Обмеження', ], + 'default_country' => [ + 'name' => 'Сторінка реєстрації, країна за замовчуванням для телефону', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ur/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ur/setting.php index b63083f14..ab7f1b6c9 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ur/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ur/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'مرکزی صفحہ ذیلی زمرے کی حد', ], + 'default_country' => [ + 'name' => 'صفحہ کیلئے رجسٹر ، فون کے لئے پہلے سے طے شدہ ملک', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/vi/setting.php b/addons/default/visiosoft/base-theme/resources/lang/vi/setting.php index c133c17cb..9db82be46 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/vi/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/vi/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Giới hạn danh mục phụ của trang chủ', ], + 'default_country' => [ + 'name' => 'Trang đăng ký, quốc gia mặc định cho điện thoại', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/button.php index 33ed84ff3..02dd41f5d 100644 --- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/button.php +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/button.php @@ -1,5 +1,5 @@ <?php return [ - 'view_ads' => 'Reklamlara göz at', + 'view_ads' => 'İlanlara göz at', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ar/setting.php b/addons/default/visiosoft/location-module/resources/lang/ar/setting.php index 46c416cec..ba95ff19d 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ar/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/ar/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'إخفاء عامل تصفية الموقع', ], + 'country_for_phone_field' => [ + 'name' => 'البلد الافتراضي لتسجيل حقل الهاتف' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/az/setting.php b/addons/default/visiosoft/location-module/resources/lang/az/setting.php index 908fdaeaa..513c4cd25 100644 --- a/addons/default/visiosoft/location-module/resources/lang/az/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/az/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Yer filtrini gizlət', ], + 'country_for_phone_field' => [ + 'name' => 'Telefon sahəsi üçün qeydiyyatdan keçmiş ölkə' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/bn/setting.php b/addons/default/visiosoft/location-module/resources/lang/bn/setting.php index 80ed5bd8c..00b0156ac 100644 --- a/addons/default/visiosoft/location-module/resources/lang/bn/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/bn/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'অবস্থান ফিল্টার লুকান', ], + 'country_for_phone_field' => [ + 'name' => 'রেজিস্টার ফোন ফিল্ডের জন্য ডিফল্ট দেশ' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/de/setting.php b/addons/default/visiosoft/location-module/resources/lang/de/setting.php index c07cc85d1..4eecbf26f 100644 --- a/addons/default/visiosoft/location-module/resources/lang/de/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/de/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Standortfilter ausblenden', ], + 'country_for_phone_field' => [ + 'name' => 'Standardland für das Feld "Telefon registrieren"' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/el/setting.php b/addons/default/visiosoft/location-module/resources/lang/el/setting.php index 6982015cf..f5f5de767 100644 --- a/addons/default/visiosoft/location-module/resources/lang/el/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/el/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Απόκρυψη φίλτρου τοποθεσίας', ], + 'country_for_phone_field' => [ + 'name' => 'Προεπιλεγμένη χώρα για εγγραφή πεδίου τηλεφώνου' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/es/setting.php b/addons/default/visiosoft/location-module/resources/lang/es/setting.php index cba0a41fd..8c9d151a1 100644 --- a/addons/default/visiosoft/location-module/resources/lang/es/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/es/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Ocultar filtro de ubicación', ], + 'country_for_phone_field' => [ + 'name' => 'País predeterminado para el campo de teléfono de registro' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/fa/setting.php b/addons/default/visiosoft/location-module/resources/lang/fa/setting.php index 030faba0a..1fda17655 100644 --- a/addons/default/visiosoft/location-module/resources/lang/fa/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/fa/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'فیلتر مکان را مخفی کنید', ], + 'country_for_phone_field' => [ + 'name' => 'کشور پیش فرض برای ثبت نام قسمت تلفن' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/fr/setting.php b/addons/default/visiosoft/location-module/resources/lang/fr/setting.php index 6f3097d01..855822da0 100644 --- a/addons/default/visiosoft/location-module/resources/lang/fr/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/fr/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Masquer le filtre de localisation', ], + 'country_for_phone_field' => [ + 'name' => 'Pays par défaut pour le champ de téléphone d\'enregistrement' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/he/setting.php b/addons/default/visiosoft/location-module/resources/lang/he/setting.php index 67bee08f4..69d19c3cc 100644 --- a/addons/default/visiosoft/location-module/resources/lang/he/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/he/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'הסתר מסנן מיקום', ], + 'country_for_phone_field' => [ + 'name' => 'מדינה ברירת מחדל לשדה טלפון רישום' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/hi/setting.php b/addons/default/visiosoft/location-module/resources/lang/hi/setting.php index 9f34d73fd..caf3346d0 100644 --- a/addons/default/visiosoft/location-module/resources/lang/hi/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/hi/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'स्थान फ़िल्टर छिपाएँ', ], + 'country_for_phone_field' => [ + 'name' => 'डिफ़ॉल्ट देश रजिस्टर फोन क्षेत्र के लिए' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/it/setting.php b/addons/default/visiosoft/location-module/resources/lang/it/setting.php index 4f3932431..95098365f 100644 --- a/addons/default/visiosoft/location-module/resources/lang/it/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/it/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Nascondi filtro posizione', ], + 'country_for_phone_field' => [ + 'name' => 'Paese predefinito per il campo del telefono di registrazione' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ja/setting.php b/addons/default/visiosoft/location-module/resources/lang/ja/setting.php index c5d1850af..90b738b2a 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ja/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/ja/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => '場所フィルターを非表示', ], + 'country_for_phone_field' => [ + 'name' => '電話登録フィールドのデフォルトの国' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ko/setting.php b/addons/default/visiosoft/location-module/resources/lang/ko/setting.php index 384ece314..d37762457 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ko/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/ko/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => '위치 필터 숨기기', ], + 'country_for_phone_field' => [ + 'name' => '전화 번호 등록 필드의 기본 국가' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/nl/setting.php b/addons/default/visiosoft/location-module/resources/lang/nl/setting.php index e40132984..974ca86fa 100644 --- a/addons/default/visiosoft/location-module/resources/lang/nl/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/nl/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Verberg locatiefilter', ], + 'country_for_phone_field' => [ + 'name' => 'Standaardland voor register telefoonveld' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/pl/setting.php b/addons/default/visiosoft/location-module/resources/lang/pl/setting.php index aaadbc034..1e8482f37 100644 --- a/addons/default/visiosoft/location-module/resources/lang/pl/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/pl/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Ukryj filtr lokalizacji', ], + 'country_for_phone_field' => [ + 'name' => 'Domyślny kraj dla pola numeru rejestracji' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/pt/setting.php b/addons/default/visiosoft/location-module/resources/lang/pt/setting.php index dedbb290e..035107b50 100644 --- a/addons/default/visiosoft/location-module/resources/lang/pt/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/pt/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Ocultar filtro de localização', ], + 'country_for_phone_field' => [ + 'name' => 'País padrão para campo de telefone de registro' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ro/setting.php b/addons/default/visiosoft/location-module/resources/lang/ro/setting.php index 295ed9238..26b2fabc0 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ro/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/ro/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Ascundeți filtrul de locație', ], + 'country_for_phone_field' => [ + 'name' => 'Țara implicită pentru câmpul de telefon al înregistrării' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ru/setting.php b/addons/default/visiosoft/location-module/resources/lang/ru/setting.php index 99c4ea4a9..eb3a75344 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ru/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/ru/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Скрыть фильтр местоположения', ], + 'country_for_phone_field' => [ + 'name' => 'Страна по умолчанию для поля регистрации телефона' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/sq/setting.php b/addons/default/visiosoft/location-module/resources/lang/sq/setting.php index 9703b8d3e..202cf53dd 100644 --- a/addons/default/visiosoft/location-module/resources/lang/sq/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/sq/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Fshih Filtrin e Vendndodhjes', ], + 'country_for_phone_field' => [ + 'name' => 'Vendi i paracaktuar për fushën e regjistrimit të telefonit' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/sv/setting.php b/addons/default/visiosoft/location-module/resources/lang/sv/setting.php index 2043691ab..5e5cca33f 100644 --- a/addons/default/visiosoft/location-module/resources/lang/sv/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/sv/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Dölj platsfilter', ], + 'country_for_phone_field' => [ + 'name' => 'Standardland för att registrera telefonfält' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/tr/setting.php b/addons/default/visiosoft/location-module/resources/lang/tr/setting.php index efd8c1bc7..eaaedeaac 100644 --- a/addons/default/visiosoft/location-module/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/tr/setting.php @@ -17,7 +17,7 @@ return [ 'name' => 'Varsayılan Ülke', ], 'create_ad_page_location' => [ - 'name' => 'Reklam Sayfası Konumu Oluşturun', + 'name' => 'İlan Sayfası Konumu Oluşturun', ], 'default_city' => [ 'name' => 'Varsayılan İl', @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Konum Filtresini Gizle', ], + 'country_for_phone_field' => [ + 'name' => 'Kayıtlı Telefon Alanı İçin Varsayılan Ülke' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/uk/setting.php b/addons/default/visiosoft/location-module/resources/lang/uk/setting.php index 70f89f2f7..46c6bb7c6 100644 --- a/addons/default/visiosoft/location-module/resources/lang/uk/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/uk/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Сховати фільтр місцеположення', ], + 'country_for_phone_field' => [ + 'name' => 'Країна за замовчуванням для телефонного поля реєстрації' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ur/setting.php b/addons/default/visiosoft/location-module/resources/lang/ur/setting.php index 2dcc964d9..aef8b0755 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ur/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/ur/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'لوکیشن فلٹر چھپائیں', ], + 'country_for_phone_field' => [ + 'name' => 'ڈیفالٹ کنٹری برائے رجسٹر فون فیلڈ' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/vi/setting.php b/addons/default/visiosoft/location-module/resources/lang/vi/setting.php index 9f51b6d10..541ddd58d 100644 --- a/addons/default/visiosoft/location-module/resources/lang/vi/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/vi/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Ẩn Bộ lọc Vị trí', ], + 'country_for_phone_field' => [ + 'name' => 'Quốc gia mặc định để đăng ký trường điện thoại' + ] ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/field.php b/addons/default/visiosoft/profile-module/resources/lang/ar/field.php index 06260197a..37a4db21c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'نوع السجل' ], + 'birthday' => [ + 'name' => 'عيد ميلاد' + ], 'identification_number' => [ 'name' => 'رقم الهوية' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/message.php b/addons/default/visiosoft/profile-module/resources/lang/ar/message.php index 6a32416c9..a0ce07369 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'لا يوجد عنوان أو غير مصرح له بالمشاهدة.', 'empty_password_sms_message' => 'نظرًا لمشاكل الأمان ، قمنا بتغيير كلمة المرور الخاصة بك! كلمة المرور الجديدة:', 'required_all' => "كل الحقول مطلوبة!", + 'can_not_remove_filled_fields' => "لا يمكنك إزالة الحقول المملوءة!", // Forgot Password 'email_phone_not_found' => 'البريد الإلكتروني ، رقم الهاتف غير صحيح!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/field.php b/addons/default/visiosoft/profile-module/resources/lang/az/field.php index bbe9d9d37..cf93cb6e5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Qeyd Növü' ], + 'birthday' => [ + 'name' => 'Ad günü' + ], 'identification_number' => [ 'name' => 'İdentifikasiya nömrəsi' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/message.php b/addons/default/visiosoft/profile-module/resources/lang/az/message.php index 2228931ed..718772fca 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Heç bir ünvan və ya görmək icazəsi yoxdur.', 'empty_password_sms_message' => 'Təhlükəsizlik problemləri ilə əlaqədar olaraq şifrənizi dəyişdirdik! Yeni parolunuz:', 'required_all' => "Bütün sahə tələb olunur!", + 'can_not_remove_filled_fields' => "Doldurulmuş sahələri silə bilməzsiniz!", // Forgot Password 'email_phone_not_found' => 'Elektron poçt, telefon nömrəsi düzgün deyil!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/field.php b/addons/default/visiosoft/profile-module/resources/lang/bn/field.php index 330265a88..b8c537e52 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'রেজিস্টার প্রকার' ], + 'birthday' => [ + 'name' => 'জন্মদিন' + ], 'identification_number' => [ 'name' => 'সনাক্তকরণ নম্বর' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/message.php b/addons/default/visiosoft/profile-module/resources/lang/bn/message.php index eccc91049..7faa1c7e9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'কোনও ঠিকানা নেই বা দেখার অনুমতি নেই।', 'empty_password_sms_message' => 'সুরক্ষা সমস্যার কারণে আমরা আপনার পাসওয়ার্ড পরিবর্তন করেছি! আপনার নতুন পাসওয়ার্ডটি হ\'ল:', 'required_all' => "সমস্ত ক্ষেত্র প্রয়োজন!", + 'can_not_remove_filled_fields' => "আপনি ভরাট ক্ষেত্র সরাতে পারবেন না!", // Forgot Password 'email_phone_not_found' => 'ই-মেইল, ফোন নম্বর ঠিক নয়!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/field.php b/addons/default/visiosoft/profile-module/resources/lang/de/field.php index a5ebc6e2c..a6dfa642e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Registertyp' ], + 'birthday' => [ + 'name' => 'Geburtstag' + ], 'identification_number' => [ 'name' => 'Identifikationsnummer' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/message.php b/addons/default/visiosoft/profile-module/resources/lang/de/message.php index 2ab48b44b..026edd871 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/message.php @@ -29,6 +29,7 @@ return [ 'ajax_address_error' => 'Keine Adresse oder nicht zum Anzeigen berechtigt.', 'empty_password_sms_message' => 'Aus Sicherheitsgründen haben wir Ihr Passwort geändert! Dein neues Passwort ist:', 'required_all' => "Alle Felder sind erforderlich!", + 'can_not_remove_filled_fields' => "Sie können gefüllte Felder nicht entfernen!", // Forgot Password 'email_phone_not_found' => 'Die E-Mail, Telefonnummer ist nicht korrekt!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/field.php b/addons/default/visiosoft/profile-module/resources/lang/el/field.php index 2212a1263..121d527c0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Τύπος μητρώου' ], + 'birthday' => [ + 'name' => 'Γενέθλια' + ], 'identification_number' => [ 'name' => 'Αριθμός αναγνώρισης' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/message.php b/addons/default/visiosoft/profile-module/resources/lang/el/message.php index 56af6606b..5c6449ed7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/message.php @@ -29,6 +29,7 @@ return [ 'ajax_address_error' => 'Καμία διεύθυνση ή μη εξουσιοδοτημένη προβολή.', 'empty_password_sms_message' => 'Λόγω προβλημάτων ασφαλείας, αλλάξαμε τον κωδικό πρόσβασής σας! Ο νέος κωδικός πρόσβασής σας είναι:', 'required_all' => "Απαιτείται όλο το πεδίο!", + 'can_not_remove_filled_fields' => "Δεν μπορείτε να καταργήσετε τα γεμάτα πεδία!", // Forgot Password 'email_phone_not_found' => 'Το E-mail, ο αριθμός τηλεφώνου δεν είναι σωστός!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/field.php b/addons/default/visiosoft/profile-module/resources/lang/es/field.php index 59afc16df..bfc6832a5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Tipo de registro' ], + 'birthday' => [ + 'name' => 'Cumpleaños' + ], 'identification_number' => [ 'name' => 'Número de identificación' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/message.php b/addons/default/visiosoft/profile-module/resources/lang/es/message.php index 7ee667ddf..efb500a35 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/message.php @@ -29,6 +29,7 @@ return [ 'ajax_address_error' => 'Sin dirección o sin autorización para ver.', 'empty_password_sms_message' => '¡Debido a problemas de seguridad, cambiamos su contraseña! Tu nueva contraseña es:', 'required_all' => "¡Todo el campo es obligatorio!", + 'can_not_remove_filled_fields' => "¡No puedes eliminar los campos llenos!", // Forgot Password 'email_phone_not_found' => 'El correo electrónico, número de teléfono no es correcto!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/field.php b/addons/default/visiosoft/profile-module/resources/lang/fa/field.php index ebb7805f3..386414b7e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'نوع ثبت نام' ], + 'birthday' => [ + 'name' => 'روز تولد' + ], 'identification_number' => [ 'name' => 'شماره شناسایی' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/message.php b/addons/default/visiosoft/profile-module/resources/lang/fa/message.php index f0c90c6a3..c43ae6c18 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'هیچ آدرس و یا مجاز به مشاهده نیست.', 'empty_password_sms_message' => 'به دلیل مشکلات امنیتی رمز عبور شما را تغییر دادیم! گذرواژه جدید شما این است:', 'required_all' => "همه زمینه لازم است!", + 'can_not_remove_filled_fields' => "شما نمی توانید زمینه های پر شده را حذف کنید!", // Forgot Password 'email_phone_not_found' => 'ایمیل ، شماره تلفن صحیح نیست!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/field.php b/addons/default/visiosoft/profile-module/resources/lang/fr/field.php index db342a737..333268bc7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Type de registre' ], + 'birthday' => [ + 'name' => 'Anniversaire' + ], 'identification_number' => [ 'name' => 'Numéro d\\'identification' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/message.php b/addons/default/visiosoft/profile-module/resources/lang/fr/message.php index 6c114ed4b..6d6d43389 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/message.php @@ -29,6 +29,7 @@ return [ 'ajax_address_error' => 'Aucune adresse ou non autorisé à voir.', 'empty_password_sms_message' => 'En raison de problèmes de sécurité, nous avons changé votre mot de passe! Votre nouveau mot de passe est:', 'required_all' => "Tous les champs sont obligatoires!", + 'can_not_remove_filled_fields' => "Vous ne pouvez pas supprimer les champs remplis!", // Forgot Password 'email_phone_not_found' => 'L\'e-mail, le numéro de téléphone n\'est pas correct!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/field.php b/addons/default/visiosoft/profile-module/resources/lang/he/field.php index 11f643910..a565b9804 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'סוג הרשמה' ], + 'birthday' => [ + 'name' => 'יום הולדת' + ], 'identification_number' => [ 'name' => 'מספר זיהוי' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/message.php b/addons/default/visiosoft/profile-module/resources/lang/he/message.php index f619d2074..831282291 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'אין כתובת או לא מורשה להציג.', 'empty_password_sms_message' => 'בגלל בעיות אבטחה, שינינו את הסיסמא שלך! הסיסמה החדשה שלך היא:', 'required_all' => "כל השדה נדרש!", + 'can_not_remove_filled_fields' => "אינך יכול להסיר שדות מלאים!", // Forgot Password 'email_phone_not_found' => 'הדואר האלקטרוני, מספר הטלפון אינו תקין!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/field.php b/addons/default/visiosoft/profile-module/resources/lang/hi/field.php index 952b5e8a3..50931b04d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'रजिस्टर प्रकार' ], + 'birthday' => [ + 'name' => 'जन्मदिन' + ], 'identification_number' => [ 'name' => 'पहचान संख्या' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/message.php b/addons/default/visiosoft/profile-module/resources/lang/hi/message.php index 1c8a9086f..c16b451c5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'कोई पता या देखने के लिए अधिकृत नहीं है।', 'empty_password_sms_message' => 'सुरक्षा समस्याओं के कारण, हमने आपका पासवर्ड बदल दिया है! आपका नया पासवर्ड है:', 'required_all' => "सभी फ़ील्ड आवश्यक है!", + 'can_not_remove_filled_fields' => "आप भरे हुए खेतों को नहीं हटा सकते हैं!", // Forgot Password 'email_phone_not_found' => 'ई-मेल, फोन नंबर सही नहीं है!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/field.php b/addons/default/visiosoft/profile-module/resources/lang/it/field.php index 21c9d7e35..09934961b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Tipo di registro' ], + 'birthday' => [ + 'name' => 'Compleanno' + ], 'identification_number' => [ 'name' => 'Numero identificativo' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/message.php b/addons/default/visiosoft/profile-module/resources/lang/it/message.php index 9f94f247e..e41aeab35 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/message.php @@ -29,6 +29,7 @@ return [ 'ajax_address_error' => 'Nessun indirizzo o non autorizzato a visualizzare.', 'empty_password_sms_message' => 'Per problemi di sicurezza, abbiamo cambiato la tua password! La tua nuova password è:', 'required_all' => "Tutti i campi sono obbligatori!", + 'can_not_remove_filled_fields' => "Non puoi rimuovere i campi compilati!", // Forgot Password 'email_phone_not_found' => 'L\'e-mail, il numero di telefono non è corretto!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/field.php b/addons/default/visiosoft/profile-module/resources/lang/ja/field.php index ac91892ea..480340bba 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => '登録タイプ' ], + 'birthday' => [ + 'name' => 'お誕生日' + ], 'identification_number' => [ 'name' => '識別番号' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/message.php b/addons/default/visiosoft/profile-module/resources/lang/ja/message.php index 914a5e122..d9f2c769e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => '住所がないか、表示する権限がありません。', 'empty_password_sms_message' => 'セキュリティ上の問題により、パスワードを変更しました!新しいパスワードは:', 'required_all' => "すべてのフィールドが必要です!", + 'can_not_remove_filled_fields' => "塗りつぶされたフィールドは削除できません!", // Forgot Password 'email_phone_not_found' => 'メール、電話番号が違います!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/field.php b/addons/default/visiosoft/profile-module/resources/lang/ko/field.php index 773c78dce..e5bc74744 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => '등록 유형' ], + 'birthday' => [ + 'name' => '생신' + ], 'identification_number' => [ 'name' => '식별 번호' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/message.php b/addons/default/visiosoft/profile-module/resources/lang/ko/message.php index 118e4327d..0981f167b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => '주소가 없거나 볼 권한이 없습니다.', 'empty_password_sms_message' => '보안 문제로 인해 비밀번호가 변경되었습니다. 새 비밀번호는 다음과 같습니다.', 'required_all' => "모든 필드는 필수입니다!", + 'can_not_remove_filled_fields' => "채워진 필드를 제거 할 수 없습니다!", // Forgot Password 'email_phone_not_found' => '이메일, 전화 번호가 올바르지 않습니다!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/field.php b/addons/default/visiosoft/profile-module/resources/lang/nl/field.php index 10d14ac4b..366fb9158 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Type register' ], + 'birthday' => [ + 'name' => 'Verjaardag' + ], 'identification_number' => [ 'name' => 'Identificatie Nummer' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/message.php b/addons/default/visiosoft/profile-module/resources/lang/nl/message.php index 906ed3b30..86b307c49 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Geen adres of niet geautoriseerd om te bekijken.', 'empty_password_sms_message' => 'Vanwege beveiligingsproblemen hebben we uw wachtwoord gewijzigd! Je nieuwe wachtwoord is:', 'required_all' => "Alle velden zijn vereist!", + 'can_not_remove_filled_fields' => "U kunt geen ingevulde velden verwijderen!", // Forgot Password 'email_phone_not_found' => 'Het e-mailadres, telefoonnummer is niet correct!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/field.php b/addons/default/visiosoft/profile-module/resources/lang/pl/field.php index 29b51337c..7ea14b05c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Typ rejestru' ], + 'birthday' => [ + 'name' => 'Urodziny' + ], 'identification_number' => [ 'name' => 'Numer identyfikacyjny' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/message.php b/addons/default/visiosoft/profile-module/resources/lang/pl/message.php index ee42e0a49..982b4c085 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Brak adresu lub brak uprawnień do przeglądania.', 'empty_password_sms_message' => 'Ze względów bezpieczeństwa zmieniliśmy twoje hasło! Twoje nowe hasło to:', 'required_all' => "Wszystkie pola są wymagane!", + 'can_not_remove_filled_fields' => "Nie możesz usunąć wypełnionych pól!", // Forgot Password 'email_phone_not_found' => 'Adres e-mail, numer telefonu jest nieprawidłowy!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/field.php b/addons/default/visiosoft/profile-module/resources/lang/pt/field.php index 670041b11..3eecb6c9f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Tipo de registro' ], + 'birthday' => [ + 'name' => 'Aniversário' + ], 'identification_number' => [ 'name' => 'Número de identificação' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/message.php b/addons/default/visiosoft/profile-module/resources/lang/pt/message.php index 3d2f57b67..025a7949a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/message.php @@ -31,6 +31,7 @@ return [ 'ajax_address_error' => 'Nenhum endereço ou não está autorizado a visualizar.', 'empty_password_sms_message' => 'Devido a problemas de segurança, alteramos sua senha! Sua nova senha é:', 'required_all' => "Todo o campo é obrigatório!", + 'can_not_remove_filled_fields' => "Você não pode remover os campos preenchidos!", // Forgot Password 'email_phone_not_found' => 'O e-mail, número de telefone não está correto!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/field.php b/addons/default/visiosoft/profile-module/resources/lang/ro/field.php index e37ca927d..586452d10 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Tip de înregistrare' ], + 'birthday' => [ + 'name' => 'Zi de nastere' + ], 'identification_number' => [ 'name' => 'Numar de identificare' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/message.php b/addons/default/visiosoft/profile-module/resources/lang/ro/message.php index 83347bf85..34702bc7a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Nicio adresă sau nu este autorizată să vizualizeze.', 'empty_password_sms_message' => 'Din cauza problemelor de securitate, v-am schimbat parola! Noua dvs. parolă este:', 'required_all' => "Tot câmpul este obligatoriu!", + 'can_not_remove_filled_fields' => "Nu puteți elimina câmpurile umplute!", // Forgot Password 'email_phone_not_found' => 'E-mailul, numărul de telefon nu este corect!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/field.php b/addons/default/visiosoft/profile-module/resources/lang/ru/field.php index 14810a8c9..5b04cb53d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Тип регистрации' ], + 'birthday' => [ + 'name' => 'День рождения' + ], 'identification_number' => [ 'name' => 'Идентификационный номер' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/message.php b/addons/default/visiosoft/profile-module/resources/lang/ru/message.php index 3ce635297..473d42daf 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/message.php @@ -31,6 +31,7 @@ return [ 'ajax_address_error' => 'Нет адреса или не авторизован для просмотра.', 'empty_password_sms_message' => 'Из-за проблем безопасности мы изменили ваш пароль! Ваш новый пароль:', 'required_all' => "Все поля обязательны для заполнения!", + 'can_not_remove_filled_fields' => "Заполненные поля удалить нельзя!", // Forgot Password 'email_phone_not_found' => 'E-mail, номер телефона неверен!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/field.php b/addons/default/visiosoft/profile-module/resources/lang/sq/field.php index f0c632930..9d4e84e43 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Tipi i regjistrimit' ], + 'birthday' => [ + 'name' => 'Ditëlindja' + ], 'identification_number' => [ 'name' => 'Numrin e identifikimit' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/message.php b/addons/default/visiosoft/profile-module/resources/lang/sq/message.php index 16dc3cee2..d8cdd5aae 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Asnjë adresë ose jo e autorizuar për të parë.', 'empty_password_sms_message' => 'Për shkak të çështjeve të sigurisë, ne ndryshuam fjalëkalimin tuaj! Fjalëkalimi juaj i ri është:', 'required_all' => "Kërkohet e gjithë fusha!", + 'can_not_remove_filled_fields' => "Ju nuk mund të hiqni fushat e mbushura!", // Forgot Password 'email_phone_not_found' => 'E-maili, numri i telefonit nuk është i saktë!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/field.php b/addons/default/visiosoft/profile-module/resources/lang/sv/field.php index 28bfa9638..64ebdf25d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Registreringstyp' ], + 'birthday' => [ + 'name' => 'Födelsedag' + ], 'identification_number' => [ 'name' => 'Identifieringsnummer' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/message.php b/addons/default/visiosoft/profile-module/resources/lang/sv/message.php index c20f75d1a..ff42328d8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Ingen adress eller inte behörig att visa.', 'empty_password_sms_message' => 'På grund av säkerhetsproblem har vi ändrat ditt lösenord! Ditt nya lösenord är:', 'required_all' => "Allt fält krävs!", + 'can_not_remove_filled_fields' => "Du kan inte ta bort fyllda fält!", // Forgot Password 'email_phone_not_found' => 'E-post, telefonnummer är inte korrekt!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/field.php b/addons/default/visiosoft/profile-module/resources/lang/tr/field.php index fd2610675..54c038dca 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Üyelik Tipi' ], + 'birthday' => [ + 'name' => 'Doğum günü' + ], 'identification_number' => [ 'name' => 'Kimlik Numarası' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/message.php b/addons/default/visiosoft/profile-module/resources/lang/tr/message.php index 68aed29b7..0dd4f3d0e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/message.php @@ -13,7 +13,7 @@ return [ "login_info_old_user" => "E-posta adresinize yeni bir şifre gönderildi.", "success" => "İşlem Başarılı", "notified_new_updates" => "Yeni güncellemelerden haberdar olmak istiyorum", - "notified_about_ads" => "Reklamlarım hakkında bildirimlere izin ver", + "notified_about_ads" => "İlanlarım hakkında bildirimlere izin ver", "receive_messages_email" => "Mesajları e-posta olarak almak istiyorum", "no_packages_module" => "Paket Modülü Bulunamadı!", "required_add"=> "Lütfen gerekli tüm satırları doldurun.", @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Adres yok veya görüntüleme yetkiniz bulunmamaktadır.', 'empty_password_sms_message' => 'Güvenlik sorunları nedeniyle şifrenizi değiştirdik! Yeni parolanız:', 'required_all' => "Tüm Alanlar Zorunludur!", + 'can_not_remove_filled_fields' => "Doldurulmuş alanları kaldıramazsınız!", // Forgot Password 'email_phone_not_found' => 'E-posta, Telefon Numarası doğru değil!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/field.php b/addons/default/visiosoft/profile-module/resources/lang/uk/field.php index d81046cbf..c48fb8e9f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Тип реєстру' ], + 'birthday' => [ + 'name' => 'День народження' + ], 'identification_number' => [ 'name' => 'Ідентифікаційний номер' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/message.php b/addons/default/visiosoft/profile-module/resources/lang/uk/message.php index 61a7c1b44..39de4a60c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Немає адреси або не має права перегляду.', 'empty_password_sms_message' => 'Через проблеми безпеки ми змінили ваш пароль! Ваш новий пароль:', 'required_all' => "Поле обов'язкове!", + 'can_not_remove_filled_fields' => "Ви не можете видалити заповнені поля!", // Forgot Password 'email_phone_not_found' => 'Неправильний електронний лист, номер телефону!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/field.php b/addons/default/visiosoft/profile-module/resources/lang/ur/field.php index 31f5216b5..5ccf5245b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'رجسٹر کی قسم' ], + 'birthday' => [ + 'name' => 'Birthday' + ], 'identification_number' => [ 'name' => 'شناختی نمبر' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/message.php b/addons/default/visiosoft/profile-module/resources/lang/ur/message.php index 79fdc2703..ec3e56351 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'کوئی پتہ اور نہ ہی دیکھنے کا اختیار ہے۔', 'empty_password_sms_message' => 'سیکیورٹی کے مسائل کی وجہ سے ، ہم نے آپ کا پاس ورڈ تبدیل کردیا! آپ کا نیا پاس ورڈ یہ ہے:', 'required_all' => "تمام فیلڈ کی ضرورت ہے!", + 'can_not_remove_filled_fields' => "آپ بھرے کھیتوں کو نہیں ہٹا سکتے!", // Forgot Password 'email_phone_not_found' => 'ای میل ، فون نمبر درست نہیں ہے!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/field.php b/addons/default/visiosoft/profile-module/resources/lang/vi/field.php index ed2e4c01a..b5a5101ac 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Đăng ký loại' ], + 'birthday' => [ + 'name' => 'Sinh nhật' + ], 'identification_number' => [ 'name' => 'Mã số' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/message.php b/addons/default/visiosoft/profile-module/resources/lang/vi/message.php index 34e932c10..481efc259 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Không có địa chỉ hoặc không được phép xem.', 'empty_password_sms_message' => 'Do vấn đề bảo mật, chúng tôi đã thay đổi mật khẩu của bạn! Mật khẩu mới của bạn là:', 'required_all' => "Tất cả các lĩnh vực là bắt buộc!", + 'can_not_remove_filled_fields' => "Bạn không thể loại bỏ các trường đã điền!", // Forgot Password 'email_phone_not_found' => 'E-mail, số điện thoại không chính xác!', From 821bcd4cc81621168df649c12c9778cf3c6a5944 Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Wed, 21 Oct 2020 15:40:50 +0300 Subject: [PATCH 15/25] #2342 [seo-module] Create --- .../src/Http/Controller/advsController.php | 69 +++++++++++-------- .../src/Category/CategoryRepository.php | 2 +- 2 files changed, 40 insertions(+), 31 deletions(-) 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 969f80a16..8c8a3b8a1 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -254,15 +254,6 @@ class AdvsController extends PublicController if ($categoryId) { - $seo_keywords = $this->category_model->getMeta_keywords($categoryId->id); - $seo_description = $this->category_model->getMeta_description($categoryId->id); - $seo_title = $this->category_model->getMeta_title($categoryId->id); - - $this->template->set('og_description', $seo_description); - $this->template->set('meta_description', $seo_description); - $this->template->set('meta_title', $seo_title); - $this->template->set('meta_keywords', implode(', ', $seo_keywords)); - $mainCats = $this->category_model->getMains($categoryId->id); $current_cat = $this->category_model->getCat($categoryId->id); $mainCats[] = [ @@ -369,13 +360,36 @@ class AdvsController extends PublicController $viewType = $this->requestHttp->cookie('viewType'); - $catText = ''; - if (!$allCats) { - if (count($mainCats) == 1 || count($mainCats) == 2) { + list('catText' => $catText, 'user' => $user) = $this->handleSeo($categoryId, $mainCats, $cityId); + + $compact = compact('advs', 'countries', 'mainCats', 'subCats', 'checkboxes', 'param', + 'user', 'featured_advs', 'viewType', 'topfields', 'selectDropdown', 'selectRange', 'selectImage', 'ranges', + 'seenList', 'radio', 'categoryId', 'cityId', 'allCats', 'catText', 'cFArray'); + + return $this->viewTypeBasedRedirect($viewType, $compact); + } + + private function handleSeo($category, $mainCats, $city) + { + $showTitle = true; + $metaTitle = ''; + + if ($category) { + $seo_keywords = $this->category_model->getMeta_keywords($category->id); + $seo_description = $this->category_model->getMeta_description($category->id); + $seo_title = $this->category_model->getMeta_title($category->id); + + $this->template->set('og_description', $seo_description); + $this->template->set('meta_description', $seo_description); + $this->template->set('meta_keywords', implode(', ', $seo_keywords)); + + $catText = ''; + if ($city) { + $catText = "$city->name $catText"; + } elseif (count($mainCats) == 1 || count($mainCats) == 2) { $catText = end($mainCats)['val']; } elseif (count($mainCats) > 2) { $catArray = array_slice($mainCats, 2); - $catText = ''; $loop = 0; foreach ($catArray as $cat) { $catText = !$loop ? $catText . $cat['val'] : $catText . ' ' . $cat['val']; @@ -383,34 +397,29 @@ class AdvsController extends PublicController } } - if ($cityId) { - $catText = "$cityId->name $catText"; - } - - $this->template->set('showTitle', false); - $this->template->set('meta_title', $catText); + $showTitle = false; + $metaTitle = $catText ?: $seo_title; } $user = null; - if (!empty($param['user'])) { - $user = $this->userRepository->find($param['user']); - $this->template->set('showTitle', false); - $this->template->set('meta_title', $user->name() . ' ' . trans('visiosoft.module.advs::field.ads')); + if (\request()->user) { + $user = $this->userRepository->find(\request()->user); + $showTitle = false; + $metaTitle = $user->name() . ' ' . trans('visiosoft.module.advs::field.ads'); } + $this->template->set('showTitle', $showTitle); + $this->template->set('meta_title', $metaTitle); + // Set rel="canonical" - if (array_key_exists('sort_by', $param) || array_key_exists('doping', $param)) { - $canonParam = $param; + if (\request()->sort_by || \request()->doping) { + $canonParam = \request()->all(); unset($canonParam['sort_by'], $canonParam['doping']); $canonUrl = fullLink($canonParam, \request()->url()); $this->template->set('additional_meta', "<link rel='canonical' href='$canonUrl'/>"); } - $compact = compact('advs', 'countries', 'mainCats', 'subCats', 'checkboxes', 'param', - 'user', 'featured_advs', 'viewType', 'topfields', 'selectDropdown', 'selectRange', 'selectImage', 'ranges', - 'seenList', 'radio', 'categoryId', 'cityId', 'allCats', 'catText', 'cFArray'); - - return $this->viewTypeBasedRedirect($viewType, $compact); + return compact('catText', 'user'); } public function viewTypeBasedRedirect($viewType, $compact) diff --git a/addons/default/visiosoft/cats-module/src/Category/CategoryRepository.php b/addons/default/visiosoft/cats-module/src/Category/CategoryRepository.php index 3f7995a8b..d92229ef1 100644 --- a/addons/default/visiosoft/cats-module/src/Category/CategoryRepository.php +++ b/addons/default/visiosoft/cats-module/src/Category/CategoryRepository.php @@ -35,7 +35,7 @@ class CategoryRepository extends EntryRepository implements CategoryRepositoryIn public function mainCats() { - return $this->model->where('parent_category_id', null)->where('deleted_at', null)->orderBy('sort_order')->get(); + return $this->model->where('parent_category_id', null)->orderBy('sort_order')->get(); } public function getItem($cat) From 161977ef08c9f5b9944b80a8534853dc0c2e2e93 Mon Sep 17 00:00:00 2001 From: Muammer Top <muammer@visiosoft.com.tr> Date: Wed, 21 Oct 2020 17:12:01 +0300 Subject: [PATCH 16/25] #2438 standard price always 0 fixed --- .../resources/views/new-ad/new-create.twig | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) 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 4ccfbcfda..bd3a7c660 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 @@ -58,33 +58,33 @@ {{ form.fields.slug|raw }} </div> </div> - <div class="col-12 standard-price-hidden d-none"> - {{ form.fields.standard_price.setAttributes({ - 'required' :true, - }).input|raw }} - </div> + {% if setting_value('visiosoft.module.advs::market_place') %} {{ addBlock('new-ad/fields', {'adv': adv})|raw }} - - <div class="row form-group select-price{{ setting_value('visiosoft.module.advs::hide_standard_price_field') ? ' d-none' }}"> - <label class="col-sm-2 col-xs-12"> - {{ form.fields.standard_price.label|raw }} - <span class="required">*</span> - </label> - - {% set standardPriceValue = form.fields.standard_price.value|split('.') %} - <div class="col-8 pr-0 col-md-3"> - <input class="form-control standard-price-field whole-price" - value="{{ standardPriceValue|first }}"> - </div> - <div class="col-4 col-md-1"> - <input class="form-control standard-price-decimal-field decimal-price" - placeholder="00" maxlength="2" - value="{{ standardPriceValue[1] }}"> - </div> - </div> {% endif %} - + <div class="row form-group select-price + {{ setting_value('visiosoft.module.advs::hide_standard_price_field') ? ' d-none' }} + {{ setting_value('visiosoft.module.advs::market_place') != true ? 'd-none' }}"> + <label class="col-sm-2 col-xs-12"> + {{ form.fields.standard_price.label|raw }} + <span class="required">*</span> + </label> + <div class="col-12 standard-price-hidden d-none"> + {{ form.fields.standard_price.setAttributes({ + 'required' :true + }).input|raw }} + </div> + {% set standardPriceValue = form.fields.standard_price.value|split('.') %} + <div class="col-8 pr-0 col-md-3"> + <input class="form-control standard-price-field whole-price" + value="{{ standardPriceValue|first }}"> + </div> + <div class="col-4 col-md-1"> + <input class="form-control standard-price-decimal-field decimal-price" + placeholder="00" maxlength="2" + value="{{ standardPriceValue[1] }}"> + </div> + </div> <div class="row form-group select-price"> <label class="col-sm-2 col-xs-12"> From b60004ae1548574b03fd89b77ed05a51a3854225 Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Wed, 21 Oct 2020 18:01:21 +0300 Subject: [PATCH 17/25] =?UTF-8?q?#2436=20Ad=20post=20"L=C3=BCtfen=20Paket?= =?UTF-8?q?=20Sat=C4=B1n=20Al=C4=B1n!"=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- addons/default/visiosoft/advs-module/src/Adv/AdvModel.php | 4 ++-- .../advs-module/src/Http/Controller/advsController.php | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php b/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php index bf879d2ad..e48dab82a 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php +++ b/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php @@ -67,9 +67,9 @@ class AdvModel extends AdvsAdvsEntryModel implements AdvInterface return $query->where('advs_advs.slug', '!=', ""); } - public function userAdv($nullable_ad = false) + public function userAdv($nullable_ad = false, $checkRole = true) { - if (Auth::user()->hasRole('admin')) { + if (Auth::user()->hasRole('admin') && $checkRole) { return $this->getAdv(null, $nullable_ad); } else { return $this->getAdv(null, $nullable_ad) 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 710bbbbce..788713470 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -667,8 +667,7 @@ class AdvsController extends PublicController CategoryRepositoryInterface $categoryRepository, Dispatcher $events, AdvModel $advModel, - AdressRepositoryInterface $address, - CategoryModel $categoryModel + AdressRepositoryInterface $address ) { if (!Auth::user()) { @@ -693,10 +692,10 @@ class AdvsController extends PublicController if ($advModel->is_enabled('packages') and $adv->slug == "") { $cat = app('Visiosoft\PackagesModule\Http\Controller\PackageFEController')->AdLimitForNewAd($request); if (!is_null($cat)) { - if (is_array($cat) && array_key_exists('allowPendingAds', $cat)) { + if (array_key_exists('allowPendingAds', $cat)) { $allowPendingAdCreation = $cat['allowPendingAds']; } else { - return redirect('/'); + return redirect($cat['redirect']); } } } From ab1791f10a3fa42cde5b257441f475c31961a267 Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Wed, 21 Oct 2020 18:04:45 +0300 Subject: [PATCH 18/25] fix --- .../advs-module/src/Http/Controller/advsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 788713470..62c5af4da 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -373,6 +373,7 @@ class AdvsController extends PublicController { $showTitle = true; $metaTitle = ''; + $catText = ''; if ($category) { $seo_keywords = $this->category_model->getMeta_keywords($category->id); @@ -383,7 +384,6 @@ class AdvsController extends PublicController $this->template->set('meta_description', $seo_description); $this->template->set('meta_keywords', implode(', ', $seo_keywords)); - $catText = ''; if ($city) { $catText = "$city->name $catText"; } elseif (count($mainCats) == 1 || count($mainCats) == 2) { From 2a0ed75c9d993691a3e1b9fa9d735d3e60b2694c Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Thu, 22 Oct 2020 09:53:58 +0300 Subject: [PATCH 19/25] #2445 When auto approve is closed, the owner can't see his ad --- .../advs-module/src/Http/Controller/advsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 62c5af4da..5604faefe 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -450,7 +450,7 @@ class AdvsController extends PublicController $adv = $this->adv_repository->getListItemAdv($id); - if ($adv && !$adv->expired()) { + if ($adv && (!$adv->expired()) || $adv->created_by_id === \auth()->id()) { if ($this->adv_model->is_enabled('complaints')) { $complaints = ComplaintsComplainTypesEntryModel::all(); From 06cab5b2033c27bc460a7c32b0e03ee7f38c35d8 Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Thu, 22 Oct 2020 09:56:02 +0300 Subject: [PATCH 20/25] #2445 When auto approve is closed, the owner can't see his ad --- .../advs-module/src/Http/Controller/advsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 5604faefe..db7d0b52d 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -450,7 +450,7 @@ class AdvsController extends PublicController $adv = $this->adv_repository->getListItemAdv($id); - if ($adv && (!$adv->expired()) || $adv->created_by_id === \auth()->id()) { + if ($adv && (!$adv->expired() || $adv->created_by_id === \auth()->id())) { if ($this->adv_model->is_enabled('complaints')) { $complaints = ComplaintsComplainTypesEntryModel::all(); From 187bc7bb933fd63ac2a27abe0fcde6cc26cfb374 Mon Sep 17 00:00:00 2001 From: vedatakd <vedat@vebze.com> Date: Thu, 22 Oct 2020 17:23:58 +0300 Subject: [PATCH 21/25] fixed message --- .../profile-module/src/Profile/Profile/ProfileFormHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php index f98368903..aae2f88f6 100644 --- a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php +++ b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php @@ -36,7 +36,7 @@ class ProfileFormHandler // Prevent removing already filled fields foreach ($parameters as $field => $value) { if ($user->$field && !$value) { - $messages->error('visiosoft.module.profile::message.can_not_changed_filled_fields'); + $messages->error('visiosoft.module.profile::message.can_not_remove_filled_fields'); return; } } From 508e0ab15d8cc3ce0ff58a60ce069c75edd18f5e Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Fri, 23 Oct 2020 10:46:01 +0300 Subject: [PATCH 22/25] #2450 store module (e-madencilik) improvments --- .../advs-module/src/Adv/AdvModel.php | 8 ++ .../src/Adv/Contract/AdvInterface.php | 76 +++++++++++++++++++ 2 files changed, 84 insertions(+) diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php b/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php index e48dab82a..4ca026c95 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php +++ b/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php @@ -13,6 +13,7 @@ use Visiosoft\LocationModule\Country\CountryModel; use Visiosoft\CartsModule\Cart\Command\GetCart; use Visiosoft\LocationModule\District\DistrictModel; use Visiosoft\LocationModule\Neighborhood\NeighborhoodModel; +use Visiosoft\LocationModule\Village\VillageModel; class AdvModel extends AdvsAdvsEntryModel implements AdvInterface { @@ -373,6 +374,13 @@ class AdvModel extends AdvsAdvsEntryModel implements AdvInterface return $neighborhood ? $neighborhood->name : false; } + public function getVillage() + { + $villageModel = new VillageModel(); + $village = $villageModel->newQuery()->find($this->village); + return $village ? $village->name : false; + } + public function expired() { return $this->finish_at ? $this->finish_at < Carbon::now() : true; diff --git a/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvInterface.php b/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvInterface.php index a9cb314fd..586b7a94a 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvInterface.php +++ b/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvInterface.php @@ -4,5 +4,81 @@ use Anomaly\Streams\Platform\Entry\Contract\EntryInterface; interface AdvInterface extends EntryInterface { + public function is_enabled($slug); + + public function is_enabled_extension($slug); + + public function is_active($id); + + public function getAdv($id = null, $nullable_ad = false, $trashed = false); + + public function userAdv($nullable_ad = false, $checkRole = true); + + public function getAdvByCat($cat_id); + + public function pendingAdvsByUser(); + + public function favsAdvsByUser($fav_ids); + + public function myAdvsByUser(); + + public function foreignCurrency($currency, $price, $isUpdate, $settings); + + public function popularAdvs(); + + public function advsofDay(); + + public function statusAds($id, $status); + + public function finish_at_Ads($id, $endDate); + + public function publish_at_Ads($id); + + public function getLastUserAdv(); + + public function getLocationNames($advs); + + public function isAdv($id); + + public function addCart($item, $quantity = 1, $name = null); + + public function getAdvDetailLinkByModel($object, $type = null); + + public function getAdvDetailLinkByAdId($id); + + public function getAdvimage($id); + + public function getLatestField($slug); + + public function updateStock($id, $quantity); + + public function stockControl($id, $quantity); + + public function saveCustomField($category_id, $field_id, $name); + + public function customfields(); + + public function priceFormat($adv); + + public function AddAdsDefaultCoverImage($ad); + + public function GetAdsDefaultCoverImageByAdId($id); + + public function viewed_Ad($id); + + public function getRecommended($id); + + public function authControl(); + + public function inStock(); + + public function getCity(); + + public function getDistrict(); + + public function getNeighborhood(); + + public function getVillage(); + public function expired(); } From 3f22510051aa1217c67a99b3090dfdd6f85226bf Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Fri, 23 Oct 2020 10:55:32 +0300 Subject: [PATCH 23/25] add repo --- addons/default/visiosoft/advs-module/src/Adv/AdvModel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php b/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php index 4ca026c95..41949da7a 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php +++ b/addons/default/visiosoft/advs-module/src/Adv/AdvModel.php @@ -13,6 +13,7 @@ use Visiosoft\LocationModule\Country\CountryModel; use Visiosoft\CartsModule\Cart\Command\GetCart; use Visiosoft\LocationModule\District\DistrictModel; use Visiosoft\LocationModule\Neighborhood\NeighborhoodModel; +use Visiosoft\LocationModule\Village\Contract\VillageRepositoryInterface; use Visiosoft\LocationModule\Village\VillageModel; class AdvModel extends AdvsAdvsEntryModel implements AdvInterface @@ -376,8 +377,7 @@ class AdvModel extends AdvsAdvsEntryModel implements AdvInterface public function getVillage() { - $villageModel = new VillageModel(); - $village = $villageModel->newQuery()->find($this->village); + $village = app(VillageRepositoryInterface::class)->find($this->village); return $village ? $village->name : false; } From 99a53a863f432bfe19a04574c1804eba61eb26c1 Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Fri, 23 Oct 2020 11:17:47 +0300 Subject: [PATCH 24/25] #2466 [packages-module] error when trying to approve package --- addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php index a843841bd..34a6266a4 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php +++ b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php @@ -451,7 +451,7 @@ class AdvRepository extends EntryRepository implements AdvRepositoryInterface public function approveAds($adsIDs) { $defaultAdPublishTime = setting_value('visiosoft.module.advs::default_published_time'); - $ads = $this->newQuery()->where('advs_advs.id', $adsIDs)->update([ + $ads = $this->newQuery()->whereIn('advs_advs.id', $adsIDs)->update([ 'status' => 'approved', 'finish_at' => date('Y-m-d H:i:s', strtotime(date('Y-m-d H:i:s') . ' + ' . $defaultAdPublishTime . ' day')), 'publish_at' => date('Y-m-d H:i:s') From beedf72eba409161250431c9acdac4ec6d4299e2 Mon Sep 17 00:00:00 2001 From: Diatrex <diahshalabi@hotmail.com> Date: Fri, 23 Oct 2020 13:49:15 +0300 Subject: [PATCH 25/25] #2417 [packages] users can't see the right to declare (maden) --- .../advs-module/src/Adv/AdvRepository.php | 10 ++++++++++ .../advs-module/src/Adv/Command/GetUserAds.php | 18 ++++++++++++++++++ .../Adv/Contract/AdvRepositoryInterface.php | 2 ++ .../advs-module/src/AdvsModulePlugin.php | 8 +++++++- 4 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 addons/default/visiosoft/advs-module/src/Adv/Command/GetUserAds.php diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php index 34a6266a4..a87a12e76 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php +++ b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php @@ -459,4 +459,14 @@ class AdvRepository extends EntryRepository implements AdvRepositoryInterface return $ads; } + + public function getUserAds($userID = null) + { + $userID = auth_id_if_null($userID); + return $this->newQuery() + ->where('advs_advs.created_by_id', $userID) + ->where('status', 'approved') + ->where('finish_at', '>', date('Y-m-d H:i:s')) + ->get(); + } } diff --git a/addons/default/visiosoft/advs-module/src/Adv/Command/GetUserAds.php b/addons/default/visiosoft/advs-module/src/Adv/Command/GetUserAds.php new file mode 100644 index 000000000..4541f1a40 --- /dev/null +++ b/addons/default/visiosoft/advs-module/src/Adv/Command/GetUserAds.php @@ -0,0 +1,18 @@ +<?php namespace Visiosoft\AdvsModule\Adv\Command; + +use Visiosoft\AdvsModule\Adv\Contract\AdvRepositoryInterface; + +class GetUserAds +{ + protected $userID; + + public function __construct($userID) + { + $this->userID = $userID; + } + + public function handle(AdvRepositoryInterface $advRepository) + { + return $advRepository->getUserAds($this->userID); + } +} diff --git a/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvRepositoryInterface.php b/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvRepositoryInterface.php index eb59f6eb2..37104c3f2 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvRepositoryInterface.php +++ b/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvRepositoryInterface.php @@ -46,4 +46,6 @@ interface AdvRepositoryInterface extends EntryRepositoryInterface public function getPopular(); public function approveAds($adsIDs); + + public function getUserAds($userID = null); } diff --git a/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php b/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php index 475def11a..40186316b 100644 --- a/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php +++ b/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php @@ -7,9 +7,9 @@ use Visiosoft\AdvsModule\Adv\Command\appendRequestURL; use Visiosoft\AdvsModule\Adv\Command\GetAd; use Visiosoft\AdvsModule\Adv\Command\getExchange; use Visiosoft\AdvsModule\Adv\Command\getPopular; +use Visiosoft\AdvsModule\Adv\Command\GetUserAds; use Visiosoft\AdvsModule\Adv\Command\isActive; use Visiosoft\AdvsModule\Adv\Command\LatestAds; -use Visiosoft\AdvsModule\Adv\Contract\AdvRepositoryInterface; use Visiosoft\AdvsModule\Currency\Currency; use Visiosoft\AdvsModule\Currency\CurrencyFormat; @@ -78,6 +78,12 @@ class AdvsModulePlugin extends Plugin ->get(); } ), + new \Twig_SimpleFunction( + 'getUserAds', + function ($userID = null) { + return $this->dispatch(new GetUserAds($userID)); + } + ), new \Twig_SimpleFunction( 'getUserPassiveAdvs', function ($user = null) {