From ea5d738ed1c06ac849f4e3d6416ce5073be8e3e1 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Tue, 20 Oct 2020 16:40:52 +0300 Subject: [PATCH 1/6] phonefield.js console error fixed --- addons/default/visiosoft/base-theme/resources/js/phonefield.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/default/visiosoft/base-theme/resources/js/phonefield.js b/addons/default/visiosoft/base-theme/resources/js/phonefield.js index 155532c75..ef6dc6dde 100644 --- a/addons/default/visiosoft/base-theme/resources/js/phonefield.js +++ b/addons/default/visiosoft/base-theme/resources/js/phonefield.js @@ -1,5 +1,6 @@ function phoneMask(fields) { - var country = document.getElementById('country').innerText; + var country = document.getElementById('country') + ? document.getElementById('country').innerText : null; var inputQueries = document.querySelectorAll(fields); inputQueries.forEach(function (inputQuery, key) { var iti = intlTelInput(inputQuery, { From 3c0c978706dc175abefb37bcc196fdfdbce2b68c Mon Sep 17 00:00:00 2001 From: vedatakd Date: Wed, 21 Oct 2020 10:13:50 +0300 Subject: [PATCH 2/6] added markdown and Update Date doping types --- ...ft.module.advs__create_old_price_field.php | 27 +++++++++++++++++++ .../advs-module/resources/lang/en/field.php | 3 +++ .../src/Http/Controller/advsController.php | 6 +++++ 3 files changed, 36 insertions(+) create mode 100644 addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php diff --git a/addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php b/addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php new file mode 100644 index 000000000..f559bed8e --- /dev/null +++ b/addons/default/visiosoft/advs-module/migrations/2020_10_21_061025_visiosoft.module.advs__create_old_price_field.php @@ -0,0 +1,27 @@ + 'advs', + ]; + + protected $fields = [ + 'old_price' => [ + 'type' => 'visiosoft.field_type.decimal', + 'config' => [ + 'decimal' => 2, + 'separator' => '.', + 'point' => ',' + ], + ], + ]; + + protected $assignments = [ + 'old_price' + ]; +} diff --git a/addons/default/visiosoft/advs-module/resources/lang/en/field.php b/addons/default/visiosoft/advs-module/resources/lang/en/field.php index 7ebc16101..bd9bfeb76 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/en/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/en/field.php @@ -313,4 +313,7 @@ return [ 'site' => 'Site', 'subscription' => 'Subscription', 'created' => 'Created', + 'old_price' => [ + 'name' => 'Old Price' + ], ]; diff --git a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php index 969f80a16..dadc699a7 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -674,6 +674,12 @@ class AdvsController extends PublicController /* Update Adv */ $adv = AdvsAdvsEntryModel::find($request->update_id); + + //Set Old Price + $old_price = ($adv->slug == "") ? $request->price : $adv->price; + $adv->old_price = $old_price; + + $allowPendingAdCreation = false; if ($advModel->is_enabled('packages') and $adv->slug == "") { $cat = app('Visiosoft\PackagesModule\Http\Controller\PackageFEController')->AdLimitForNewAd($request); From 694603ab88631755f1808b9dca9ae15d9790831b Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Wed, 21 Oct 2020 10:15:10 +0300 Subject: [PATCH 3/6] phonefield default country fixed --- .../default/visiosoft/base-theme/resources/js/phonefield.js | 5 +++-- .../addons/anomaly/users-module/partials/register-form.twig | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/addons/default/visiosoft/base-theme/resources/js/phonefield.js b/addons/default/visiosoft/base-theme/resources/js/phonefield.js index ef6dc6dde..9f91e799e 100644 --- a/addons/default/visiosoft/base-theme/resources/js/phonefield.js +++ b/addons/default/visiosoft/base-theme/resources/js/phonefield.js @@ -1,6 +1,7 @@ function phoneMask(fields) { - var country = document.getElementById('country') - ? document.getElementById('country').innerText : null; + var country = document.getElementById('default-phone-country') + ? document.getElementById('default-phone-country').innerText : null; + alert(country) var inputQueries = document.querySelectorAll(fields); inputQueries.forEach(function (inputQuery, key) { var iti = intlTelInput(inputQuery, { diff --git a/addons/default/visiosoft/base-theme/resources/views/addons/anomaly/users-module/partials/register-form.twig b/addons/default/visiosoft/base-theme/resources/views/addons/anomaly/users-module/partials/register-form.twig index 24946f203..00e7c48d7 100644 --- a/addons/default/visiosoft/base-theme/resources/views/addons/anomaly/users-module/partials/register-form.twig +++ b/addons/default/visiosoft/base-theme/resources/views/addons/anomaly/users-module/partials/register-form.twig @@ -56,7 +56,7 @@
{{ form.fields.phone.setValue(form.fields.phone.value).input|raw }} - +
From 3f9d5c33817fcdf8fae545f3fac6ad67f725d5fb Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Wed, 21 Oct 2020 10:25:37 +0300 Subject: [PATCH 4/6] phonefield default country fixed --- addons/default/visiosoft/base-theme/resources/js/phonefield.js | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/default/visiosoft/base-theme/resources/js/phonefield.js b/addons/default/visiosoft/base-theme/resources/js/phonefield.js index 9f91e799e..0bffd3409 100644 --- a/addons/default/visiosoft/base-theme/resources/js/phonefield.js +++ b/addons/default/visiosoft/base-theme/resources/js/phonefield.js @@ -1,7 +1,6 @@ function phoneMask(fields) { var country = document.getElementById('default-phone-country') ? document.getElementById('default-phone-country').innerText : null; - alert(country) var inputQueries = document.querySelectorAll(fields); inputQueries.forEach(function (inputQuery, key) { var iti = intlTelInput(inputQuery, { From 2f8bed62bd2b437950d8f579957583fa17cd4e6d Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 21 Oct 2020 15:38:41 +0300 Subject: [PATCH 5/6] New Crowdin updates (#734) * New translations field.php (Italian) * New translations button.php (Japanese) * New translations field.php (Japanese) * New translations button.php (Korean) * New translations field.php (Korean) * New translations button.php (Dutch) * New translations field.php (Dutch) * New translations button.php (Polish) * New translations field.php (Hindi) * New translations setting.php (Romanian) * New translations setting.php (Russian) * New translations setting.php (Azerbaijani) * New translations setting.php (Bengali) * New translations setting.php (Persian) * New translations setting.php (Vietnamese) * New translations setting.php (Urdu (Pakistan)) * New translations setting.php (Ukrainian) * New translations setting.php (Turkish) * New translations setting.php (Swedish) * New translations setting.php (Albanian) * New translations setting.php (Portuguese) * New translations setting.php (French) * New translations setting.php (Polish) * New translations setting.php (Dutch) * New translations setting.php (Korean) * New translations setting.php (Japanese) * New translations setting.php (Italian) * New translations setting.php (Hebrew) * New translations setting.php (Greek) * New translations setting.php (German) * New translations setting.php (Arabic) * New translations setting.php (Spanish) * New translations setting.php (Hindi) * New translations setting.php (Romanian) * New translations setting.php (Russian) * New translations setting.php (Azerbaijani) * New translations setting.php (Bengali) * New translations setting.php (Persian) * New translations setting.php (Vietnamese) * New translations setting.php (Urdu (Pakistan)) * New translations setting.php (Ukrainian) * New translations setting.php (Turkish) * New translations setting.php (Swedish) * New translations setting.php (Albanian) * New translations setting.php (Portuguese) * New translations setting.php (French) * New translations setting.php (Polish) * New translations setting.php (Dutch) * New translations setting.php (Korean) * New translations setting.php (Japanese) * New translations setting.php (Italian) * New translations setting.php (Hebrew) * New translations setting.php (Greek) * New translations setting.php (German) * New translations setting.php (Arabic) * New translations setting.php (Spanish) * New translations setting.php (Hindi) * New translations field.php (Romanian) * New translations field.php (Urdu (Pakistan)) * New translations message.php (Russian) * New translations field.php (Albanian) * New translations message.php (Albanian) * New translations field.php (Swedish) * New translations message.php (Swedish) * New translations field.php (Turkish) * New translations message.php (Turkish) * New translations field.php (Ukrainian) * New translations message.php (Ukrainian) * New translations message.php (Urdu (Pakistan)) * New translations message.php (Portuguese) * New translations field.php (Vietnamese) * New translations message.php (Vietnamese) * New translations field.php (Persian) * New translations message.php (Persian) * New translations field.php (Bengali) * New translations message.php (Bengali) * New translations field.php (Azerbaijani) * New translations message.php (Azerbaijani) * New translations field.php (Hindi) * New translations field.php (Russian) * New translations field.php (Portuguese) * New translations message.php (Romanian) * New translations message.php (Greek) * New translations field.php (French) * New translations message.php (French) * New translations field.php (Spanish) * New translations message.php (Spanish) * New translations field.php (Arabic) * New translations message.php (Arabic) * New translations field.php (German) * New translations message.php (German) * New translations field.php (Greek) * New translations field.php (Hebrew) * New translations message.php (Polish) * New translations message.php (Hebrew) * New translations field.php (Italian) * New translations message.php (Italian) * New translations field.php (Japanese) * New translations message.php (Japanese) * New translations field.php (Korean) * New translations message.php (Korean) * New translations field.php (Dutch) * New translations message.php (Dutch) * New translations field.php (Polish) * New translations message.php (Hindi) * New translations setting.php (Italian) * New translations button.php (Italian) * New translations field.php (Italian) * New translations setting.php (Italian) * New translations button.php (Japanese) * New translations setting.php (Japanese) * New translations field.php (Japanese) * New translations field.php (Italian) * New translations message.php (Italian) * New translations button.php (Hebrew) * New translations field.php (Hebrew) * New translations setting.php (Hebrew) * New translations field.php (Greek) * New translations message.php (Greek) * New translations field.php (Hebrew) * New translations message.php (Hebrew) * New translations setting.php (Hebrew) * New translations setting.php (Dutch) * New translations button.php (Dutch) * New translations field.php (Dutch) * New translations button.php (Polish) * New translations field.php (Polish) * New translations setting.php (Dutch) * New translations field.php (Dutch) * New translations message.php (Dutch) * New translations message.php (Japanese) * New translations button.php (Korean) * New translations field.php (Japanese) * New translations setting.php (Japanese) * New translations field.php (Korean) * New translations setting.php (Korean) * New translations field.php (Korean) * New translations message.php (Korean) * New translations setting.php (Korean) * New translations button.php (Spanish) * New translations field.php (Spanish) * New translations setting.php (French) * New translations message.php (French) * New translations field.php (French) * New translations setting.php (Spanish) * New translations field.php (Spanish) * New translations message.php (Spanish) * New translations setting.php (Spanish) * New translations setting.php (Romanian) * New translations field.php (Romanian) * New translations setting.php (Romanian) * New translations setting.php (French) * New translations field.php (French) * New translations button.php (French) * New translations field.php (Romanian) * New translations message.php (Romanian) * New translations field.php (German) * New translations setting.php (German) * New translations message.php (German) * New translations setting.php (Greek) * New translations field.php (Greek) * New translations button.php (Greek) * New translations setting.php (Greek) * New translations setting.php (German) * New translations setting.php (Arabic) * New translations button.php (Arabic) * New translations field.php (Arabic) * New translations field.php (German) * New translations setting.php (Arabic) * New translations message.php (Arabic) * New translations field.php (Albanian) * New translations message.php (Albanian) * New translations setting.php (Swedish) * New translations field.php (Swedish) * New translations button.php (Swedish) * New translations setting.php (Albanian) * New translations field.php (Albanian) * New translations button.php (Albanian) * New translations setting.php (Albanian) * New translations setting.php (Turkish) * New translations field.php (Turkish) * New translations setting.php (Turkish) * New translations section.php (Turkish) * New translations message.php (Turkish) * New translations field.php (Turkish) * New translations setting.php (Turkish) * New translations button.php (Turkish) * New translations setting.php (Swedish) * New translations message.php (Swedish) * New translations field.php (Swedish) * New translations field.php (Portuguese) * New translations button.php (Portuguese) * New translations setting.php (Portuguese) * New translations setting.php (Polish) * New translations message.php (Polish) * New translations field.php (Polish) * New translations setting.php (Polish) * New translations setting.php (Russian) * New translations setting.php (Russian) * New translations message.php (Russian) * New translations field.php (Russian) * New translations message.php (Portuguese) * New translations field.php (Portuguese) * New translations setting.php (Portuguese) * New translations field.php (Russian) * New translations button.php (Russian) * New translations setting.php (Bengali) * New translations field.php (Bengali) * New translations message.php (Bengali) * New translations field.php (Azerbaijani) * New translations button.php (Azerbaijani) * New translations message.php (Persian) * New translations field.php (Persian) * New translations setting.php (Persian) * New translations field.php (Bengali) * New translations setting.php (Bengali) * New translations button.php (Bengali) * New translations setting.php (Hindi) * New translations setting.php (Hindi) * New translations message.php (Hindi) * New translations field.php (Hindi) * New translations setting.php (Azerbaijani) * New translations setting.php (Azerbaijani) * New translations field.php (Hindi) * New translations button.php (Hindi) * New translations message.php (Azerbaijani) * New translations field.php (Azerbaijani) * New translations button.php (Urdu (Pakistan)) * New translations message.php (Ukrainian) * New translations field.php (Ukrainian) * New translations field.php (Urdu (Pakistan)) * New translations setting.php (Urdu (Pakistan)) * New translations button.php (Turkish) * New translations field.php (Ukrainian) * New translations button.php (Ukrainian) * New translations message.php (Turkish) * New translations field.php (Turkish) * New translations setting.php (Ukrainian) * New translations setting.php (Ukrainian) * New translations message.php (Vietnamese) * New translations field.php (Vietnamese) * New translations setting.php (Vietnamese) * New translations setting.php (Persian) * New translations field.php (Persian) * New translations button.php (Persian) * New translations message.php (Urdu (Pakistan)) * New translations setting.php (Urdu (Pakistan)) * New translations setting.php (Vietnamese) * New translations field.php (Vietnamese) * New translations button.php (Vietnamese) --- .../advs-module/resources/lang/ar/button.php | 1 + .../advs-module/resources/lang/ar/field.php | 10 ++++++++++ .../advs-module/resources/lang/az/button.php | 1 + .../advs-module/resources/lang/az/field.php | 10 ++++++++++ .../advs-module/resources/lang/bn/button.php | 1 + .../advs-module/resources/lang/bn/field.php | 10 ++++++++++ .../advs-module/resources/lang/de/button.php | 1 + .../advs-module/resources/lang/de/field.php | 10 ++++++++++ .../advs-module/resources/lang/el/button.php | 1 + .../advs-module/resources/lang/el/field.php | 10 ++++++++++ .../advs-module/resources/lang/es/button.php | 1 + .../advs-module/resources/lang/es/field.php | 10 ++++++++++ .../advs-module/resources/lang/fa/button.php | 1 + .../advs-module/resources/lang/fa/field.php | 10 ++++++++++ .../advs-module/resources/lang/fr/button.php | 1 + .../advs-module/resources/lang/fr/field.php | 10 ++++++++++ .../advs-module/resources/lang/he/button.php | 1 + .../advs-module/resources/lang/he/field.php | 10 ++++++++++ .../advs-module/resources/lang/hi/button.php | 1 + .../advs-module/resources/lang/hi/field.php | 10 ++++++++++ .../advs-module/resources/lang/it/button.php | 1 + .../advs-module/resources/lang/it/field.php | 10 ++++++++++ .../advs-module/resources/lang/ja/button.php | 1 + .../advs-module/resources/lang/ja/field.php | 10 ++++++++++ .../advs-module/resources/lang/ko/button.php | 1 + .../advs-module/resources/lang/ko/field.php | 10 ++++++++++ .../advs-module/resources/lang/nl/button.php | 1 + .../advs-module/resources/lang/nl/field.php | 10 ++++++++++ .../advs-module/resources/lang/pl/button.php | 1 + .../advs-module/resources/lang/pl/field.php | 10 ++++++++++ .../advs-module/resources/lang/pt/button.php | 1 + .../advs-module/resources/lang/pt/field.php | 10 ++++++++++ .../advs-module/resources/lang/ro/button.php | 1 + .../advs-module/resources/lang/ro/field.php | 10 ++++++++++ .../advs-module/resources/lang/ru/button.php | 1 + .../advs-module/resources/lang/ru/field.php | 10 ++++++++++ .../advs-module/resources/lang/sq/button.php | 1 + .../advs-module/resources/lang/sq/field.php | 10 ++++++++++ .../advs-module/resources/lang/sv/button.php | 1 + .../advs-module/resources/lang/sv/field.php | 10 ++++++++++ .../advs-module/resources/lang/tr/button.php | 1 + .../advs-module/resources/lang/tr/field.php | 18 ++++++++++++++---- .../advs-module/resources/lang/tr/message.php | 4 ++-- .../advs-module/resources/lang/tr/section.php | 2 +- .../advs-module/resources/lang/tr/setting.php | 4 ++-- .../advs-module/resources/lang/uk/button.php | 1 + .../advs-module/resources/lang/uk/field.php | 10 ++++++++++ .../advs-module/resources/lang/ur/button.php | 1 + .../advs-module/resources/lang/ur/field.php | 10 ++++++++++ .../advs-module/resources/lang/vi/button.php | 1 + .../advs-module/resources/lang/vi/field.php | 10 ++++++++++ .../base-theme/resources/lang/ar/setting.php | 3 +++ .../base-theme/resources/lang/az/setting.php | 3 +++ .../base-theme/resources/lang/bn/setting.php | 3 +++ .../base-theme/resources/lang/de/setting.php | 3 +++ .../base-theme/resources/lang/el/setting.php | 3 +++ .../base-theme/resources/lang/es/setting.php | 3 +++ .../base-theme/resources/lang/fa/setting.php | 3 +++ .../base-theme/resources/lang/fr/setting.php | 3 +++ .../base-theme/resources/lang/he/setting.php | 3 +++ .../base-theme/resources/lang/hi/setting.php | 3 +++ .../base-theme/resources/lang/it/setting.php | 3 +++ .../base-theme/resources/lang/ja/setting.php | 3 +++ .../base-theme/resources/lang/ko/setting.php | 3 +++ .../base-theme/resources/lang/nl/setting.php | 3 +++ .../base-theme/resources/lang/pl/setting.php | 3 +++ .../base-theme/resources/lang/pt/setting.php | 3 +++ .../base-theme/resources/lang/ro/setting.php | 3 +++ .../base-theme/resources/lang/ru/setting.php | 3 +++ .../base-theme/resources/lang/sq/setting.php | 3 +++ .../base-theme/resources/lang/sv/setting.php | 3 +++ .../base-theme/resources/lang/tr/field.php | 8 ++++---- .../base-theme/resources/lang/tr/setting.php | 7 +++++-- .../base-theme/resources/lang/uk/setting.php | 3 +++ .../base-theme/resources/lang/ur/setting.php | 3 +++ .../base-theme/resources/lang/vi/setting.php | 3 +++ .../resources/lang/tr/button.php | 2 +- .../resources/lang/ar/setting.php | 3 +++ .../resources/lang/az/setting.php | 3 +++ .../resources/lang/bn/setting.php | 3 +++ .../resources/lang/de/setting.php | 3 +++ .../resources/lang/el/setting.php | 3 +++ .../resources/lang/es/setting.php | 3 +++ .../resources/lang/fa/setting.php | 3 +++ .../resources/lang/fr/setting.php | 3 +++ .../resources/lang/he/setting.php | 3 +++ .../resources/lang/hi/setting.php | 3 +++ .../resources/lang/it/setting.php | 3 +++ .../resources/lang/ja/setting.php | 3 +++ .../resources/lang/ko/setting.php | 3 +++ .../resources/lang/nl/setting.php | 3 +++ .../resources/lang/pl/setting.php | 3 +++ .../resources/lang/pt/setting.php | 3 +++ .../resources/lang/ro/setting.php | 3 +++ .../resources/lang/ru/setting.php | 3 +++ .../resources/lang/sq/setting.php | 3 +++ .../resources/lang/sv/setting.php | 3 +++ .../resources/lang/tr/setting.php | 5 ++++- .../resources/lang/uk/setting.php | 3 +++ .../resources/lang/ur/setting.php | 3 +++ .../resources/lang/vi/setting.php | 3 +++ .../profile-module/resources/lang/ar/field.php | 3 +++ .../resources/lang/ar/message.php | 1 + .../profile-module/resources/lang/az/field.php | 3 +++ .../resources/lang/az/message.php | 1 + .../profile-module/resources/lang/bn/field.php | 3 +++ .../resources/lang/bn/message.php | 1 + .../profile-module/resources/lang/de/field.php | 3 +++ .../resources/lang/de/message.php | 1 + .../profile-module/resources/lang/el/field.php | 3 +++ .../resources/lang/el/message.php | 1 + .../profile-module/resources/lang/es/field.php | 3 +++ .../resources/lang/es/message.php | 1 + .../profile-module/resources/lang/fa/field.php | 3 +++ .../resources/lang/fa/message.php | 1 + .../profile-module/resources/lang/fr/field.php | 3 +++ .../resources/lang/fr/message.php | 1 + .../profile-module/resources/lang/he/field.php | 3 +++ .../resources/lang/he/message.php | 1 + .../profile-module/resources/lang/hi/field.php | 3 +++ .../resources/lang/hi/message.php | 1 + .../profile-module/resources/lang/it/field.php | 3 +++ .../resources/lang/it/message.php | 1 + .../profile-module/resources/lang/ja/field.php | 3 +++ .../resources/lang/ja/message.php | 1 + .../profile-module/resources/lang/ko/field.php | 3 +++ .../resources/lang/ko/message.php | 1 + .../profile-module/resources/lang/nl/field.php | 3 +++ .../resources/lang/nl/message.php | 1 + .../profile-module/resources/lang/pl/field.php | 3 +++ .../resources/lang/pl/message.php | 1 + .../profile-module/resources/lang/pt/field.php | 3 +++ .../resources/lang/pt/message.php | 1 + .../profile-module/resources/lang/ro/field.php | 3 +++ .../resources/lang/ro/message.php | 1 + .../profile-module/resources/lang/ru/field.php | 3 +++ .../resources/lang/ru/message.php | 1 + .../profile-module/resources/lang/sq/field.php | 3 +++ .../resources/lang/sq/message.php | 1 + .../profile-module/resources/lang/sv/field.php | 3 +++ .../resources/lang/sv/message.php | 1 + .../profile-module/resources/lang/tr/field.php | 3 +++ .../resources/lang/tr/message.php | 3 ++- .../profile-module/resources/lang/uk/field.php | 3 +++ .../resources/lang/uk/message.php | 1 + .../profile-module/resources/lang/ur/field.php | 3 +++ .../resources/lang/ur/message.php | 1 + .../profile-module/resources/lang/vi/field.php | 3 +++ .../resources/lang/vi/message.php | 1 + 149 files changed, 522 insertions(+), 18 deletions(-) diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/button.php b/addons/default/visiosoft/advs-module/resources/lang/ar/button.php index 619791e2c..48e15c7a6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'تحديث الفئة' ], 'new_option' => 'خيار جديد', + 'export' => 'تصدير' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/field.php b/addons/default/visiosoft/advs-module/resources/lang/ar/field.php index e9700e6ad..76f2ec990 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'و ما فوق', 'and_below' => 'و تحت', 'clear_all' => 'امسح الكل', + 'balances' => 'الرصيد', + 'packages' => 'الحزمة', + 'dopings' => 'المنشطات', + 'advs' => 'Advs', + 'site' => 'الموقع', + 'subscription' => 'اشتراك', + 'created' => 'خلقت', + 'old_price' => [ + 'name' => 'سعر قديم' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/button.php b/addons/default/visiosoft/advs-module/resources/lang/az/button.php index 2b2b78363..d3d3d0609 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Kateqoriya yeniləyin' ], 'new_option' => 'Yeni Seçim', + 'export' => 'İxrac' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/field.php b/addons/default/visiosoft/advs-module/resources/lang/az/field.php index 15e855630..401ee36bc 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'və yuxarıda', 'and_below' => 'və aşağıda', 'clear_all' => 'Hamısını sil, hamısını təmizlə', + 'balances' => 'Qalıqlar', + 'packages' => 'Paketlər', + 'dopings' => 'Dopinqlər', + 'advs' => 'Advs', + 'site' => 'Sayt', + 'subscription' => 'Abunə', + 'created' => 'Yarandı', + 'old_price' => [ + 'name' => 'Köhnə Qiymət' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/button.php b/addons/default/visiosoft/advs-module/resources/lang/bn/button.php index 0eb42cdbf..507b20b1e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'আপডেট বিভাগ' ], 'new_option' => 'নতুন বিকল্প', + 'export' => 'রফতানি' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/field.php b/addons/default/visiosoft/advs-module/resources/lang/bn/field.php index daac50ac7..aa268613f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'এবং উপরে', 'and_below' => 'এবং নিচে', 'clear_all' => 'সব পরিষ্কার করে দাও', + 'balances' => 'ব্যালেন্স', + 'packages' => 'প্যাকেজগুলি', + 'dopings' => 'ডোপিংস', + 'advs' => 'অ্যাড', + 'site' => 'সাইট', + 'subscription' => 'সাবস্ক্রিপশন', + 'created' => 'তৈরি হয়েছে', + 'old_price' => [ + 'name' => 'পুরাতন মূল্য' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/button.php b/addons/default/visiosoft/advs-module/resources/lang/de/button.php index f396f1363..bdff5f8bf 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Kategorie aktualisieren' ], 'new_option' => 'Neue Option', + 'export' => 'Export' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/field.php b/addons/default/visiosoft/advs-module/resources/lang/de/field.php index ed94fe3fe..547cef5eb 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'und darüber', 'and_below' => 'und darunter', 'clear_all' => 'Alles löschen', + 'balances' => 'Guthaben', + 'packages' => 'Pakete', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Seite? ˅', + 'subscription' => 'Abonnement', + 'created' => 'Erstellt', + 'old_price' => [ + 'name' => 'Alter Preis' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/button.php b/addons/default/visiosoft/advs-module/resources/lang/el/button.php index 9f8e6dda7..2d57a0c0a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Ενημέρωση κατηγορίας' ], 'new_option' => 'Νέα επιλογή', + 'export' => 'Εξαγωγή' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/field.php b/addons/default/visiosoft/advs-module/resources/lang/el/field.php index 1a6ee9765..8765550a7 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'και παραπανω', 'and_below' => 'και παρακάτω', 'clear_all' => 'Τα καθαρίζω όλα', + 'balances' => 'Υπόλοιπα', + 'packages' => 'Πακέτα', + 'dopings' => 'Ντόπινγκ', + 'advs' => 'Advs', + 'site' => 'Ιστοσελίδα', + 'subscription' => 'Συνδρομή', + 'created' => 'Δημιουργήθηκε', + 'old_price' => [ + 'name' => 'Παλιά τιμή' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/button.php b/addons/default/visiosoft/advs-module/resources/lang/es/button.php index 02ae9a86e..f5ccc5cf2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Actualizar categoría' ], 'new_option' => 'Nueva opción', + 'export' => 'Exportar' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/field.php b/addons/default/visiosoft/advs-module/resources/lang/es/field.php index e6794e3d7..bf50bef0f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'y por encima', 'and_below' => 'y por debajo', 'clear_all' => 'Limpiar todo', + 'balances' => 'Saldos', + 'packages' => 'Paquetes', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Sitio', + 'subscription' => 'Suscripción', + 'created' => 'Creado', + 'old_price' => [ + 'name' => 'Precio anterior' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/button.php b/addons/default/visiosoft/advs-module/resources/lang/fa/button.php index 47ed58fa8..f047c1f03 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'رده به روزرسانی' ], 'new_option' => 'گزینه جدید', + 'export' => 'صادرات' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/field.php b/addons/default/visiosoft/advs-module/resources/lang/fa/field.php index 24f7a4e22..95588f96a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'و بالاتر', 'and_below' => 'و در زیر', 'clear_all' => 'همه را پاک کن', + 'balances' => 'موازنه', + 'packages' => 'بسته ها', + 'dopings' => 'دوپینگ', + 'advs' => 'تبلیغات', + 'site' => 'سایت', + 'subscription' => 'اشتراک، ابونمان', + 'created' => 'ایجاد شده', + 'old_price' => [ + 'name' => 'قیمت قدیمی' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/button.php b/addons/default/visiosoft/advs-module/resources/lang/fr/button.php index 43f94b5d4..a0d77878b 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Mettre à jour la catégorie' ], 'new_option' => 'Nouvelle option', + 'export' => 'Exportation' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/field.php b/addons/default/visiosoft/advs-module/resources/lang/fr/field.php index 82bb8cffc..599c32431 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'et ci-dessus', 'and_below' => 'et plus bas', 'clear_all' => 'Tout effacer', + 'balances' => 'Soldes', + 'packages' => 'Paquets', + 'dopings' => 'Dopage', + 'advs' => 'Advs', + 'site' => 'Site', + 'subscription' => 'Abonnement', + 'created' => 'Créé', + 'old_price' => [ + 'name' => 'Ancien prix' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/button.php b/addons/default/visiosoft/advs-module/resources/lang/he/button.php index b68b537ce..466fdbe0e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'עדכן קטגוריה' ], 'new_option' => 'אפשרות חדשה', + 'export' => 'יְצוּא' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/field.php b/addons/default/visiosoft/advs-module/resources/lang/he/field.php index cf39a5c15..ff06ade7a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'ומעל', 'and_below' => 'ומתחת', 'clear_all' => 'נקה הכל', + 'balances' => 'יתרות', + 'packages' => 'חבילות', + 'dopings' => 'סמים', + 'advs' => 'עו"ד', + 'site' => 'אֲתַר', + 'subscription' => 'מִנוּי', + 'created' => 'נוצר', + 'old_price' => [ + 'name' => 'מחיר ישן' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/button.php b/addons/default/visiosoft/advs-module/resources/lang/hi/button.php index 802142448..04d35da16 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'अद्यतन श्रेणी' ], 'new_option' => 'नया विकल्प', + 'export' => 'निर्यात' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/field.php b/addons/default/visiosoft/advs-module/resources/lang/hi/field.php index 3e21a0cba..c4ad70f8c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'और ऊपर', 'and_below' => 'और नीचे', 'clear_all' => 'सभी साफ करें', + 'balances' => 'शेष', + 'packages' => 'संकुल', + 'dopings' => 'dopings', + 'advs' => 'advs', + 'site' => 'साइट', + 'subscription' => 'अंशदान', + 'created' => 'बनाया था', + 'old_price' => [ + 'name' => 'पुरानी कीमत' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/button.php b/addons/default/visiosoft/advs-module/resources/lang/it/button.php index eebc61d89..973973321 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Categoria di aggiornamento' ], 'new_option' => 'Nuova opzione', + 'export' => 'Esportare' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/field.php b/addons/default/visiosoft/advs-module/resources/lang/it/field.php index 528ef3366..6f2d10da6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'e al di sopra', 'and_below' => 'e sotto', 'clear_all' => 'Cancella tutto', + 'balances' => 'Saldi', + 'packages' => 'Pacchi', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Luogo', + 'subscription' => 'Sottoscrizione', + 'created' => 'Creato', + 'old_price' => [ + 'name' => 'Vecchio prezzo' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/button.php b/addons/default/visiosoft/advs-module/resources/lang/ja/button.php index b937e7866..2e19aa162 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'カテゴリを更新' ], 'new_option' => '新しいオプション', + 'export' => '書き出す' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/field.php b/addons/default/visiosoft/advs-module/resources/lang/ja/field.php index 9b68ead52..46ea2dc81 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => '以上', 'and_below' => '以下', 'clear_all' => 'すべてクリア', + 'balances' => 'バランス', + 'packages' => 'パッケージ', + 'dopings' => 'ドーピング', + 'advs' => 'アドバンス', + 'site' => '地点', + 'subscription' => 'サブスクリプション', + 'created' => '作成した', + 'old_price' => [ + 'name' => '古い価格' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/button.php b/addons/default/visiosoft/advs-module/resources/lang/ko/button.php index db3009a49..2870d56ec 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/button.php @@ -32,4 +32,5 @@ return [ 'name' => '카테고리 업데이트' ], 'new_option' => '새로운 옵션', + 'export' => '수출' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/field.php b/addons/default/visiosoft/advs-module/resources/lang/ko/field.php index e19e6a372..7d762de2c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => '이상', 'and_below' => '이하', 'clear_all' => '모두 지우기', + 'balances' => '균형', + 'packages' => '패키지', + 'dopings' => '도핑', + 'advs' => 'Advs', + 'site' => '대지', + 'subscription' => '신청', + 'created' => '만들어진', + 'old_price' => [ + 'name' => '이전 가격' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/button.php b/addons/default/visiosoft/advs-module/resources/lang/nl/button.php index bc54f1937..0d59ef1fd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Categorie bijwerken' ], 'new_option' => 'Nieuwe optie', + 'export' => 'Exporteren' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/field.php b/addons/default/visiosoft/advs-module/resources/lang/nl/field.php index 95d2cc31f..b6c3e3252 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'en hoger', 'and_below' => 'en onder', 'clear_all' => 'Wis alles', + 'balances' => 'Weegschalen', + 'packages' => 'Pakketjes', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Site', + 'subscription' => 'Abonnement', + 'created' => 'Gemaakt', + 'old_price' => [ + 'name' => 'Oude prijs' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/button.php b/addons/default/visiosoft/advs-module/resources/lang/pl/button.php index 36752c315..b5b6249a8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Zaktualizuj kategorię' ], 'new_option' => 'Nowa opcja', + 'export' => 'Eksport' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/field.php b/addons/default/visiosoft/advs-module/resources/lang/pl/field.php index 3d1d8b019..f47f2ad86 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'i powyżej', 'and_below' => 'i poniżej', 'clear_all' => 'Wyczyść wszystko', + 'balances' => 'Salda', + 'packages' => 'Pakiety', + 'dopings' => 'Dopingi', + 'advs' => 'Advs', + 'site' => 'Teren', + 'subscription' => 'Subskrypcja', + 'created' => 'Utworzony', + 'old_price' => [ + 'name' => 'Stara cena' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/button.php b/addons/default/visiosoft/advs-module/resources/lang/pt/button.php index 53d5d0a7e..b443ea231 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Atualizar categoria' ], 'new_option' => 'Nova Opção', + 'export' => 'Exportar' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/field.php b/addons/default/visiosoft/advs-module/resources/lang/pt/field.php index 1429a94fe..60067ae2c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'e acima', 'and_below' => 'e abaixo', 'clear_all' => 'Limpar tudo', + 'balances' => 'Saldos', + 'packages' => 'Pacotes', + 'dopings' => 'Dopings', + 'advs' => 'Advs', + 'site' => 'Local', + 'subscription' => 'Inscrição', + 'created' => 'Criado', + 'old_price' => [ + 'name' => 'Preço antigo' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/button.php b/addons/default/visiosoft/advs-module/resources/lang/ro/button.php index b9170691e..05365e89e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Actualizare categorie' ], 'new_option' => 'Opțiune nouă', + 'export' => 'Export' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/field.php b/addons/default/visiosoft/advs-module/resources/lang/ro/field.php index 07aabded1..3a7c2ce03 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'Si mai sus', 'and_below' => 'si sub', 'clear_all' => 'Curata tot', + 'balances' => 'Solduri', + 'packages' => 'Pachete', + 'dopings' => 'Dopaje', + 'advs' => 'Sfaturi', + 'site' => 'Site', + 'subscription' => 'Abonament', + 'created' => 'Creată', + 'old_price' => [ + 'name' => 'Preț vechi' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/button.php b/addons/default/visiosoft/advs-module/resources/lang/ru/button.php index ef3b7785c..7db3d66cb 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Обновить категорию' ], 'new_option' => 'Новый вариант', + 'export' => 'Экспорт' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/field.php b/addons/default/visiosoft/advs-module/resources/lang/ru/field.php index 63f2056ce..8cc41cf7a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'и выше', 'and_below' => 'и ниже', 'clear_all' => 'Очистить все', + 'balances' => 'Балансы', + 'packages' => 'Пакеты', + 'dopings' => 'Допинг', + 'advs' => 'Advs', + 'site' => 'Сайт', + 'subscription' => 'Подписка', + 'created' => 'Создано', + 'old_price' => [ + 'name' => 'Старая цена' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/button.php b/addons/default/visiosoft/advs-module/resources/lang/sq/button.php index 004a53e08..ea5c36fbd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Kategoria Azhornimeve' ], 'new_option' => 'Opsioni i ri', + 'export' => 'Eksporto' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/field.php b/addons/default/visiosoft/advs-module/resources/lang/sq/field.php index 5364d6b0c..58fe05860 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/field.php @@ -307,4 +307,14 @@ return [ 'and_above' => 'dhe më lart', 'and_below' => 'dhe më poshtë', 'clear_all' => 'Pastroji të gjitha', + 'balances' => 'Bilancet', + 'packages' => 'Paketat', + 'dopings' => 'Dopingët', + 'advs' => 'Adv', + 'site' => 'Faqen', + 'subscription' => 'Abonim', + 'created' => 'Krijuar', + 'old_price' => [ + 'name' => 'Çmimi i Vjetër' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/button.php b/addons/default/visiosoft/advs-module/resources/lang/sv/button.php index fe78e694e..f992ccff6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Uppdatera kategori' ], 'new_option' => 'Nytt alternativ', + 'export' => 'Exportera' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/field.php b/addons/default/visiosoft/advs-module/resources/lang/sv/field.php index 2a05f75c9..634294430 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'och ovan', 'and_below' => 'och under', 'clear_all' => 'Rensa alla', + 'balances' => 'Balanser', + 'packages' => 'Paket', + 'dopings' => 'Dopings', + 'advs' => 'Adv', + 'site' => 'Webbplats', + 'subscription' => 'Prenumeration', + 'created' => 'Skapad', + 'old_price' => [ + 'name' => 'Gammalt pris' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/button.php b/addons/default/visiosoft/advs-module/resources/lang/tr/button.php index 6721c2085..0ee3ab8a2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Kategori Güncelle' ], 'new_option' => 'Yeni Seçenek', + 'export' => 'İhracat' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/field.php b/addons/default/visiosoft/advs-module/resources/lang/tr/field.php index cc2f95416..e1c05d54c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/field.php @@ -150,7 +150,7 @@ return [ 'search_desc' => 'Burada favori arama seçimlerinizi ekleyebilir ve yönetebilirsiniz.', 'complaint_placeholder' => 'Şikayet ayrıntılarınızı buraya yazın.', 'show_details' => 'Detayları göster', - 'ad_actions' => 'Reklam İşlemleri', + 'ad_actions' => 'İlan İşlemleri', 'edit' => 'Düzenle', 'approve' => 'Onayla', 'passive' => "Pasif", @@ -275,11 +275,11 @@ return [ "were_found" => 'bulundular.', // Pending screen - 'pending_message_1' => 'Reklam Onay Sürecinde', - 'pending_message_2' => "Reklamın Güncelleme Tarihi", + 'pending_message_1' => 'İlan Onay Sürecinde', + 'pending_message_2' => "İlan Güncelleme Tarihi", 'pending_message_3' => 'Tahmini Bekleme Süresi', 'pending_message_4' => 'Onay sürecinde geçirilen süre doping zamanına eklenecektir.', - 'pending_message_5' => 'Onay sürecinde reklamla ilgili çağrı merkezinden hiçbir işlem yapılamaz.', + 'pending_message_5' => 'Onay sürecinde ilanla ilgili çağrı merkezinden hiçbir işlem yapılamaz.', 'hours' => 'saatler', // Preview page @@ -308,4 +308,14 @@ return [ 'and_above' => 've yukarıda', 'and_below' => 've aşağıda', 'clear_all' => 'Hepsini temizle', + 'balances' => 'Bakiyeler', + 'packages' => 'Paketler', + 'dopings' => 'Dopingler', + 'advs' => 'Advs', + 'site' => 'Site', + 'subscription' => 'Abonelik', + 'created' => 'Oluşturuldu', + 'old_price' => [ + 'name' => 'Eski fiyat' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/message.php b/addons/default/visiosoft/advs-module/resources/lang/tr/message.php index 00fd03e21..82df978e8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/message.php @@ -23,6 +23,6 @@ return [ 'choose_user' => 'Bir kullanıcı seçin', 'owner_updated_successfully' => 'Sahibi Başarıyla Güncellenmiştir!', 'no_add_found' => 'İlan Bulunamadı!', - 'replicated_success' => 'Reklam başarıyla kopyalandı!', - 'ad_doesnt_exist' => "Bu reklam mevcut değil!", + 'replicated_success' => 'İlan başarıyla kopyalandı!', + 'ad_doesnt_exist' => "Bu İlan mevcut değil!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/section.php b/addons/default/visiosoft/advs-module/resources/lang/tr/section.php index 5b566bbef..f7adc843e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/section.php @@ -44,5 +44,5 @@ return [ 'options' => [ 'title' => 'Seçenekler', ], - 'ads_image' => 'Reklam Resmi', + 'ads_image' => 'İlan Resmi', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php b/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php index f09745ac0..9e3c9d652 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php @@ -9,7 +9,7 @@ return [ ], 'hide_zero_price' => [ 'name' => 'Sıfır ise Fiyatı Gizle', - 'instructions' => 'Reklam fiyatı 0 ise fiyatı gizle', + 'instructions' => 'İlan fiyatı 0 ise fiyatı gizle', ], 'estimated_pending_time' => [ 'name' => 'Tahmini Bekleme Süresi', @@ -129,7 +129,7 @@ return [ 'name' => 'TCMB Exchange URL\'si', ], 'popular_ads_limit' => [ - 'name' => 'Popüler Reklam Limiti', + 'name' => 'Popüler İlan Limiti', ], //Image diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/button.php b/addons/default/visiosoft/advs-module/resources/lang/uk/button.php index 6b7277f53..fe6de7c4a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Оновити категорію' ], 'new_option' => 'Нова опція', + 'export' => 'Експорт' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/field.php b/addons/default/visiosoft/advs-module/resources/lang/uk/field.php index 628c6f494..09fe095f1 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'і вище', 'and_below' => 'і нижче', 'clear_all' => 'Очистити все', + 'balances' => 'Баланси', + 'packages' => 'Пакети', + 'dopings' => 'Допінг', + 'advs' => 'Advs', + 'site' => 'Сайт', + 'subscription' => 'Передплата', + 'created' => 'Створено', + 'old_price' => [ + 'name' => 'Стара ціна' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/button.php b/addons/default/visiosoft/advs-module/resources/lang/ur/button.php index 9b412a895..48e176b96 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'زمرہ اپ ڈیٹ کریں' ], 'new_option' => 'نیا آپشن', + 'export' => 'برآمد کریں' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/field.php b/addons/default/visiosoft/advs-module/resources/lang/ur/field.php index 000857a60..d38e74af5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'اور اوپر', 'and_below' => 'اور نیچے', 'clear_all' => 'تمام کو صاف کریں', + 'balances' => 'توازن', + 'packages' => 'پیکیجز', + 'dopings' => 'ڈوپنگز', + 'advs' => 'ایڈز', + 'site' => 'سائٹ', + 'subscription' => 'سب سکریپشن', + 'created' => 'بنائی گئی', + 'old_price' => [ + 'name' => 'پرانی قیمت' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/button.php b/addons/default/visiosoft/advs-module/resources/lang/vi/button.php index 5cc1766d8..f1f73f281 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/button.php @@ -32,4 +32,5 @@ return [ 'name' => 'Cập nhật danh mục' ], 'new_option' => 'Tùy chọn mới', + 'export' => 'Xuất khẩu' ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/field.php b/addons/default/visiosoft/advs-module/resources/lang/vi/field.php index 50d4e9dd8..0b5e767e2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/field.php @@ -306,4 +306,14 @@ return [ 'and_above' => 'trở lên', 'and_below' => 'và dưới đây', 'clear_all' => 'Làm sạch tất cả', + 'balances' => 'Cân bằng', + 'packages' => 'Các gói', + 'dopings' => 'Liều lượng', + 'advs' => 'Lời khuyên', + 'site' => 'Địa điểm', + 'subscription' => 'Đăng ký', + 'created' => 'Tạo', + 'old_price' => [ + 'name' => 'Giá cũ' + ], ]; diff --git a/addons/default/visiosoft/base-theme/resources/lang/ar/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ar/setting.php index 8221638f8..8ccab5bff 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ar/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ar/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'حد الفئات الفرعية للصفحة الرئيسية', ], + 'default_country' => [ + 'name' => 'صفحة التسجيل ، البلد الافتراضي للهاتف', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/az/setting.php b/addons/default/visiosoft/base-theme/resources/lang/az/setting.php index 8317d134d..d3d7a5483 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/az/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/az/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Əsas alt kateqoriyalar məhdudiyyəti', ], + 'default_country' => [ + 'name' => 'Qeydiyyat səhifəsi, telefon üçün standart ölkə', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/bn/setting.php b/addons/default/visiosoft/base-theme/resources/lang/bn/setting.php index 37dd14199..083bc581b 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/bn/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/bn/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'হোমপেজ সাব বিভাগের সীমা', ], + 'default_country' => [ + 'name' => 'ফোনের জন্য পৃষ্ঠা, ডিফল্ট দেশ নিবন্ধ করুন', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/de/setting.php b/addons/default/visiosoft/base-theme/resources/lang/de/setting.php index ec0ba8165..b535ea2ec 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/de/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/de/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Homepage Unterkategorien Limit', ], + 'default_country' => [ + 'name' => 'Registrierungsseite, Standardland für Telefon', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/el/setting.php b/addons/default/visiosoft/base-theme/resources/lang/el/setting.php index 4f4c3ecfc..7f8e37b92 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/el/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/el/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Όριο υποκατηγοριών αρχικής σελίδας', ], + 'default_country' => [ + 'name' => 'Σελίδα εγγραφής, προεπιλεγμένη χώρα για τηλέφωνο', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/es/setting.php b/addons/default/visiosoft/base-theme/resources/lang/es/setting.php index f6a949c76..d505c2f04 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/es/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/es/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Límite de subcategorías de la página de inicio', ], + 'default_country' => [ + 'name' => 'Página de registro, país predeterminado para el teléfono', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/fa/setting.php b/addons/default/visiosoft/base-theme/resources/lang/fa/setting.php index d77025933..3c0671d87 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/fa/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/fa/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'زیرمجموعه ها', ], + 'default_country' => [ + 'name' => 'صفحه ثبت نام ، کشور پیش فرض تلفن', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/fr/setting.php b/addons/default/visiosoft/base-theme/resources/lang/fr/setting.php index c9b04e6e3..4cdc5fe72 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/fr/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/fr/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Limite des sous-catégories de la page d\'accueil', ], + 'default_country' => [ + 'name' => 'Page d\'enregistrement, pays par défaut pour le téléphone', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/he/setting.php b/addons/default/visiosoft/base-theme/resources/lang/he/setting.php index fd6e10e06..77f45592b 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/he/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/he/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'מגבלת קטגוריות המשנה לדף הבית', ], + 'default_country' => [ + 'name' => 'דף הרשמה, ארץ ברירת המחדל לטלפון', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/hi/setting.php b/addons/default/visiosoft/base-theme/resources/lang/hi/setting.php index 91ac0ef7e..fb4dcb8d2 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/hi/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/hi/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'मुखपृष्ठ उप श्रेणियाँ श्रेणियाँ सीमा', ], + 'default_country' => [ + 'name' => 'रजिस्टर पेज, फोन के लिए डिफ़ॉल्ट देश', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/it/setting.php b/addons/default/visiosoft/base-theme/resources/lang/it/setting.php index 30d283ac0..f6ba36f00 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/it/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/it/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Limite delle sottocategorie della home page', ], + 'default_country' => [ + 'name' => 'Pagina di registrazione, paese predefinito per il telefono', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ja/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ja/setting.php index 9ca3676c1..f91bc8f5f 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ja/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ja/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'ホームページのサブカテゴリの制限', ], + 'default_country' => [ + 'name' => '登録ページ、電話のデフォルトの国', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ko/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ko/setting.php index d1fa6353e..8baafa55e 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ko/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ko/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => '홈페이지 하위 카테고리 제한', ], + 'default_country' => [ + 'name' => '등록 페이지, 전화의 기본 국가', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/nl/setting.php b/addons/default/visiosoft/base-theme/resources/lang/nl/setting.php index 2b23dac74..96546c7ac 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/nl/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/nl/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Limiet subcategorieën op homepage', ], + 'default_country' => [ + 'name' => 'Registratiepagina, standaardland voor telefoon', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/pl/setting.php b/addons/default/visiosoft/base-theme/resources/lang/pl/setting.php index 5f3e95453..511898486 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/pl/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/pl/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Limit podkategorii strony głównej', ], + 'default_country' => [ + 'name' => 'Strona rejestracji, domyślny kraj dla telefonu', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/pt/setting.php b/addons/default/visiosoft/base-theme/resources/lang/pt/setting.php index 26ef6f439..f192800fe 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/pt/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/pt/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Limite de subcategorias da página inicial', ], + 'default_country' => [ + 'name' => 'Página de registro, país padrão para telefone', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ro/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ro/setting.php index 10067e769..03263f563 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ro/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ro/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Limita de subcategorii pentru pagina principală', ], + 'default_country' => [ + 'name' => 'Pagina de înregistrare, țara implicită pentru telefon', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ru/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ru/setting.php index 9849ee374..08dfb72f6 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ru/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ru/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Ограничение подкатегорий домашней страницы', ], + 'default_country' => [ + 'name' => 'Страница регистрации, страна по умолчанию для телефона', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/sq/setting.php b/addons/default/visiosoft/base-theme/resources/lang/sq/setting.php index 7286cbb1a..b6b542e51 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/sq/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/sq/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Nënkategoritë e faqes kryesore Kufiri', ], + 'default_country' => [ + 'name' => 'Faqja e regjistrimit, vendi i paracaktuar për telefon', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/sv/setting.php b/addons/default/visiosoft/base-theme/resources/lang/sv/setting.php index 9d805bc60..052911649 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/sv/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/sv/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Hemsida Underkategorier Begränsning', ], + 'default_country' => [ + 'name' => 'Registrera sida, standardland för telefon', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/tr/field.php b/addons/default/visiosoft/base-theme/resources/lang/tr/field.php index 5ff970318..161be2f65 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/tr/field.php +++ b/addons/default/visiosoft/base-theme/resources/lang/tr/field.php @@ -27,9 +27,9 @@ return [ // Registration instructions 'personal_registration_header' => 'Bireysel Üyelik Avantajları Nelerdir?', 'personal_registration_body' => 'Evinizi, arabanızı satmak ve kiralamak, kullanılmayan eşyalarınızı satmak, yenilerini almak.', - 'personal_registration_list_1' => 'Ücretsiz bir reklam gönderin,', - 'personal_registration_list_2' => 'İlgilendiğiniz reklamları ekleyin, favorilerinize ekledikten sonra fiyat değişikliklerini takip edin, kriterlerinize uygun favori aramalar oluşturun,', - 'personal_registration_list_3' => 'Sitedeki reklam sahiplerine mesaj gönderin.', + 'personal_registration_list_1' => 'Ücretsiz bir İlan gönderin,', + 'personal_registration_list_2' => 'İlgilendiğiniz ilanları ekleyin, favorilerinize ekledikten sonra fiyat değişikliklerini takip edin, kriterlerinize uygun favori aramalar oluşturun,', + 'personal_registration_list_3' => 'Sitedeki İlan sahiplerine mesaj gönderin.', 'register_information_note' => 'Bu sayfadaki bilgiler ' . env('APPLICATION_DOMAIN') . ' üyelik. Kişisel verilerin korunması hakkında ayrıntılı bilgiyi burada bulabilirsiniz.', // Register page @@ -45,7 +45,7 @@ return [ // Side menu links 'company_directory' => 'Firma Rehberi', - 'popular_ads' => 'popüler reklamlar', + 'popular_ads' => 'Popüler İlanlar', 'last_48_hours' => 'son 48 saat', 'secure_e-commerce_ads' => 'güvenli e-ticaret', 'sms' => 'Kısa Mesaj Gönder (SMS)', diff --git a/addons/default/visiosoft/base-theme/resources/lang/tr/setting.php b/addons/default/visiosoft/base-theme/resources/lang/tr/setting.php index b5e3e3bb3..0ab08307f 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/tr/setting.php @@ -20,10 +20,10 @@ return [ 'name' => 'Breadcrumb', ], 'ad_details' => [ - 'name' => 'Reklam Ayrıntıları', + 'name' => 'İlan Ayrıntıları', ], 'ad_details_tab' => [ - 'name' => 'Reklam Ayrıntıları Sekmesi', + 'name' => 'İlan Ayrıntıları Sekmesi', ], 'latest_and_view_all_btn' => [ 'name' => 'Tümünü Görüntüle', @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Ana Sayfa Alt Kategoriler Sınırı', ], + 'default_country' => [ + 'name' => 'Kayıt sayfası, telefon için varsayılan ülke', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/uk/setting.php b/addons/default/visiosoft/base-theme/resources/lang/uk/setting.php index f74df18be..564dca707 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/uk/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/uk/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Підкатегорії домашньої сторінки Обмеження', ], + 'default_country' => [ + 'name' => 'Сторінка реєстрації, країна за замовчуванням для телефону', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ur/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ur/setting.php index b63083f14..ab7f1b6c9 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ur/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ur/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'مرکزی صفحہ ذیلی زمرے کی حد', ], + 'default_country' => [ + 'name' => 'صفحہ کیلئے رجسٹر ، فون کے لئے پہلے سے طے شدہ ملک', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/vi/setting.php b/addons/default/visiosoft/base-theme/resources/lang/vi/setting.php index c133c17cb..9db82be46 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/vi/setting.php +++ b/addons/default/visiosoft/base-theme/resources/lang/vi/setting.php @@ -40,4 +40,7 @@ return [ 'home_page_sub_categories_limit' => [ 'name' => 'Giới hạn danh mục phụ của trang chủ', ], + 'default_country' => [ + 'name' => 'Trang đăng ký, quốc gia mặc định cho điện thoại', + ] ]; \ No newline at end of file diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/button.php index 33ed84ff3..02dd41f5d 100644 --- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/button.php +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/button.php @@ -1,5 +1,5 @@ 'Reklamlara göz at', + 'view_ads' => 'İlanlara göz at', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ar/setting.php b/addons/default/visiosoft/location-module/resources/lang/ar/setting.php index 46c416cec..ba95ff19d 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ar/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/ar/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'إخفاء عامل تصفية الموقع', ], + 'country_for_phone_field' => [ + 'name' => 'البلد الافتراضي لتسجيل حقل الهاتف' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/az/setting.php b/addons/default/visiosoft/location-module/resources/lang/az/setting.php index 908fdaeaa..513c4cd25 100644 --- a/addons/default/visiosoft/location-module/resources/lang/az/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/az/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Yer filtrini gizlət', ], + 'country_for_phone_field' => [ + 'name' => 'Telefon sahəsi üçün qeydiyyatdan keçmiş ölkə' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/bn/setting.php b/addons/default/visiosoft/location-module/resources/lang/bn/setting.php index 80ed5bd8c..00b0156ac 100644 --- a/addons/default/visiosoft/location-module/resources/lang/bn/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/bn/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'অবস্থান ফিল্টার লুকান', ], + 'country_for_phone_field' => [ + 'name' => 'রেজিস্টার ফোন ফিল্ডের জন্য ডিফল্ট দেশ' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/de/setting.php b/addons/default/visiosoft/location-module/resources/lang/de/setting.php index c07cc85d1..4eecbf26f 100644 --- a/addons/default/visiosoft/location-module/resources/lang/de/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/de/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Standortfilter ausblenden', ], + 'country_for_phone_field' => [ + 'name' => 'Standardland für das Feld "Telefon registrieren"' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/el/setting.php b/addons/default/visiosoft/location-module/resources/lang/el/setting.php index 6982015cf..f5f5de767 100644 --- a/addons/default/visiosoft/location-module/resources/lang/el/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/el/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Απόκρυψη φίλτρου τοποθεσίας', ], + 'country_for_phone_field' => [ + 'name' => 'Προεπιλεγμένη χώρα για εγγραφή πεδίου τηλεφώνου' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/es/setting.php b/addons/default/visiosoft/location-module/resources/lang/es/setting.php index cba0a41fd..8c9d151a1 100644 --- a/addons/default/visiosoft/location-module/resources/lang/es/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/es/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Ocultar filtro de ubicación', ], + 'country_for_phone_field' => [ + 'name' => 'País predeterminado para el campo de teléfono de registro' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/fa/setting.php b/addons/default/visiosoft/location-module/resources/lang/fa/setting.php index 030faba0a..1fda17655 100644 --- a/addons/default/visiosoft/location-module/resources/lang/fa/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/fa/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'فیلتر مکان را مخفی کنید', ], + 'country_for_phone_field' => [ + 'name' => 'کشور پیش فرض برای ثبت نام قسمت تلفن' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/fr/setting.php b/addons/default/visiosoft/location-module/resources/lang/fr/setting.php index 6f3097d01..855822da0 100644 --- a/addons/default/visiosoft/location-module/resources/lang/fr/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/fr/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Masquer le filtre de localisation', ], + 'country_for_phone_field' => [ + 'name' => 'Pays par défaut pour le champ de téléphone d\'enregistrement' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/he/setting.php b/addons/default/visiosoft/location-module/resources/lang/he/setting.php index 67bee08f4..69d19c3cc 100644 --- a/addons/default/visiosoft/location-module/resources/lang/he/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/he/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'הסתר מסנן מיקום', ], + 'country_for_phone_field' => [ + 'name' => 'מדינה ברירת מחדל לשדה טלפון רישום' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/hi/setting.php b/addons/default/visiosoft/location-module/resources/lang/hi/setting.php index 9f34d73fd..caf3346d0 100644 --- a/addons/default/visiosoft/location-module/resources/lang/hi/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/hi/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'स्थान फ़िल्टर छिपाएँ', ], + 'country_for_phone_field' => [ + 'name' => 'डिफ़ॉल्ट देश रजिस्टर फोन क्षेत्र के लिए' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/it/setting.php b/addons/default/visiosoft/location-module/resources/lang/it/setting.php index 4f3932431..95098365f 100644 --- a/addons/default/visiosoft/location-module/resources/lang/it/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/it/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Nascondi filtro posizione', ], + 'country_for_phone_field' => [ + 'name' => 'Paese predefinito per il campo del telefono di registrazione' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ja/setting.php b/addons/default/visiosoft/location-module/resources/lang/ja/setting.php index c5d1850af..90b738b2a 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ja/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/ja/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => '場所フィルターを非表示', ], + 'country_for_phone_field' => [ + 'name' => '電話登録フィールドのデフォルトの国' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ko/setting.php b/addons/default/visiosoft/location-module/resources/lang/ko/setting.php index 384ece314..d37762457 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ko/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/ko/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => '위치 필터 숨기기', ], + 'country_for_phone_field' => [ + 'name' => '전화 번호 등록 필드의 기본 국가' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/nl/setting.php b/addons/default/visiosoft/location-module/resources/lang/nl/setting.php index e40132984..974ca86fa 100644 --- a/addons/default/visiosoft/location-module/resources/lang/nl/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/nl/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Verberg locatiefilter', ], + 'country_for_phone_field' => [ + 'name' => 'Standaardland voor register telefoonveld' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/pl/setting.php b/addons/default/visiosoft/location-module/resources/lang/pl/setting.php index aaadbc034..1e8482f37 100644 --- a/addons/default/visiosoft/location-module/resources/lang/pl/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/pl/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Ukryj filtr lokalizacji', ], + 'country_for_phone_field' => [ + 'name' => 'Domyślny kraj dla pola numeru rejestracji' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/pt/setting.php b/addons/default/visiosoft/location-module/resources/lang/pt/setting.php index dedbb290e..035107b50 100644 --- a/addons/default/visiosoft/location-module/resources/lang/pt/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/pt/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Ocultar filtro de localização', ], + 'country_for_phone_field' => [ + 'name' => 'País padrão para campo de telefone de registro' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ro/setting.php b/addons/default/visiosoft/location-module/resources/lang/ro/setting.php index 295ed9238..26b2fabc0 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ro/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/ro/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Ascundeți filtrul de locație', ], + 'country_for_phone_field' => [ + 'name' => 'Țara implicită pentru câmpul de telefon al înregistrării' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ru/setting.php b/addons/default/visiosoft/location-module/resources/lang/ru/setting.php index 99c4ea4a9..eb3a75344 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ru/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/ru/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Скрыть фильтр местоположения', ], + 'country_for_phone_field' => [ + 'name' => 'Страна по умолчанию для поля регистрации телефона' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/sq/setting.php b/addons/default/visiosoft/location-module/resources/lang/sq/setting.php index 9703b8d3e..202cf53dd 100644 --- a/addons/default/visiosoft/location-module/resources/lang/sq/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/sq/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Fshih Filtrin e Vendndodhjes', ], + 'country_for_phone_field' => [ + 'name' => 'Vendi i paracaktuar për fushën e regjistrimit të telefonit' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/sv/setting.php b/addons/default/visiosoft/location-module/resources/lang/sv/setting.php index 2043691ab..5e5cca33f 100644 --- a/addons/default/visiosoft/location-module/resources/lang/sv/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/sv/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Dölj platsfilter', ], + 'country_for_phone_field' => [ + 'name' => 'Standardland för att registrera telefonfält' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/tr/setting.php b/addons/default/visiosoft/location-module/resources/lang/tr/setting.php index efd8c1bc7..eaaedeaac 100644 --- a/addons/default/visiosoft/location-module/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/tr/setting.php @@ -17,7 +17,7 @@ return [ 'name' => 'Varsayılan Ülke', ], 'create_ad_page_location' => [ - 'name' => 'Reklam Sayfası Konumu Oluşturun', + 'name' => 'İlan Sayfası Konumu Oluşturun', ], 'default_city' => [ 'name' => 'Varsayılan İl', @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Konum Filtresini Gizle', ], + 'country_for_phone_field' => [ + 'name' => 'Kayıtlı Telefon Alanı İçin Varsayılan Ülke' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/uk/setting.php b/addons/default/visiosoft/location-module/resources/lang/uk/setting.php index 70f89f2f7..46c6bb7c6 100644 --- a/addons/default/visiosoft/location-module/resources/lang/uk/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/uk/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Сховати фільтр місцеположення', ], + 'country_for_phone_field' => [ + 'name' => 'Країна за замовчуванням для телефонного поля реєстрації' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ur/setting.php b/addons/default/visiosoft/location-module/resources/lang/ur/setting.php index 2dcc964d9..aef8b0755 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ur/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/ur/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'لوکیشن فلٹر چھپائیں', ], + 'country_for_phone_field' => [ + 'name' => 'ڈیفالٹ کنٹری برائے رجسٹر فون فیلڈ' + ] ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/vi/setting.php b/addons/default/visiosoft/location-module/resources/lang/vi/setting.php index 9f51b6d10..541ddd58d 100644 --- a/addons/default/visiosoft/location-module/resources/lang/vi/setting.php +++ b/addons/default/visiosoft/location-module/resources/lang/vi/setting.php @@ -44,4 +44,7 @@ return [ 'hide_location_filter' => [ 'name' => 'Ẩn Bộ lọc Vị trí', ], + 'country_for_phone_field' => [ + 'name' => 'Quốc gia mặc định để đăng ký trường điện thoại' + ] ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/field.php b/addons/default/visiosoft/profile-module/resources/lang/ar/field.php index 06260197a..37a4db21c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'نوع السجل' ], + 'birthday' => [ + 'name' => 'عيد ميلاد' + ], 'identification_number' => [ 'name' => 'رقم الهوية' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/message.php b/addons/default/visiosoft/profile-module/resources/lang/ar/message.php index 6a32416c9..a0ce07369 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'لا يوجد عنوان أو غير مصرح له بالمشاهدة.', 'empty_password_sms_message' => 'نظرًا لمشاكل الأمان ، قمنا بتغيير كلمة المرور الخاصة بك! كلمة المرور الجديدة:', 'required_all' => "كل الحقول مطلوبة!", + 'can_not_remove_filled_fields' => "لا يمكنك إزالة الحقول المملوءة!", // Forgot Password 'email_phone_not_found' => 'البريد الإلكتروني ، رقم الهاتف غير صحيح!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/field.php b/addons/default/visiosoft/profile-module/resources/lang/az/field.php index bbe9d9d37..cf93cb6e5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Qeyd Növü' ], + 'birthday' => [ + 'name' => 'Ad günü' + ], 'identification_number' => [ 'name' => 'İdentifikasiya nömrəsi' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/message.php b/addons/default/visiosoft/profile-module/resources/lang/az/message.php index 2228931ed..718772fca 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Heç bir ünvan və ya görmək icazəsi yoxdur.', 'empty_password_sms_message' => 'Təhlükəsizlik problemləri ilə əlaqədar olaraq şifrənizi dəyişdirdik! Yeni parolunuz:', 'required_all' => "Bütün sahə tələb olunur!", + 'can_not_remove_filled_fields' => "Doldurulmuş sahələri silə bilməzsiniz!", // Forgot Password 'email_phone_not_found' => 'Elektron poçt, telefon nömrəsi düzgün deyil!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/field.php b/addons/default/visiosoft/profile-module/resources/lang/bn/field.php index 330265a88..b8c537e52 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'রেজিস্টার প্রকার' ], + 'birthday' => [ + 'name' => 'জন্মদিন' + ], 'identification_number' => [ 'name' => 'সনাক্তকরণ নম্বর' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/message.php b/addons/default/visiosoft/profile-module/resources/lang/bn/message.php index eccc91049..7faa1c7e9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'কোনও ঠিকানা নেই বা দেখার অনুমতি নেই।', 'empty_password_sms_message' => 'সুরক্ষা সমস্যার কারণে আমরা আপনার পাসওয়ার্ড পরিবর্তন করেছি! আপনার নতুন পাসওয়ার্ডটি হ\'ল:', 'required_all' => "সমস্ত ক্ষেত্র প্রয়োজন!", + 'can_not_remove_filled_fields' => "আপনি ভরাট ক্ষেত্র সরাতে পারবেন না!", // Forgot Password 'email_phone_not_found' => 'ই-মেইল, ফোন নম্বর ঠিক নয়!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/field.php b/addons/default/visiosoft/profile-module/resources/lang/de/field.php index a5ebc6e2c..a6dfa642e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Registertyp' ], + 'birthday' => [ + 'name' => 'Geburtstag' + ], 'identification_number' => [ 'name' => 'Identifikationsnummer' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/message.php b/addons/default/visiosoft/profile-module/resources/lang/de/message.php index 2ab48b44b..026edd871 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/message.php @@ -29,6 +29,7 @@ return [ 'ajax_address_error' => 'Keine Adresse oder nicht zum Anzeigen berechtigt.', 'empty_password_sms_message' => 'Aus Sicherheitsgründen haben wir Ihr Passwort geändert! Dein neues Passwort ist:', 'required_all' => "Alle Felder sind erforderlich!", + 'can_not_remove_filled_fields' => "Sie können gefüllte Felder nicht entfernen!", // Forgot Password 'email_phone_not_found' => 'Die E-Mail, Telefonnummer ist nicht korrekt!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/field.php b/addons/default/visiosoft/profile-module/resources/lang/el/field.php index 2212a1263..121d527c0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Τύπος μητρώου' ], + 'birthday' => [ + 'name' => 'Γενέθλια' + ], 'identification_number' => [ 'name' => 'Αριθμός αναγνώρισης' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/message.php b/addons/default/visiosoft/profile-module/resources/lang/el/message.php index 56af6606b..5c6449ed7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/message.php @@ -29,6 +29,7 @@ return [ 'ajax_address_error' => 'Καμία διεύθυνση ή μη εξουσιοδοτημένη προβολή.', 'empty_password_sms_message' => 'Λόγω προβλημάτων ασφαλείας, αλλάξαμε τον κωδικό πρόσβασής σας! Ο νέος κωδικός πρόσβασής σας είναι:', 'required_all' => "Απαιτείται όλο το πεδίο!", + 'can_not_remove_filled_fields' => "Δεν μπορείτε να καταργήσετε τα γεμάτα πεδία!", // Forgot Password 'email_phone_not_found' => 'Το E-mail, ο αριθμός τηλεφώνου δεν είναι σωστός!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/field.php b/addons/default/visiosoft/profile-module/resources/lang/es/field.php index 59afc16df..bfc6832a5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Tipo de registro' ], + 'birthday' => [ + 'name' => 'Cumpleaños' + ], 'identification_number' => [ 'name' => 'Número de identificación' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/message.php b/addons/default/visiosoft/profile-module/resources/lang/es/message.php index 7ee667ddf..efb500a35 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/message.php @@ -29,6 +29,7 @@ return [ 'ajax_address_error' => 'Sin dirección o sin autorización para ver.', 'empty_password_sms_message' => '¡Debido a problemas de seguridad, cambiamos su contraseña! Tu nueva contraseña es:', 'required_all' => "¡Todo el campo es obligatorio!", + 'can_not_remove_filled_fields' => "¡No puedes eliminar los campos llenos!", // Forgot Password 'email_phone_not_found' => 'El correo electrónico, número de teléfono no es correcto!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/field.php b/addons/default/visiosoft/profile-module/resources/lang/fa/field.php index ebb7805f3..386414b7e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'نوع ثبت نام' ], + 'birthday' => [ + 'name' => 'روز تولد' + ], 'identification_number' => [ 'name' => 'شماره شناسایی' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/message.php b/addons/default/visiosoft/profile-module/resources/lang/fa/message.php index f0c90c6a3..c43ae6c18 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'هیچ آدرس و یا مجاز به مشاهده نیست.', 'empty_password_sms_message' => 'به دلیل مشکلات امنیتی رمز عبور شما را تغییر دادیم! گذرواژه جدید شما این است:', 'required_all' => "همه زمینه لازم است!", + 'can_not_remove_filled_fields' => "شما نمی توانید زمینه های پر شده را حذف کنید!", // Forgot Password 'email_phone_not_found' => 'ایمیل ، شماره تلفن صحیح نیست!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/field.php b/addons/default/visiosoft/profile-module/resources/lang/fr/field.php index db342a737..333268bc7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Type de registre' ], + 'birthday' => [ + 'name' => 'Anniversaire' + ], 'identification_number' => [ 'name' => 'Numéro d\\'identification' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/message.php b/addons/default/visiosoft/profile-module/resources/lang/fr/message.php index 6c114ed4b..6d6d43389 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/message.php @@ -29,6 +29,7 @@ return [ 'ajax_address_error' => 'Aucune adresse ou non autorisé à voir.', 'empty_password_sms_message' => 'En raison de problèmes de sécurité, nous avons changé votre mot de passe! Votre nouveau mot de passe est:', 'required_all' => "Tous les champs sont obligatoires!", + 'can_not_remove_filled_fields' => "Vous ne pouvez pas supprimer les champs remplis!", // Forgot Password 'email_phone_not_found' => 'L\'e-mail, le numéro de téléphone n\'est pas correct!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/field.php b/addons/default/visiosoft/profile-module/resources/lang/he/field.php index 11f643910..a565b9804 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'סוג הרשמה' ], + 'birthday' => [ + 'name' => 'יום הולדת' + ], 'identification_number' => [ 'name' => 'מספר זיהוי' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/message.php b/addons/default/visiosoft/profile-module/resources/lang/he/message.php index f619d2074..831282291 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'אין כתובת או לא מורשה להציג.', 'empty_password_sms_message' => 'בגלל בעיות אבטחה, שינינו את הסיסמא שלך! הסיסמה החדשה שלך היא:', 'required_all' => "כל השדה נדרש!", + 'can_not_remove_filled_fields' => "אינך יכול להסיר שדות מלאים!", // Forgot Password 'email_phone_not_found' => 'הדואר האלקטרוני, מספר הטלפון אינו תקין!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/field.php b/addons/default/visiosoft/profile-module/resources/lang/hi/field.php index 952b5e8a3..50931b04d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'रजिस्टर प्रकार' ], + 'birthday' => [ + 'name' => 'जन्मदिन' + ], 'identification_number' => [ 'name' => 'पहचान संख्या' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/message.php b/addons/default/visiosoft/profile-module/resources/lang/hi/message.php index 1c8a9086f..c16b451c5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'कोई पता या देखने के लिए अधिकृत नहीं है।', 'empty_password_sms_message' => 'सुरक्षा समस्याओं के कारण, हमने आपका पासवर्ड बदल दिया है! आपका नया पासवर्ड है:', 'required_all' => "सभी फ़ील्ड आवश्यक है!", + 'can_not_remove_filled_fields' => "आप भरे हुए खेतों को नहीं हटा सकते हैं!", // Forgot Password 'email_phone_not_found' => 'ई-मेल, फोन नंबर सही नहीं है!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/field.php b/addons/default/visiosoft/profile-module/resources/lang/it/field.php index 21c9d7e35..09934961b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Tipo di registro' ], + 'birthday' => [ + 'name' => 'Compleanno' + ], 'identification_number' => [ 'name' => 'Numero identificativo' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/message.php b/addons/default/visiosoft/profile-module/resources/lang/it/message.php index 9f94f247e..e41aeab35 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/message.php @@ -29,6 +29,7 @@ return [ 'ajax_address_error' => 'Nessun indirizzo o non autorizzato a visualizzare.', 'empty_password_sms_message' => 'Per problemi di sicurezza, abbiamo cambiato la tua password! La tua nuova password è:', 'required_all' => "Tutti i campi sono obbligatori!", + 'can_not_remove_filled_fields' => "Non puoi rimuovere i campi compilati!", // Forgot Password 'email_phone_not_found' => 'L\'e-mail, il numero di telefono non è corretto!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/field.php b/addons/default/visiosoft/profile-module/resources/lang/ja/field.php index ac91892ea..480340bba 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => '登録タイプ' ], + 'birthday' => [ + 'name' => 'お誕生日' + ], 'identification_number' => [ 'name' => '識別番号' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/message.php b/addons/default/visiosoft/profile-module/resources/lang/ja/message.php index 914a5e122..d9f2c769e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => '住所がないか、表示する権限がありません。', 'empty_password_sms_message' => 'セキュリティ上の問題により、パスワードを変更しました!新しいパスワードは:', 'required_all' => "すべてのフィールドが必要です!", + 'can_not_remove_filled_fields' => "塗りつぶされたフィールドは削除できません!", // Forgot Password 'email_phone_not_found' => 'メール、電話番号が違います!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/field.php b/addons/default/visiosoft/profile-module/resources/lang/ko/field.php index 773c78dce..e5bc74744 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => '등록 유형' ], + 'birthday' => [ + 'name' => '생신' + ], 'identification_number' => [ 'name' => '식별 번호' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/message.php b/addons/default/visiosoft/profile-module/resources/lang/ko/message.php index 118e4327d..0981f167b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => '주소가 없거나 볼 권한이 없습니다.', 'empty_password_sms_message' => '보안 문제로 인해 비밀번호가 변경되었습니다. 새 비밀번호는 다음과 같습니다.', 'required_all' => "모든 필드는 필수입니다!", + 'can_not_remove_filled_fields' => "채워진 필드를 제거 할 수 없습니다!", // Forgot Password 'email_phone_not_found' => '이메일, 전화 번호가 올바르지 않습니다!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/field.php b/addons/default/visiosoft/profile-module/resources/lang/nl/field.php index 10d14ac4b..366fb9158 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Type register' ], + 'birthday' => [ + 'name' => 'Verjaardag' + ], 'identification_number' => [ 'name' => 'Identificatie Nummer' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/message.php b/addons/default/visiosoft/profile-module/resources/lang/nl/message.php index 906ed3b30..86b307c49 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Geen adres of niet geautoriseerd om te bekijken.', 'empty_password_sms_message' => 'Vanwege beveiligingsproblemen hebben we uw wachtwoord gewijzigd! Je nieuwe wachtwoord is:', 'required_all' => "Alle velden zijn vereist!", + 'can_not_remove_filled_fields' => "U kunt geen ingevulde velden verwijderen!", // Forgot Password 'email_phone_not_found' => 'Het e-mailadres, telefoonnummer is niet correct!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/field.php b/addons/default/visiosoft/profile-module/resources/lang/pl/field.php index 29b51337c..7ea14b05c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Typ rejestru' ], + 'birthday' => [ + 'name' => 'Urodziny' + ], 'identification_number' => [ 'name' => 'Numer identyfikacyjny' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/message.php b/addons/default/visiosoft/profile-module/resources/lang/pl/message.php index ee42e0a49..982b4c085 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Brak adresu lub brak uprawnień do przeglądania.', 'empty_password_sms_message' => 'Ze względów bezpieczeństwa zmieniliśmy twoje hasło! Twoje nowe hasło to:', 'required_all' => "Wszystkie pola są wymagane!", + 'can_not_remove_filled_fields' => "Nie możesz usunąć wypełnionych pól!", // Forgot Password 'email_phone_not_found' => 'Adres e-mail, numer telefonu jest nieprawidłowy!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/field.php b/addons/default/visiosoft/profile-module/resources/lang/pt/field.php index 670041b11..3eecb6c9f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Tipo de registro' ], + 'birthday' => [ + 'name' => 'Aniversário' + ], 'identification_number' => [ 'name' => 'Número de identificação' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/message.php b/addons/default/visiosoft/profile-module/resources/lang/pt/message.php index 3d2f57b67..025a7949a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/message.php @@ -31,6 +31,7 @@ return [ 'ajax_address_error' => 'Nenhum endereço ou não está autorizado a visualizar.', 'empty_password_sms_message' => 'Devido a problemas de segurança, alteramos sua senha! Sua nova senha é:', 'required_all' => "Todo o campo é obrigatório!", + 'can_not_remove_filled_fields' => "Você não pode remover os campos preenchidos!", // Forgot Password 'email_phone_not_found' => 'O e-mail, número de telefone não está correto!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/field.php b/addons/default/visiosoft/profile-module/resources/lang/ro/field.php index e37ca927d..586452d10 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Tip de înregistrare' ], + 'birthday' => [ + 'name' => 'Zi de nastere' + ], 'identification_number' => [ 'name' => 'Numar de identificare' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/message.php b/addons/default/visiosoft/profile-module/resources/lang/ro/message.php index 83347bf85..34702bc7a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Nicio adresă sau nu este autorizată să vizualizeze.', 'empty_password_sms_message' => 'Din cauza problemelor de securitate, v-am schimbat parola! Noua dvs. parolă este:', 'required_all' => "Tot câmpul este obligatoriu!", + 'can_not_remove_filled_fields' => "Nu puteți elimina câmpurile umplute!", // Forgot Password 'email_phone_not_found' => 'E-mailul, numărul de telefon nu este corect!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/field.php b/addons/default/visiosoft/profile-module/resources/lang/ru/field.php index 14810a8c9..5b04cb53d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Тип регистрации' ], + 'birthday' => [ + 'name' => 'День рождения' + ], 'identification_number' => [ 'name' => 'Идентификационный номер' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/message.php b/addons/default/visiosoft/profile-module/resources/lang/ru/message.php index 3ce635297..473d42daf 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/message.php @@ -31,6 +31,7 @@ return [ 'ajax_address_error' => 'Нет адреса или не авторизован для просмотра.', 'empty_password_sms_message' => 'Из-за проблем безопасности мы изменили ваш пароль! Ваш новый пароль:', 'required_all' => "Все поля обязательны для заполнения!", + 'can_not_remove_filled_fields' => "Заполненные поля удалить нельзя!", // Forgot Password 'email_phone_not_found' => 'E-mail, номер телефона неверен!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/field.php b/addons/default/visiosoft/profile-module/resources/lang/sq/field.php index f0c632930..9d4e84e43 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Tipi i regjistrimit' ], + 'birthday' => [ + 'name' => 'Ditëlindja' + ], 'identification_number' => [ 'name' => 'Numrin e identifikimit' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/message.php b/addons/default/visiosoft/profile-module/resources/lang/sq/message.php index 16dc3cee2..d8cdd5aae 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Asnjë adresë ose jo e autorizuar për të parë.', 'empty_password_sms_message' => 'Për shkak të çështjeve të sigurisë, ne ndryshuam fjalëkalimin tuaj! Fjalëkalimi juaj i ri është:', 'required_all' => "Kërkohet e gjithë fusha!", + 'can_not_remove_filled_fields' => "Ju nuk mund të hiqni fushat e mbushura!", // Forgot Password 'email_phone_not_found' => 'E-maili, numri i telefonit nuk është i saktë!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/field.php b/addons/default/visiosoft/profile-module/resources/lang/sv/field.php index 28bfa9638..64ebdf25d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Registreringstyp' ], + 'birthday' => [ + 'name' => 'Födelsedag' + ], 'identification_number' => [ 'name' => 'Identifieringsnummer' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/message.php b/addons/default/visiosoft/profile-module/resources/lang/sv/message.php index c20f75d1a..ff42328d8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Ingen adress eller inte behörig att visa.', 'empty_password_sms_message' => 'På grund av säkerhetsproblem har vi ändrat ditt lösenord! Ditt nya lösenord är:', 'required_all' => "Allt fält krävs!", + 'can_not_remove_filled_fields' => "Du kan inte ta bort fyllda fält!", // Forgot Password 'email_phone_not_found' => 'E-post, telefonnummer är inte korrekt!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/field.php b/addons/default/visiosoft/profile-module/resources/lang/tr/field.php index fd2610675..54c038dca 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Üyelik Tipi' ], + 'birthday' => [ + 'name' => 'Doğum günü' + ], 'identification_number' => [ 'name' => 'Kimlik Numarası' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/message.php b/addons/default/visiosoft/profile-module/resources/lang/tr/message.php index 68aed29b7..0dd4f3d0e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/message.php @@ -13,7 +13,7 @@ return [ "login_info_old_user" => "E-posta adresinize yeni bir şifre gönderildi.", "success" => "İşlem Başarılı", "notified_new_updates" => "Yeni güncellemelerden haberdar olmak istiyorum", - "notified_about_ads" => "Reklamlarım hakkında bildirimlere izin ver", + "notified_about_ads" => "İlanlarım hakkında bildirimlere izin ver", "receive_messages_email" => "Mesajları e-posta olarak almak istiyorum", "no_packages_module" => "Paket Modülü Bulunamadı!", "required_add"=> "Lütfen gerekli tüm satırları doldurun.", @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Adres yok veya görüntüleme yetkiniz bulunmamaktadır.', 'empty_password_sms_message' => 'Güvenlik sorunları nedeniyle şifrenizi değiştirdik! Yeni parolanız:', 'required_all' => "Tüm Alanlar Zorunludur!", + 'can_not_remove_filled_fields' => "Doldurulmuş alanları kaldıramazsınız!", // Forgot Password 'email_phone_not_found' => 'E-posta, Telefon Numarası doğru değil!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/field.php b/addons/default/visiosoft/profile-module/resources/lang/uk/field.php index d81046cbf..c48fb8e9f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Тип реєстру' ], + 'birthday' => [ + 'name' => 'День народження' + ], 'identification_number' => [ 'name' => 'Ідентифікаційний номер' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/message.php b/addons/default/visiosoft/profile-module/resources/lang/uk/message.php index 61a7c1b44..39de4a60c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Немає адреси або не має права перегляду.', 'empty_password_sms_message' => 'Через проблеми безпеки ми змінили ваш пароль! Ваш новий пароль:', 'required_all' => "Поле обов'язкове!", + 'can_not_remove_filled_fields' => "Ви не можете видалити заповнені поля!", // Forgot Password 'email_phone_not_found' => 'Неправильний електронний лист, номер телефону!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/field.php b/addons/default/visiosoft/profile-module/resources/lang/ur/field.php index 31f5216b5..5ccf5245b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'رجسٹر کی قسم' ], + 'birthday' => [ + 'name' => 'Birthday' + ], 'identification_number' => [ 'name' => 'شناختی نمبر' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/message.php b/addons/default/visiosoft/profile-module/resources/lang/ur/message.php index 79fdc2703..ec3e56351 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'کوئی پتہ اور نہ ہی دیکھنے کا اختیار ہے۔', 'empty_password_sms_message' => 'سیکیورٹی کے مسائل کی وجہ سے ، ہم نے آپ کا پاس ورڈ تبدیل کردیا! آپ کا نیا پاس ورڈ یہ ہے:', 'required_all' => "تمام فیلڈ کی ضرورت ہے!", + 'can_not_remove_filled_fields' => "آپ بھرے کھیتوں کو نہیں ہٹا سکتے!", // Forgot Password 'email_phone_not_found' => 'ای میل ، فون نمبر درست نہیں ہے!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/field.php b/addons/default/visiosoft/profile-module/resources/lang/vi/field.php index ed2e4c01a..b5a5101ac 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/field.php @@ -55,6 +55,9 @@ return [ 'register_type' => [ 'name' => 'Đăng ký loại' ], + 'birthday' => [ + 'name' => 'Sinh nhật' + ], 'identification_number' => [ 'name' => 'Mã số' ], diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/message.php b/addons/default/visiosoft/profile-module/resources/lang/vi/message.php index 34e932c10..481efc259 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/message.php @@ -28,6 +28,7 @@ return [ 'ajax_address_error' => 'Không có địa chỉ hoặc không được phép xem.', 'empty_password_sms_message' => 'Do vấn đề bảo mật, chúng tôi đã thay đổi mật khẩu của bạn! Mật khẩu mới của bạn là:', 'required_all' => "Tất cả các lĩnh vực là bắt buộc!", + 'can_not_remove_filled_fields' => "Bạn không thể loại bỏ các trường đã điền!", // Forgot Password 'email_phone_not_found' => 'E-mail, số điện thoại không chính xác!', From 161977ef08c9f5b9944b80a8534853dc0c2e2e93 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Wed, 21 Oct 2020 17:12:01 +0300 Subject: [PATCH 6/6] #2438 standard price always 0 fixed --- .../resources/views/new-ad/new-create.twig | 48 +++++++++---------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig b/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig index 4ccfbcfda..bd3a7c660 100644 --- a/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig +++ b/addons/default/visiosoft/advs-module/resources/views/new-ad/new-create.twig @@ -58,33 +58,33 @@ {{ form.fields.slug|raw }} -
- {{ form.fields.standard_price.setAttributes({ - 'required' :true, - }).input|raw }} -
+ {% if setting_value('visiosoft.module.advs::market_place') %} {{ addBlock('new-ad/fields', {'adv': adv})|raw }} - -
- - - {% set standardPriceValue = form.fields.standard_price.value|split('.') %} -
- -
-
- -
-
{% endif %} - +
+ +
+ {{ form.fields.standard_price.setAttributes({ + 'required' :true + }).input|raw }} +
+ {% set standardPriceValue = form.fields.standard_price.value|split('.') %} +
+ +
+
+ +
+