diff --git a/addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php b/addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php
new file mode 100644
index 000000000..f559bed8e
--- /dev/null
+++ b/addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php
@@ -0,0 +1,27 @@
+ 'advs',
+ ];
+
+ protected $fields = [
+ 'old_price' => [
+ 'type' => 'visiosoft.field_type.decimal',
+ 'config' => [
+ 'decimal' => 2,
+ 'separator' => '.',
+ 'point' => ','
+ ],
+ ],
+ ];
+
+ protected $assignments = [
+ 'old_price'
+ ];
+}
diff --git a/addons/default/visiosoft/advs-module/resources/css/list.css b/addons/default/visiosoft/advs-module/resources/css/list.css
index cc6bb4d82..cc9d284f0 100644
--- a/addons/default/visiosoft/advs-module/resources/css/list.css
+++ b/addons/default/visiosoft/advs-module/resources/css/list.css
@@ -200,6 +200,10 @@ a.sort-by-open-dropdown:hover {
color: #8598AA;
}
+.list-view-type button {
+ background-color: unset;
+}
+
.list-view-type button:focus {
outline: none;
}
diff --git a/addons/default/visiosoft/advs-module/resources/js/settings.js b/addons/default/visiosoft/advs-module/resources/js/settings.js
index 119d656dd..14817b7b4 100644
--- a/addons/default/visiosoft/advs-module/resources/js/settings.js
+++ b/addons/default/visiosoft/advs-module/resources/js/settings.js
@@ -1,13 +1,21 @@
// Hide watermark_image by default
-$(".watermark_image").hide();
+const watermarkType = $("select[name='watermark_type']")
+const watermarkText = $(".watermark_text")
+const watermarkImage = $(".watermark_image")
-$("select[name='watermark_type']").change((event) => {
- let watermarkType = event.target.value;
- if (watermarkType === 'text') {
- $(".watermark_image").hide();
- $(".watermark_text").show()
+if (watermarkType.val() === 'text') {
+ watermarkImage.hide();
+} else {
+ watermarkText.hide();
+}
+
+$(watermarkType).change((event) => {
+ const watermarkTypeValue = event.target.value;
+ if (watermarkTypeValue === 'text') {
+ watermarkImage.hide();
+ watermarkText.show()
} else if (event.target.value === 'image') {
- $(".watermark_image").show();
- $(".watermark_text").hide()
+ watermarkImage.show();
+ watermarkText.hide()
}
});
\ No newline at end of file
diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/button.php b/addons/default/visiosoft/advs-module/resources/lang/ar/button.php
index 619791e2c..48e15c7a6 100644
--- a/addons/default/visiosoft/advs-module/resources/lang/ar/button.php
+++ b/addons/default/visiosoft/advs-module/resources/lang/ar/button.php
@@ -32,4 +32,5 @@ return [
'name' => 'تحديث الفئة'
],
'new_option' => 'خيار جديد',
+ 'export' => 'تصدير'
];
diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/field.php b/addons/default/visiosoft/advs-module/resources/lang/ar/field.php
index e9700e6ad..76f2ec990 100644
--- a/addons/default/visiosoft/advs-module/resources/lang/ar/field.php
+++ b/addons/default/visiosoft/advs-module/resources/lang/ar/field.php
@@ -306,4 +306,14 @@ return [
'and_above' => 'و ما فوق',
'and_below' => 'و تحت',
'clear_all' => 'امسح الكل',
+ 'balances' => 'الرصيد',
+ 'packages' => 'الحزمة',
+ 'dopings' => 'المنشطات',
+ 'advs' => 'Advs',
+ 'site' => 'الموقع',
+ 'subscription' => 'اشتراك',
+ 'created' => 'خلقت',
+ 'old_price' => [
+ 'name' => 'سعر قديم'
+ ],
];
diff --git a/addons/default/visiosoft/advs-module/resources/lang/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/en/field.php b/addons/default/visiosoft/advs-module/resources/lang/en/field.php
index 493583f1f..f650cb5a0 100644
--- a/addons/default/visiosoft/advs-module/resources/lang/en/field.php
+++ b/addons/default/visiosoft/advs-module/resources/lang/en/field.php
@@ -318,5 +318,8 @@ return [
],
'option_json' => [
'name' => 'Option'
- ]
+ ],
+ 'old_price' => [
+ 'name' => 'Old Price'
+ ],
];
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/advs-module/resources/views/ad-detail/partials/detail.twig b/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig
index 5d44a8108..d700caebb 100644
--- a/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig
+++ b/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig
@@ -1,7 +1,7 @@
{% set standardPrice = adv.standard_price.value %}
- {% if standardPrice %}
+ {% if standardPrice and standardPrice > 0 %}
{{ adv.standard_price.currency(null,'currency') }}
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 94d172535..861db4e06 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 }}
-
- {{ form.fields.standard_price.setAttributes({
- 'required' :true,
- }).input|raw }}
-
+
{% if setting_value('visiosoft.module.advs::market_place') %}
{{ addBlock('new-ad/fields', {'adv': adv})|raw }}
-
-
{% endif %}
-
+
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 %}
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)
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 @@
'Reklamlara göz at',
+ 'view_ads' => 'İlanlara göz at',
];
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/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/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/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/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 6dfdd2c75..000000000
--- a/addons/default/visiosoft/location-module/src/countries.sql
+++ /dev/null
@@ -1,504 +0,0 @@
--- 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`
---
-
-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);
-
---
--- Dumping data for table `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', '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 */;
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/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/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!',
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..aae2f88f6 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_remove_filled_fields');
+ return;
+ }
+ }
+
$oldCustomerInfo = $user->toArray();
$changes = $this->change($user, $parameters);