From 1d2305533d80d14ae2d8f196e96001feefcd7efe Mon Sep 17 00:00:00 2001 From: vedatakdogan Date: Fri, 11 Dec 2020 16:55:45 +0300 Subject: [PATCH 001/179] fixed override translations --- app/Lang/Loader.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/Lang/Loader.php b/app/Lang/Loader.php index 72f7728a0..e0e333626 100644 --- a/app/Lang/Loader.php +++ b/app/Lang/Loader.php @@ -183,8 +183,9 @@ class Loader extends FileLoader if (config()->has('override_text')) { foreach (config()->get('override_text') as $override) { $override = explode(':', $override); - - $lines = $this->findArrayValue($override[0], $override[1], $lines); + if (count($override) > 1) { + $lines = $this->findArrayValue($override[0], $override[1], $lines); + } } } From d111bb81540b366a954271cd464d03e0a949ebd4 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Mon, 14 Dec 2020 17:42:01 +0300 Subject: [PATCH 002/179] New translations field.php (Turkish) --- .../resources/lang/tr/field.php | 22 +++++++++++-------- 1 file changed, 13 insertions(+), 9 deletions(-) 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 945e70398..5cbda3ca5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/field.php @@ -5,10 +5,10 @@ return [ 'name' => 'Fotoğraflar' ], 'first_name' => [ - 'name' => 'Adınız' + 'name' => 'Ad' ], 'last_name' => [ - 'name' => 'Soyadınız' + 'name' => 'Soyad' ], 'username' => [ 'name' => 'Kullanıcı Adı' @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Doğum Günü' ], + 'facebook_address' => [ + 'name' => 'Facebook Adresi' + ], + 'google_address' => [ + 'name' => 'Google Adresi' + ], 'education' => [ 'name' => 'Eğitim' ], @@ -74,7 +80,7 @@ return [ 'name' => 'Adres Adı' ], 'adress_first_name' => [ - 'name' => 'İsim' + 'name' => 'Ad' ], 'adress_last_name' => [ 'name' => 'Soyad' @@ -374,12 +380,12 @@ return [ 'password' => [ 'name' => 'Şifre', ], + 'old_password' => [ + 'name' => 'Eski şifre', + ], 'new_password' => [ 'name' => 'Yeni Şifre', ], - 'old_password' => [ - 'name' => 'Eski Şifre', - ], 're_new_password' => [ 'name' => 'Şifre Onayı', ], @@ -461,11 +467,9 @@ return [ // Register page 'accept_terms_label' => 'Koşulları kabul ediyorum.', - 'accept_protection_law_label' => 'Kişisel Verilerin Korunması Kanunu hükümlerini kabul ediyorum.', 'accept_privacy_terms_label' => 'Gizlilik şartlarını kabul ediyorum.', - - 'receive_sms_emails_label' => 'E-posta ve sms almak istiyorum.', + 'receive_sms_emails_label' => 'E-posta ve sms almak istiyorum.', // Register Type 'personal' => [ From 4e56768c20d7b22f68017719805207c5e29976b5 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Mon, 14 Dec 2020 18:49:07 +0300 Subject: [PATCH 003/179] profile education form edit (half) --- ...odule.profile__create_education_stream.php | 46 +++++++++++++ ....profile__create_education_part_stream.php | 59 +++++++++++++++++ ...e__create_education_part_option_stream.php | 60 +++++++++++++++++ .../resources/config/permissions.php | 20 ++++++ .../resources/lang/en/button.php | 4 ++ .../resources/lang/en/permission.php | 32 +++++++++ .../resources/lang/en/section.php | 12 ++++ .../resources/lang/en/stream.php | 12 ++++ .../resources/views/profile/detail.twig | 66 +++++++++++-------- .../Education/Contract/EducationInterface.php | 8 +++ .../Contract/EducationRepositoryInterface.php | 8 +++ .../src/Education/EducationCollection.php | 8 +++ .../src/Education/EducationCriteria.php | 8 +++ .../src/Education/EducationModel.php | 9 +++ .../src/Education/EducationObserver.php | 8 +++ .../src/Education/EducationPresenter.php | 8 +++ .../src/Education/EducationRepository.php | 25 +++++++ .../src/Education/EducationRouter.php | 8 +++ .../src/Education/EducationSeeder.php | 15 +++++ .../Education/Form/EducationFormBuilder.php | 66 +++++++++++++++++++ .../Education/Table/EducationTableBuilder.php | 61 +++++++++++++++++ .../Contract/EducationPartInterface.php | 8 +++ .../EducationPartRepositoryInterface.php | 8 +++ .../EducationPart/EducationPartCollection.php | 8 +++ .../EducationPart/EducationPartCriteria.php | 8 +++ .../src/EducationPart/EducationPartModel.php | 9 +++ .../EducationPart/EducationPartObserver.php | 8 +++ .../EducationPart/EducationPartPresenter.php | 8 +++ .../EducationPart/EducationPartRepository.php | 25 +++++++ .../src/EducationPart/EducationPartRouter.php | 8 +++ .../src/EducationPart/EducationPartSeeder.php | 15 +++++ .../Form/EducationPartFormBuilder.php | 66 +++++++++++++++++++ .../Table/EducationPartTableBuilder.php | 61 +++++++++++++++++ .../Contract/EducationPartOptionInterface.php | 8 +++ ...EducationPartOptionRepositoryInterface.php | 8 +++ .../EducationPartOptionCollection.php | 8 +++ .../EducationPartOptionCriteria.php | 8 +++ .../EducationPartOptionModel.php | 9 +++ .../EducationPartOptionObserver.php | 8 +++ .../EducationPartOptionPresenter.php | 8 +++ .../EducationPartOptionRepository.php | 25 +++++++ .../EducationPartOptionRouter.php | 8 +++ .../EducationPartOptionSeeder.php | 15 +++++ .../Form/EducationPartOptionFormBuilder.php | 66 +++++++++++++++++++ .../Table/EducationPartOptionTableBuilder.php | 61 +++++++++++++++++ .../Http/Controller/MyProfileController.php | 16 +++++ .../src/OptionHandler/EducationOptions.php | 21 ++++++ .../Profile/Profile/ProfileFormBuilder.php | 9 ++- .../profile-module/src/ProfileModule.php | 15 +++++ .../src/ProfileModuleServiceProvider.php | 8 +++ .../src/Seed/UsersFieldsSeeder.php | 15 ----- 51 files changed, 1045 insertions(+), 46 deletions(-) create mode 100644 addons/default/visiosoft/profile-module/migrations/2020_12_14_160016_visiosoft.module.profile__create_education_stream.php create mode 100644 addons/default/visiosoft/profile-module/migrations/2020_12_14_160654_visiosoft.module.profile__create_education_part_stream.php create mode 100644 addons/default/visiosoft/profile-module/migrations/2020_12_14_161536_visiosoft.module.profile__create_education_part_option_stream.php create mode 100644 addons/default/visiosoft/profile-module/src/Education/Contract/EducationInterface.php create mode 100644 addons/default/visiosoft/profile-module/src/Education/Contract/EducationRepositoryInterface.php create mode 100644 addons/default/visiosoft/profile-module/src/Education/EducationCollection.php create mode 100644 addons/default/visiosoft/profile-module/src/Education/EducationCriteria.php create mode 100644 addons/default/visiosoft/profile-module/src/Education/EducationModel.php create mode 100644 addons/default/visiosoft/profile-module/src/Education/EducationObserver.php create mode 100644 addons/default/visiosoft/profile-module/src/Education/EducationPresenter.php create mode 100644 addons/default/visiosoft/profile-module/src/Education/EducationRepository.php create mode 100644 addons/default/visiosoft/profile-module/src/Education/EducationRouter.php create mode 100644 addons/default/visiosoft/profile-module/src/Education/EducationSeeder.php create mode 100644 addons/default/visiosoft/profile-module/src/Education/Form/EducationFormBuilder.php create mode 100644 addons/default/visiosoft/profile-module/src/Education/Table/EducationTableBuilder.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPart/Contract/EducationPartInterface.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPart/Contract/EducationPartRepositoryInterface.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPart/EducationPartCollection.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPart/EducationPartCriteria.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPart/EducationPartModel.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPart/EducationPartObserver.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPart/EducationPartPresenter.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPart/EducationPartRepository.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPart/EducationPartRouter.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPart/EducationPartSeeder.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPart/Form/EducationPartFormBuilder.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPart/Table/EducationPartTableBuilder.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/Contract/EducationPartOptionInterface.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/Contract/EducationPartOptionRepositoryInterface.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionCollection.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionCriteria.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionModel.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionObserver.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionPresenter.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionRepository.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionRouter.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionSeeder.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/Form/EducationPartOptionFormBuilder.php create mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/Table/EducationPartOptionTableBuilder.php create mode 100644 addons/default/visiosoft/profile-module/src/OptionHandler/EducationOptions.php diff --git a/addons/default/visiosoft/profile-module/migrations/2020_12_14_160016_visiosoft.module.profile__create_education_stream.php b/addons/default/visiosoft/profile-module/migrations/2020_12_14_160016_visiosoft.module.profile__create_education_stream.php new file mode 100644 index 000000000..8320e2da6 --- /dev/null +++ b/addons/default/visiosoft/profile-module/migrations/2020_12_14_160016_visiosoft.module.profile__create_education_stream.php @@ -0,0 +1,46 @@ + 'education', + 'title_column' => 'name', + 'translatable' => true, + 'versionable' => false, + 'trashable' => false, + 'searchable' => false, + 'sortable' => false, + ]; + + /** + * The stream assignments. + * + * @var array + */ + protected $assignments = [ + 'name' => [ + 'translatable' => true, + 'required' => true, + ], + 'slug' => [ + 'unique' => true, + 'required' => true, + ], + ]; +} diff --git a/addons/default/visiosoft/profile-module/migrations/2020_12_14_160654_visiosoft.module.profile__create_education_part_stream.php b/addons/default/visiosoft/profile-module/migrations/2020_12_14_160654_visiosoft.module.profile__create_education_part_stream.php new file mode 100644 index 000000000..3ad4d9d96 --- /dev/null +++ b/addons/default/visiosoft/profile-module/migrations/2020_12_14_160654_visiosoft.module.profile__create_education_part_stream.php @@ -0,0 +1,59 @@ + 'education_part', + 'title_column' => 'name', + 'translatable' => true, + 'versionable' => false, + 'trashable' => false, + 'searchable' => false, + 'sortable' => false, + ]; + + /** + * The stream assignments. + * + * @var array + */ + protected $assignments = [ + 'education' => [ + 'required' => true, + ], + 'name' => [ + 'translatable' => true, + 'required' => true, + ], + 'slug' => [ + 'unique' => true, + 'required' => true, + ], + ]; + + protected $fields = [ + 'education' => [ + 'type' => 'anomaly.field_type.relationship', + 'config' => [ + 'related' => EducationModel::class, + ] + ] + ]; +} diff --git a/addons/default/visiosoft/profile-module/migrations/2020_12_14_161536_visiosoft.module.profile__create_education_part_option_stream.php b/addons/default/visiosoft/profile-module/migrations/2020_12_14_161536_visiosoft.module.profile__create_education_part_option_stream.php new file mode 100644 index 000000000..a6d14710e --- /dev/null +++ b/addons/default/visiosoft/profile-module/migrations/2020_12_14_161536_visiosoft.module.profile__create_education_part_option_stream.php @@ -0,0 +1,60 @@ + 'education_part_option', + 'title_column' => 'name', + 'translatable' => true, + 'versionable' => false, + 'trashable' => false, + 'searchable' => false, + 'sortable' => false, + ]; + + /** + * The stream assignments. + * + * @var array + */ + protected $assignments = [ + 'education_part' => [ + 'required' => true, + ], + 'name' => [ + 'translatable' => true, + 'required' => true, + ], + 'slug' => [ + 'unique' => true, + 'required' => true, + ], + ]; + + protected $fields = [ + 'education_part' => [ + 'type' => 'anomaly.field_type.relationship', + 'config' => [ + 'related' => EducationPartModel::class, + ] + ] + ]; + +} diff --git a/addons/default/visiosoft/profile-module/resources/config/permissions.php b/addons/default/visiosoft/profile-module/resources/config/permissions.php index af2857e38..e4abd05b1 100644 --- a/addons/default/visiosoft/profile-module/resources/config/permissions.php +++ b/addons/default/visiosoft/profile-module/resources/config/permissions.php @@ -6,4 +6,24 @@ return [ 'write', 'delete', ], + 'education' => [ + 'read', + 'write', + 'delete', + ], + 'education' => [ + 'read', + 'write', + 'delete', + ], + 'education_part' => [ + 'read', + 'write', + 'delete', + ], + 'education_part_option' => [ + 'read', + 'write', + 'delete', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/button.php b/addons/default/visiosoft/profile-module/resources/lang/en/button.php index 11c564faa..a8af9e732 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/button.php @@ -15,4 +15,8 @@ return [ 'personal' => 'Personal', 'corporate' => 'Corporate', 'export' => 'Export', + 'new_education' => 'New Education', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', + 'new_education_part_option' => 'New Education part option', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/permission.php b/addons/default/visiosoft/profile-module/resources/lang/en/permission.php index b9351ead9..c7ddc6128 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/permission.php @@ -17,4 +17,36 @@ return [ 'delete' => 'Can delete adress?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], + 'education_part_option' => [ + 'name' => 'Education part option', + 'option' => [ + 'read' => 'Can read education part option?', + 'write' => 'Can create/edit education part option?', + 'delete' => 'Can delete education part option?', + ], + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/section.php b/addons/default/visiosoft/profile-module/resources/lang/en/section.php index 33c358b85..b6df27826 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/section.php @@ -9,4 +9,16 @@ return [ ], 'general_setting' => 'General Settings', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], + 'education_part_option' => [ + 'title' => 'Education part option', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/stream.php b/addons/default/visiosoft/profile-module/resources/lang/en/stream.php index 80f666dd3..30aa34db7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/stream.php @@ -7,4 +7,16 @@ return [ 'adress' => [ 'name' => 'Address', ], + 'education' => [ + 'name' => 'Education', + ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], + 'education_part_option' => [ + 'name' => 'Education part option', + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig b/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig index 8b733d248..d0f656ba1 100644 --- a/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig +++ b/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig @@ -171,40 +171,15 @@ - {{ profileForm.fields.education.value.input|raw }} - + {{ profileForm.fields.education.input|raw }}
-
+
- + {{ profileForm.fields.education_part.input|raw }}
@@ -283,5 +258,38 @@ {% endblock %} {% endembed %} + {{ asset_add("scripts.js", "visiosoft.module.profile::assets/js/profile.js") }} {% endblock %} \ No newline at end of file diff --git a/addons/default/visiosoft/profile-module/src/Education/Contract/EducationInterface.php b/addons/default/visiosoft/profile-module/src/Education/Contract/EducationInterface.php new file mode 100644 index 000000000..25cde7990 --- /dev/null +++ b/addons/default/visiosoft/profile-module/src/Education/Contract/EducationInterface.php @@ -0,0 +1,8 @@ +model = $model; + } +} diff --git a/addons/default/visiosoft/profile-module/src/Education/EducationRouter.php b/addons/default/visiosoft/profile-module/src/Education/EducationRouter.php new file mode 100644 index 000000000..ffc70a9fc --- /dev/null +++ b/addons/default/visiosoft/profile-module/src/Education/EducationRouter.php @@ -0,0 +1,8 @@ +model = $model; + } +} diff --git a/addons/default/visiosoft/profile-module/src/EducationPart/EducationPartRouter.php b/addons/default/visiosoft/profile-module/src/EducationPart/EducationPartRouter.php new file mode 100644 index 000000000..331061459 --- /dev/null +++ b/addons/default/visiosoft/profile-module/src/EducationPart/EducationPartRouter.php @@ -0,0 +1,8 @@ +model = $model; + } +} diff --git a/addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionRouter.php b/addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionRouter.php new file mode 100644 index 000000000..414126e89 --- /dev/null +++ b/addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionRouter.php @@ -0,0 +1,8 @@ +json(['status' => 'success', 'data' => $profile]); } + public function getEducation(Request $request) + { + $user = $this->userRepository->find(auth()->user()->getAuthIdentifier()); + $education = EducationModel::all(); + $educationPart = EducationPartModel::all(); + return response()->json(['user' => $user, 'education' => $education, 'education-part' => $educationPart], 200); + } + + public function setEducation(Request $request) + { + $user = $this->userRepository->find(auth()->user()->getAuthIdentifier())->update(['education' => $request->education]); + $education_part = EducationPartModel::query()->where('education_id', $request->education)->get(); + return response()->json(['messages' => $user, 'data' => $education_part], 200); + } } diff --git a/addons/default/visiosoft/profile-module/src/OptionHandler/EducationOptions.php b/addons/default/visiosoft/profile-module/src/OptionHandler/EducationOptions.php new file mode 100644 index 000000000..7c8554979 --- /dev/null +++ b/addons/default/visiosoft/profile-module/src/OptionHandler/EducationOptions.php @@ -0,0 +1,21 @@ +educationRepository = $repository; + } + + public function handle(SelectFieldType $fieldType) + { + $educations = $this->educationRepository->all(); + $options = $educations->pluck('name', 'id')->all(); + $fieldType->setOptions($options); + } +} \ No newline at end of file diff --git a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormBuilder.php b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormBuilder.php index d93408d68..4f98e00aa 100644 --- a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormBuilder.php +++ b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormBuilder.php @@ -13,8 +13,13 @@ class ProfileFormBuilder extends FormBuilder 'office_phone', 'land_phone', 'identification_number', - 'education', - 'state_of_education', + 'education' => [ + 'type' => 'anomaly.field_type.select', + 'config' => [ + 'handler' => 'Visiosoft\ProfileModule\OptionHandler\EducationOptions@handle', + ] + ], + 'education_part' => 'anomaly.field_type.select', 'profession', 'birthday', 'register_type', diff --git a/addons/default/visiosoft/profile-module/src/ProfileModule.php b/addons/default/visiosoft/profile-module/src/ProfileModule.php index 69b94033e..81f00785b 100644 --- a/addons/default/visiosoft/profile-module/src/ProfileModule.php +++ b/addons/default/visiosoft/profile-module/src/ProfileModule.php @@ -30,6 +30,21 @@ class ProfileModule extends Module 'new_adress', ], ], + 'education' => [ + 'buttons' => [ + 'new_education', + ] + ], + 'education_part' => [ + 'buttons' => [ + 'new_education', + ] + ], + 'education_part_option' => [ + 'buttons' => [ + 'new_education', + ] + ] ]; } diff --git a/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php b/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php index bbedeac27..6d1817c5b 100644 --- a/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php +++ b/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php @@ -2,6 +2,7 @@ use Anomaly\Streams\Platform\Addon\AddonCollection; use Anomaly\Streams\Platform\Addon\AddonServiceProvider; +use Anomaly\Streams\Platform\Model\Profile\ProfileEducationEntryModel; use Maatwebsite\Excel\ExcelServiceProvider; use Maatwebsite\Excel\Facades\Excel; use Visiosoft\ProfileModule\Adress\Contract\AdressRepositoryInterface; @@ -10,6 +11,9 @@ use Anomaly\Streams\Platform\Model\Profile\ProfileAdressEntryModel; use Visiosoft\ProfileModule\Adress\AdressModel; use Visiosoft\ProfileModule\Adress\Form\AdressFormBuilder; use Visiosoft\ProfileModule\Adress\FormCompany\AddressCompanyFormBuilder; +use Visiosoft\ProfileModule\Education\Contract\EducationRepositoryInterface; +use Visiosoft\ProfileModule\Education\EducationModel; +use Visiosoft\ProfileModule\Education\EducationRepository; use Visiosoft\ProfileModule\Http\Middleware\authCheck; use Visiosoft\ProfileModule\Profile\Password\ForgotPassFormBuilder; use Visiosoft\ProfileModule\Profile\Password\PasswordFormBuilder; @@ -139,6 +143,8 @@ class ProfileModuleServiceProvider extends AddonServiceProvider // CacheController 'ajax/get-user-info' => 'Visiosoft\ProfileModule\Http\Controller\CacheController@getUserInfo', + 'ajax/setEducation' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@setEducation', + 'ajax/getEducation' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@getEducation', ]; /** @@ -201,6 +207,7 @@ class ProfileModuleServiceProvider extends AddonServiceProvider 'address' => AdressFormBuilder::class, 'addressCompany' => AddressCompanyFormBuilder::class, ProfileAdressEntryModel::class => AdressModel::class, + ProfileEducationEntryModel::class => EducationModel::class, ]; /** @@ -210,6 +217,7 @@ class ProfileModuleServiceProvider extends AddonServiceProvider */ protected $singletons = [ AdressRepositoryInterface::class => AdressRepository::class, + EducationRepositoryInterface::class => EducationRepository::class, 'register2' => Register2FormBuilder::class, 'sites' => SitesFormBuilder::class, 'forgot_pass' => ForgotPassFormBuilder::class, diff --git a/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php b/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php index cf4271066..1d0301bbc 100644 --- a/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php +++ b/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php @@ -123,21 +123,6 @@ class UsersFieldsSeeder extends Seeder "mode" => "date", "picker" => true, ] - ], - [ - 'name' => trans('visiosoft.module.profile::field.education.name'), - 'slug' => 'education', - 'type' => 'anomaly.field_type.text', - ], - [ - 'name' => trans('visiosoft.module.profile::field.state_of_education.name'), - 'slug' => 'state_of_education', - 'type' => 'anomaly.field_type.text', - ], - [ - 'name' => trans('visiosoft.module.profile::field.profession.name'), - 'slug' => 'profession', - 'type' => 'anomaly.field_type.text', ], [ 'name' => trans('visiosoft.module.profile::field.facebook_address.name'), From 734c55b54e8658c73799656f39491600732c285d Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Tue, 15 Dec 2020 15:07:34 +0300 Subject: [PATCH 004/179] profile education form edit --- ...e__create_education_part_option_stream.php | 60 ----------------- .../resources/assets/js/education.js | 45 +++++++++++++ .../resources/lang/en/field.php | 7 ++ .../resources/views/profile/detail.twig | 40 ++--------- .../Contract/EducationPartOptionInterface.php | 8 --- ...EducationPartOptionRepositoryInterface.php | 8 --- .../EducationPartOptionCollection.php | 8 --- .../EducationPartOptionCriteria.php | 8 --- .../EducationPartOptionModel.php | 9 --- .../EducationPartOptionObserver.php | 8 --- .../EducationPartOptionPresenter.php | 8 --- .../EducationPartOptionRepository.php | 25 ------- .../EducationPartOptionRouter.php | 8 --- .../EducationPartOptionSeeder.php | 15 ----- .../Form/EducationPartOptionFormBuilder.php | 66 ------------------- .../Table/EducationPartOptionTableBuilder.php | 61 ----------------- .../Http/Controller/MyProfileController.php | 15 +++-- .../profile-module/src/ProfileModule.php | 5 -- .../src/Seed/UsersFieldsSeeder.php | 25 +++++++ 19 files changed, 94 insertions(+), 335 deletions(-) delete mode 100644 addons/default/visiosoft/profile-module/migrations/2020_12_14_161536_visiosoft.module.profile__create_education_part_option_stream.php create mode 100644 addons/default/visiosoft/profile-module/resources/assets/js/education.js delete mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/Contract/EducationPartOptionInterface.php delete mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/Contract/EducationPartOptionRepositoryInterface.php delete mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionCollection.php delete mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionCriteria.php delete mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionModel.php delete mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionObserver.php delete mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionPresenter.php delete mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionRepository.php delete mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionRouter.php delete mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionSeeder.php delete mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/Form/EducationPartOptionFormBuilder.php delete mode 100644 addons/default/visiosoft/profile-module/src/EducationPartOption/Table/EducationPartOptionTableBuilder.php diff --git a/addons/default/visiosoft/profile-module/migrations/2020_12_14_161536_visiosoft.module.profile__create_education_part_option_stream.php b/addons/default/visiosoft/profile-module/migrations/2020_12_14_161536_visiosoft.module.profile__create_education_part_option_stream.php deleted file mode 100644 index a6d14710e..000000000 --- a/addons/default/visiosoft/profile-module/migrations/2020_12_14_161536_visiosoft.module.profile__create_education_part_option_stream.php +++ /dev/null @@ -1,60 +0,0 @@ - 'education_part_option', - 'title_column' => 'name', - 'translatable' => true, - 'versionable' => false, - 'trashable' => false, - 'searchable' => false, - 'sortable' => false, - ]; - - /** - * The stream assignments. - * - * @var array - */ - protected $assignments = [ - 'education_part' => [ - 'required' => true, - ], - 'name' => [ - 'translatable' => true, - 'required' => true, - ], - 'slug' => [ - 'unique' => true, - 'required' => true, - ], - ]; - - protected $fields = [ - 'education_part' => [ - 'type' => 'anomaly.field_type.relationship', - 'config' => [ - 'related' => EducationPartModel::class, - ] - ] - ]; - -} diff --git a/addons/default/visiosoft/profile-module/resources/assets/js/education.js b/addons/default/visiosoft/profile-module/resources/assets/js/education.js new file mode 100644 index 000000000..78dc044bb --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/assets/js/education.js @@ -0,0 +1,45 @@ +$(() => { + $.ajax({ + url: '/ajax/getEducation', + success: ((res)=>{ + $.each(res['education-part'], function (key, value) { + var selected = "" + if (res.user.education_part == value.id){ selected = 'selected'; } + $('#education_part').append('') + }) + }) + }) + + $('#education').on('change', () => { + $.ajax({ + url: '/ajax/setEducation', + data: { + info: 'education', + education: $('#education').val() + },beforeSend: function (){ + $('#education_part').html(''); + },success: function (response) { + $('#education_part').html('') + $.each(response.data, function (key, value) { + $('#education_part').append( + '' + ) + }) + } + }); + }) + + $('#education_part').on('change', () => { + $.ajax({ + url: '/ajax/setEducation', + data: { + info: 'education_part', + education: $('#education_part').val() + }, beforeSend: function (){ + $('#education_part_option').html(''); + }, success: function (response) { + + } + }) + }) +}) \ No newline at end of file diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/field.php b/addons/default/visiosoft/profile-module/resources/lang/en/field.php index 5ac8fe1d6..90e22a8eb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/field.php @@ -121,6 +121,9 @@ return [ 'user' => [ 'name' => 'User' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -476,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Personal' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig b/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig index d0f656ba1..60017932a 100644 --- a/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig +++ b/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig @@ -175,7 +175,7 @@
-
+
@@ -221,6 +221,7 @@
{{ profileForm.close()|raw }}
+
+ {% endblock %} {% endembed %} - + {{ asset_script("visiosoft.module.profile::assets/js/education.js") }} {{ asset_add("scripts.js", "visiosoft.module.profile::assets/js/profile.js") }} {% endblock %} \ No newline at end of file diff --git a/addons/default/visiosoft/profile-module/src/EducationPartOption/Contract/EducationPartOptionInterface.php b/addons/default/visiosoft/profile-module/src/EducationPartOption/Contract/EducationPartOptionInterface.php deleted file mode 100644 index 278c5a01d..000000000 --- a/addons/default/visiosoft/profile-module/src/EducationPartOption/Contract/EducationPartOptionInterface.php +++ /dev/null @@ -1,8 +0,0 @@ -model = $model; - } -} diff --git a/addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionRouter.php b/addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionRouter.php deleted file mode 100644 index 414126e89..000000000 --- a/addons/default/visiosoft/profile-module/src/EducationPartOption/EducationPartOptionRouter.php +++ /dev/null @@ -1,8 +0,0 @@ -userRepository->find(auth()->user()->getAuthIdentifier()); $education = EducationModel::all(); - $educationPart = EducationPartModel::all(); + $educationPart = EducationPartModel::query()->where('education_id', $user->education)->get(); return response()->json(['user' => $user, 'education' => $education, 'education-part' => $educationPart], 200); } public function setEducation(Request $request) { - $user = $this->userRepository->find(auth()->user()->getAuthIdentifier())->update(['education' => $request->education]); - $education_part = EducationPartModel::query()->where('education_id', $request->education)->get(); - return response()->json(['messages' => $user, 'data' => $education_part], 200); + $user_id = auth()->user()->getAuthIdentifier(); + if ($request->info == 'education') { + $user = $this->userRepository->find($user_id)->update(['education' => $request->education]); + $education = EducationPartModel::query()->where('education_id', $request->education)->get(); + } elseif ($request->info == 'education_part') { + $user = $this->userRepository->find($user_id)->update(['education_part' => $request->education]); + $education = EducationPartOptionModel::query()->where('education_part_id', $request->education)->get(); + } + return response()->json(['messages' => $user, 'data' => $education], 200); } } diff --git a/addons/default/visiosoft/profile-module/src/ProfileModule.php b/addons/default/visiosoft/profile-module/src/ProfileModule.php index 81f00785b..a6ad6ee88 100644 --- a/addons/default/visiosoft/profile-module/src/ProfileModule.php +++ b/addons/default/visiosoft/profile-module/src/ProfileModule.php @@ -40,11 +40,6 @@ class ProfileModule extends Module 'new_education', ] ], - 'education_part_option' => [ - 'buttons' => [ - 'new_education', - ] - ] ]; } diff --git a/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php b/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php index 1d0301bbc..4b7f734ed 100644 --- a/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php +++ b/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php @@ -124,6 +124,31 @@ class UsersFieldsSeeder extends Seeder "picker" => true, ] ], + [ + 'name' => trans('visiosoft.module.profile::field.education.name'), + 'slug' => 'education', + 'type' => 'anomaly.field_type.text', + ], + [ + 'name' => trans('visiosoft.module.profile::field.state_of_education.name'), + 'slug' => 'state_of_education', + 'type' => 'anomaly.field_type.text', + ], + [ + 'name' => trans('visiosoft.module.profile::field.profession.name'), + 'slug' => 'profession', + 'type' => 'anomaly.field_type.select', + ], + [ + 'name' => trans('visiosoft.module.profile::field.education_part.name'), + 'slug' => 'education_part', + 'type' => 'anomaly.field_type.select', + ], + [ + 'name' => trans('visiosoft.module.profile::field.education_part_option.name'), + 'slug' => 'education_part_option', + 'type' => 'anomaly.field_type.select', + ], [ 'name' => trans('visiosoft.module.profile::field.facebook_address.name'), 'slug' => 'facebook_address', From 9d1033155708f0bb6032673af3453fd4707459a9 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Tue, 15 Dec 2020 17:15:06 +0300 Subject: [PATCH 005/179] #2892 Oc register form edited --- .../visiosoft/base-theme/resources/css/register.css | 10 ++++++++++ .../default/visiosoft/base-theme/resources/js/utils.js | 6 +++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/addons/default/visiosoft/base-theme/resources/css/register.css b/addons/default/visiosoft/base-theme/resources/css/register.css index 954390e8e..081bc6d13 100644 --- a/addons/default/visiosoft/base-theme/resources/css/register.css +++ b/addons/default/visiosoft/base-theme/resources/css/register.css @@ -26,4 +26,14 @@ .phone-validation-error { color: #c75050; font-size: 14px; +} + +input { + color: #707070 !important; +} + +input::-webkit-input-placeholder, +input::-moz-placeholder, +input::placeholder { + color: #BCBDC3 !important; } \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/js/utils.js b/addons/default/visiosoft/base-theme/resources/js/utils.js index c1e4402b9..9a72b6ad1 100644 --- a/addons/default/visiosoft/base-theme/resources/js/utils.js +++ b/addons/default/visiosoft/base-theme/resources/js/utils.js @@ -233,7 +233,7 @@ FO:[,[,,"(?:[2-8]\\d|90)\\d{4}",,,,,,,[6]],[,,"(?:20|[34]\\d|8[19])\\d{4}",,,,"2 ,,,[7]],[,,"8(?:00|33|44|55|66|77|88)[2-9]\\d{6}",,,,"8002123456"],[,,"900[2-9]\\d{6}",,,,"9002123456"],[,,,,,,,,,[-1]],[,,"5(?:00|2[12]|33|44|66|77|88)[2-9]\\d{6}",,,,"5002345678"],[,,,,,,,,,[-1]],"JM",1,"011","1",,,"1",,,,,,[,,,,,,,,,[-1]],,"658|876",[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],JO:[,[,,"900\\d{5}|(?:(?:[268]|7\\d)\\d|32|53)\\d{6}",,,,,,,[8,9]],[,,"(?:2(?:6(?:2[0-35-9]|3[0-578]|4[24-7]|5[0-24-8]|[6-8][023]|9[0-3])|7(?:0[1-79]|10|2[014-7]|3[0-689]|4[019]|5[0-3578]))|32(?:0[1-69]|1[1-35-7]|2[024-7]|3\\d|4[0-3]|[57][023]|6[03])|53(?:0[0-3]|[13][023]|2[0-59]|49|5[0-35-9]|6[15]|7[45]|8[1-6]|9[0-36-9])|6(?:2(?:[05]0|22)|3(?:00|33)|4(?:0[0-25]|1[2-7]|2[0569]|[38][07-9]|4[025689]|6[0-589]|7\\d|9[0-2])|5(?:[01][056]|2[034]|3[0-57-9]|4[178]|5[0-69]|6[0-35-9]|7[1-379]|8[0-68]|9[0239]))|87(?:[029]0|7[08]))\\d{4}", ,,,"62001234",,,[8]],[,,"7(?:55[0-49]|(?:7[025-9]|[89][0-25-9])\\d)\\d{5}",,,,"790123456",,,[9]],[,,"80\\d{6}",,,,"80012345",,,[8]],[,,"900\\d{5}",,,,"90012345",,,[8]],[,,"85\\d{6}",,,,"85012345",,,[8]],[,,"70\\d{7}",,,,"700123456",,,[9]],[,,,,,,,,,[-1]],"JO",962,"00","0",,,"0",,,,[[,"(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2356]|87"],"(0$1)"],[,"(\\d{3})(\\d{5,6})","$1 $2",["[89]"],"0$1"],[,"(\\d{2})(\\d{7})","$1 $2",["70"],"0$1"],[,"(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["7"],"0$1"]],,[,,"74(?:66|77)\\d{5}", ,,,"746612345",,,[9]],,,[,,,,,,,,,[-1]],[,,"8(?:10|8\\d)\\d{5}",,,,"88101234",,,[8]],,,[,,,,,,,,,[-1]]],JP:[,[,,"00[1-9]\\d{6,14}|[257-9]\\d{9}|(?:00|[1-9]\\d\\d)\\d{6}",,,,,,,[8,9,10,11,12,13,14,15,16,17]],[,,"(?:1(?:1[235-8]|2[3-6]|3[3-9]|4[2-6]|[58][2-8]|6[2-7]|7[2-9]|9[1-9])|(?:2[2-9]|[36][1-9])\\d|4(?:[2-578]\\d|6[02-8]|9[2-59])|5(?:[2-589]\\d|6[1-9]|7[2-8])|7(?:[25-9]\\d|3[4-9]|4[02-9])|8(?:[2679]\\d|3[2-9]|4[5-9]|5[1-9]|8[03-9])|9(?:[2-58]\\d|[679][1-9]))\\d{6}",,,,"312345678",,,[9]],[,,"[7-9]0[1-9]\\d{7}", -,,,"9012345678",,,[10]],[,,"00(?:(?:37|66)\\d{6,13}|(?:777(?:[01]|(?:5|8\\d)\\d)|882[1245]\\d\\d)\\d\\d)|(?:120|800\\d)\\d{6}",,,,"120123456"],[,,"990\\d{6}",,,,"990123456",,,[9]],[,,,,,,,,,[-1]],[,,"60\\d{7}",,,,"601234567",,,[9]],[,,"50[1-9]\\d{7}",,,,"5012345678",,,[10]],"JP",81,"010","0",,,"0",,,,[[,"(\\d{4})(\\d{4})","$1-$2",["007","0077","00777","00777[01]"]],[,"(\\d{3})(\\d{3})(\\d{3})","$1-$2-$3",["(?:12|57|99)0"],"0$1"],[,"(\\d{4})(\\d)(\\d{4})","$1-$2-$3",["1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|499|5(?:76|97)|746|8(?:3[89]|47|51|63)|9(?:49|80|9[16])", +,,,"9012345678",,,[10]],[,,"00(?:(?:37|66)\\d{6,13}|(?:777(?:[01]|(?:5|8\\d)\\d)|882[1245]\\d\\d)\\d\\d)|(?:120|800\\d)\\d{6}",,,,"120123456"],[,,"990\\d{6}",,,,"990123456",,,[9]],[,,,,,,,,,[-1]],[,,"60\\d{7}",,,,"601234567",,,[9]],[,,"50[1-9]\\d{7}",,,,"5550000000",,,[10]],"JP",81,"010","0",,,"0",,,,[[,"(\\d{4})(\\d{4})","$1-$2",["007","0077","00777","00777[01]"]],[,"(\\d{3})(\\d{3})(\\d{3})","$1-$2-$3",["(?:12|57|99)0"],"0$1"],[,"(\\d{4})(\\d)(\\d{4})","$1-$2-$3",["1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|499|5(?:76|97)|746|8(?:3[89]|47|51|63)|9(?:49|80|9[16])", "1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:76|97)9|7468|8(?:3(?:8[78]|96)|477|51[24]|636)|9(?:496|802|9(?:1[23]|69))|1(?:45|58)[67]","1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:769|979[2-69])|7468|8(?:3(?:8[78]|96[2457-9])|477|51[24]|636[2-57-9])|9(?:496|802|9(?:1[23]|69))|1(?:45|58)[67]"],"0$1"],[,"(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60"],"0$1"],[,"(\\d)(\\d{4})(\\d{4})","$1-$2-$3",["[36]|4(?:2[09]|7[01])","[36]|4(?:2(?:0|9[02-69])|7(?:0[019]|1))"], "0$1"],[,"(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["1(?:1|5[45]|77|88|9[69])|2(?:2[1-37]|3[0-269]|4[59]|5|6[24]|7[1-358]|8[1369]|9[0-38])|4(?:[28][1-9]|3[0-57]|[45]|6[248]|7[2-579]|9[29])|5(?:2|3[045]|4[0-369]|5[29]|8[02389]|9[0-389])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9[2-6])|8(?:2[124589]|3[279]|49|6[0-24-689]|7[0-468]|8[68]|9[019])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9[1-489])","1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2(?:[127]|3[014-9])|3[0-269]|4[59]|5(?:[0468][01]|[1-3]|5[0-69]|9[19])|62|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|2[01]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|8[1-9])|5(?:2|3[045]|4[0-369]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0-2469])|49|6(?:[0-24]|5[0-3589]|9[01459])|7[0-468]|8[68])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3[34]|4[0178]))|(?:49|55|83)[29]|(?:264|837)[016-9]|2(?:57|93)[015-9]|(?:47[59]|59[89]|8(?:6[68]|9))[019]", "1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2[127]|3[0-269]|4[59]|5(?:[0468][01]|[1-3]|5[0-69]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|2[01]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3[045]|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0169])|3(?:[29]|7(?:[017-9]|6[6-8]))|49|6(?:[0-24]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:8294|96)[1-3]|2(?:57|93)[015-9]|(?:223|8699)[014-9]|(?:48|8292|9[23])[1-9]|(?:47[59]|59[89]|8(?:68|9))[019]", @@ -253,7 +253,7 @@ FO:[,[,,"(?:[2-8]\\d|90)\\d{4}",,,,,,,[6]],[,,"(?:20|[34]\\d|8[19])\\d{4}",,,,"2 "KI",686,"00","0",,,"0",,,,,,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],KM:[,[,,"[3478]\\d{6}",,,,,,,[7]],[,,"7[4-7]\\d{5}",,,,"7712345"],[,,"[34]\\d{6}",,,,"3212345"],[,,,,,,,,,[-1]],[,,"8\\d{6}",,,,"8001234"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],"KM",269,"00",,,,,,,,[[,"(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[3478]"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],KN:[,[,,"(?:[58]\\d\\d|900)\\d{7}",,,,,,,[10],[7]],[,,"869(?:2(?:29|36)|302|4(?:6[015-9]|70))\\d{4}", ,,,"8692361234",,,,[7]],[,,"869(?:5(?:5[6-8]|6[5-7])|66\\d|76[02-7])\\d{4}",,,,"8697652917",,,,[7]],[,,"8(?:00|33|44|55|66|77|88)[2-9]\\d{6}",,,,"8002123456"],[,,"900[2-9]\\d{6}",,,,"9002123456"],[,,,,,,,,,[-1]],[,,"5(?:00|2[12]|33|44|66|77|88)[2-9]\\d{6}",,,,"5002345678"],[,,,,,,,,,[-1]],"KN",1,"011","1",,,"1|([2-7]\\d{6})$","869$1",,,,,[,,,,,,,,,[-1]],,"869",[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],KP:[,[,,"85\\d{6}|(?:19\\d|2)\\d{7}",,,,,,,[8,10],[6,7]],[,,"(?:2\\d|85)\\d{6}",,,,"21234567", ,,[8],[6,7]],[,,"19[1-3]\\d{7}",,,,"1921234567",,,[10]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],"KP",850,"00|99","0",,,"0",,,,[[,"(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["8"],"0$1"],[,"(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["2"],"0$1"],[,"(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"]],,[,,,,,,,,,[-1]],,,[,,"238[02-9]\\d{4}|2(?:[0-24-9]\\d|3[0-79])\\d{5}",,,,,,,[8]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],KR:[,[,,"00[1-9]\\d{8,11}|(?:[12]|5\\d{3})\\d{7}|[13-6]\\d{9}|(?:[1-6]\\d|80)\\d{7}|[3-6]\\d{4,5}|(?:00|7)0\\d{8}", -,,,,,,[5,6,8,9,10,11,12,13,14],[3,4,7]],[,,"(?:2|3[1-3]|[46][1-4]|5[1-5])[1-9]\\d{6,7}|(?:3[1-3]|[46][1-4]|5[1-5])1\\d{2,3}",,,,"22123456",,,[5,6,8,9,10],[3,4,7]],[,,"10[01]\\d{6}|1(?:0[2-9]|[126-9]\\d)\\d{6,7}",,,,"1020000000",,,[9,10]],[,,"00(?:308\\d{6,7}|798\\d{7,9})|(?:00368|80)\\d{7}",,,,"801234567",,,[9,11,12,13,14]],[,,"60[2-9]\\d{6}",,,,"602345678",,,[9]],[,,,,,,,,,[-1]],[,,"50\\d{8,9}",,,,"5012345678",,,[10,11]],[,,"70\\d{8}",,,,"7012345678",,,[10]],"KR",82,"00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))", +,,,,,,[5,6,8,9,10,11,12,13,14],[3,4,7]],[,,"(?:2|3[1-3]|[46][1-4]|5[1-5])[1-9]\\d{6,7}|(?:3[1-3]|[46][1-4]|5[1-5])1\\d{2,3}",,,,"22123456",,,[5,6,8,9,10],[3,4,7]],[,,"10[01]\\d{6}|1(?:0[2-9]|[126-9]\\d)\\d{6,7}",,,,"1020000000",,,[9,10]],[,,"00(?:308\\d{6,7}|798\\d{7,9})|(?:00368|80)\\d{7}",,,,"801234567",,,[9,11,12,13,14]],[,,"60[2-9]\\d{6}",,,,"602345678",,,[9]],[,,,,,,,,,[-1]],[,,"50\\d{8,9}",,,,"5550000000",,,[10,11]],[,,"70\\d{8}",,,,"7012345678",,,[10]],"KR",82,"00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))", "0",,,"0(8(?:[1-46-8]|5\\d\\d))?",,,,[[,"(\\d{5})","$1",["1[016-9]1","1[016-9]11","1[016-9]114"],"0$1"],[,"(\\d{2})(\\d{3,4})","$1-$2",["(?:3[1-3]|[46][1-4]|5[1-5])1"],"0$1","0$CC-$1"],[,"(\\d{4})(\\d{4})","$1-$2",["1"]],[,"(\\d)(\\d{3,4})(\\d{4})","$1-$2-$3",["2"],"0$1","0$CC-$1"],[,"(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60|8"],"0$1","0$CC-$1"],[,"(\\d{2})(\\d{3,4})(\\d{4})","$1-$2-$3",["[1346]|5[1-5]"],"0$1","0$CC-$1"],[,"(\\d{2})(\\d{4})(\\d{4})","$1-$2-$3",["[57]"],"0$1","0$CC-$1"],[,"(\\d{5})(\\d{3})(\\d{3})", "$1 $2 $3",["003","0030"]],[,"(\\d{2})(\\d{5})(\\d{4})","$1-$2-$3",["5"],"0$1","0$CC-$1"],[,"(\\d{5})(\\d{3,4})(\\d{4})","$1 $2 $3",["0"]],[,"(\\d{5})(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3 $4",["0"]]],[[,"(\\d{2})(\\d{3,4})","$1-$2",["(?:3[1-3]|[46][1-4]|5[1-5])1"],"0$1","0$CC-$1"],[,"(\\d{4})(\\d{4})","$1-$2",["1"]],[,"(\\d)(\\d{3,4})(\\d{4})","$1-$2-$3",["2"],"0$1","0$CC-$1"],[,"(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60|8"],"0$1","0$CC-$1"],[,"(\\d{2})(\\d{3,4})(\\d{4})","$1-$2-$3",["[1346]|5[1-5]"], "0$1","0$CC-$1"],[,"(\\d{2})(\\d{4})(\\d{4})","$1-$2-$3",["[57]"],"0$1","0$CC-$1"],[,"(\\d{2})(\\d{5})(\\d{4})","$1-$2-$3",["5"],"0$1","0$CC-$1"]],[,,"15\\d{7,8}",,,,"1523456789",,,[9,10]],,,[,,"00(?:3(?:08\\d{6,7}|68\\d{7})|798\\d{7,9})",,,,,,,[11,12,13,14]],[,,"1(?:5(?:22|44|66|77|88|99)|6(?:[07]0|44|6[16]|88)|8(?:00|33|55|77|99))\\d{4}",,,,"15441234",,,[8]],,,[,,,,,,,,,[-1]]],KW:[,[,,"(?:18|[2569]\\d\\d)\\d{5}",,,,,,,[7,8]],[,,"2(?:[23]\\d\\d|4(?:[1-35-9]\\d|44)|5(?:0[034]|[2-46]\\d|5[1-3]|7[1-7]))\\d{4}", @@ -386,7 +386,7 @@ LY:[,[,,"(?:[2569]\\d|71)\\d{7}",,,,,,,[9],[7]],[,,"(?:2[13-5]|5[1347]|6[1-479]| "$1 $2",["7"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],TM:[,[,,"[1-6]\\d{7}",,,,,,,[8]],[,,"(?:1(?:2\\d|3[1-9])|2(?:22|4[0-35-8])|3(?:22|4[03-9])|4(?:22|3[128]|4\\d|6[15])|5(?:22|5[7-9]|6[014-689]))\\d{5}",,,,"12345678"],[,,"6[1-9]\\d{6}",,,,"66123456"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],"TM",993,"810","8",,,"8",,"8~10",,[[,"(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2-$3-$4",["12"],"(8 $1)"],[,"(\\d{3})(\\d)(\\d{2})(\\d{2})", "$1 $2-$3-$4",["[1-5]"],"(8 $1)"],[,"(\\d{2})(\\d{6})","$1 $2",["6"],"8 $1"]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],TN:[,[,,"[2-57-9]\\d{7}",,,,,,,[8]],[,,"81200\\d{3}|(?:3[0-2]|7\\d)\\d{6}",,,,"30010123"],[,,"3(?:001|[12]40)\\d{4}|(?:(?:[259]\\d|4[0-6])\\d|3(?:1[1-35]|6[0-4]|91))\\d{5}",,,,"20123456"],[,,"8010\\d{4}",,,,"80101234"],[,,"88\\d{6}",,,,"88123456"],[,,"8[12]10\\d{4}",,,,"81101234"],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],"TN",216,"00",,,,,,,,[[,"(\\d{2})(\\d{3})(\\d{3})", "$1 $2 $3",["[2-57-9]"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],TO:[,[,,"(?:0800|[5-8]\\d{3})\\d{3}|[2-8]\\d{4}",,,,,,,[5,7]],[,,"(?:2\\d|3[0-8]|4[0-4]|50|6[09]|7[0-24-69]|8[05])\\d{3}",,,,"20123",,,[5]],[,,"(?:6(?:3[02]|85|90)|7(?:[2-46]0|[578]\\d)|8[46-9]\\d)\\d{4}",,,,"7715123",,,[7]],[,,"0800\\d{3}",,,,"0800222",,,[7]],[,,"55[04]\\d{4}",,,,"5501234",,,[7]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],"TO",676,"00",,,,,,,,[[,"(\\d{2})(\\d{3})","$1-$2",["[2-4]|50|6[09]|7[0-24-69]|8[05]"]], -[,"(\\d{4})(\\d{3})","$1 $2",["0"]],[,"(\\d{3})(\\d{4})","$1 $2",["[5-8]"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],TR:[,[,,"(?:[2-58]\\d\\d|900)\\d{7}|4\\d{6}",,,,,,,[7,10]],[,,"(?:2(?:[13][26]|[28][2468]|[45][268]|[67][246])|3(?:[13][28]|[24-6][2468]|[78][02468]|92)|4(?:[16][246]|[23578][2468]|4[26]))\\d{7}",,,,"2123456789",,,[10]],[,,"56161\\d{5}|5(?:0[15-7]|1[06]|24|[34]\\d|5[1-59]|9[46])\\d{7}",,,,"5012345678",,,[10]],[,,"800\\d{7}",,,,"8001234567",,,[10]],[,,"(?:8[89]8|900)\\d{7}", +[,"(\\d{4})(\\d{3})","$1 $2",["0"]],[,"(\\d{3})(\\d{4})","$1 $2",["[5-8]"]]],,[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,,,,,,,,[-1]]],TR:[,[,,"(?:[2-58]\\d\\d|900)\\d{7}|4\\d{6}",,,,,,,[7,10]],[,,"(?:2(?:[13][26]|[28][2468]|[45][268]|[67][246])|3(?:[13][28]|[24-6][2468]|[78][02468]|92)|4(?:[16][246]|[23578][2468]|4[26]))\\d{7}",,,,"2123456789",,,[10]],[,,"56161\\d{5}|5(?:0[15-7]|1[06]|24|[34]\\d|5[1-59]|9[46])\\d{7}",,,,"5550000000",,,[10]],[,,"800\\d{7}",,,,"8001234567",,,[10]],[,,"(?:8[89]8|900)\\d{7}", ,,,"9001234567",,,[10]],[,,,,,,,,,[-1]],[,,"592(?:21[12]|461)\\d{4}",,,,"5922121234",,,[10]],[,,,,,,,,,[-1]],"TR",90,"00","0",,,"0",,,,[[,"(\\d{3})(\\d)(\\d{3})","$1 $2 $3",["444"],,,1],[,"(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["512|8[0589]|90"],"0$1",,1],[,"(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["5(?:[0-59]|61)","5(?:[0-59]|616)","5(?:[0-59]|6161)"],"0$1",,1],[,"(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24][1-8]|3[1-9]"],"(0$1)",,1]],[[,"(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["512|8[0589]|90"], "0$1",,1],[,"(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["5(?:[0-59]|61)","5(?:[0-59]|616)","5(?:[0-59]|6161)"],"0$1",,1],[,"(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24][1-8]|3[1-9]"],"(0$1)",,1]],[,,"512\\d{7}",,,,"5123456789",,,[10]],,,[,,"444\\d{4}",,,,,,,[7]],[,,"(?:444|850\\d{3})\\d{4}",,,,"4441444"],,,[,,,,,,,,,[-1]]],TT:[,[,,"(?:[58]\\d\\d|900)\\d{7}",,,,,,,[10],[7]],[,,"868(?:2(?:01|1[89]|[23]\\d|4[0-2])|6(?:0[7-9]|1[02-8]|2[1-9]|[3-69]\\d|7[0-79])|82[124])\\d{4}",,,,"8682211234", ,,,[7]],[,,"868(?:2(?:6[6-9]|[7-9]\\d)|[37](?:0[1-9]|1[02-9]|[2-9]\\d)|4[6-9]\\d|6(?:20|78|8\\d))\\d{4}",,,,"8682911234",,,,[7]],[,,"8(?:00|33|44|55|66|77|88)[2-9]\\d{6}",,,,"8002345678"],[,,"900[2-9]\\d{6}",,,,"9002345678"],[,,,,,,,,,[-1]],[,,"5(?:00|2[12]|33|44|66|77|88)[2-9]\\d{6}",,,,"5002345678"],[,,,,,,,,,[-1]],"TT",1,"011","1",,,"1|([2-46-8]\\d{6})$","868$1",,,,,[,,,,,,,,,[-1]],,"868",[,,,,,,,,,[-1]],[,,,,,,,,,[-1]],,,[,,"868619\\d{4}",,,,"8686191234",,,,[7]]],TV:[,[,,"(?:2|7\\d\\d|90)\\d{4}", From 789ecc34026242c973db6231d1cd2d17b69358a9 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Tue, 15 Dec 2020 17:32:15 +0300 Subject: [PATCH 006/179] New translations button.php (German) --- .../default/visiosoft/base-theme/resources/lang/de/button.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/default/visiosoft/base-theme/resources/lang/de/button.php b/addons/default/visiosoft/base-theme/resources/lang/de/button.php index cad240a9f..7448da225 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/de/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/de/button.php @@ -2,7 +2,7 @@ return [ 'post_ad' => [ - 'name' => 'Postanzeige', + 'name' => 'Anzeige erstellen', ], 'login' => 'Einloggen', 'register' => 'Registrieren', From 4365c9e8c01b83b20df572e3e47a8b3d1e3209d9 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Tue, 15 Dec 2020 18:15:17 +0300 Subject: [PATCH 007/179] comment fixed --- .../resources/assets/js/education.js | 8 +-- .../resources/config/permissions.php | 10 ---- .../resources/lang/en/button.php | 2 - .../resources/lang/en/permission.php | 16 ------ .../resources/lang/en/section.php | 6 --- .../resources/lang/en/stream.php | 6 --- .../resources/views/profile/detail.twig | 4 +- .../Education/Form/EducationFormBuilder.php | 51 ------------------- .../Education/Table/EducationTableBuilder.php | 37 -------------- .../Form/EducationPartFormBuilder.php | 51 ------------------- .../Table/EducationPartTableBuilder.php | 37 -------------- .../Http/Controller/MyProfileController.php | 4 +- .../profile-module/src/ProfileModule.php | 2 +- .../src/ProfileModuleServiceProvider.php | 4 +- .../src/Seed/UsersFieldsSeeder.php | 5 -- 15 files changed, 9 insertions(+), 234 deletions(-) diff --git a/addons/default/visiosoft/profile-module/resources/assets/js/education.js b/addons/default/visiosoft/profile-module/resources/assets/js/education.js index 78dc044bb..22c8f6e13 100644 --- a/addons/default/visiosoft/profile-module/resources/assets/js/education.js +++ b/addons/default/visiosoft/profile-module/resources/assets/js/education.js @@ -12,7 +12,7 @@ $(() => { $('#education').on('change', () => { $.ajax({ - url: '/ajax/setEducation', + url: '/api/setEducation', data: { info: 'education', education: $('#education').val() @@ -31,14 +31,10 @@ $(() => { $('#education_part').on('change', () => { $.ajax({ - url: '/ajax/setEducation', + url: '/api/setEducation', data: { info: 'education_part', education: $('#education_part').val() - }, beforeSend: function (){ - $('#education_part_option').html(''); - }, success: function (response) { - } }) }) diff --git a/addons/default/visiosoft/profile-module/resources/config/permissions.php b/addons/default/visiosoft/profile-module/resources/config/permissions.php index e4abd05b1..934599af3 100644 --- a/addons/default/visiosoft/profile-module/resources/config/permissions.php +++ b/addons/default/visiosoft/profile-module/resources/config/permissions.php @@ -11,19 +11,9 @@ return [ 'write', 'delete', ], - 'education' => [ - 'read', - 'write', - 'delete', - ], 'education_part' => [ 'read', 'write', 'delete', ], - 'education_part_option' => [ - 'read', - 'write', - 'delete', - ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/button.php b/addons/default/visiosoft/profile-module/resources/lang/en/button.php index a8af9e732..1d8634703 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/button.php @@ -16,7 +16,5 @@ return [ 'corporate' => 'Corporate', 'export' => 'Export', 'new_education' => 'New Education', - 'new_education' => 'New Education', 'new_education_part' => 'New Education part', - 'new_education_part_option' => 'New Education part option', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/permission.php b/addons/default/visiosoft/profile-module/resources/lang/en/permission.php index c7ddc6128..f4631292c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/permission.php @@ -25,14 +25,6 @@ return [ 'delete' => 'Can delete education?', ], ], - 'education' => [ - 'name' => 'Education', - 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', - ], - ], 'education_part' => [ 'name' => 'Education part', 'option' => [ @@ -41,12 +33,4 @@ return [ 'delete' => 'Can delete education part?', ], ], - 'education_part_option' => [ - 'name' => 'Education part option', - 'option' => [ - 'read' => 'Can read education part option?', - 'write' => 'Can create/edit education part option?', - 'delete' => 'Can delete education part option?', - ], - ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/section.php b/addons/default/visiosoft/profile-module/resources/lang/en/section.php index b6df27826..6a5bce6b9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/section.php @@ -12,13 +12,7 @@ return [ 'education' => [ 'title' => 'Education', ], - 'education' => [ - 'title' => 'Education', - ], 'education_part' => [ 'title' => 'Education part', ], - 'education_part_option' => [ - 'title' => 'Education part option', - ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/en/stream.php b/addons/default/visiosoft/profile-module/resources/lang/en/stream.php index 30aa34db7..7f43711b2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/en/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/en/stream.php @@ -10,13 +10,7 @@ return [ 'education' => [ 'name' => 'Education', ], - 'education' => [ - 'name' => 'Education', - ], 'education_part' => [ 'name' => 'Education part', ], - 'education_part_option' => [ - 'name' => 'Education part option', - ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig b/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig index 60017932a..0d76779e4 100644 --- a/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig +++ b/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig @@ -171,7 +171,7 @@ - {{ profileForm.fields.education.input|raw }} + {{ profileForm.fields.education.setPlaceholder(trans('visiosoft.module.profile::field.choose_an_option')).input|raw }}
@@ -179,7 +179,7 @@ - {{ profileForm.fields.education_part.input|raw }} + {{ profileForm.fields.education_part.setPlaceholder(trans('visiosoft.module.profile::field.choose_an_option')).input|raw }}
diff --git a/addons/default/visiosoft/profile-module/src/Education/Form/EducationFormBuilder.php b/addons/default/visiosoft/profile-module/src/Education/Form/EducationFormBuilder.php index 6500c3c22..e590597f0 100644 --- a/addons/default/visiosoft/profile-module/src/Education/Form/EducationFormBuilder.php +++ b/addons/default/visiosoft/profile-module/src/Education/Form/EducationFormBuilder.php @@ -4,35 +4,6 @@ use Anomaly\Streams\Platform\Ui\Form\FormBuilder; class EducationFormBuilder extends FormBuilder { - - /** - * The form fields. - * - * @var array|string - */ - protected $fields = []; - - /** - * Additional validation rules. - * - * @var array|string - */ - protected $rules = []; - - /** - * Fields to skip. - * - * @var array|string - */ - protected $skips = []; - - /** - * The form actions. - * - * @var array|string - */ - protected $actions = []; - /** * The form buttons. * @@ -41,26 +12,4 @@ class EducationFormBuilder extends FormBuilder protected $buttons = [ 'cancel', ]; - - /** - * The form options. - * - * @var array - */ - protected $options = []; - - /** - * The form sections. - * - * @var array - */ - protected $sections = []; - - /** - * The form assets. - * - * @var array - */ - protected $assets = []; - } diff --git a/addons/default/visiosoft/profile-module/src/Education/Table/EducationTableBuilder.php b/addons/default/visiosoft/profile-module/src/Education/Table/EducationTableBuilder.php index 6e8c5d55e..eece942ed 100644 --- a/addons/default/visiosoft/profile-module/src/Education/Table/EducationTableBuilder.php +++ b/addons/default/visiosoft/profile-module/src/Education/Table/EducationTableBuilder.php @@ -4,28 +4,6 @@ use Anomaly\Streams\Platform\Ui\Table\TableBuilder; class EducationTableBuilder extends TableBuilder { - - /** - * The table views. - * - * @var array|string - */ - protected $views = []; - - /** - * The table filters. - * - * @var array|string - */ - protected $filters = []; - - /** - * The table columns. - * - * @var array|string - */ - protected $columns = []; - /** * The table buttons. * @@ -43,19 +21,4 @@ class EducationTableBuilder extends TableBuilder protected $actions = [ 'delete' ]; - - /** - * The table options. - * - * @var array - */ - protected $options = []; - - /** - * The table assets. - * - * @var array - */ - protected $assets = []; - } diff --git a/addons/default/visiosoft/profile-module/src/EducationPart/Form/EducationPartFormBuilder.php b/addons/default/visiosoft/profile-module/src/EducationPart/Form/EducationPartFormBuilder.php index 8473648dd..845cc15c3 100644 --- a/addons/default/visiosoft/profile-module/src/EducationPart/Form/EducationPartFormBuilder.php +++ b/addons/default/visiosoft/profile-module/src/EducationPart/Form/EducationPartFormBuilder.php @@ -4,35 +4,6 @@ use Anomaly\Streams\Platform\Ui\Form\FormBuilder; class EducationPartFormBuilder extends FormBuilder { - - /** - * The form fields. - * - * @var array|string - */ - protected $fields = []; - - /** - * Additional validation rules. - * - * @var array|string - */ - protected $rules = []; - - /** - * Fields to skip. - * - * @var array|string - */ - protected $skips = []; - - /** - * The form actions. - * - * @var array|string - */ - protected $actions = []; - /** * The form buttons. * @@ -41,26 +12,4 @@ class EducationPartFormBuilder extends FormBuilder protected $buttons = [ 'cancel', ]; - - /** - * The form options. - * - * @var array - */ - protected $options = []; - - /** - * The form sections. - * - * @var array - */ - protected $sections = []; - - /** - * The form assets. - * - * @var array - */ - protected $assets = []; - } diff --git a/addons/default/visiosoft/profile-module/src/EducationPart/Table/EducationPartTableBuilder.php b/addons/default/visiosoft/profile-module/src/EducationPart/Table/EducationPartTableBuilder.php index bfed87fed..dd8d7783a 100644 --- a/addons/default/visiosoft/profile-module/src/EducationPart/Table/EducationPartTableBuilder.php +++ b/addons/default/visiosoft/profile-module/src/EducationPart/Table/EducationPartTableBuilder.php @@ -4,28 +4,6 @@ use Anomaly\Streams\Platform\Ui\Table\TableBuilder; class EducationPartTableBuilder extends TableBuilder { - - /** - * The table views. - * - * @var array|string - */ - protected $views = []; - - /** - * The table filters. - * - * @var array|string - */ - protected $filters = []; - - /** - * The table columns. - * - * @var array|string - */ - protected $columns = []; - /** * The table buttons. * @@ -43,19 +21,4 @@ class EducationPartTableBuilder extends TableBuilder protected $actions = [ 'delete' ]; - - /** - * The table options. - * - * @var array - */ - protected $options = []; - - /** - * The table assets. - * - * @var array - */ - protected $assets = []; - } diff --git a/addons/default/visiosoft/profile-module/src/Http/Controller/MyProfileController.php b/addons/default/visiosoft/profile-module/src/Http/Controller/MyProfileController.php index c64324b82..ed7317f64 100644 --- a/addons/default/visiosoft/profile-module/src/Http/Controller/MyProfileController.php +++ b/addons/default/visiosoft/profile-module/src/Http/Controller/MyProfileController.php @@ -251,7 +251,7 @@ class MyProfileController extends PublicController public function getEducation(Request $request) { - $user = $this->userRepository->find(auth()->user()->getAuthIdentifier()); + $user = $this->userRepository->find(auth()->id()); $education = EducationModel::all(); $educationPart = EducationPartModel::query()->where('education_id', $user->education)->get(); return response()->json(['user' => $user, 'education' => $education, 'education-part' => $educationPart], 200); @@ -259,7 +259,7 @@ class MyProfileController extends PublicController public function setEducation(Request $request) { - $user_id = auth()->user()->getAuthIdentifier(); + $user_id = auth()->id(); if ($request->info == 'education') { $user = $this->userRepository->find($user_id)->update(['education' => $request->education]); $education = EducationPartModel::query()->where('education_id', $request->education)->get(); diff --git a/addons/default/visiosoft/profile-module/src/ProfileModule.php b/addons/default/visiosoft/profile-module/src/ProfileModule.php index a6ad6ee88..20ec78a93 100644 --- a/addons/default/visiosoft/profile-module/src/ProfileModule.php +++ b/addons/default/visiosoft/profile-module/src/ProfileModule.php @@ -37,7 +37,7 @@ class ProfileModule extends Module ], 'education_part' => [ 'buttons' => [ - 'new_education', + 'new_education_part', ] ], ]; diff --git a/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php b/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php index 6d1817c5b..7880c51d5 100644 --- a/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php +++ b/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php @@ -105,6 +105,8 @@ class ProfileModuleServiceProvider extends AddonServiceProvider ], 'profile/notification' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@notification', 'ajax/update-user-info' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@updateAjaxProfile', + 'api/setEducation' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@setEducation', + 'api/getEducation' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@getEducation', // UserAuthenticator 'login-in' => 'Visiosoft\ProfileModule\Http\Controller\UserAuthenticator@attempt', @@ -143,8 +145,6 @@ class ProfileModuleServiceProvider extends AddonServiceProvider // CacheController 'ajax/get-user-info' => 'Visiosoft\ProfileModule\Http\Controller\CacheController@getUserInfo', - 'ajax/setEducation' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@setEducation', - 'ajax/getEducation' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@getEducation', ]; /** diff --git a/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php b/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php index 4b7f734ed..497108c1e 100644 --- a/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php +++ b/addons/default/visiosoft/profile-module/src/Seed/UsersFieldsSeeder.php @@ -144,11 +144,6 @@ class UsersFieldsSeeder extends Seeder 'slug' => 'education_part', 'type' => 'anomaly.field_type.select', ], - [ - 'name' => trans('visiosoft.module.profile::field.education_part_option.name'), - 'slug' => 'education_part_option', - 'type' => 'anomaly.field_type.select', - ], [ 'name' => trans('visiosoft.module.profile::field.facebook_address.name'), 'slug' => 'facebook_address', From d2665a951ab6a53d5a27ae1a3456d446de7e39b4 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Wed, 16 Dec 2020 10:12:39 +0300 Subject: [PATCH 008/179] default price filter currency formatter added --- .../visiosoft/advs-module/resources/js/currency_format.js | 8 ++++++++ .../resources/views/list/partials/price-filter.twig | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 addons/default/visiosoft/advs-module/resources/js/currency_format.js diff --git a/addons/default/visiosoft/advs-module/resources/js/currency_format.js b/addons/default/visiosoft/advs-module/resources/js/currency_format.js new file mode 100644 index 000000000..5a28e4909 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/js/currency_format.js @@ -0,0 +1,8 @@ +$("input[data-type='currency']").on('blur', function() { + const value = this.value.replace(/,/g, ''); + this.value = parseFloat(value).toLocaleString('en-US', { + style: 'decimal', + maximumFractionDigits: 2, + minimumFractionDigits: 2 + }); +}); \ No newline at end of file diff --git a/addons/default/visiosoft/advs-module/resources/views/list/partials/price-filter.twig b/addons/default/visiosoft/advs-module/resources/views/list/partials/price-filter.twig index 66919ed56..b62dff2d0 100644 --- a/addons/default/visiosoft/advs-module/resources/views/list/partials/price-filter.twig +++ b/addons/default/visiosoft/advs-module/resources/views/list/partials/price-filter.twig @@ -19,12 +19,14 @@
@@ -41,4 +43,5 @@ + {{ asset_script('visiosoft.module.advs::js/currency_format.js') }} {% endif %} \ No newline at end of file From 1fad8e34ca65c736bfbf5912698110c9e5046da0 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Wed, 16 Dec 2020 11:37:59 +0300 Subject: [PATCH 009/179] #2806 base theme home cats show close button bug fixed --- .../visiosoft/base-theme/resources/js/script.js | 3 ++- .../visiosoft/base-theme/resources/lang/en/button.php | 1 + .../resources/views/partials/categories-web.twig | 11 +++++++++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/addons/default/visiosoft/base-theme/resources/js/script.js b/addons/default/visiosoft/base-theme/resources/js/script.js index 690b763c9..423e77127 100644 --- a/addons/default/visiosoft/base-theme/resources/js/script.js +++ b/addons/default/visiosoft/base-theme/resources/js/script.js @@ -1,3 +1,4 @@ $('.categories-list .show-all').on('click', function () { $(this).siblings('.hidden-category').toggleClass('hidden') -}) \ No newline at end of file + $(this).find('a').find('span').toggleClass('hidden') +}) diff --git a/addons/default/visiosoft/base-theme/resources/lang/en/button.php b/addons/default/visiosoft/base-theme/resources/lang/en/button.php index 31f2b7e44..6fd062d6d 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/en/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/en/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Email', 'phone' => 'Phone', 'show_all' => 'Show All', + 'hide_all' => 'Hide All', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/views/partials/categories-web.twig b/addons/default/visiosoft/base-theme/resources/views/partials/categories-web.twig index b383045e3..9dd2ccf83 100644 --- a/addons/default/visiosoft/base-theme/resources/views/partials/categories-web.twig +++ b/addons/default/visiosoft/base-theme/resources/views/partials/categories-web.twig @@ -45,8 +45,15 @@ {% if count(sub_categories) > sub_categories_limit %}
  • - {{ trans('visiosoft.theme.base::button.show_all') }} - + + {{ trans('visiosoft.theme.base::button.show_all') }} + + + +
  • {% endif %} From 28b67a2f49dd8afc9bce60ee9707bfd4e8ab923e Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Wed, 16 Dec 2020 12:06:10 +0300 Subject: [PATCH 010/179] commit for comment in pull req --- .../resources/assets/js/education.js | 16 ++----- .../Controller/Admin/EducationController.php | 43 +++++++++++++++++++ .../Admin/EducationPartController.php | 43 +++++++++++++++++++ .../Http/Controller/MyProfileController.php | 9 +--- .../Profile/Profile/ProfileFormHandler.php | 1 + .../src/ProfileModuleServiceProvider.php | 2 +- 6 files changed, 93 insertions(+), 21 deletions(-) create mode 100644 addons/default/visiosoft/profile-module/src/Http/Controller/Admin/EducationController.php create mode 100644 addons/default/visiosoft/profile-module/src/Http/Controller/Admin/EducationPartController.php diff --git a/addons/default/visiosoft/profile-module/resources/assets/js/education.js b/addons/default/visiosoft/profile-module/resources/assets/js/education.js index 22c8f6e13..f54877dbb 100644 --- a/addons/default/visiosoft/profile-module/resources/assets/js/education.js +++ b/addons/default/visiosoft/profile-module/resources/assets/js/education.js @@ -1,6 +1,6 @@ $(() => { $.ajax({ - url: '/ajax/getEducation', + url: '/api/getEducation', success: ((res)=>{ $.each(res['education-part'], function (key, value) { var selected = "" @@ -12,14 +12,14 @@ $(() => { $('#education').on('change', () => { $.ajax({ - url: '/api/setEducation', + url: '/api/changeEducation', data: { info: 'education', education: $('#education').val() },beforeSend: function (){ $('#education_part').html(''); },success: function (response) { - $('#education_part').html('') + $('#education_part').html('') $.each(response.data, function (key, value) { $('#education_part').append( '' @@ -28,14 +28,4 @@ $(() => { } }); }) - - $('#education_part').on('change', () => { - $.ajax({ - url: '/api/setEducation', - data: { - info: 'education_part', - education: $('#education_part').val() - } - }) - }) }) \ No newline at end of file diff --git a/addons/default/visiosoft/profile-module/src/Http/Controller/Admin/EducationController.php b/addons/default/visiosoft/profile-module/src/Http/Controller/Admin/EducationController.php new file mode 100644 index 000000000..b6c61e75b --- /dev/null +++ b/addons/default/visiosoft/profile-module/src/Http/Controller/Admin/EducationController.php @@ -0,0 +1,43 @@ +render(); + } + + /** + * Create a new entry. + * + * @param EducationFormBuilder $form + * @return \Symfony\Component\HttpFoundation\Response + */ + public function create(EducationFormBuilder $form) + { + return $form->render(); + } + + /** + * Edit an existing entry. + * + * @param EducationFormBuilder $form + * @param $id + * @return \Symfony\Component\HttpFoundation\Response + */ + public function edit(EducationFormBuilder $form, $id) + { + return $form->render($id); + } +} diff --git a/addons/default/visiosoft/profile-module/src/Http/Controller/Admin/EducationPartController.php b/addons/default/visiosoft/profile-module/src/Http/Controller/Admin/EducationPartController.php new file mode 100644 index 000000000..60f997a23 --- /dev/null +++ b/addons/default/visiosoft/profile-module/src/Http/Controller/Admin/EducationPartController.php @@ -0,0 +1,43 @@ +render(); + } + + /** + * Create a new entry. + * + * @param EducationPartFormBuilder $form + * @return \Symfony\Component\HttpFoundation\Response + */ + public function create(EducationPartFormBuilder $form) + { + return $form->render(); + } + + /** + * Edit an existing entry. + * + * @param EducationPartFormBuilder $form + * @param $id + * @return \Symfony\Component\HttpFoundation\Response + */ + public function edit(EducationPartFormBuilder $form, $id) + { + return $form->render($id); + } +} diff --git a/addons/default/visiosoft/profile-module/src/Http/Controller/MyProfileController.php b/addons/default/visiosoft/profile-module/src/Http/Controller/MyProfileController.php index ed7317f64..01920904c 100644 --- a/addons/default/visiosoft/profile-module/src/Http/Controller/MyProfileController.php +++ b/addons/default/visiosoft/profile-module/src/Http/Controller/MyProfileController.php @@ -257,16 +257,11 @@ class MyProfileController extends PublicController return response()->json(['user' => $user, 'education' => $education, 'education-part' => $educationPart], 200); } - public function setEducation(Request $request) + public function changeEducation(Request $request) { - $user_id = auth()->id(); if ($request->info == 'education') { - $user = $this->userRepository->find($user_id)->update(['education' => $request->education]); $education = EducationPartModel::query()->where('education_id', $request->education)->get(); - } elseif ($request->info == 'education_part') { - $user = $this->userRepository->find($user_id)->update(['education_part' => $request->education]); - $education = EducationPartOptionModel::query()->where('education_part_id', $request->education)->get(); } - return response()->json(['messages' => $user, 'data' => $education], 200); + return response()->json(['data' => $education], 200); } } diff --git a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php index ed0775c78..728e290e0 100644 --- a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php +++ b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php @@ -30,6 +30,7 @@ class ProfileFormHandler if (setting_value('visiosoft.module.profile::show_education_profession')) { $parameters = array_merge($parameters, [ 'education' => $builder->getPostValue('education'), + 'education_part' => $builder->getPostValue('education_part'), 'state_of_education' => $builder->getPostValue('state_of_education'), 'profession' => $builder->getPostValue('profession'), ]); diff --git a/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php b/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php index 7880c51d5..15d9efa83 100644 --- a/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php +++ b/addons/default/visiosoft/profile-module/src/ProfileModuleServiceProvider.php @@ -105,7 +105,7 @@ class ProfileModuleServiceProvider extends AddonServiceProvider ], 'profile/notification' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@notification', 'ajax/update-user-info' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@updateAjaxProfile', - 'api/setEducation' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@setEducation', + 'api/changeEducation' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@changeEducation', 'api/getEducation' => 'Visiosoft\ProfileModule\Http\Controller\MyProfileController@getEducation', // UserAuthenticator From 1c5266383a412769d67ddb63b13e39f7b3660059 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Wed, 16 Dec 2020 12:07:12 +0300 Subject: [PATCH 011/179] commit for comment in pull req --- .../profile-module/src/Profile/Profile/ProfileFormHandler.php | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php index 728e290e0..15e0e832c 100644 --- a/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php +++ b/addons/default/visiosoft/profile-module/src/Profile/Profile/ProfileFormHandler.php @@ -31,7 +31,6 @@ class ProfileFormHandler $parameters = array_merge($parameters, [ 'education' => $builder->getPostValue('education'), 'education_part' => $builder->getPostValue('education_part'), - 'state_of_education' => $builder->getPostValue('state_of_education'), 'profession' => $builder->getPostValue('profession'), ]); } From bf0af945b6f0b011b4a3f0206979e4dc4addd2f2 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Wed, 16 Dec 2020 12:08:12 +0300 Subject: [PATCH 012/179] commit for comment in pull req --- addons/default/visiosoft/base-theme/resources/js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/default/visiosoft/base-theme/resources/js/script.js b/addons/default/visiosoft/base-theme/resources/js/script.js index 423e77127..70565b5ed 100644 --- a/addons/default/visiosoft/base-theme/resources/js/script.js +++ b/addons/default/visiosoft/base-theme/resources/js/script.js @@ -1,4 +1,4 @@ $('.categories-list .show-all').on('click', function () { $(this).siblings('.hidden-category').toggleClass('hidden') - $(this).find('a').find('span').toggleClass('hidden') + $(this).find('a span').toggleClass('hidden') }) From 9fd334a1421544cd3b5c60252df973038158fe64 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Wed, 16 Dec 2020 12:47:50 +0300 Subject: [PATCH 013/179] commit for comment in pull req --- .../visiosoft/base-theme/resources/css/register.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/default/visiosoft/base-theme/resources/css/register.css b/addons/default/visiosoft/base-theme/resources/css/register.css index 081bc6d13..e0794f1b6 100644 --- a/addons/default/visiosoft/base-theme/resources/css/register.css +++ b/addons/default/visiosoft/base-theme/resources/css/register.css @@ -28,12 +28,12 @@ font-size: 14px; } -input { +.register-area input { color: #707070 !important; } -input::-webkit-input-placeholder, -input::-moz-placeholder, -input::placeholder { +.register-area input::-webkit-input-placeholder, +.register-area input::-moz-placeholder, +.register-area input::placeholder { color: #BCBDC3 !important; } \ No newline at end of file From 34e7ae043e9df790ac40d67b5d8a790970be38ba Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:49:44 +0300 Subject: [PATCH 014/179] New translations button.php (Romanian) --- addons/default/visiosoft/base-theme/resources/lang/ro/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/ro/button.php b/addons/default/visiosoft/base-theme/resources/lang/ro/button.php index 16223ac8c..29b43cbd4 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ro/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ro/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Telefon', 'show_all' => 'Arata tot', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From d6be726c1d0e04d60e7b7693cac791d4385ac3b0 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:49:46 +0300 Subject: [PATCH 015/179] New translations stream.php (Kurdish) --- .../profile-module/resources/lang/ku/stream.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 addons/default/visiosoft/profile-module/resources/lang/ku/stream.php diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ku/stream.php new file mode 100644 index 000000000..35f3ad0b9 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/stream.php @@ -0,0 +1,16 @@ + [ + 'name' => 'Tengal', + ], + 'adress' => [ + 'name' => 'Navnîşan', + ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], +]; From 0c32a6dac458b5577e735ed42fd5cf1613291d0b Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:49:48 +0300 Subject: [PATCH 016/179] New translations button.php (Romanian) --- .../visiosoft/profile-module/resources/lang/ro/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/button.php b/addons/default/visiosoft/profile-module/resources/lang/ro/button.php index eb429f7bc..af819ae71 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Personal', 'corporate' => 'corporativ', 'export' => 'Export', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 9e8bf40a608fff21a44525e295fb6266c7379d04 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:49:50 +0300 Subject: [PATCH 017/179] New translations field.php (Polish) --- .../profile-module/resources/lang/pl/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 ea0e73274..2807b67ad 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Urodziny' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Edukacja' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Użytkownik' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Hasło', ], + 'old_password' => [ + 'name' => 'Stare hasło', + ], 'new_password' => [ 'name' => 'Nowe hasło', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Osobisty' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From b576eab5d777f3e392266e6b12d084b78b75f138 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:49:52 +0300 Subject: [PATCH 018/179] New translations button.php (Polish) --- .../visiosoft/profile-module/resources/lang/pl/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/button.php b/addons/default/visiosoft/profile-module/resources/lang/pl/button.php index 72797b1c5..c5d0ef93d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Osobisty', 'corporate' => 'Zbiorowy', 'export' => 'Eksport', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 5fef413af2cf54b6c53b8b159546f12bf447152e Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:49:53 +0300 Subject: [PATCH 019/179] New translations button.php (Polish) --- addons/default/visiosoft/base-theme/resources/lang/pl/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/pl/button.php b/addons/default/visiosoft/base-theme/resources/lang/pl/button.php index 83eb18729..4c93aa22a 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/pl/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/pl/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Telefon', 'show_all' => 'Pokaż wszystko', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From b84c56b569201df6d3d0a7b53f88d10a98cedd89 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:49:55 +0300 Subject: [PATCH 020/179] New translations stream.php (Dutch) --- .../visiosoft/profile-module/resources/lang/nl/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/stream.php b/addons/default/visiosoft/profile-module/resources/lang/nl/stream.php index 0ab4d54fd..92c7c12b3 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Een jurk', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 6e0253690af56faa03e3a5dd8f703d81417bdc56 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:49:57 +0300 Subject: [PATCH 021/179] New translations section.php (Dutch) --- .../visiosoft/profile-module/resources/lang/nl/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/section.php b/addons/default/visiosoft/profile-module/resources/lang/nl/section.php index 4738f4885..fa1893b59 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Algemene instellingen', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From f93c6122dca2b1aa9808af95f34fcec341298c6f Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:49:59 +0300 Subject: [PATCH 022/179] New translations permission.php (Dutch) --- .../resources/lang/nl/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/permission.php b/addons/default/visiosoft/profile-module/resources/lang/nl/permission.php index b64b68020..c36695ad9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Kan adres worden verwijderd?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 86efada02cd37f679f1c128716dcc56295e176e7 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:01 +0300 Subject: [PATCH 023/179] New translations field.php (Dutch) --- .../profile-module/resources/lang/nl/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 d32c0512d..31093681e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Verjaardag' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Opleiding' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Gebruiker' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -377,6 +386,9 @@ return [ 'password' => [ 'name' => 'Wachtwoord', ], + 'old_password' => [ + 'name' => 'Oud Wachtwoord', + ], 'new_password' => [ 'name' => 'Nieuw paswoord', ], @@ -469,4 +481,8 @@ return [ 'personal' => [ 'name' => 'Persoonlijk' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 0303e5278e8b89f2510dd41e8cb0ac7fd826c37a Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:03 +0300 Subject: [PATCH 024/179] New translations button.php (Dutch) --- .../visiosoft/profile-module/resources/lang/nl/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/button.php b/addons/default/visiosoft/profile-module/resources/lang/nl/button.php index ef45ba19e..cfd457713 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Persoonlijk', 'corporate' => 'Zakelijk', 'export' => 'Exporteren', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 7e565a98a6608dfcbdb47950e1a4a8909db7e6a8 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:05 +0300 Subject: [PATCH 025/179] New translations button.php (Dutch) --- addons/default/visiosoft/base-theme/resources/lang/nl/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/nl/button.php b/addons/default/visiosoft/base-theme/resources/lang/nl/button.php index 7b2b98246..7d72ba280 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/nl/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/nl/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Telefoon', 'show_all' => 'Toon alles', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From e5ef2e878653feadb65862bbe2989240d6cf948f Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:06 +0300 Subject: [PATCH 026/179] New translations section.php (Kurdish) --- .../resources/lang/ku/section.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 addons/default/visiosoft/profile-module/resources/lang/ku/section.php diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/section.php b/addons/default/visiosoft/profile-module/resources/lang/ku/section.php new file mode 100644 index 000000000..55c2a2e52 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/section.php @@ -0,0 +1,18 @@ + [ + 'title' => 'Tengal', + ], + 'adress' => [ + 'title' => 'Navnîşan', + ], + 'general_setting' => 'Mîhengên Giştî', + 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], +]; From 7c5deb705e14192bd62f04aba07ac888d3c75520 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:09 +0300 Subject: [PATCH 027/179] New translations stream.php (Polish) --- .../visiosoft/profile-module/resources/lang/pl/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/stream.php b/addons/default/visiosoft/profile-module/resources/lang/pl/stream.php index 27b04fd27..e596efeb6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Adres', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 3a18fa25336bcc30b88a20f42bc2e7ccb38d81fc Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:10 +0300 Subject: [PATCH 028/179] New translations permission.php (Kurdish) --- .../resources/lang/ku/permission.php | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 addons/default/visiosoft/profile-module/resources/lang/ku/permission.php diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ku/permission.php new file mode 100644 index 000000000..64adf8cfc --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/permission.php @@ -0,0 +1,36 @@ + [ + 'name' => 'Tengal', + 'option' => [ + 'read' => 'Ma dikare profîlê bixwîne?', + 'write' => 'Ma dikare profîlek çêbike / sererast bike?', + 'delete' => 'Ma dikare profîlê jê bibe?', + ], + ], + 'adress' => [ + 'name' => 'Navnîşan', + 'option' => [ + 'read' => 'Ma dikare navnîşan bixwîne?', + 'write' => 'Ma dikare navnîşan çêbike / sererast bike?', + 'delete' => 'Ma dikare navnîşan were jêbirin?', + ], + ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], +]; From f8af5f5ce42be4bbca43fe887038f7f3afddd306 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:12 +0300 Subject: [PATCH 029/179] New translations field.php (Kurdish) --- .../resources/lang/ku/field.php | 486 ++++++++++++++++++ 1 file changed, 486 insertions(+) create mode 100644 addons/default/visiosoft/profile-module/resources/lang/ku/field.php diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/field.php b/addons/default/visiosoft/profile-module/resources/lang/ku/field.php new file mode 100644 index 000000000..cfbb62d17 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/field.php @@ -0,0 +1,486 @@ + [ + 'name' => 'Photos' + ], + 'first_name' => [ + 'name' => 'Nav' + ], + 'last_name' => [ + 'name' => 'Paşnav' + ], + 'username' => [ + 'name' => 'Navê bikarhêner' + ], + 'display_name' => [ + 'name' => 'Navê Nîşan bide' + ], + 'email' => [ + 'name' => 'Navnîşana E-nameyê' + ], + 'sitename' => [ + 'name' => 'sitename' + ], + 'activated' => [ + 'name' => 'Bikarhêner Çalak' + ], + 'enabled' => [ + 'name' => 'Bikarhêner Çalak bike' + ], + 'country' => [ + 'name' => 'Welat' + ], + 'city' => [ + 'name' => 'Bajar' + ], + 'district' => [ + 'name' => 'Herêm' + ], + 'neighborhood' => [ + 'name' => 'Cînarî' + ], + 'village' => [ + 'name' => 'Gûnd' + ], + 'gsm_phone' => [ + 'name' => 'Telefonê GSM' + ], + 'land_phone' => [ + 'name' => 'Telefonê Land' + ], + 'office_phone' => [ + 'name' => 'Telefonê Ofîsê' + ], + 'register_type' => [ + 'name' => 'Register Type' + ], + 'birthday' => [ + 'name' => 'Rojbûn' + ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], + 'education' => [ + 'name' => 'Zanyarî' + ], + 'state_of_education' => [ + 'name' => 'Dewleta Perwerdehiyê' + ], + 'profession' => [ + 'name' => 'Sinet' + ], + 'identification_number' => [ + 'name' => 'Nimara ye kiyîtî' + ], + 'adress_name' => [ + 'name' => 'Navnîşana Navnîşan' + ], + 'adress_first_name' => [ + 'name' => 'Nav' + ], + 'adress_last_name' => [ + 'name' => 'Paşnav' + ], + 'actions' => [ + 'name' => 'Çalakî' + ], + 'adress_content' => [ + 'name' => 'Navnîşana Navnîşan' + ], + 'adress_post_code' => [ + 'name' => 'Koda Postê' + ], + 'adress_gsm_phone' => [ + 'name' => 'Telefonê Gsm' + ], + 'adress_land_phone' => [ + 'name' => 'Telefonê Land' + ], + 'adress_country' => [ + 'name' => 'Welat' + ], + 'adress_city' => [ + 'name' => 'Bajar' + ], + 'adress_district' => [ + 'name' => 'Herêm' + ], + 'adress_neighborhood' => [ + 'name' => 'Cînarî' + ], + 'adress_village' => [ + 'name' => 'Gûnd' + ], + 'messages' => [ + 'name' => 'Messages' + ], + 'user' => [ + 'name' => 'Bikaranîvan' + ], + 'name' => [ + 'name' => 'Name' + ], + + /*Menu Button*/ + 'profile' => [ + 'name' => 'Tengal' + ], + + 'create' => [ + 'name' => 'Xûliqandin' + ], + 'edit' => [ + 'name' => 'Weşandin' + ], + 'delete' => [ + 'name' => 'Jêbirin' + ], + 'list' => [ + 'name' => 'Rêzok' + ], + 'menu_address' => [ + 'name' => 'Navnîşan' + ], + 'menu_orders' => [ + 'name' => 'Ferman' + ], + 'menu_favorites' => [ + 'name' => 'Favorites' + ], + 'menu_archived_ads' => [ + 'name' => 'Reklamên arşîvkirî' + ], + 'menu_pending_ads' => [ + 'name' => 'Li benda pejirandinê ye' + ], + 'menu_delete_account' => [ + 'name' => 'Hesabê bigire' + ], + 'menu_my_ads' => [ + 'name' => 'Reklamên min' + ], + 'menu_fav_ads' => [ + 'name' => 'Reklamên bijare' + ], + 'menu_hello_msg' => [ + 'name' => 'slav' + ], + 'menu_last_msg' => [ + 'name' => 'We herî dawî li' + ], + 'menu_packages' => [ + 'name' => 'Pakêtên min' + ], + 'menu_adv_packages' => [ + 'name' => 'Packages Ads' + ], + 'menu_time_packages' => [ + 'name' => 'Pakêtên Demjimêr' + ], + 'profile_details' => [ + 'name' => 'Profile Details' + ], + 'profile_photo' => [ + 'name' => 'Photo Profile' + ], + 'adv_listing_banner' => [ + 'name' => 'Reklam Lîsteya Rûpelê Banner' + ], + 'approve' => [ + 'name' => 'Destûrdan' + ], + 'approved' => [ + 'name' => 'Pejirandin' + ], + 'pending' => [ + 'name' => 'Nexelas' + ], + 'passive' => [ + 'name' => 'Nejîr' + ], + 'pending_admin' => [ + 'name' => 'Nexelas' + ], + 'menu_messages' => [ + 'name' => 'Messages' + ], + 'menu_my_purchase' => [ + 'name' => 'Kirîna min' + ], + 'menu_my_sales' => [ + 'name' => 'Firotanên min' + ], + + /* Right Dock*/ + 'right_secure_trading_subject' => [ + 'name' => 'Bazirganiya Ewle' + ], + 'right_secure_trading_msg' => [ + 'name' => 'Lorem ipsum dolor rûniştiye amet, elite adetekirina consectetur' + ], + 'right_support_subject' => [ + 'name' => '24/7 Piştgirî' + ], + 'right_support_msg' => [ + 'name' => 'Lorem ipsum dolor rûniştiye amet, elite adetekirina consectetur' + ], + 'right_easy_trading_subject' => [ + 'name' => 'Bazirganiya Hêsan' + ], + 'right_easy_trading_msg' => [ + 'name' => 'Lorem ipsum dolor rûniştiye amet, elite adetekirina consectetur' + ], + 'right_need_help_subject' => [ + 'name' => 'Ma Alîkarî hewce dike?' + ], + 'right_need_help_msg' => [ + 'name' => 'Gazî bikin' + ], + 'disable_account' => [ + 'name' => 'Hesabê Neçalak bikin' + ], + 'disable_account_msg' => [ + 'name' => 'Dê hesabê we bête sekinandin. + Ev operasyon nayê paşve xistin' + ], + + 'message_title' => 'Sernavê peyamê', + 'owner_name' => 'Agah', + + 'favorites' => "Favorites", + 'fav_advs' => 'Reklamên Bijare', + 'fav_sellers' => "Fav Firoşyar", + 'fav_searches' => "Lêgerînên Fav", + 'posted_on' => "Hat şandin", + 'message_details' => "Agahdariyên Peyamê", + 'adv_no' => 'Ad Na', + 'bill_address' => [ + 'name' => 'Navnîşana Bill', + ], + 'delivery_address' => [ + 'name' => 'Navnîşana Radestkirinê', + ], + 'order_total' => [ + 'name' => 'Hemî', + ], + 'order_date' => [ + 'name' => 'Date Order', + ], + 'order_no' => [ + 'name' => 'Nasnameyê rêz bikin', + ], + 'order_detail' => [ + 'name' => 'Detail nîşan bide', + ], + /*Detail Page Order*/ + 'detail' => [ + 'name' => 'Hûrî', + ], + 'back' => [ + 'name' => 'Paş', + ], + 'image' => [ + 'name' => 'Wêne', + ], + 'subject' => [ + 'name' => 'Mijar', + ], + 'price' => [ + 'name' => 'Biha', + ], + 'piece' => [ + 'name' => 'Perçe', + ], + 'commission' => [ + 'name' => 'Simsarî', + ], + 'total' => [ + 'name' => 'Hemî', + ], + 'sub_total' => [ + 'name' => 'Sub Total', + ], + 'sale' => [ + 'name' => 'Firotin', + ], + 'awaiting_tracking_number' => [ + 'name' => 'Li benda Hejmara ckopandinê ne', + ], + 'awaiting_payment_approval' => [ + 'name' => 'Li benda pejirandina drav', + ], + 'paid' => [ + 'name' => 'Pere kirin', + ], + 'cancelled' => [ + 'name' => 'Hat betalkirin', + ], + 'waiting' => [ + 'name' => 'Li bendê ye', + ], + 'awaiting_dispatch' => [ + 'name' => 'Li benda şandinê ye', + ], + 'shipped' => [ + 'name' => 'Ppedandin', + ], + 'delivered' => [ + 'name' => 'Radest kirin', + ], + 'tracking_number' => [ + 'name' => 'Hejmara ckopandinê', + ], + 'was_delivered' => [ + 'name' => 'hate radest kirin', + ], + 'not_delivered' => [ + 'name' => 'teslîm nebûye', + ], + 'show_order_msg1' => [ + 'name' => 'Encama danûstandinê dê bi nameyê were agahdar kirin.', + ], + 'show_order_msg2' => [ + 'name' => 'Ger hilber di nav hefteyekê de neyê radest kirin dê paşve were dayîn.', + ], + 'show_order_msg3' => [ + 'name' => 'Encama danûstendinê ji navnîşana e-nameya weya tomarkirî re hate şandin.', + ], + + 'awaiting_payment' => [ + 'name' => 'Li benda dravdayînê ye', + ], + 'please_entered_tracking_number' => [ + 'name' => 'Ji kerema xwe Hejmara ckopandinê ketin hundir', + ], + 'transport_days' => [ + 'name' => 'Rojên Veguhestinê', + ], + 'product_not_delivered' => [ + 'name' => 'Hilber nehatiye şandin', + ], + 'status' => [ + 'name' => 'Cî', + ], + 'cancel_sale' => [ + 'name' => 'Firotanê Betal Bikin', + ], + 'send_again' => [ + 'name' => 'Ez ê Dîsa Sendandim', + ], + 'content' => [ + 'name' => 'Dilşad', + ], + 'preferences_settings' => [ + 'name' => 'Mîhengên Bijareyan', + ], + + 'corporate_settings' => [ + 'name' => 'Mîhengên Pargîdanî', + ], + 'password' => [ + 'name' => 'Şîfre', + ], + 'old_password' => [ + 'name' => 'Passwordîfreya kevn', + ], + 'new_password' => [ + 'name' => 'Passwordîfreya nû', + ], + 're_new_password' => [ + 'name' => 'Di pêşîyê da em sipas dikin', + ], + 'confirm_password_input' => [ + 'name' => 'Ez guhertina şîfreya xwe piştrast dikim', + ], + 'create_address' => [ + 'name' => 'Navnîşan çêbikin', + ], + 'edit_address' => [ + 'name' => 'Navnîşan Biguherîne', + ], + 'balance_limit' => [ + 'name' => 'Sînora Hevsengiyê', + ], + 'active_ads' => [ + 'name' => 'Reklamên Çalak', + ], + 'subscriptions' => [ + 'name' => 'Abonekirin', + ], + 'go_subscriptions_page' => [ + 'name' => 'Herin Rûpelê Tevlêbûnan', + ], + 'buy_package' => [ + 'name' => 'Pakêtê bikirin', + ], + 'expired_date' => [ + 'name' => 'Date Date', + ], + 'category' => [ + 'name' => 'Liq', + ], + 'ad_limit' => [ + 'name' => 'Sînora Ad', + ], + 'publish_time' => [ + 'name' => 'Wext Weşandin', + ], + 'all_categories' => [ + 'name' => 'Hemî Kategorî', + ], + 'day' => [ + 'name' => 'Roj', + ], + + 'individual' => [ + 'name' => 'şexsî', + ], + 'corporate' => [ + 'name' => 'Pargîdanî', + ], + + 'details' => [ + 'name' => 'Hûrgulî' + ], + 'choose' => [ + 'name' => 'Helbijartin' + ], + 'my_address' => 'Navnîşana min', + + 'company' => [ + 'name' => 'Navê Pargîdanî' + ], + 'tax_office' => [ + 'name' => 'Daîreya Bacê' + ], + 'tax_number' => [ + 'name' => 'Hejmara Bacê' + ], + + // Profile page + 'my_profile' => 'Profîla min', + 'edit_profile' => 'Profîlê Biguherîne', + 'edit_details' => 'Hûrgulî Biguherînin', + 'update' => 'Rojanekirin', + 'change_password' => '.Îfreyê biguherînin', + 'choose_an_option' => 'Vebijarek hilbijêrin ...', + + // Register page + 'accept_terms_label' => 'Ez şertan qebûl dikim.', + 'accept_protection_law_label' => 'Ez şertên Zagona li ser qebûl dikim' . setting_value('visiosoft.module.profile::register_protection_url') . '"target =" _ vala "> Parastina Daneyên Kesane.', + 'accept_privacy_terms_label' => 'Ez qebûl dikim' . setting_value('visiosoft.module.profile::register_privacy_url') . '"target =" _ vala "> mercên nepenîtiyê.', + 'receive_sms_emails_label' => 'Ez dixwazim e-name & sms bistînim.', + + // Register Type + 'personal' => [ + 'name' => 'Şexsî' + ], + + 'education_part' => [ + 'name' => 'State of Education' + ], +]; From 72d006cfedf4487463d3d274fa41d813e36abf1d Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:14 +0300 Subject: [PATCH 030/179] New translations button.php (Kurdish) --- .../resources/lang/ku/button.php | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 addons/default/visiosoft/profile-module/resources/lang/ku/button.php diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/button.php b/addons/default/visiosoft/profile-module/resources/lang/ku/button.php new file mode 100644 index 000000000..7504ec666 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/button.php @@ -0,0 +1,20 @@ + 'Profîla Nû', + 'new_adress' => 'Navnîşana Nû', + 'show' => 'Navnîşan nîşan bide', + 'update_password' => 'Passwordîfreyê nûve bikin', + 'update_profile' => 'Nûvekirina Profîlê', + 'delete' => 'Jêbirin', + 'extend' => 'N', + 'extend_all' => 'Hemî Dirêj Bikin', + 'edit' => 'Weşandin', + 'go_profile' => 'Herin Detailê Profîl', + 'go_user' => 'Herin Berfirehiya Bikarhêner', + 'personal' => 'Şexsî', + 'corporate' => 'Pargîdanî', + 'export' => 'Eksport', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', +]; From 588eec259a9fbd9aed4cc6c98d71edaf596cc0c2 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:16 +0300 Subject: [PATCH 031/179] New translations button.php (Kurdish) --- .../base-theme/resources/lang/ku/button.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 addons/default/visiosoft/base-theme/resources/lang/ku/button.php diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/button.php b/addons/default/visiosoft/base-theme/resources/lang/ku/button.php new file mode 100644 index 000000000..f711419d7 --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/button.php @@ -0,0 +1,15 @@ + [ + 'name' => 'Post Ad', + ], + 'login' => 'Têkevin', + 'register' => 'Fêhrist', + 'continue' => 'Berdewamkirin', + 'reset_password' => 'Reset Passwordîfreyê', + 'email' => 'E-nameyê bişînin', + 'phone' => 'Telefon', + 'show_all' => 'Hemî nîşan bide', + 'hide_all' => 'Hide All', +]; \ No newline at end of file From 188f1818426254b07c6805e96a215e9089b3d402 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:18 +0300 Subject: [PATCH 032/179] New translations stream.php (Korean) --- .../visiosoft/profile-module/resources/lang/ko/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ko/stream.php index b87ecc28b..4c20bedae 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => '주소', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 0c105b3fca5a7c3a2f6019202c1e972884b5894b Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:20 +0300 Subject: [PATCH 033/179] New translations section.php (Korean) --- .../visiosoft/profile-module/resources/lang/ko/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/section.php b/addons/default/visiosoft/profile-module/resources/lang/ko/section.php index 3aad698e3..b71e95cdd 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => '일반 설정', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From 3bdeb3be5bbfc02e309704ce741906ec81187a2a Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:22 +0300 Subject: [PATCH 034/179] New translations permission.php (Korean) --- .../resources/lang/ko/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ko/permission.php index fcd9ced0e..3d1e31fdb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => '주소를 삭제할 수 있습니까?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 70175a67f0f26dcd8cad2c219daf4189a0b59712 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:24 +0300 Subject: [PATCH 035/179] New translations field.php (Korean) --- .../profile-module/resources/lang/ko/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 446a66767..0c5c653d6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => '생신' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => '교육' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => '사용자' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => '암호', ], + 'old_password' => [ + 'name' => '기존 비밀번호', + ], 'new_password' => [ 'name' => '새 비밀번호', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => '개인적인' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 46253dc8f5f59c018e07d68a9dea00594dcd8dce Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:26 +0300 Subject: [PATCH 036/179] New translations button.php (Korean) --- .../visiosoft/profile-module/resources/lang/ko/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/button.php b/addons/default/visiosoft/profile-module/resources/lang/ko/button.php index c6eac39c8..a67113abd 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/button.php @@ -15,4 +15,6 @@ return [ 'personal' => '개인적인', 'corporate' => '기업', 'export' => '수출', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From f33d0fd64a2f03a8f13adc661981116f1fcf90ba Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:28 +0300 Subject: [PATCH 037/179] New translations button.php (Korean) --- addons/default/visiosoft/base-theme/resources/lang/ko/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/ko/button.php b/addons/default/visiosoft/base-theme/resources/lang/ko/button.php index 99d467012..b57ab8484 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ko/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ko/button.php @@ -11,4 +11,5 @@ return [ 'email' => '이메일', 'phone' => '전화', 'show_all' => '모두 표시', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From c3538b4c38b175d97a55f7a2c98fe05a20de9787 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:30 +0300 Subject: [PATCH 038/179] New translations section.php (Polish) --- .../visiosoft/profile-module/resources/lang/pl/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/section.php b/addons/default/visiosoft/profile-module/resources/lang/pl/section.php index 2197e9257..5e2f29edb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Ustawienia główne', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From cfc49dd74ab00ab6aa21cee353b008269031e509 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:32 +0300 Subject: [PATCH 039/179] New translations button.php (Portuguese) --- addons/default/visiosoft/base-theme/resources/lang/pt/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/pt/button.php b/addons/default/visiosoft/base-theme/resources/lang/pt/button.php index 612ea0312..f0547a7b5 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/pt/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/pt/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'O email', 'phone' => 'telefone', 'show_all' => 'Mostre tudo', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From 6b7c292dc7b46933fde048795b470e7749d0af3d Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:34 +0300 Subject: [PATCH 040/179] New translations section.php (Japanese) --- .../visiosoft/profile-module/resources/lang/ja/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/section.php b/addons/default/visiosoft/profile-module/resources/lang/ja/section.php index c2070fd43..54b80ad20 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => '一般設定', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From bc445925dbcec421c6002798c199d58880a6fab0 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:36 +0300 Subject: [PATCH 041/179] New translations button.php (Albanian) --- .../visiosoft/profile-module/resources/lang/sq/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/button.php b/addons/default/visiosoft/profile-module/resources/lang/sq/button.php index 652ca64fd..55d3b9f51 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'personal', 'corporate' => 'i korporatës', 'export' => 'Eksporto', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 2930097c49cb51760614a063bcac92d0a7470fb5 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:37 +0300 Subject: [PATCH 042/179] New translations stream.php (Swedish) --- .../visiosoft/profile-module/resources/lang/sv/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/stream.php b/addons/default/visiosoft/profile-module/resources/lang/sv/stream.php index 695d2987d..3ab9aa4ce 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Adress', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 12b16174a98b4049dfa2f5f5e6f7911cbdeddc56 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:39 +0300 Subject: [PATCH 043/179] New translations section.php (Swedish) --- .../visiosoft/profile-module/resources/lang/sv/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/section.php b/addons/default/visiosoft/profile-module/resources/lang/sv/section.php index d45dcaa1f..dc3d918b9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Allmänna Inställningar', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From 3bef7b80917beb9ec8ed98fc95a152130da25617 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:41 +0300 Subject: [PATCH 044/179] New translations permission.php (Swedish) --- .../resources/lang/sv/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/permission.php b/addons/default/visiosoft/profile-module/resources/lang/sv/permission.php index 7909a606d..cb415dbdb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Kan radera adress?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From d0375d548c890903e6312d0e6757ae5cb338b311 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:43 +0300 Subject: [PATCH 045/179] New translations field.php (Swedish) --- .../profile-module/resources/lang/sv/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 313aa92a6..b1e2de0d1 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Födelsedag' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Utbildning' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Användare' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Lösenord', ], + 'old_password' => [ + 'name' => 'Gammalt lösenord', + ], 'new_password' => [ 'name' => 'Nytt lösenord', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Personlig' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 4102cd0dd7d08d0dee44db35ad0a75b1afebdf74 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:45 +0300 Subject: [PATCH 046/179] New translations button.php (Swedish) --- .../visiosoft/profile-module/resources/lang/sv/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/button.php b/addons/default/visiosoft/profile-module/resources/lang/sv/button.php index 3d76a7eb6..373dac9b8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Personlig', 'corporate' => 'Företags', 'export' => 'Exportera', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From c3a5e33d1c278224c5107b8317c2fd26752d73fc Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:47 +0300 Subject: [PATCH 047/179] New translations button.php (Swedish) --- addons/default/visiosoft/base-theme/resources/lang/sv/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/sv/button.php b/addons/default/visiosoft/base-theme/resources/lang/sv/button.php index 993410a85..f0b4071f4 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/sv/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/sv/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'E-post', 'phone' => 'Telefon', 'show_all' => 'Visa allt', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From 3ccacd1c1b970e5143fe2441ab592d1633c92209 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:49 +0300 Subject: [PATCH 048/179] New translations stream.php (Albanian) --- .../visiosoft/profile-module/resources/lang/sq/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/stream.php b/addons/default/visiosoft/profile-module/resources/lang/sq/stream.php index 051d0de65..66637ecbd 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Adresë', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 5070b1a1140985541e43edb3386cd5561ab6e943 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:51 +0300 Subject: [PATCH 049/179] New translations section.php (Albanian) --- .../visiosoft/profile-module/resources/lang/sq/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/section.php b/addons/default/visiosoft/profile-module/resources/lang/sq/section.php index a0624474f..d583327fd 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Cilësimet e përgjithshme', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From a684a1afb488b7e5b926815353414b7ac642bb72 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:53 +0300 Subject: [PATCH 050/179] New translations permission.php (Albanian) --- .../resources/lang/sq/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/permission.php b/addons/default/visiosoft/profile-module/resources/lang/sq/permission.php index c4b0dfc17..491f876ab 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Mund të fshini adresën?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From fdeb43b08913c258a4e8da976390432c305b3024 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:55 +0300 Subject: [PATCH 051/179] New translations field.php (Albanian) --- .../profile-module/resources/lang/sq/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 0c1f2f5a7..e6ce9dc62 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Ditëlindja' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Arsimi' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Perdoruesit' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Fjalëkalimi', ], + 'old_password' => [ + 'name' => 'Fjalëkalimi i vjetër', + ], 'new_password' => [ 'name' => 'Fjalëkalim i ri', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Personale' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 881a5e41dfc6d1803768defb7357fe5eab7f91ab Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:57 +0300 Subject: [PATCH 052/179] New translations button.php (Albanian) --- addons/default/visiosoft/base-theme/resources/lang/sq/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/sq/button.php b/addons/default/visiosoft/base-theme/resources/lang/sq/button.php index 7101af0fd..420d4c7b0 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/sq/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/sq/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Email', 'phone' => 'Telefon', 'show_all' => 'Shfaq të gjitha', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From a75fe72756d16c4fcab15f691f7a2ebc17dd842e Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:50:59 +0300 Subject: [PATCH 053/179] New translations button.php (Portuguese) --- .../visiosoft/profile-module/resources/lang/pt/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/button.php b/addons/default/visiosoft/profile-module/resources/lang/pt/button.php index 6875db1e0..55eea485f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Pessoal', 'corporate' => 'Corporativo', 'export' => 'Exportar', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 9e56fee9f9ce8f203a3cd57a2bf43f009d1104fd Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:01 +0300 Subject: [PATCH 054/179] New translations stream.php (Russian) --- .../visiosoft/profile-module/resources/lang/ru/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ru/stream.php index 17a65c5f1..f4c83b195 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Адрес', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 1e55e56909dbea6a4932341524be880174efd1b0 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:03 +0300 Subject: [PATCH 055/179] New translations section.php (Russian) --- .../visiosoft/profile-module/resources/lang/ru/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/section.php b/addons/default/visiosoft/profile-module/resources/lang/ru/section.php index 132745217..f3348e816 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'общие настройки', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From 51d7bec55826766c06120658ce118a8a1227e13c Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:05 +0300 Subject: [PATCH 056/179] New translations permission.php (Russian) --- .../resources/lang/ru/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ru/permission.php index 509ccf40a..94b9484bd 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Можете удалить адрес?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 9fa97b90577c1c32e511f3d4506f3ee3ad77d3c8 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:07 +0300 Subject: [PATCH 057/179] New translations field.php (Russian) --- .../profile-module/resources/lang/ru/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 ef5fc602d..a62607c84 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'День рождения' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Образование' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'пользователь' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -376,6 +385,9 @@ return [ 'password' => [ 'name' => 'пароль', ], + 'old_password' => [ + 'name' => 'Прежний пароль', + ], 'new_password' => [ 'name' => 'Новый пароль', ], @@ -468,4 +480,8 @@ return [ 'personal' => [ 'name' => 'Личное' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 45897f5fe0e1860ebff3ac5ae8db79b728d67123 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:09 +0300 Subject: [PATCH 058/179] New translations button.php (Russian) --- .../visiosoft/profile-module/resources/lang/ru/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/button.php b/addons/default/visiosoft/profile-module/resources/lang/ru/button.php index 8f0e1a92e..da86ac34d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'личный', 'corporate' => 'Корпоративный', 'export' => 'Экспорт', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 60fbad24ad962a166912dedc953151aba91896b9 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:11 +0300 Subject: [PATCH 059/179] New translations button.php (Russian) --- addons/default/visiosoft/base-theme/resources/lang/ru/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/ru/button.php b/addons/default/visiosoft/base-theme/resources/lang/ru/button.php index 68b50f752..e298c0562 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ru/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ru/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Электронное письмо', 'phone' => 'Телефон', 'show_all' => 'Показать все', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From 6b3dc1aed43779e932530e6c81407e0bcc3ee6e5 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:13 +0300 Subject: [PATCH 060/179] New translations stream.php (Portuguese) --- .../visiosoft/profile-module/resources/lang/pt/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/stream.php b/addons/default/visiosoft/profile-module/resources/lang/pt/stream.php index 85e3e8531..b395fdd42 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Endereço', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From aa018b42f7bceff04374e0d0b6966f6c67370af6 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:15 +0300 Subject: [PATCH 061/179] New translations section.php (Portuguese) --- .../visiosoft/profile-module/resources/lang/pt/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/section.php b/addons/default/visiosoft/profile-module/resources/lang/pt/section.php index 662440e6e..9f7ad7899 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Configurações Gerais', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From 97ee252e79ab0545de228431c3427a2bdd617c94 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:17 +0300 Subject: [PATCH 062/179] New translations permission.php (Portuguese) --- .../resources/lang/pt/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/permission.php b/addons/default/visiosoft/profile-module/resources/lang/pt/permission.php index c6dd7736a..58b0d82cf 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Pode excluir o endereço?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 93f6608cbd0215e2ccbfc1dbd4b18fbcbcaec230 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:19 +0300 Subject: [PATCH 063/179] New translations field.php (Portuguese) --- .../profile-module/resources/lang/pt/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 852e12345..952a5952a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Aniversário' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Educação' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Do utilizador' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -377,6 +386,9 @@ return [ 'password' => [ 'name' => 'Senha', ], + 'old_password' => [ + 'name' => 'Senha Antiga', + ], 'new_password' => [ 'name' => 'Nova senha', ], @@ -469,4 +481,8 @@ return [ 'personal' => [ 'name' => 'Pessoal' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 75f5023c8a09f8a8fc9db1c9db57d6b9fba26cc2 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:21 +0300 Subject: [PATCH 064/179] New translations stream.php (Japanese) --- .../visiosoft/profile-module/resources/lang/ja/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ja/stream.php index 2364e891f..0c3a75c8b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => '住所', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 0f93624d16b7c3b7230bb268eac0e999f721c08e Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:23 +0300 Subject: [PATCH 065/179] New translations permission.php (Polish) --- .../resources/lang/pl/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/permission.php b/addons/default/visiosoft/profile-module/resources/lang/pl/permission.php index a56f96694..a733ee567 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Czy można usunąć adres?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 1af5ad6d74763c25a37264c2516c75d11e1092db Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:25 +0300 Subject: [PATCH 066/179] New translations permission.php (Japanese) --- .../resources/lang/ja/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ja/permission.php index 02efc8c5c..bb818fa98 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'アドレスを削除できますか?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From ac1d67129fa3f07f5b8c2e1d28fbec2c09973f23 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:27 +0300 Subject: [PATCH 067/179] New translations button.php (Spanish) --- .../visiosoft/profile-module/resources/lang/es/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/button.php b/addons/default/visiosoft/profile-module/resources/lang/es/button.php index e088a0475..f0b2a3d59 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Personal', 'corporate' => 'Corporativo', 'export' => 'Exportar', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 57180e5d866f8731d22ce60beafeea9c852fcf91 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:29 +0300 Subject: [PATCH 068/179] New translations stream.php (Arabic) --- .../visiosoft/profile-module/resources/lang/ar/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ar/stream.php index ed9f44149..b76c96fdb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'عنوان', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From a3c8c1cf9aaf2a237655112c3c05d7aa643723e1 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:31 +0300 Subject: [PATCH 069/179] New translations section.php (Arabic) --- .../visiosoft/profile-module/resources/lang/ar/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/section.php b/addons/default/visiosoft/profile-module/resources/lang/ar/section.php index 79d77bb8d..a8cb29630 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'الاعدادات العامة', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From c04da60813725bea9a13568278e7da4aaff00c67 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:33 +0300 Subject: [PATCH 070/179] New translations permission.php (Arabic) --- .../resources/lang/ar/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ar/permission.php index 23786d7fc..63fcd0cbd 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'يمكن حذف العنوان؟', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 02e8f023591642b5a38ce46840cc5294a28b8913 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:35 +0300 Subject: [PATCH 071/179] New translations field.php (Arabic) --- .../profile-module/resources/lang/ar/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 78ce5a6d8..78058e12a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'عيد ميلاد' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'التعليم' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'المستعمل' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -374,6 +383,9 @@ return [ 'password' => [ 'name' => 'كلمه السر', ], + 'old_password' => [ + 'name' => 'كلمة المرور القديمة', + ], 'new_password' => [ 'name' => 'كلمة السر الجديدة', ], @@ -466,4 +478,8 @@ return [ 'personal' => [ 'name' => 'شخصي' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From cd9e8ec3f757b6d6f83027065028df46af95e7d6 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:36 +0300 Subject: [PATCH 072/179] New translations button.php (Arabic) --- .../visiosoft/profile-module/resources/lang/ar/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/button.php b/addons/default/visiosoft/profile-module/resources/lang/ar/button.php index 3572af540..41299fcc3 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'شخصي', 'corporate' => 'الشركات', 'export' => 'تصدير', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From bd59c15e2854a24c0b68c74504578d6a2500afd1 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:38 +0300 Subject: [PATCH 073/179] New translations button.php (Arabic) --- addons/default/visiosoft/base-theme/resources/lang/ar/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/ar/button.php b/addons/default/visiosoft/base-theme/resources/lang/ar/button.php index 80a763ac2..388544daa 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ar/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ar/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'البريد الإلكتروني', 'phone' => 'هاتف', 'show_all' => 'عرض الكل', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From c05a54d4257ac390ab247abea0b8946e5f8a4213 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:40 +0300 Subject: [PATCH 074/179] New translations stream.php (Spanish) --- .../visiosoft/profile-module/resources/lang/es/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/stream.php b/addons/default/visiosoft/profile-module/resources/lang/es/stream.php index bec3fc025..84f9fe05c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Dirección', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 1453e5d4d9c28f1a581ab246ab9241ecc32decde Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:42 +0300 Subject: [PATCH 075/179] New translations section.php (Spanish) --- .../visiosoft/profile-module/resources/lang/es/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/section.php b/addons/default/visiosoft/profile-module/resources/lang/es/section.php index 2a5511a4c..88af6c402 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Configuración general', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From f67a35ac14b5337c33a9aefbfc4c7a21c394e345 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:44 +0300 Subject: [PATCH 076/179] New translations permission.php (Spanish) --- .../resources/lang/es/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/permission.php b/addons/default/visiosoft/profile-module/resources/lang/es/permission.php index 2aae8c09b..a2c4debb2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => '¿Se puede eliminar la dirección?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 3e19c273c77dbc7e6f9e0d8c945d3878e519c5c9 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:46 +0300 Subject: [PATCH 077/179] New translations field.php (Spanish) --- .../profile-module/resources/lang/es/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 73423cbf2..14c799152 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Cumpleaños' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Educación' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Usuario' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -377,6 +386,9 @@ return [ 'password' => [ 'name' => 'Contraseña', ], + 'old_password' => [ + 'name' => 'Contraseña anterior', + ], 'new_password' => [ 'name' => 'Nueva contraseña', ], @@ -469,4 +481,8 @@ return [ 'personal' => [ 'name' => 'Personal' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From db6f27e12daeb3eda066388775e3541c2e0819eb Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:48 +0300 Subject: [PATCH 078/179] New translations button.php (Spanish) --- addons/default/visiosoft/base-theme/resources/lang/es/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/es/button.php b/addons/default/visiosoft/base-theme/resources/lang/es/button.php index 02ef75923..21fa945cb 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/es/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/es/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Correo electrónico', 'phone' => 'Teléfono', 'show_all' => 'Mostrar todo', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From 9dfffa51de8640e4a8ec8f531d40c51c138b019e Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:50 +0300 Subject: [PATCH 079/179] New translations button.php (German) --- .../visiosoft/profile-module/resources/lang/de/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/button.php b/addons/default/visiosoft/profile-module/resources/lang/de/button.php index ee5436515..b47052df8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'persönlich', 'corporate' => 'Corporate', 'export' => 'Export', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From e75a49cc1024133974d1aaa5bf0045adc3a03bb7 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:52 +0300 Subject: [PATCH 080/179] New translations stream.php (French) --- .../visiosoft/profile-module/resources/lang/fr/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/stream.php b/addons/default/visiosoft/profile-module/resources/lang/fr/stream.php index c6860c42e..329a9ea98 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Une robe', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 17b49ea50ba15616a4a2772f3895cb37d00ec8af Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:54 +0300 Subject: [PATCH 081/179] New translations section.php (French) --- .../visiosoft/profile-module/resources/lang/fr/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/section.php b/addons/default/visiosoft/profile-module/resources/lang/fr/section.php index cd8f6bebd..3ce422042 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'réglages généraux', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From a307f9dd95db08e97a4721063bddead4d907e963 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:56 +0300 Subject: [PATCH 082/179] New translations permission.php (French) --- .../resources/lang/fr/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/permission.php b/addons/default/visiosoft/profile-module/resources/lang/fr/permission.php index 45c9d5aad..f98d607ea 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Peut effacer l\\'adresse?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From d2e815292d301c7e0a4e70e893b446fb0f3b3f2e Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:51:59 +0300 Subject: [PATCH 083/179] New translations field.php (French) --- .../profile-module/resources/lang/fr/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 561478c52..7255d5061 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Anniversaire' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Éducation' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Utilisateur' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -377,6 +386,9 @@ return [ 'password' => [ 'name' => 'Mot de passe', ], + 'old_password' => [ + 'name' => 'Ancien mot de passe', + ], 'new_password' => [ 'name' => 'Nouveau mot de passe', ], @@ -469,4 +481,8 @@ return [ 'personal' => [ 'name' => 'Personnel' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 795c3aae94ae150b793ebd8809f51ce6a61b7b67 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:00 +0300 Subject: [PATCH 084/179] New translations button.php (French) --- .../visiosoft/profile-module/resources/lang/fr/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/button.php b/addons/default/visiosoft/profile-module/resources/lang/fr/button.php index 2fc879935..ba31b28c2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Personnel', 'corporate' => 'Entreprise', 'export' => 'Exportation', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 9bc7b0e1b6eda64c0092d1e74ae77829dcffd8a2 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:03 +0300 Subject: [PATCH 085/179] New translations button.php (French) --- addons/default/visiosoft/base-theme/resources/lang/fr/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/fr/button.php b/addons/default/visiosoft/base-theme/resources/lang/fr/button.php index 97741f836..734f5094f 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/fr/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/fr/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Email', 'phone' => 'Téléphone', 'show_all' => 'Afficher tout', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From ca3a0b32922794da98eb47fd08ef003ef1ea141a Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:05 +0300 Subject: [PATCH 086/179] New translations stream.php (Romanian) --- .../visiosoft/profile-module/resources/lang/ro/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ro/stream.php index 47580451f..ae105a4ec 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Abordare', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 325935d214e7538f053871bf769c06db50ecf986 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:07 +0300 Subject: [PATCH 087/179] New translations section.php (Romanian) --- .../visiosoft/profile-module/resources/lang/ro/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/section.php b/addons/default/visiosoft/profile-module/resources/lang/ro/section.php index 168aff6e4..913b858f4 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'setari generale', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From e3e1ad181497c55a3e91d5beb83897858229f2de Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:08 +0300 Subject: [PATCH 088/179] New translations permission.php (Romanian) --- .../resources/lang/ro/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ro/permission.php index 057d30ca8..bf7c5456e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Se poate șterge adresa?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From e2bd9749ed5bc04036342fca1baea5878749e5da Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:10 +0300 Subject: [PATCH 089/179] New translations field.php (Japanese) --- .../profile-module/resources/lang/ja/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 aeb51d9f1..567c52b36 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'お誕生日' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => '教育' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'ユーザー' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'パスワード', ], + 'old_password' => [ + 'name' => '以前のパスワード', + ], 'new_password' => [ 'name' => '新しいパスワード', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => '個人' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 4d241a2daae828fe78eea7559c776edaa99594ee Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:12 +0300 Subject: [PATCH 090/179] New translations button.php (German) --- addons/default/visiosoft/base-theme/resources/lang/de/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/de/button.php b/addons/default/visiosoft/base-theme/resources/lang/de/button.php index 7448da225..603b20145 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/de/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/de/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Email', 'phone' => 'Telefon', 'show_all' => 'Zeige alles', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From b0bd4b1e6003f12a97c8629cd68bb9c2c47609c5 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:14 +0300 Subject: [PATCH 091/179] New translations field.php (Romanian) --- .../profile-module/resources/lang/ro/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 f6e1960e6..8125635b5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Zi de nastere' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Educaţie' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Utilizator' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Parola', ], + 'old_password' => [ + 'name' => 'Parola veche', + ], 'new_password' => [ 'name' => 'Parolă Nouă', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Personal' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From ded3c4f589e87aab53e13708697f14e098aa7094 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:16 +0300 Subject: [PATCH 092/179] New translations field.php (German) --- .../profile-module/resources/lang/de/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 324931ccc..9a4f39ee9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Geburtstag' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Bildung' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Nutzer' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -380,6 +389,9 @@ return [ 'password' => [ 'name' => 'Passwort', ], + 'old_password' => [ + 'name' => 'Altes Passwort', + ], 'new_password' => [ 'name' => 'Neues Kennwort', ], @@ -472,4 +484,8 @@ return [ 'personal' => [ 'name' => 'persönlich' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From a481adcd204366400f84dceeada509546b66503e Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:18 +0300 Subject: [PATCH 093/179] New translations permission.php (Hebrew) --- .../resources/lang/he/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/permission.php b/addons/default/visiosoft/profile-module/resources/lang/he/permission.php index c501937f8..dcdd19aab 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'האם ניתן למחוק כתובת?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 59051da3836883c3c0f95ca03d5e759c9c73e424 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:20 +0300 Subject: [PATCH 094/179] New translations permission.php (German) --- .../resources/lang/de/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/permission.php b/addons/default/visiosoft/profile-module/resources/lang/de/permission.php index db2c0fb91..d6534f897 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Kann Adresse löschen?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 7f5adc229e07fcb17efdc515233446bfb0b1a7a9 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:22 +0300 Subject: [PATCH 095/179] New translations button.php (Japanese) --- addons/default/visiosoft/base-theme/resources/lang/ja/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/ja/button.php b/addons/default/visiosoft/base-theme/resources/lang/ja/button.php index 744fbf811..6addf89ac 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ja/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ja/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Eメール', 'phone' => '電話', 'show_all' => 'すべて表示する', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From c9d6e9327e15ba773f8a8929fdbac72ed0472166 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:24 +0300 Subject: [PATCH 096/179] New translations stream.php (Italian) --- .../visiosoft/profile-module/resources/lang/it/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/stream.php b/addons/default/visiosoft/profile-module/resources/lang/it/stream.php index 7571a5774..6c74ba513 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Un vestito', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 6574865283ba3ff6d3a3501b13d630b75bb024b4 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:26 +0300 Subject: [PATCH 097/179] New translations section.php (Italian) --- .../visiosoft/profile-module/resources/lang/it/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/section.php b/addons/default/visiosoft/profile-module/resources/lang/it/section.php index c7f476e6f..eab2105c3 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'impostazioni generali', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From adf395cb5dc34b40438a000a17838991f67fb721 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:28 +0300 Subject: [PATCH 098/179] New translations permission.php (Italian) --- .../resources/lang/it/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/permission.php b/addons/default/visiosoft/profile-module/resources/lang/it/permission.php index 3b4c22131..88922b0fe 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'È possibile eliminare l\\'indirizzo?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 72928e36968a248f1a59c21f8c26ab7f22a9becb Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:30 +0300 Subject: [PATCH 099/179] New translations field.php (Italian) --- .../profile-module/resources/lang/it/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 d2c6da50d..2bb5d8947 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Compleanno' ], + 'facebook_address' => [ + 'name' => 'Indirizzo di Facebook' + ], + 'google_address' => [ + 'name' => 'Indirizzo Google' + ], 'education' => [ 'name' => 'Formazione scolastica' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Utente' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -377,6 +386,9 @@ return [ 'password' => [ 'name' => 'Parola d\'ordine', ], + 'old_password' => [ + 'name' => 'Vecchia password', + ], 'new_password' => [ 'name' => 'Nuova password', ], @@ -469,4 +481,8 @@ return [ 'personal' => [ 'name' => 'Personale' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 3df271f571ebb47b767abef5e09d9c978ce5e9bd Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:32 +0300 Subject: [PATCH 100/179] New translations button.php (Italian) --- .../visiosoft/profile-module/resources/lang/it/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/button.php b/addons/default/visiosoft/profile-module/resources/lang/it/button.php index 12ffba620..0df840bd0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Personale', 'corporate' => 'Corporate', 'export' => 'Esportare', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 1f32a89eea7b18f69a605caf20154573b4d7150f Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:34 +0300 Subject: [PATCH 101/179] New translations button.php (Italian) --- addons/default/visiosoft/base-theme/resources/lang/it/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/it/button.php b/addons/default/visiosoft/base-theme/resources/lang/it/button.php index b4c7b4754..5d5456772 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/it/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/it/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Telefono', 'show_all' => 'Mostra tutto', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From d2946e94f02e3e15b02146b8722689378fc8595c Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:36 +0300 Subject: [PATCH 102/179] New translations stream.php (Hebrew) --- .../visiosoft/profile-module/resources/lang/he/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/stream.php b/addons/default/visiosoft/profile-module/resources/lang/he/stream.php index e27f72c40..2cd41adde 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'כתובת', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 8b645639dab0dd63d34720227f5a975c0bab55f4 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:38 +0300 Subject: [PATCH 103/179] New translations section.php (Hebrew) --- .../visiosoft/profile-module/resources/lang/he/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/section.php b/addons/default/visiosoft/profile-module/resources/lang/he/section.php index bc1dcadb2..5950f6d74 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'הגדרות כלליות', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From 0550eccbdd3cf4ea206a86a89253f2c741aae888 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:41 +0300 Subject: [PATCH 104/179] New translations button.php (Japanese) --- .../visiosoft/profile-module/resources/lang/ja/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/button.php b/addons/default/visiosoft/profile-module/resources/lang/ja/button.php index 1a67809a7..e5f0a169d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/button.php @@ -15,4 +15,6 @@ return [ 'personal' => '個人的な', 'corporate' => 'コーポレート', 'export' => '書き出す', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 7706f0d74c342d39ab242f375db095fbe3fb5c0b Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:43 +0300 Subject: [PATCH 105/179] New translations field.php (Hebrew) --- .../profile-module/resources/lang/he/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 a10bc17d6..932ae3d01 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'יום הולדת' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'חינוך' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'משתמש' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'סיסמה', ], + 'old_password' => [ + 'name' => 'סיסמה ישנה', + ], 'new_password' => [ 'name' => 'סיסמה חדשה', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'אישי' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 859fba8133990c7b8b8f20b29852c6bc860699f8 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:45 +0300 Subject: [PATCH 106/179] New translations button.php (Greek) --- .../visiosoft/profile-module/resources/lang/el/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/button.php b/addons/default/visiosoft/profile-module/resources/lang/el/button.php index 1ca2c3e0b..59ba1c76a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Προσωπικός', 'corporate' => 'Εταιρικός', 'export' => 'Εξαγωγή', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From f5f99f3904d64d2a2a810e9e6abbefd2e7c560aa Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:47 +0300 Subject: [PATCH 107/179] New translations button.php (Hebrew) --- .../visiosoft/profile-module/resources/lang/he/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/button.php b/addons/default/visiosoft/profile-module/resources/lang/he/button.php index 757cc1cd0..aeb3fa536 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'אישי', 'corporate' => 'תאגידי', 'export' => 'יְצוּא', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 4f03d0d3c22fa6d40ef1eee45597f76f1083934d Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:48 +0300 Subject: [PATCH 108/179] New translations stream.php (German) --- .../visiosoft/profile-module/resources/lang/de/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/stream.php b/addons/default/visiosoft/profile-module/resources/lang/de/stream.php index 4a577a02b..ce288e3ef 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Anschrift', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From aff3f235c5cfd8ec3a7de9b4d272f5120fa69c68 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:50 +0300 Subject: [PATCH 109/179] New translations button.php (Greek) --- addons/default/visiosoft/base-theme/resources/lang/el/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/el/button.php b/addons/default/visiosoft/base-theme/resources/lang/el/button.php index 0f1a4bccd..7a76e9873 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/el/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/el/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ', 'phone' => 'Τηλέφωνο', 'show_all' => 'Προβολή όλων', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From ee39aa9304f9244f2c0a626396d0465290ab5c20 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:52 +0300 Subject: [PATCH 110/179] New translations section.php (German) --- .../visiosoft/profile-module/resources/lang/de/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/section.php b/addons/default/visiosoft/profile-module/resources/lang/de/section.php index 81a0ba7fc..3b3f20ea5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Allgemeine Einstellungen', 'recaptcha' => 'reCaptcha', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From afd8f2a3a05075d91efb8085a4027f687deef760 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:54 +0300 Subject: [PATCH 111/179] New translations field.php (Greek) --- .../profile-module/resources/lang/el/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 44b9e3e74..813644528 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Γενέθλια' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Εκπαίδευση' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Χρήστης' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -377,6 +386,9 @@ return [ 'password' => [ 'name' => 'Κωδικός πρόσβασης', ], + 'old_password' => [ + 'name' => 'ΠΑΛΙΟΣ ΚΩΔΙΚΟΣ', + ], 'new_password' => [ 'name' => 'Νέος κωδικός πρόσβασης', ], @@ -469,4 +481,8 @@ return [ 'personal' => [ 'name' => 'Προσωπικός' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 0c144834eca8f03529872f6eea6f8b25e9a267a1 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:56 +0300 Subject: [PATCH 112/179] New translations permission.php (Greek) --- .../resources/lang/el/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/permission.php b/addons/default/visiosoft/profile-module/resources/lang/el/permission.php index a5686d90d..310db69ff 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Μπορεί να διαγράψει τη διεύθυνση;', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From e2384f40277c005246b9221dfd6e11ae789a65d8 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:52:58 +0300 Subject: [PATCH 113/179] New translations section.php (Greek) --- .../visiosoft/profile-module/resources/lang/el/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/section.php b/addons/default/visiosoft/profile-module/resources/lang/el/section.php index 855b66a8f..f00736a85 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Γενικές Ρυθμίσεις', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From 540e6646bbdd66232702495adfa8e9840ee233cd Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:00 +0300 Subject: [PATCH 114/179] New translations stream.php (Greek) --- .../visiosoft/profile-module/resources/lang/el/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/stream.php b/addons/default/visiosoft/profile-module/resources/lang/el/stream.php index 2e0b73571..11d60b9d6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Διεύθυνση', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From a9ba8ed7c01d2e057c1a2bb602e5c437000939f1 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:02 +0300 Subject: [PATCH 115/179] New translations button.php (Hebrew) --- addons/default/visiosoft/base-theme/resources/lang/he/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/he/button.php b/addons/default/visiosoft/base-theme/resources/lang/he/button.php index 25bf86fcb..f317acbdc 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/he/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/he/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'אימייל', 'phone' => 'טלפון', 'show_all' => 'תראה הכול', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From c057a68b50c5e36b2753be07d25e790558eb3970 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:04 +0300 Subject: [PATCH 116/179] New translations stream.php (Bengali) --- .../visiosoft/profile-module/resources/lang/bn/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/stream.php b/addons/default/visiosoft/profile-module/resources/lang/bn/stream.php index 440c4bc5d..9179279a8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'ঠিকানা', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 37ca62616b0f9990aef7c0884a360fa1ce82f186 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:06 +0300 Subject: [PATCH 117/179] New translations permission.php (Persian) --- .../resources/lang/fa/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/permission.php b/addons/default/visiosoft/profile-module/resources/lang/fa/permission.php index aebfb5a91..085cb07e0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'می توانید آدرس را حذف کنید؟', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From bdaada3e7722ec00442b8f384288024d759b23ab Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:08 +0300 Subject: [PATCH 118/179] New translations section.php (Persian) --- .../visiosoft/profile-module/resources/lang/fa/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/section.php b/addons/default/visiosoft/profile-module/resources/lang/fa/section.php index 683ef9e58..0866e0181 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'تنظیمات عمومی', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From 99223d437c323a7f895a78f36a4e790c07b93539 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:10 +0300 Subject: [PATCH 119/179] New translations stream.php (Persian) --- .../visiosoft/profile-module/resources/lang/fa/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/stream.php b/addons/default/visiosoft/profile-module/resources/lang/fa/stream.php index 07fdd548f..988317fb1 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'آدرس', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 70624527ae82e18b7732ecdfaf2e8119d527e0e2 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:12 +0300 Subject: [PATCH 120/179] New translations button.php (Bengali) --- addons/default/visiosoft/base-theme/resources/lang/bn/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/bn/button.php b/addons/default/visiosoft/base-theme/resources/lang/bn/button.php index 696e27d0f..51b944f33 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/bn/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/bn/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'ইমেইল', 'phone' => 'ফোন', 'show_all' => 'সব দেখাও', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From b1802dba237d535a46916530fbf96457abfa1e80 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:15 +0300 Subject: [PATCH 121/179] New translations button.php (Bengali) --- .../visiosoft/profile-module/resources/lang/bn/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/button.php b/addons/default/visiosoft/profile-module/resources/lang/bn/button.php index aa4f6e333..97955f087 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'ব্যক্তিগত', 'corporate' => 'কর্পোরেট', 'export' => 'রফতানি', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 82fe05da1686a7bd502c8d0bd46e5f8b791e13b2 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:17 +0300 Subject: [PATCH 122/179] New translations field.php (Bengali) --- .../profile-module/resources/lang/bn/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 76eb84b02..707b1b175 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'জন্মদিন' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'শিক্ষা' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'ব্যবহারকারী' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'পাসওয়ার্ড', ], + 'old_password' => [ + 'name' => 'পুরানো পাসওয়ার্ড', + ], 'new_password' => [ 'name' => 'নতুন পাসওয়ার্ড', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'ব্যক্তিগত' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 29c49f466be91783599cce31081b077b80f36e95 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:18 +0300 Subject: [PATCH 123/179] New translations permission.php (Bengali) --- .../resources/lang/bn/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/permission.php b/addons/default/visiosoft/profile-module/resources/lang/bn/permission.php index 9a8f85dc1..043e46b3a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'ঠিকানা মুছতে পারেন?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 95daec696c8d9582cf6b4748d3d0d0f6c4d02636 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:21 +0300 Subject: [PATCH 124/179] New translations section.php (Bengali) --- .../visiosoft/profile-module/resources/lang/bn/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/section.php b/addons/default/visiosoft/profile-module/resources/lang/bn/section.php index 28fb35023..6405fbe44 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'সাধারণ সেটিংস', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From 5ba36af2adfccb6ca755ef311d683e0733371db3 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:23 +0300 Subject: [PATCH 125/179] New translations field.php (Persian) --- .../profile-module/resources/lang/fa/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 259fb9ff7..3a72dfad8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'روز تولد' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'تحصیلات' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'کاربر' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -374,6 +383,9 @@ return [ 'password' => [ 'name' => 'کلمه عبور', ], + 'old_password' => [ + 'name' => 'رمز عبور قدیمی', + ], 'new_password' => [ 'name' => 'رمز عبور جدید', ], @@ -466,4 +478,8 @@ return [ 'personal' => [ 'name' => 'شخصی' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 18da67f2b4393901b95e4b28986d98af3fd44566 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:25 +0300 Subject: [PATCH 126/179] New translations section.php (Azerbaijani) --- .../visiosoft/profile-module/resources/lang/az/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/section.php b/addons/default/visiosoft/profile-module/resources/lang/az/section.php index 983000bd7..93f30d567 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Ümumi Ayarlar', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From 34963b0176247e7007009b24778ba7254aa2f12a Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:26 +0300 Subject: [PATCH 127/179] New translations button.php (Azerbaijani) --- addons/default/visiosoft/base-theme/resources/lang/az/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/az/button.php b/addons/default/visiosoft/base-theme/resources/lang/az/button.php index 3fc99faad..90ec2186c 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/az/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/az/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Elektron poçt', 'phone' => 'Telefon', 'show_all' => 'Hamısını göstər', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From f0225ff5991bf55ec1d32383df42cc2361106f8f Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:28 +0300 Subject: [PATCH 128/179] New translations button.php (Azerbaijani) --- .../visiosoft/profile-module/resources/lang/az/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/button.php b/addons/default/visiosoft/profile-module/resources/lang/az/button.php index c95bbdb80..14acb86eb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Şəxsi', 'corporate' => 'Korporativ', 'export' => 'İxrac', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 19667330672467ed0df717648d6763d4a4282348 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:30 +0300 Subject: [PATCH 129/179] New translations field.php (Azerbaijani) --- .../profile-module/resources/lang/az/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 e63eb3087..b57a768bb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Ad günü' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Təhsil' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'İstifadəçi' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Şifrə', ], + 'old_password' => [ + 'name' => 'Köhnə Şifrə', + ], 'new_password' => [ 'name' => 'Yeni şifrə', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Şəxsi' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From c79d008dba038bde0f9c87a69d8fd6183997fa40 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:33 +0300 Subject: [PATCH 130/179] New translations permission.php (Azerbaijani) --- .../resources/lang/az/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/permission.php b/addons/default/visiosoft/profile-module/resources/lang/az/permission.php index f859fd855..938840c98 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Ünvanı silə bilərsiniz?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 501e308c1f28e1b1787302dea352812f675a78f2 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:34 +0300 Subject: [PATCH 131/179] New translations stream.php (Azerbaijani) --- .../visiosoft/profile-module/resources/lang/az/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/stream.php b/addons/default/visiosoft/profile-module/resources/lang/az/stream.php index e0de6f634..e40bc1f80 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Ünvan', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From d84c44d1e9e5a6c9e6862fe5d3ed20c9e8c4f775 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:36 +0300 Subject: [PATCH 132/179] New translations button.php (Hindi) --- addons/default/visiosoft/base-theme/resources/lang/hi/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/hi/button.php b/addons/default/visiosoft/base-theme/resources/lang/hi/button.php index 3725bc8c3..9948d0edc 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/hi/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/hi/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'ईमेल', 'phone' => 'फ़ोन', 'show_all' => 'सब दिखाओ', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From 04a9bbf154e26d8b3accb15993d35e6589a2f9de Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:38 +0300 Subject: [PATCH 133/179] New translations button.php (Hindi) --- .../visiosoft/profile-module/resources/lang/hi/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/button.php b/addons/default/visiosoft/profile-module/resources/lang/hi/button.php index bc6f1e8f7..bad7272b1 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'निजी', 'corporate' => 'कॉर्पोरेट', 'export' => 'निर्यात', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 1d5ddf1ff52f419915a5c31f94176cffc8d4af9a Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:40 +0300 Subject: [PATCH 134/179] New translations field.php (Hindi) --- .../profile-module/resources/lang/hi/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 74c82f8c6..9725adfe8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'जन्मदिन' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'शिक्षा' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'उपयोगकर्ता' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'कुंजिका', ], + 'old_password' => [ + 'name' => 'पुराना पासवर्ड', + ], 'new_password' => [ 'name' => 'नया पासवर्ड', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'निजी' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From d815d81dfc0a3404000ec6735cbc3c1e0aea2eb1 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:42 +0300 Subject: [PATCH 135/179] New translations permission.php (Hindi) --- .../resources/lang/hi/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/permission.php b/addons/default/visiosoft/profile-module/resources/lang/hi/permission.php index d70eaa868..88a15d69b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'हटा सकते हैं एड्रेस?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From c85db7af531dab505bbdc904e43ecf8d8069957a Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:43 +0300 Subject: [PATCH 136/179] New translations section.php (Hindi) --- .../visiosoft/profile-module/resources/lang/hi/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/section.php b/addons/default/visiosoft/profile-module/resources/lang/hi/section.php index 0f0d9a95e..707a5181c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'सामान्य सेटिंग्स', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From 38b68d0af990dbe529cc51a2c87fd8a5e7641088 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:46 +0300 Subject: [PATCH 137/179] New translations button.php (Persian) --- addons/default/visiosoft/base-theme/resources/lang/fa/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/fa/button.php b/addons/default/visiosoft/base-theme/resources/lang/fa/button.php index 87d6b35e0..7e6045ba8 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/fa/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/fa/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'پست الکترونیک', 'phone' => 'تلفن', 'show_all' => 'نمایش همه', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From 85d7a1051766bb0da66f0915a483b2e65f03a4d2 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:47 +0300 Subject: [PATCH 138/179] New translations button.php (Persian) --- .../visiosoft/profile-module/resources/lang/fa/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/button.php b/addons/default/visiosoft/profile-module/resources/lang/fa/button.php index 224dc4f24..347e8b5b6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'شخصی', 'corporate' => 'شرکت های بزرگ، دارای شخصیت حقوقی', 'export' => 'صادرات', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From d567bcbcb64d400ee6e0f552b6824eb4ea1b665e Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:49 +0300 Subject: [PATCH 139/179] New translations button.php (Urdu (Pakistan)) --- addons/default/visiosoft/base-theme/resources/lang/ur/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/ur/button.php b/addons/default/visiosoft/base-theme/resources/lang/ur/button.php index 4b30b9357..4d28a9c45 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ur/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ur/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'ای میل', 'phone' => 'فون', 'show_all' => 'سارے دکھاو', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From 91a8dcaf8a2c8ce9df245a95a266e267f2374c92 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:51 +0300 Subject: [PATCH 140/179] New translations stream.php (Vietnamese) --- .../visiosoft/profile-module/resources/lang/vi/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/stream.php b/addons/default/visiosoft/profile-module/resources/lang/vi/stream.php index 1df8b2c68..5cfa278a3 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Địa chỉ', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 0e38c51b5afd7d25690659ef0e34ae808729fdb9 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:53 +0300 Subject: [PATCH 141/179] New translations permission.php (Ukrainian) --- .../resources/lang/uk/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/permission.php b/addons/default/visiosoft/profile-module/resources/lang/uk/permission.php index 3602d4488..6f7738d00 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Чи можна видалити адресу?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From fdbcaac29e2a2aa9958b5cbd1526f7ac2603fe85 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:55 +0300 Subject: [PATCH 142/179] New translations button.php (Turkish) --- .../visiosoft/base-theme/resources/lang/tr/button.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/addons/default/visiosoft/base-theme/resources/lang/tr/button.php b/addons/default/visiosoft/base-theme/resources/lang/tr/button.php index 309dbb297..15586dc4e 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/tr/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/tr/button.php @@ -2,13 +2,14 @@ return [ 'post_ad' => [ - 'name' => 'Ücretsiz İlan Ver', + 'name' => 'İlan Ver', ], 'login' => 'Giriş Yap', 'register' => 'Üye Ol', - 'continue' => 'Devam', + 'continue' => 'Devam Et', 'reset_password' => 'Şifremi Güncelle', 'email' => 'E-posta', 'phone' => 'Telefon', 'show_all' => 'Hepsini Göster ↓', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From 50ad0a4718869a3460117ef887a579072fefada3 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:57 +0300 Subject: [PATCH 143/179] New translations button.php (Turkish) --- .../visiosoft/profile-module/resources/lang/tr/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/button.php b/addons/default/visiosoft/profile-module/resources/lang/tr/button.php index ce96f559a..4339cf225 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Kişisel', 'corporate' => 'Kurumsal', 'export' => 'Dışa aktar', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 370a81dd434113796ebf5f1a05faa8a702a4637b Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:53:59 +0300 Subject: [PATCH 144/179] New translations field.php (Turkish) --- .../visiosoft/profile-module/resources/lang/tr/field.php | 7 +++++++ 1 file changed, 7 insertions(+) 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 5cbda3ca5..a64888bf3 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/field.php @@ -121,6 +121,9 @@ return [ 'user' => [ 'name' => 'Kullanıcı' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -475,4 +478,8 @@ return [ 'personal' => [ 'name' => 'Bireysel' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 1803518d1af5fe18ae7be9af9de54afdade14dd4 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:01 +0300 Subject: [PATCH 145/179] New translations permission.php (Turkish) --- .../resources/lang/tr/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/permission.php b/addons/default/visiosoft/profile-module/resources/lang/tr/permission.php index 5b6145c8d..bcaf6f9c4 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Adresi silebilir misiniz?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 4e55af2ead5f0356471c73fbe62caa3929ef2b6f Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:03 +0300 Subject: [PATCH 146/179] New translations section.php (Turkish) --- .../visiosoft/profile-module/resources/lang/tr/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/section.php b/addons/default/visiosoft/profile-module/resources/lang/tr/section.php index 5012f89f3..23f76236f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Genel Ayarlar', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From c21ec5ee1bb5ced18af1dfabae767ee84a98713a Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:05 +0300 Subject: [PATCH 147/179] New translations stream.php (Turkish) --- .../visiosoft/profile-module/resources/lang/tr/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/stream.php b/addons/default/visiosoft/profile-module/resources/lang/tr/stream.php index 27b04fd27..e596efeb6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Adres', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From dabd93d98c36f9a9a469cf89b15bb94dc1fcb4c3 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:07 +0300 Subject: [PATCH 148/179] New translations button.php (Ukrainian) --- addons/default/visiosoft/base-theme/resources/lang/uk/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/uk/button.php b/addons/default/visiosoft/base-theme/resources/lang/uk/button.php index 718b9965d..0d7b08f78 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/uk/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/uk/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'Електронна пошта', 'phone' => 'Телефон', 'show_all' => 'Покажи все', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From 5c5d2e2e0b6e51a1db6b5c478d04be4ed9eb5ccc Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:09 +0300 Subject: [PATCH 149/179] New translations button.php (Ukrainian) --- .../visiosoft/profile-module/resources/lang/uk/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/button.php b/addons/default/visiosoft/profile-module/resources/lang/uk/button.php index 2a3ca2293..77347a995 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Особисті', 'corporate' => 'Корпоративний', 'export' => 'Експорт', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From a3e2ed91d1ecf21b6a1a953f21b50c39bf3ba016 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:11 +0300 Subject: [PATCH 150/179] New translations field.php (Ukrainian) --- .../profile-module/resources/lang/uk/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 941ac6d4f..061c4b931 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'День народження' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Освіта' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Користувач' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Пароль', ], + 'old_password' => [ + 'name' => 'Старий пароль', + ], 'new_password' => [ 'name' => 'Новий пароль', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Особистий' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From afc9bf04401b439f8a5d2bcbd83f87840de73382 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:13 +0300 Subject: [PATCH 151/179] New translations section.php (Ukrainian) --- .../visiosoft/profile-module/resources/lang/uk/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/section.php b/addons/default/visiosoft/profile-module/resources/lang/uk/section.php index 8b9318dec..a1df7c5ba 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Загальні налаштування', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From 21cf9d34eef0819f61bd7eda9ce88cdf66997d63 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:15 +0300 Subject: [PATCH 152/179] New translations section.php (Vietnamese) --- .../visiosoft/profile-module/resources/lang/vi/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/section.php b/addons/default/visiosoft/profile-module/resources/lang/vi/section.php index bef940b51..ab2a4f250 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'Cài đặt chung', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From 80a313f5a00873d995e28f8522e40190727cd31c Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:17 +0300 Subject: [PATCH 153/179] New translations stream.php (Ukrainian) --- .../visiosoft/profile-module/resources/lang/uk/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/stream.php b/addons/default/visiosoft/profile-module/resources/lang/uk/stream.php index e1a800e15..916d4e4fc 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'Адреса', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 7ccd0e2dd0cd7f453754754402f1685a2535cd29 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:18 +0300 Subject: [PATCH 154/179] New translations button.php (Urdu (Pakistan)) --- .../visiosoft/profile-module/resources/lang/ur/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/button.php b/addons/default/visiosoft/profile-module/resources/lang/ur/button.php index af9e418b5..afe2a0ee1 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'ذاتی', 'corporate' => 'کارپوریٹ', 'export' => 'برآمد کریں', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From d23090cb2ebc9ed38e37fc07a4a787eb6900eae6 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:20 +0300 Subject: [PATCH 155/179] New translations field.php (Urdu (Pakistan)) --- .../profile-module/resources/lang/ur/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 7aa891a81..23deb3e75 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'سالگرہ' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'تعلیم' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'صارف' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'پاس ورڈ', ], + 'old_password' => [ + 'name' => 'پرانا پاسورڈ', + ], 'new_password' => [ 'name' => 'نیا پاس ورڈ', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'ذاتی' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 4de77f552ec07b31c07c73019dc8e40ac6ca88a8 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:22 +0300 Subject: [PATCH 156/179] New translations permission.php (Urdu (Pakistan)) --- .../resources/lang/ur/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php index 9071aab84..5701d4e64 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'ایڈریس کو حذف کرسکتے ہیں؟', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From 184c1329fb148647c02f0e060853cfc9f600cca4 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:24 +0300 Subject: [PATCH 157/179] New translations section.php (Urdu (Pakistan)) --- .../visiosoft/profile-module/resources/lang/ur/section.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/section.php b/addons/default/visiosoft/profile-module/resources/lang/ur/section.php index 0b095e950..c9c78bde7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/section.php @@ -9,4 +9,10 @@ return [ ], 'general_setting' => 'عام ترتیبات', 'recaptcha' => 'reCAPTCHA', + 'education' => [ + 'title' => 'Education', + ], + 'education_part' => [ + 'title' => 'Education part', + ], ]; From f1ea0289294720653a09dd4cd0dff9cd66fee4d5 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:26 +0300 Subject: [PATCH 158/179] New translations stream.php (Urdu (Pakistan)) --- .../visiosoft/profile-module/resources/lang/ur/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php index d95d65b5a..f8e81321b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'پتہ', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From 7436a43a4ba5dd614212e3671915ffd98eaf5334 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:28 +0300 Subject: [PATCH 159/179] New translations button.php (Vietnamese) --- addons/default/visiosoft/base-theme/resources/lang/vi/button.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/base-theme/resources/lang/vi/button.php b/addons/default/visiosoft/base-theme/resources/lang/vi/button.php index bf07ad18c..d461c2a22 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/vi/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/vi/button.php @@ -11,4 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Điện thoại', 'show_all' => 'Hiển thị tất cả', + 'hide_all' => 'Hide All', ]; \ No newline at end of file From 0627cba33c8a90e90bac65473c4920a5619d643f Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:30 +0300 Subject: [PATCH 160/179] New translations button.php (Vietnamese) --- .../visiosoft/profile-module/resources/lang/vi/button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/button.php b/addons/default/visiosoft/profile-module/resources/lang/vi/button.php index ce6aacf5c..8562a4653 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/button.php @@ -15,4 +15,6 @@ return [ 'personal' => 'Cá nhân', 'corporate' => 'Công ty', 'export' => 'Xuất khẩu', + 'new_education' => 'New Education', + 'new_education_part' => 'New Education part', ]; From 87ac7ad8c5e4990c7bfd67800e80ed95a6293432 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:32 +0300 Subject: [PATCH 161/179] New translations field.php (Vietnamese) --- .../profile-module/resources/lang/vi/field.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 18e050858..abfa8dbbb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/field.php @@ -58,6 +58,12 @@ return [ 'birthday' => [ 'name' => 'Sinh nhật' ], + 'facebook_address' => [ + 'name' => 'Facebook Address' + ], + 'google_address' => [ + 'name' => 'Google Address' + ], 'education' => [ 'name' => 'Giáo dục' ], @@ -115,6 +121,9 @@ return [ 'user' => [ 'name' => 'Người dùng' ], + 'name' => [ + 'name' => 'Name' + ], /*Menu Button*/ 'profile' => [ @@ -375,6 +384,9 @@ return [ 'password' => [ 'name' => 'Mật khẩu', ], + 'old_password' => [ + 'name' => 'Mật khẩu cũ', + ], 'new_password' => [ 'name' => 'Mật khẩu mới', ], @@ -467,4 +479,8 @@ return [ 'personal' => [ 'name' => 'Cá nhân' ], + + 'education_part' => [ + 'name' => 'State of Education' + ], ]; From 810b99ae959e1b72976720b857552b43d9f49c9f Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:34 +0300 Subject: [PATCH 162/179] New translations permission.php (Vietnamese) --- .../resources/lang/vi/permission.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/permission.php b/addons/default/visiosoft/profile-module/resources/lang/vi/permission.php index 2f01bf854..40599495d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/permission.php @@ -17,4 +17,20 @@ return [ 'delete' => 'Có thể xóa địa chỉ?', ], ], + 'education' => [ + 'name' => 'Education', + 'option' => [ + 'read' => 'Can read education?', + 'write' => 'Can create/edit education?', + 'delete' => 'Can delete education?', + ], + ], + 'education_part' => [ + 'name' => 'Education part', + 'option' => [ + 'read' => 'Can read education part?', + 'write' => 'Can create/edit education part?', + 'delete' => 'Can delete education part?', + ], + ], ]; From ca03929e91e0c7b948871ffdfd452f097dcc2234 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Wed, 16 Dec 2020 12:54:36 +0300 Subject: [PATCH 163/179] New translations stream.php (Hindi) --- .../visiosoft/profile-module/resources/lang/hi/stream.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/stream.php b/addons/default/visiosoft/profile-module/resources/lang/hi/stream.php index c084fdafc..d1f309854 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/stream.php @@ -7,4 +7,10 @@ return [ 'adress' => [ 'name' => 'पता', ], + 'education' => [ + 'name' => 'Education', + ], + 'education_part' => [ + 'name' => 'Education part', + ], ]; From c9a899abfd1e2eec86caba632ddfb38778986850 Mon Sep 17 00:00:00 2001 From: Diatrex Date: Thu, 17 Dec 2020 14:21:24 +0300 Subject: [PATCH 164/179] make datetime format dynamic --- .../profile-module/resources/views/profile/detail.twig | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig b/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig index 0d76779e4..9fac30f1e 100644 --- a/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig +++ b/addons/default/visiosoft/profile-module/resources/views/profile/detail.twig @@ -56,7 +56,9 @@

    {{ user.name }}

    - +
    @@ -146,7 +148,7 @@ - {{ profileForm.fields.birthday.configSet('date_format','Y-m-d').setPlaceholder(now|date('Y-m-d')).input|raw }} + {{ profileForm.fields.birthday.configSet('date_format','Y-m-d').setPlaceholder(now|date(config_get('streams::datetime.date_format'))).input|raw }}
    @@ -221,7 +223,6 @@
    {{ profileForm.close()|raw }} -
    @@ -130,7 +130,7 @@ - {{ profileForm.fields.office_phone.input|raw }} + {{ profileForm.fields.office_phone.setAttributes({'maxlength': '14'}).input|raw }}
    @@ -138,7 +138,7 @@ - {{ profileForm.fields.land_phone.input|raw }} + {{ profileForm.fields.land_phone.setAttributes({'maxlength': '14'}).input|raw }}
    @@ -146,7 +146,7 @@ - {{ profileForm.fields.birthday.configSet('date_format','Y-m-d').setPlaceholder(now|date('Y-m-d')).input|raw }} + {{ profileForm.fields.birthday.configSet('date_format','d.m.Y').setPlaceholder(now|date('d.m.Y')).input|raw }}
    From db07078cac1703384759ef92b1013e784b7c5bba Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Fri, 18 Dec 2020 16:00:49 +0300 Subject: [PATCH 169/179] #2737 oc.com table view bug fixed --- .../visiosoft/advs-module/resources/views/list/table.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/default/visiosoft/advs-module/resources/views/list/table.twig b/addons/default/visiosoft/advs-module/resources/views/list/table.twig index 2bed1d953..2384183b9 100644 --- a/addons/default/visiosoft/advs-module/resources/views/list/table.twig +++ b/addons/default/visiosoft/advs-module/resources/views/list/table.twig @@ -20,7 +20,7 @@ - {{ addBlock('ad-list/partials/table',{'featured_advs':featured_advs})|raw }} + {{ addBlock('ad-list/partials/table',{'featured_advs':featured_advs,'seenList':seenList})|raw }} {% for adv in advs %} From 390529e5fa290782cdccbe7379e02d7dc6c64a56 Mon Sep 17 00:00:00 2001 From: vedatakdogan Date: Fri, 18 Dec 2020 19:13:37 +0300 Subject: [PATCH 170/179] count problem fixed --- addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php index ded2da4d6..e24fcf009 100644 --- a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php +++ b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php @@ -421,6 +421,7 @@ class AdvRepository extends EntryRepository implements AdvRepositoryInterface return DB::table('advs_advs') ->whereDate('finish_at', '>=', date("Y-m-d H:i:s")) ->where('status', 'approved') + ->whereNull('deleted_at') ->where('slug', '!=', '') ->where('cat' . $level, $catID) ->count(); From f7f4132c21e607bee8edfad384aa76fff4ef9538 Mon Sep 17 00:00:00 2001 From: muammertop Date: Sun, 20 Dec 2020 11:48:42 +0300 Subject: [PATCH 171/179] #2915 E-maden works --- addons/default/visiosoft/advs-module/resources/css/list.css | 4 ++++ .../visiosoft/advs-module/resources/views/list/gallery.twig | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/addons/default/visiosoft/advs-module/resources/css/list.css b/addons/default/visiosoft/advs-module/resources/css/list.css index 70dc52e09..e793b0ebc 100644 --- a/addons/default/visiosoft/advs-module/resources/css/list.css +++ b/addons/default/visiosoft/advs-module/resources/css/list.css @@ -220,4 +220,8 @@ a.sort-by-open-dropdown:hover { .gallery-tn { object-fit: cover; +} + +#listFilterForm .card-header { + padding: 5px 0; } \ No newline at end of file diff --git a/addons/default/visiosoft/advs-module/resources/views/list/gallery.twig b/addons/default/visiosoft/advs-module/resources/views/list/gallery.twig index 3ec082fff..86e0076ac 100644 --- a/addons/default/visiosoft/advs-module/resources/views/list/gallery.twig +++ b/addons/default/visiosoft/advs-module/resources/views/list/gallery.twig @@ -3,9 +3,9 @@ {{ addBlock('ad-list/partials/gallery',{'featured_advs':featured_advs})|raw }} {% for adv in advs %}
    -
    +
    - + -
    +
    {% if setting_value('visiosoft.theme.base::price_fields') %}
    {{ adv.price != '0' @@ -24,23 +24,23 @@ {% endif %} {% if setting_value('visiosoft.module.location::home_page_location') %}
    - + {{ adv.city_name }}, {{ adv.country_name }} - +
    {% endif %} {% if setting_value('visiosoft.theme.base::date_fields') %}
    - + {{ adv.created_at|date('d/m/Y') }} - +
    {% endif %}
    From 5a9d76add39e719c07673caa8dafb298ef546109 Mon Sep 17 00:00:00 2001 From: Muammer Top Date: Mon, 21 Dec 2020 11:03:03 +0300 Subject: [PATCH 173/179] #2692 dropzone area unsupported file messages --- .../visiosoft/media-field_type/resources/js/dropzone.min.js | 2 +- .../media-field_type/resources/lang/en/validation.php | 1 + .../media-field_type/resources/lang/tr/validation.php | 1 + .../visiosoft/media-field_type/resources/views/input.twig | 4 ++++ 4 files changed, 7 insertions(+), 1 deletion(-) diff --git a/addons/default/visiosoft/media-field_type/resources/js/dropzone.min.js b/addons/default/visiosoft/media-field_type/resources/js/dropzone.min.js index 1a2594b4b..02d041a31 100644 --- a/addons/default/visiosoft/media-field_type/resources/js/dropzone.min.js +++ b/addons/default/visiosoft/media-field_type/resources/js/dropzone.min.js @@ -1,2 +1,2 @@ -"use strict";function _possibleConstructorReturn(a,b){if(!a)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!b||"object"!=typeof b&&"function"!=typeof b?a:b}function _inherits(a,b){if("function"!=typeof b&&null!==b)throw new TypeError("Super expression must either be null or a function, not "+typeof b);a.prototype=Object.create(b&&b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),b&&(Object.setPrototypeOf?Object.setPrototypeOf(a,b):a.__proto__=b)}function _classCallCheck(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}function __guard__(a,b){return void 0!==a&&null!==a?b(a):void 0}function __guardMethod__(a,b,c){return void 0!==a&&null!==a&&"function"==typeof a[b]?c(a,b):void 0}var _createClass=function(){function a(a,b){for(var c=0;c1?c-1:0),e=1;e=f.length)break;h=f[g++];h.apply(this,d)}}return this}},{key:"off",value:function(a,b){if(!this._callbacks||0===arguments.length)return this._callbacks={},this;var c=this._callbacks[a];if(!c)return this;if(1===arguments.length)return delete this._callbacks[a],this;for(var d=0;d=c.length)break;e=c[d++];var f=e;if(/(^| )dz-message($| )/.test(f.className)){a=f,f.className="dz-message";break}}a||(a=b.createElement('
    '),this.element.appendChild(a));var g=a.getElementsByTagName("span")[0];return g&&(null!=g.textContent?g.textContent=this.options.dictFallbackMessage:null!=g.innerText&&(g.innerText=this.options.dictFallbackMessage)),this.element.appendChild(this.getFallbackForm())},resize:function(a,b,c,d){var e={srcX:0,srcY:0,srcWidth:a.width,srcHeight:a.height},f=a.width/a.height;null==b&&null==c?(b=e.srcWidth,c=e.srcHeight):null==b?b=c*f:null==c&&(c=b/f),b=Math.min(b,e.srcWidth),c=Math.min(c,e.srcHeight);var g=b/c;if(e.srcWidth>b||e.srcHeight>c)if("crop"===d)f>g?(e.srcHeight=a.height,e.srcWidth=e.srcHeight*g):(e.srcWidth=a.width,e.srcHeight=e.srcWidth/g);else{if("contain"!==d)throw new Error("Unknown resizeMethod '"+d+"'");f>g?c=b/f:b=c*f}return e.srcX=(a.width-e.srcWidth)/2,e.srcY=(a.height-e.srcHeight)/2,e.trgWidth=b,e.trgHeight=c,e},transformFile:function(a,b){return(this.options.resizeWidth||this.options.resizeHeight)&&a.type.match(/image.*/)?this.resizeImage(a,this.options.resizeWidth,this.options.resizeHeight,this.options.resizeMethod,b):b(a)},previewTemplate:'
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n \n Check\n \n \n \n \n \n
    \n
    \n \n Error\n \n \n \n \n \n \n \n
    \n
    ',drop:function(a){return this.element.classList.remove("dz-drag-hover")},dragstart:function(a){},dragend:function(a){return this.element.classList.remove("dz-drag-hover")},dragenter:function(a){return this.element.classList.add("dz-drag-hover")},dragover:function(a){return this.element.classList.add("dz-drag-hover")},dragleave:function(a){return this.element.classList.remove("dz-drag-hover")},paste:function(a){},reset:function(){return this.element.classList.remove("dz-started")},addedfile:function(a){var c=this;if(this.element===this.previewsContainer&&this.element.classList.add("dz-started"),this.previewsContainer){a.previewElement=b.createElement(this.options.previewTemplate.trim()),a.previewTemplate=a.previewElement,this.previewsContainer.appendChild(a.previewElement);for(var d=a.previewElement.querySelectorAll("[data-dz-name]"),e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];var g=f;g.textContent=a.name}for(var h=a.previewElement.querySelectorAll("[data-dz-size]"),i=0,h=h;!(i>=h.length);)g=h[i++],g.innerHTML=this.filesize(a.size);this.options.addRemoveLinks&&(a._removeLink=b.createElement(''+this.options.dictRemoveFile+""),a.previewElement.appendChild(a._removeLink));for(var j=function(d){return d.preventDefault(),d.stopPropagation(),a.status===b.UPLOADING?b.confirm(c.options.dictCancelUploadConfirmation,function(){return c.removeFile(a)}):c.options.dictRemoveFileConfirmation?b.confirm(c.options.dictRemoveFileConfirmation,function(){return c.removeFile(a)}):c.removeFile(a)},k=a.previewElement.querySelectorAll("[data-dz-remove]"),l=0,k=k;;){var m;if(l>=k.length)break;m=k[l++];m.addEventListener("click",j)}}},removedfile:function(a){return null!=a.previewElement&&null!=a.previewElement.parentNode&&a.previewElement.parentNode.removeChild(a.previewElement),this._updateMaxFilesReachedClass()},thumbnail:function(a,b){if(a.previewElement){a.previewElement.classList.remove("dz-file-preview");for(var c=a.previewElement.querySelectorAll("[data-dz-thumbnail]"),d=0,c=c;;){var e;if(d>=c.length)break;e=c[d++];var f=e;f.alt=a.name,f.src=b}return setTimeout(function(){return a.previewElement.classList.add("dz-image-preview")},1)}},error:function(a,b){if(a.previewElement){a.previewElement.classList.add("dz-error"),"String"!=typeof b&&b.error&&(b=b.error);for(var c=a.previewElement.querySelectorAll("[data-dz-errormessage]"),d=0,c=c;;){var e;if(d>=c.length)break;e=c[d++];e.textContent=b}}},errormultiple:function(){},processing:function(a){if(a.previewElement&&(a.previewElement.classList.add("dz-processing"),a._removeLink))return a._removeLink.innerHTML=this.options.dictCancelUpload},processingmultiple:function(){},uploadprogress:function(a,b,c){if(a.previewElement)for(var d=a.previewElement.querySelectorAll("[data-dz-uploadprogress]"),e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];var g=f;"PROGRESS"===g.nodeName?g.value=b:g.style.width=b+"%"}},totaluploadprogress:function(){},sending:function(){},sendingmultiple:function(){},success:function(a){if(a.previewElement)return a.previewElement.classList.add("dz-success")},successmultiple:function(){},canceled:function(a){return this.emit("error",a,this.options.dictUploadCanceled)},canceledmultiple:function(){},complete:function(a){if(a._removeLink&&(a._removeLink.innerHTML=this.options.dictRemoveFile),a.previewElement)return a.previewElement.classList.add("dz-complete")},completemultiple:function(){},maxfilesexceeded:function(){},maxfilesreached:function(){},queuecomplete:function(){},addedfiles:function(){}},this.prototype._thumbnailQueue=[],this.prototype._processingThumbnail=!1}},{key:"extend",value:function(a){for(var b=arguments.length,c=Array(b>1?b-1:0),d=1;d=e.length)break;g=e[f++];var h=g;for(var i in h){var j=h[i];a[i]=j}}return a}}]),_createClass(b,[{key:"getAcceptedFiles",value:function(){return this.files.filter(function(a){return a.accepted}).map(function(a){return a})}},{key:"getRejectedFiles",value:function(){return this.files.filter(function(a){return!a.accepted}).map(function(a){return a})}},{key:"getFilesWithStatus",value:function(a){return this.files.filter(function(b){return b.status===a}).map(function(a){return a})}},{key:"getQueuedFiles",value:function(){return this.getFilesWithStatus(b.QUEUED)}},{key:"getUploadingFiles",value:function(){return this.getFilesWithStatus(b.UPLOADING)}},{key:"getAddedFiles",value:function(){return this.getFilesWithStatus(b.ADDED)}},{key:"getActiveFiles",value:function(){return this.files.filter(function(a){return a.status===b.UPLOADING||a.status===b.QUEUED}).map(function(a){return a})}},{key:"init",value:function(){var a=this;if("form"===this.element.tagName&&this.element.setAttribute("enctype","multipart/form-data"),this.element.classList.contains("dropzone")&&!this.element.querySelector(".dz-message")&&this.element.appendChild(b.createElement('
    '+this.options.dictDefaultMessage+"
    ")),this.clickableElements.length){!function c(){return a.hiddenFileInput&&a.hiddenFileInput.parentNode.removeChild(a.hiddenFileInput),a.hiddenFileInput=document.createElement("input"),a.hiddenFileInput.setAttribute("type","file"),(null===a.options.maxFiles||a.options.maxFiles>1)&&a.hiddenFileInput.setAttribute("multiple","multiple"),a.hiddenFileInput.className="dz-hidden-input",null!==a.options.acceptedFiles&&a.hiddenFileInput.setAttribute("accept",a.options.acceptedFiles),null!==a.options.capture&&a.hiddenFileInput.setAttribute("capture",a.options.capture),a.hiddenFileInput.style.visibility="hidden",a.hiddenFileInput.style.position="absolute",a.hiddenFileInput.style.top="0",a.hiddenFileInput.style.left="0",a.hiddenFileInput.style.height="0",a.hiddenFileInput.style.width="0",b.getElement(a.options.hiddenInputContainer,"hiddenInputContainer").appendChild(a.hiddenFileInput),a.hiddenFileInput.addEventListener("change",function(){var b=a.hiddenFileInput.files;if(b.length)for(var d=b,e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];var g=f;a.addFile(g)}return a.emit("addedfiles",b),c()})}()}this.URL=null!==window.URL?window.URL:window.webkitURL;for(var c=this.events,d=0,c=c;;){var e;if(d>=c.length)break;e=c[d++];var f=e;this.on(f,this.options[f])}this.on("uploadprogress",function(){return a.updateTotalUploadProgress()}),this.on("removedfile",function(){return a.updateTotalUploadProgress()}),this.on("canceled",function(b){return a.emit("complete",b)}),this.on("complete",function(b){if(0===a.getAddedFiles().length&&0===a.getUploadingFiles().length&&0===a.getQueuedFiles().length)return setTimeout(function(){return a.emit("queuecomplete")},0)});var g=function(a){return a.stopPropagation(),a.preventDefault?a.preventDefault():a.returnValue=!1};return this.listeners=[{element:this.element,events:{dragstart:function(b){return a.emit("dragstart",b)},dragenter:function(b){return g(b),a.emit("dragenter",b)},dragover:function(b){var c=void 0;try{c=b.dataTransfer.effectAllowed}catch(a){}return b.dataTransfer.dropEffect="move"===c||"linkMove"===c?"move":"copy",g(b),a.emit("dragover",b)},dragleave:function(b){return a.emit("dragleave",b)},drop:function(b){return g(b),a.drop(b)},dragend:function(b){return a.emit("dragend",b)}}}],this.clickableElements.forEach(function(c){return a.listeners.push({element:c,events:{click:function(d){return(c!==a.element||d.target===a.element||b.elementInside(d.target,a.element.querySelector(".dz-message")))&&a.hiddenFileInput.click(),!0}}})}),this.enable(),this.options.init.call(this)}},{key:"destroy",value:function(){return this.disable(),this.removeAllFiles(!0),(null!=this.hiddenFileInput?this.hiddenFileInput.parentNode:void 0)&&(this.hiddenFileInput.parentNode.removeChild(this.hiddenFileInput),this.hiddenFileInput=null),delete this.element.dropzone,b.instances.splice(b.instances.indexOf(this),1)}},{key:"updateTotalUploadProgress",value:function(){var a=void 0,b=0,c=0;if(this.getActiveFiles().length){for(var d=this.getActiveFiles(),e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];var g=f;b+=g.upload.bytesSent,c+=g.upload.total}a=100*b/c}else a=100;return this.emit("totaluploadprogress",a,c,b)}},{key:"_getParamName",value:function(a){return"function"==typeof this.options.paramName?this.options.paramName(a):this.options.paramName+(this.options.uploadMultiple?"["+a+"]":"")}},{key:"_renameFile",value:function(a){return"function"!=typeof this.options.renameFile?a.name:this.options.renameFile(a)}},{key:"getFallbackForm",value:function(){var a=void 0,c=void 0;if(a=this.getExistingFallback())return a;var d='
    ';this.options.dictFallbackText&&(d+="

    "+this.options.dictFallbackText+"

    "),d+='
    ';var e=b.createElement(d);return"FORM"!==this.element.tagName?(c=b.createElement('
    '),c.appendChild(e)):(this.element.setAttribute("enctype","multipart/form-data"),this.element.setAttribute("method",this.options.method)),null!=c?c:e}},{key:"getExistingFallback",value:function(){for(var a=["div","form"],b=0;b=b.length)break;d=b[c++];var e=d;if(/(^| )fallback($| )/.test(e.className))return e}}(this.element.getElementsByTagName(d)))return c}}},{key:"setupEventListeners",value:function(){return this.listeners.map(function(a){return function(){var b=[];for(var c in a.events){var d=a.events[c];b.push(a.element.addEventListener(c,d,!1))}return b}()})}},{key:"removeEventListeners",value:function(){return this.listeners.map(function(a){return function(){var b=[];for(var c in a.events){var d=a.events[c];b.push(a.element.removeEventListener(c,d,!1))}return b}()})}},{key:"disable",value:function(){var a=this;return this.clickableElements.forEach(function(a){return a.classList.remove("dz-clickable")}),this.removeEventListeners(),this.disabled=!0,this.files.map(function(b){return a.cancelUpload(b)})}},{key:"enable",value:function(){return delete this.disabled,this.clickableElements.forEach(function(a){return a.classList.add("dz-clickable")}),this.setupEventListeners()}},{key:"filesize",value:function(a){var b=0,c="b";if(a>0){for(var d=["tb","gb","mb","kb","b"],e=0;e=Math.pow(this.options.filesizeBase,4-e)/10){b=a/Math.pow(this.options.filesizeBase,4-e),c=f;break}}b=Math.round(10*b)/10}return""+b+" "+this.options.dictFileSizeUnits[c]}},{key:"_updateMaxFilesReachedClass",value:function(){return null!=this.options.maxFiles&&this.getAcceptedFiles().length>=this.options.maxFiles?(this.getAcceptedFiles().length===this.options.maxFiles&&this.emit("maxfilesreached",this.files),this.element.classList.add("dz-max-files-reached")):this.element.classList.remove("dz-max-files-reached")}},{key:"drop",value:function(a){if(a.dataTransfer){this.emit("drop",a);for(var b=[],c=0;c=b.length)break;d=b[c++];var e=d;this.addFile(e)}}},{key:"_addFilesFromItems",value:function(a){var b=this;return function(){for(var c=[],d=a,e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];var g,h=f;null!=h.webkitGetAsEntry&&(g=h.webkitGetAsEntry())?g.isFile?c.push(b.addFile(h.getAsFile())):g.isDirectory?c.push(b._addFilesFromDirectory(g,g.name)):c.push(void 0):null!=h.getAsFile&&(null==h.kind||"file"===h.kind)?c.push(b.addFile(h.getAsFile())):c.push(void 0)}return c}()}},{key:"_addFilesFromDirectory",value:function(a,b){var c=this,d=a.createReader(),e=function(a){return __guardMethod__(console,"log",function(b){return b.log(a)})};return function a(){return d.readEntries(function(d){if(d.length>0){for(var e=d,f=0,e=e;;){var g;if(f>=e.length)break;g=e[f++];var h=g;h.isFile?h.file(function(a){if(!c.options.ignoreHiddenFiles||"."!==a.name.substring(0,1))return a.fullPath=b+"/"+a.name,c.addFile(a)}):h.isDirectory&&c._addFilesFromDirectory(h,b+"/"+h.name)}a()}return null},e)}()}},{key:"accept",value:function(a,c){return this.options.maxFilesize&&a.size>1024*this.options.maxFilesize*1024?c(this.options.dictFileTooBig.replace("{{filesize}}",Math.round(a.size/1024/10.24)/100).replace("{{maxFilesize}}",this.options.maxFilesize)):b.isValidFile(a,this.options.acceptedFiles)?null!=this.options.maxFiles&&this.getAcceptedFiles().length>=this.options.maxFiles?(c(this.options.dictMaxFilesExceeded.replace("{{maxFiles}}",this.options.maxFiles)),this.emit("maxfilesexceeded",a)):this.options.accept.call(this,a,c):c(this.options.dictInvalidFileType)}},{key:"addFile",value:function(a){var c=this;return a.upload={uuid:b.uuidv4(),progress:0,total:a.size,bytesSent:0,filename:this._renameFile(a),chunked:this.options.chunking&&(this.options.forceChunking||a.size>this.options.chunkSize),totalChunkCount:Math.ceil(a.size/this.options.chunkSize)},this.files.push(a),a.status=b.ADDED,this.emit("addedfile",a),this._enqueueThumbnail(a),this.accept(a,function(b){return b?(a.accepted=!1,c._errorProcessing([a],b)):(a.accepted=!0,c.options.autoQueue&&c.enqueueFile(a)),c._updateMaxFilesReachedClass()})}},{key:"enqueueFiles",value:function(a){for(var b=a,c=0,b=b;;){var d;if(c>=b.length)break;d=b[c++];var e=d;this.enqueueFile(e)}return null}},{key:"enqueueFile",value:function(a){var c=this;if(a.status!==b.ADDED||!0!==a.accepted)throw new Error("This file can't be queued because it has already been processed or was rejected.");if(a.status=b.QUEUED,this.options.autoProcessQueue)return setTimeout(function(){return c.processQueue()},0)}},{key:"_enqueueThumbnail",value:function(a){var b=this;if(this.options.createImageThumbnails&&a.type.match(/image.*/)&&a.size<=1024*this.options.maxThumbnailFilesize*1024)return this._thumbnailQueue.push(a),setTimeout(function(){return b._processThumbnailQueue()},0)}},{key:"_processThumbnailQueue",value:function(){var a=this;if(!this._processingThumbnail&&0!==this._thumbnailQueue.length){this._processingThumbnail=!0;var b=this._thumbnailQueue.shift();return this.createThumbnail(b,this.options.thumbnailWidth,this.options.thumbnailHeight,this.options.thumbnailMethod,!0,function(c){return a.emit("thumbnail",b,c),a._processingThumbnail=!1,a._processThumbnailQueue()})}}},{key:"removeFile",value:function(a){if(a.status===b.UPLOADING&&this.cancelUpload(a),this.files=without(this.files,a),this.emit("removedfile",a),0===this.files.length)return this.emit("reset")}},{key:"removeAllFiles",value:function(a){null==a&&(a=!1);for(var c=this.files.slice(),d=0,c=c;;){var e;if(d>=c.length)break;e=c[d++];var f=e;(f.status!==b.UPLOADING||a)&&this.removeFile(f)}return null}},{key:"resizeImage",value:function(a,c,d,e,f){var g=this;return this.createThumbnail(a,c,d,e,!0,function(c,d){if(null==d)return f(a);var e=g.options.resizeMimeType;null==e&&(e=a.type);var h=d.toDataURL(e,g.options.resizeQuality);return"image/jpeg"!==e&&"image/jpg"!==e||(h=ExifRestore.restore(a.dataURL,h)),f(b.dataURItoBlob(h))})}},{key:"createThumbnail",value:function(a,b,c,d,e,f){var g=this,h=new FileReader;return h.onload=function(){return a.dataURL=h.result,"image/svg+xml"===a.type?void(null!=f&&f(h.result)):g.createThumbnailFromUrl(a,b,c,d,e,f)},h.readAsDataURL(a)}},{key:"createThumbnailFromUrl",value:function(a,b,c,d,e,f,g){var h=this,i=document.createElement("img");return g&&(i.crossOrigin=g),i.onload=function(){var g=function(a){return a(1)};return"undefined"!=typeof EXIF&&null!==EXIF&&e&&(g=function(a){return EXIF.getData(i,function(){return a(EXIF.getTag(this,"Orientation"))})}),g(function(e){a.width=i.width,a.height=i.height;var g=h.options.resize.call(h,a,b,c,d),j=document.createElement("canvas"),k=j.getContext("2d");switch(j.width=g.trgWidth,j.height=g.trgHeight,e>4&&(j.width=g.trgHeight,j.height=g.trgWidth),e){case 2:k.translate(j.width,0),k.scale(-1,1);break;case 3:k.translate(j.width,j.height),k.rotate(Math.PI);break;case 4:k.translate(0,j.height),k.scale(1,-1);break;case 5:k.rotate(.5*Math.PI),k.scale(1,-1);break;case 6:k.rotate(.5*Math.PI),k.translate(0,-j.width);break;case 7:k.rotate(.5*Math.PI),k.translate(j.height,-j.width),k.scale(-1,1);break;case 8:k.rotate(-.5*Math.PI),k.translate(-j.height,0)}drawImageIOSFix(k,i,null!=g.srcX?g.srcX:0,null!=g.srcY?g.srcY:0,g.srcWidth,g.srcHeight,null!=g.trgX?g.trgX:0,null!=g.trgY?g.trgY:0,g.trgWidth,g.trgHeight);var l=j.toDataURL("image/png");if(null!=f)return f(l,j)})},null!=f&&(i.onerror=f),i.src=a.dataURL}},{key:"processQueue",value:function(){var a=this.options.parallelUploads,b=this.getUploadingFiles().length,c=b;if(!(b>=a)){var d=this.getQueuedFiles();if(d.length>0){if(this.options.uploadMultiple)return this.processFiles(d.slice(0,a-b));for(;c=c.length)break;e=c[d++];var f=e;f.processing=!0,f.status=b.UPLOADING,this.emit("processing",f)}return this.options.uploadMultiple&&this.emit("processingmultiple",a),this.uploadFiles(a)}},{key:"_getFilesWithXhr",value:function(a){return this.files.filter(function(b){return b.xhr===a}).map(function(a){return a})}},{key:"cancelUpload",value:function(a){if(a.status===b.UPLOADING){for(var c=this._getFilesWithXhr(a.xhr),d=c,e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];f.status=b.CANCELED}void 0!==a.xhr&&a.xhr.abort();for(var g=c,h=0,g=g;;){var i;if(h>=g.length)break;i=g[h++];var j=i;this.emit("canceled",j)}this.options.uploadMultiple&&this.emit("canceledmultiple",c)}else a.status!==b.ADDED&&a.status!==b.QUEUED||(a.status=b.CANCELED,this.emit("canceled",a),this.options.uploadMultiple&&this.emit("canceledmultiple",[a]));if(this.options.autoProcessQueue)return this.processQueue()}},{key:"resolveOption",value:function(a){if("function"==typeof a){for(var b=arguments.length,c=Array(b>1?b-1:0),d=1;d=e.upload.totalChunkCount)){g++;var h=d*c.options.chunkSize,i=Math.min(h+c.options.chunkSize,e.size),j={name:c._getParamName(0),data:f.webkitSlice?f.webkitSlice(h,i):f.slice(h,i),filename:e.upload.filename,chunkIndex:d};e.upload.chunks[d]={file:e,index:d,dataBlock:j,status:b.UPLOADING,progress:0,retries:0},c._uploadData(a,[j])}};if(e.upload.finishedChunkUpload=function(d){var f=!0;d.status=b.SUCCESS,d.dataBlock=null,d.xhr=null;for(var g=0;g=f.length)break;h=f[g++];h.xhr=e}a[0].upload.chunked&&(a[0].upload.chunks[c[0].chunkIndex].xhr=e);var i=this.resolveOption(this.options.method,a),j=this.resolveOption(this.options.url,a);e.open(i,j,!0),e.timeout=this.resolveOption(this.options.timeout,a),e.withCredentials=!!this.options.withCredentials,e.onload=function(b){d._finishedUploading(a,e,b)},e.onerror=function(){d._handleUploadError(a,e)},(null!=e.upload?e.upload:e).onprogress=function(b){return d._updateFilesUploadProgress(a,e,b)};var k={Accept:"application/json","Cache-Control":"no-cache","X-Requested-With":"XMLHttpRequest"};this.options.headers&&b.extend(k,this.options.headers);for(var l in k){var m=k[l];m&&e.setRequestHeader(l,m)}var n=new FormData;if(this.options.params){var o=this.options.params;"function"==typeof o&&(o=o.call(this,a,e,a[0].upload.chunked?this._getChunk(a[0],e):null));for(var p in o){var q=o[p];n.append(p,q)}}for(var r=a,s=0,r=r;;){var t;if(s>=r.length)break;t=r[s++];var u=t;this.emit("sending",u,e,n)}this.options.uploadMultiple&&this.emit("sendingmultiple",a,e,n),this._addFormElementData(n);for(var v=0;v1?c-1:0),e=1;e=f.length)break;h=f[g++];h.apply(this,d)}}return this}},{key:"off",value:function(a,b){if(!this._callbacks||0===arguments.length)return this._callbacks={},this;var c=this._callbacks[a];if(!c)return this;if(1===arguments.length)return delete this._callbacks[a],this;for(var d=0;d=c.length)break;e=c[d++];var f=e;if(/(^| )dz-message($| )/.test(f.className)){a=f,f.className="dz-message";break}}a||(a=b.createElement('
    '),this.element.appendChild(a));var g=a.getElementsByTagName("span")[0];return g&&(null!=g.textContent?g.textContent=this.options.dictFallbackMessage:null!=g.innerText&&(g.innerText=this.options.dictFallbackMessage)),this.element.appendChild(this.getFallbackForm())},resize:function(a,b,c,d){var e={srcX:0,srcY:0,srcWidth:a.width,srcHeight:a.height},f=a.width/a.height;null==b&&null==c?(b=e.srcWidth,c=e.srcHeight):null==b?b=c*f:null==c&&(c=b/f),b=Math.min(b,e.srcWidth),c=Math.min(c,e.srcHeight);var g=b/c;if(e.srcWidth>b||e.srcHeight>c)if("crop"===d)f>g?(e.srcHeight=a.height,e.srcWidth=e.srcHeight*g):(e.srcWidth=a.width,e.srcHeight=e.srcWidth/g);else{if("contain"!==d)throw new Error("Unknown resizeMethod '"+d+"'");f>g?c=b/f:b=c*f}return e.srcX=(a.width-e.srcWidth)/2,e.srcY=(a.height-e.srcHeight)/2,e.trgWidth=b,e.trgHeight=c,e},transformFile:function(a,b){return(this.options.resizeWidth||this.options.resizeHeight)&&a.type.match(/image.*/)?this.resizeImage(a,this.options.resizeWidth,this.options.resizeHeight,this.options.resizeMethod,b):b(a)},previewTemplate:'
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n \n Check\n \n \n \n \n \n
    \n
    \n \n Error\n \n \n \n \n \n \n \n
    \n
    ',drop:function(a){return this.element.classList.remove("dz-drag-hover")},dragstart:function(a){},dragend:function(a){return this.element.classList.remove("dz-drag-hover")},dragenter:function(a){return this.element.classList.add("dz-drag-hover")},dragover:function(a){return this.element.classList.add("dz-drag-hover")},dragleave:function(a){return this.element.classList.remove("dz-drag-hover")},paste:function(a){},reset:function(){return this.element.classList.remove("dz-started")},addedfile:function(a){var c=this;if(this.element===this.previewsContainer&&this.element.classList.add("dz-started"),this.previewsContainer){a.previewElement=b.createElement(this.options.previewTemplate.trim()),a.previewTemplate=a.previewElement,this.previewsContainer.appendChild(a.previewElement);for(var d=a.previewElement.querySelectorAll("[data-dz-name]"),e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];var g=f;g.textContent=a.name}for(var h=a.previewElement.querySelectorAll("[data-dz-size]"),i=0,h=h;!(i>=h.length);)g=h[i++],g.innerHTML=this.filesize(a.size);this.options.addRemoveLinks&&(a._removeLink=b.createElement(''+this.options.dictRemoveFile+""),a.previewElement.appendChild(a._removeLink));for(var j=function(d){return d.preventDefault(),d.stopPropagation(),a.status===b.UPLOADING?b.confirm(c.options.dictCancelUploadConfirmation,function(){return c.removeFile(a)}):c.options.dictRemoveFileConfirmation?b.confirm(c.options.dictRemoveFileConfirmation,function(){return c.removeFile(a)}):c.removeFile(a)},k=a.previewElement.querySelectorAll("[data-dz-remove]"),l=0,k=k;;){var m;if(l>=k.length)break;m=k[l++];m.addEventListener("click",j)}}},removedfile:function(a){return null!=a.previewElement&&null!=a.previewElement.parentNode&&a.previewElement.parentNode.removeChild(a.previewElement),this._updateMaxFilesReachedClass()},thumbnail:function(a,b){if(a.previewElement){a.previewElement.classList.remove("dz-file-preview");for(var c=a.previewElement.querySelectorAll("[data-dz-thumbnail]"),d=0,c=c;;){var e;if(d>=c.length)break;e=c[d++];var f=e;f.alt=a.name,f.src=b}return setTimeout(function(){return a.previewElement.classList.add("dz-image-preview")},1)}},error:function(a,b){if(a.previewElement){a.previewElement.classList.add("dz-error"),"String"!=typeof b&&b.error&&(b=b.error);for(var c=a.previewElement.querySelectorAll("[data-dz-errormessage]"),d=0,c=c;;){var e;if(d>=c.length)break;e=c[d++];e.textContent=b}}},errormultiple:function(){},processing:function(a){if(a.previewElement&&(a.previewElement.classList.add("dz-processing"),a._removeLink))return a._removeLink.innerHTML=this.options.dictCancelUpload},processingmultiple:function(){},uploadprogress:function(a,b,c){if(a.previewElement)for(var d=a.previewElement.querySelectorAll("[data-dz-uploadprogress]"),e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];var g=f;"PROGRESS"===g.nodeName?g.value=b:g.style.width=b+"%"}},totaluploadprogress:function(){},sending:function(){},sendingmultiple:function(){},success:function(a){if(a.previewElement)return a.previewElement.classList.add("dz-success")},successmultiple:function(){},canceled:function(a){return this.emit("error",a,this.options.dictUploadCanceled)},canceledmultiple:function(){},complete:function(a){if(a._removeLink&&(a._removeLink.innerHTML=this.options.dictRemoveFile),a.previewElement)return a.previewElement.classList.add("dz-complete")},completemultiple:function(){},maxfilesexceeded:function(){},maxfilesreached:function(){},queuecomplete:function(){},addedfiles:function(){}},this.prototype._thumbnailQueue=[],this.prototype._processingThumbnail=!1}},{key:"extend",value:function(a){for(var b=arguments.length,c=Array(b>1?b-1:0),d=1;d=e.length)break;g=e[f++];var h=g;for(var i in h){var j=h[i];a[i]=j}}return a}}]),_createClass(b,[{key:"getAcceptedFiles",value:function(){return this.files.filter(function(a){return a.accepted}).map(function(a){return a})}},{key:"getRejectedFiles",value:function(){return this.files.filter(function(a){return!a.accepted}).map(function(a){return a})}},{key:"getFilesWithStatus",value:function(a){return this.files.filter(function(b){return b.status===a}).map(function(a){return a})}},{key:"getQueuedFiles",value:function(){return this.getFilesWithStatus(b.QUEUED)}},{key:"getUploadingFiles",value:function(){return this.getFilesWithStatus(b.UPLOADING)}},{key:"getAddedFiles",value:function(){return this.getFilesWithStatus(b.ADDED)}},{key:"getActiveFiles",value:function(){return this.files.filter(function(a){return a.status===b.UPLOADING||a.status===b.QUEUED}).map(function(a){return a})}},{key:"init",value:function(){var a=this;if("form"===this.element.tagName&&this.element.setAttribute("enctype","multipart/form-data"),this.element.classList.contains("dropzone")&&!this.element.querySelector(".dz-message")&&this.element.appendChild(b.createElement('
    '+this.options.dictDefaultMessage+"
    ")),this.clickableElements.length){!function c(){return a.hiddenFileInput&&a.hiddenFileInput.parentNode.removeChild(a.hiddenFileInput),a.hiddenFileInput=document.createElement("input"),a.hiddenFileInput.setAttribute("type","file"),(null===a.options.maxFiles||a.options.maxFiles>1)&&a.hiddenFileInput.setAttribute("multiple","multiple"),a.hiddenFileInput.className="dz-hidden-input",null!==a.options.acceptedFiles&&a.hiddenFileInput.setAttribute("accept",a.options.acceptedFiles),null!==a.options.capture&&a.hiddenFileInput.setAttribute("capture",a.options.capture),a.hiddenFileInput.style.visibility="hidden",a.hiddenFileInput.style.position="absolute",a.hiddenFileInput.style.top="0",a.hiddenFileInput.style.left="0",a.hiddenFileInput.style.height="0",a.hiddenFileInput.style.width="0",b.getElement(a.options.hiddenInputContainer,"hiddenInputContainer").appendChild(a.hiddenFileInput),a.hiddenFileInput.addEventListener("change",function(){var b=a.hiddenFileInput.files;if(b.length)for(var d=b,e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];var g=f;a.addFile(g)}return a.emit("addedfiles",b),c()})}()}this.URL=null!==window.URL?window.URL:window.webkitURL;for(var c=this.events,d=0,c=c;;){var e;if(d>=c.length)break;e=c[d++];var f=e;this.on(f,this.options[f])}this.on("uploadprogress",function(){return a.updateTotalUploadProgress()}),this.on("removedfile",function(){return a.updateTotalUploadProgress()}),this.on("canceled",function(b){return a.emit("complete",b)}),this.on("complete",function(b){if(0===a.getAddedFiles().length&&0===a.getUploadingFiles().length&&0===a.getQueuedFiles().length)return setTimeout(function(){return a.emit("queuecomplete")},0)});var g=function(a){return a.stopPropagation(),a.preventDefault?a.preventDefault():a.returnValue=!1};return this.listeners=[{element:this.element,events:{dragstart:function(b){return a.emit("dragstart",b)},dragenter:function(b){return g(b),a.emit("dragenter",b)},dragover:function(b){var c=void 0;try{c=b.dataTransfer.effectAllowed}catch(a){}return b.dataTransfer.dropEffect="move"===c||"linkMove"===c?"move":"copy",g(b),a.emit("dragover",b)},dragleave:function(b){return a.emit("dragleave",b)},drop:function(b){return g(b),a.drop(b)},dragend:function(b){return a.emit("dragend",b)}}}],this.clickableElements.forEach(function(c){return a.listeners.push({element:c,events:{click:function(d){return(c!==a.element||d.target===a.element||b.elementInside(d.target,a.element.querySelector(".dz-message")))&&a.hiddenFileInput.click(),!0}}})}),this.enable(),this.options.init.call(this)}},{key:"destroy",value:function(){return this.disable(),this.removeAllFiles(!0),(null!=this.hiddenFileInput?this.hiddenFileInput.parentNode:void 0)&&(this.hiddenFileInput.parentNode.removeChild(this.hiddenFileInput),this.hiddenFileInput=null),delete this.element.dropzone,b.instances.splice(b.instances.indexOf(this),1)}},{key:"updateTotalUploadProgress",value:function(){var a=void 0,b=0,c=0;if(this.getActiveFiles().length){for(var d=this.getActiveFiles(),e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];var g=f;b+=g.upload.bytesSent,c+=g.upload.total}a=100*b/c}else a=100;return this.emit("totaluploadprogress",a,c,b)}},{key:"_getParamName",value:function(a){return"function"==typeof this.options.paramName?this.options.paramName(a):this.options.paramName+(this.options.uploadMultiple?"["+a+"]":"")}},{key:"_renameFile",value:function(a){return"function"!=typeof this.options.renameFile?a.name:this.options.renameFile(a)}},{key:"getFallbackForm",value:function(){var a=void 0,c=void 0;if(a=this.getExistingFallback())return a;var d='
    ';this.options.dictFallbackText&&(d+="

    "+this.options.dictFallbackText+"

    "),d+='
    ';var e=b.createElement(d);return"FORM"!==this.element.tagName?(c=b.createElement('
    '),c.appendChild(e)):(this.element.setAttribute("enctype","multipart/form-data"),this.element.setAttribute("method",this.options.method)),null!=c?c:e}},{key:"getExistingFallback",value:function(){for(var a=["div","form"],b=0;b=b.length)break;d=b[c++];var e=d;if(/(^| )fallback($| )/.test(e.className))return e}}(this.element.getElementsByTagName(d)))return c}}},{key:"setupEventListeners",value:function(){return this.listeners.map(function(a){return function(){var b=[];for(var c in a.events){var d=a.events[c];b.push(a.element.addEventListener(c,d,!1))}return b}()})}},{key:"removeEventListeners",value:function(){return this.listeners.map(function(a){return function(){var b=[];for(var c in a.events){var d=a.events[c];b.push(a.element.removeEventListener(c,d,!1))}return b}()})}},{key:"disable",value:function(){var a=this;return this.clickableElements.forEach(function(a){return a.classList.remove("dz-clickable")}),this.removeEventListeners(),this.disabled=!0,this.files.map(function(b){return a.cancelUpload(b)})}},{key:"enable",value:function(){return delete this.disabled,this.clickableElements.forEach(function(a){return a.classList.add("dz-clickable")}),this.setupEventListeners()}},{key:"filesize",value:function(a){var b=0,c="b";if(a>0){for(var d=["tb","gb","mb","kb","b"],e=0;e=Math.pow(this.options.filesizeBase,4-e)/10){b=a/Math.pow(this.options.filesizeBase,4-e),c=f;break}}b=Math.round(10*b)/10}return""+b+" "+this.options.dictFileSizeUnits[c]}},{key:"_updateMaxFilesReachedClass",value:function(){return null!=this.options.maxFiles&&this.getAcceptedFiles().length>=this.options.maxFiles?(this.getAcceptedFiles().length===this.options.maxFiles&&this.emit("maxfilesreached",this.files),this.element.classList.add("dz-max-files-reached")):this.element.classList.remove("dz-max-files-reached")}},{key:"drop",value:function(a){if(a.dataTransfer){this.emit("drop",a);for(var b=[],c=0;c=b.length)break;d=b[c++];var e=d;this.addFile(e)}}},{key:"_addFilesFromItems",value:function(a){var b=this;return function(){for(var c=[],d=a,e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];var g,h=f;null!=h.webkitGetAsEntry&&(g=h.webkitGetAsEntry())?g.isFile?c.push(b.addFile(h.getAsFile())):g.isDirectory?c.push(b._addFilesFromDirectory(g,g.name)):c.push(void 0):null!=h.getAsFile&&(null==h.kind||"file"===h.kind)?c.push(b.addFile(h.getAsFile())):c.push(void 0)}return c}()}},{key:"_addFilesFromDirectory",value:function(a,b){var c=this,d=a.createReader(),e=function(a){return __guardMethod__(console,"log",function(b){return b.log(a)})};return function a(){return d.readEntries(function(d){if(d.length>0){for(var e=d,f=0,e=e;;){var g;if(f>=e.length)break;g=e[f++];var h=g;h.isFile?h.file(function(a){if(!c.options.ignoreHiddenFiles||"."!==a.name.substring(0,1))return a.fullPath=b+"/"+a.name,c.addFile(a)}):h.isDirectory&&c._addFilesFromDirectory(h,b+"/"+h.name)}a()}return null},e)}()}},{key:"accept",value:function(a,c){return this.options.maxFilesize&&a.size>1024*this.options.maxFilesize*1024?c(this.options.dictFileTooBig.replace("{{filesize}}",Math.round(a.size/1024/10.24)/100).replace("{{maxFilesize}}",this.options.maxFilesize)):b.isValidFile(a,this.options.acceptedFiles)?null!=this.options.maxFiles&&this.getAcceptedFiles().length>=this.options.maxFiles?(c(this.options.dictMaxFilesExceeded.replace("{{maxFiles}}",this.options.maxFiles)),this.emit("maxfilesexceeded",a)):this.options.accept.call(this,a,c):c(this.options.dictInvalidFileType)}},{key:"addFile",value:function(a){var c=this;return a.upload={uuid:b.uuidv4(),progress:0,total:a.size,bytesSent:0,filename:this._renameFile(a),chunked:this.options.chunking&&(this.options.forceChunking||a.size>this.options.chunkSize),totalChunkCount:Math.ceil(a.size/this.options.chunkSize)},this.files.push(a),a.status=b.ADDED,this.emit("addedfile",a),this._enqueueThumbnail(a),this.accept(a,function(b){return b?(a.accepted=!1,c._errorProcessing([a],b)):(a.accepted=!0,c.options.autoQueue&&c.enqueueFile(a)),c._updateMaxFilesReachedClass()})}},{key:"enqueueFiles",value:function(a){for(var b=a,c=0,b=b;;){var d;if(c>=b.length)break;d=b[c++];var e=d;this.enqueueFile(e)}return null}},{key:"enqueueFile",value:function(a){var c=this;if(a.status!==b.ADDED||!0!==a.accepted)throw new Error("This file can't be queued because it has already been processed or was rejected.");if(a.status=b.QUEUED,this.options.autoProcessQueue)return setTimeout(function(){return c.processQueue()},0)}},{key:"_enqueueThumbnail",value:function(a){var b=this;if(this.options.createImageThumbnails&&a.type.match(/image.*/)&&a.size<=1024*this.options.maxThumbnailFilesize*1024)return this._thumbnailQueue.push(a),setTimeout(function(){return b._processThumbnailQueue()},0)}},{key:"_processThumbnailQueue",value:function(){var a=this;if(!this._processingThumbnail&&0!==this._thumbnailQueue.length){this._processingThumbnail=!0;var b=this._thumbnailQueue.shift();return this.createThumbnail(b,this.options.thumbnailWidth,this.options.thumbnailHeight,this.options.thumbnailMethod,!0,function(c){return a.emit("thumbnail",b,c),a._processingThumbnail=!1,a._processThumbnailQueue()})}}},{key:"removeFile",value:function(a){if(a.status===b.UPLOADING&&this.cancelUpload(a),this.files=without(this.files,a),this.emit("removedfile",a),0===this.files.length)return this.emit("reset")}},{key:"removeAllFiles",value:function(a){null==a&&(a=!1);for(var c=this.files.slice(),d=0,c=c;;){var e;if(d>=c.length)break;e=c[d++];var f=e;(f.status!==b.UPLOADING||a)&&this.removeFile(f)}return null}},{key:"resizeImage",value:function(a,c,d,e,f){var g=this;return this.createThumbnail(a,c,d,e,!0,function(c,d){if(null==d)return f(a);var e=g.options.resizeMimeType;null==e&&(e=a.type);var h=d.toDataURL(e,g.options.resizeQuality);return"image/jpeg"!==e&&"image/jpg"!==e||(h=ExifRestore.restore(a.dataURL,h)),f(b.dataURItoBlob(h))})}},{key:"createThumbnail",value:function(a,b,c,d,e,f){var g=this,h=new FileReader;return h.onload=function(){return a.dataURL=h.result,"image/svg+xml"===a.type?void(null!=f&&f(h.result)):g.createThumbnailFromUrl(a,b,c,d,e,f)},h.readAsDataURL(a)}},{key:"createThumbnailFromUrl",value:function(a,b,c,d,e,f,g){var h=this,i=document.createElement("img");return g&&(i.crossOrigin=g),i.onload=function(){var g=function(a){return a(1)};return"undefined"!=typeof EXIF&&null!==EXIF&&e&&(g=function(a){return EXIF.getData(i,function(){return a(EXIF.getTag(this,"Orientation"))})}),g(function(e){a.width=i.width,a.height=i.height;var g=h.options.resize.call(h,a,b,c,d),j=document.createElement("canvas"),k=j.getContext("2d");switch(j.width=g.trgWidth,j.height=g.trgHeight,e>4&&(j.width=g.trgHeight,j.height=g.trgWidth),e){case 2:k.translate(j.width,0),k.scale(-1,1);break;case 3:k.translate(j.width,j.height),k.rotate(Math.PI);break;case 4:k.translate(0,j.height),k.scale(1,-1);break;case 5:k.rotate(.5*Math.PI),k.scale(1,-1);break;case 6:k.rotate(.5*Math.PI),k.translate(0,-j.width);break;case 7:k.rotate(.5*Math.PI),k.translate(j.height,-j.width),k.scale(-1,1);break;case 8:k.rotate(-.5*Math.PI),k.translate(-j.height,0)}drawImageIOSFix(k,i,null!=g.srcX?g.srcX:0,null!=g.srcY?g.srcY:0,g.srcWidth,g.srcHeight,null!=g.trgX?g.trgX:0,null!=g.trgY?g.trgY:0,g.trgWidth,g.trgHeight);var l=j.toDataURL("image/png");if(null!=f)return f(l,j)})},null!=f&&(i.onerror=f),i.src=a.dataURL}},{key:"processQueue",value:function(){var a=this.options.parallelUploads,b=this.getUploadingFiles().length,c=b;if(!(b>=a)){var d=this.getQueuedFiles();if(d.length>0){if(this.options.uploadMultiple)return this.processFiles(d.slice(0,a-b));for(;c=c.length)break;e=c[d++];var f=e;f.processing=!0,f.status=b.UPLOADING,this.emit("processing",f)}return this.options.uploadMultiple&&this.emit("processingmultiple",a),this.uploadFiles(a)}},{key:"_getFilesWithXhr",value:function(a){return this.files.filter(function(b){return b.xhr===a}).map(function(a){return a})}},{key:"cancelUpload",value:function(a){if(a.status===b.UPLOADING){for(var c=this._getFilesWithXhr(a.xhr),d=c,e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];f.status=b.CANCELED}void 0!==a.xhr&&a.xhr.abort();for(var g=c,h=0,g=g;;){var i;if(h>=g.length)break;i=g[h++];var j=i;this.emit("canceled",j)}this.options.uploadMultiple&&this.emit("canceledmultiple",c)}else a.status!==b.ADDED&&a.status!==b.QUEUED||(a.status=b.CANCELED,this.emit("canceled",a),this.options.uploadMultiple&&this.emit("canceledmultiple",[a]));if(this.options.autoProcessQueue)return this.processQueue()}},{key:"resolveOption",value:function(a){if("function"==typeof a){for(var b=arguments.length,c=Array(b>1?b-1:0),d=1;d=e.upload.totalChunkCount)){g++;var h=d*c.options.chunkSize,i=Math.min(h+c.options.chunkSize,e.size),j={name:c._getParamName(0),data:f.webkitSlice?f.webkitSlice(h,i):f.slice(h,i),filename:e.upload.filename,chunkIndex:d};e.upload.chunks[d]={file:e,index:d,dataBlock:j,status:b.UPLOADING,progress:0,retries:0},c._uploadData(a,[j])}};if(e.upload.finishedChunkUpload=function(d){var f=!0;d.status=b.SUCCESS,d.dataBlock=null,d.xhr=null;for(var g=0;g=f.length)break;h=f[g++];h.xhr=e}a[0].upload.chunked&&(a[0].upload.chunks[c[0].chunkIndex].xhr=e);var i=this.resolveOption(this.options.method,a),j=this.resolveOption(this.options.url,a);e.open(i,j,!0),e.timeout=this.resolveOption(this.options.timeout,a),e.withCredentials=!!this.options.withCredentials,e.onload=function(b){d._finishedUploading(a,e,b)},e.onerror=function(){d._handleUploadError(a,e)},(null!=e.upload?e.upload:e).onprogress=function(b){return d._updateFilesUploadProgress(a,e,b)};var k={Accept:"application/json","Cache-Control":"no-cache","X-Requested-With":"XMLHttpRequest"};this.options.headers&&b.extend(k,this.options.headers);for(var l in k){var m=k[l];m&&e.setRequestHeader(l,m)}var n=new FormData;if(this.options.params){var o=this.options.params;"function"==typeof o&&(o=o.call(this,a,e,a[0].upload.chunked?this._getChunk(a[0],e):null));for(var p in o){var q=o[p];n.append(p,q)}}for(var r=a,s=0,r=r;;){var t;if(s>=r.length)break;t=r[s++];var u=t;this.emit("sending",u,e,n)}this.options.uploadMultiple&&this.emit("sendingmultiple",a,e,n),this._addFormElementData(n);for(var v=0;v=b.length)break;d=b[c++];var e=d,f=e.getAttribute("name"),g=e.getAttribute("type");if(g&&(g=g.toLowerCase()),void 0!==f&&null!==f)if("SELECT"===e.tagName&&e.hasAttribute("multiple"))for(var h=e.options,i=0,h=h;;){var j;if(i>=h.length)break;j=h[i++];var k=j;k.selected&&a.append(f,k.value)}else(!g||"checkbox"!==g&&"radio"!==g||e.checked)&&a.append(f,e.value)}}},{key:"_updateFilesUploadProgress",value:function(a,b,c){var d=void 0;if(void 0!==c){if(d=100*c.loaded/c.total,a[0].upload.chunked){var e=a[0],f=this._getChunk(e,b);f.progress=d,f.total=c.total,f.bytesSent=c.loaded;e.upload.progress=0,e.upload.total=0,e.upload.bytesSent=0;for(var g=0;g=h.length)break;j=h[i++];var k=j;k.upload.progress=d,k.upload.total=c.total,k.upload.bytesSent=c.loaded}for(var l=a,m=0,l=l;;){var n;if(m>=l.length)break;n=l[m++];var o=n;this.emit("uploadprogress",o,o.upload.progress,o.upload.bytesSent)}}else{var p=!0;d=100;for(var q=a,r=0,q=q;;){var s;if(r>=q.length)break;s=q[r++];var t=s;100===t.upload.progress&&t.upload.bytesSent===t.upload.total||(p=!1),t.upload.progress=d,t.upload.bytesSent=t.upload.total}if(p)return;for(var u=a,v=0,u=u;;){var w;if(v>=u.length)break;w=u[v++];var x=w;this.emit("uploadprogress",x,d,x.upload.bytesSent)}}}},{key:"_finishedUploading",value:function(a,c,d){var e=void 0;if(a[0].status!==b.CANCELED&&4===c.readyState){if("arraybuffer"!==c.responseType&&"blob"!==c.responseType&&(e=c.responseText,c.getResponseHeader("content-type")&&~c.getResponseHeader("content-type").indexOf("application/json")))try{e=JSON.parse(e)}catch(a){d=a,e="Invalid JSON response from server."}this._updateFilesUploadProgress(a),200<=c.status&&c.status<300?a[0].upload.chunked?a[0].upload.finishedChunkUpload(this._getChunk(a[0],c)):this._finished(a,e,d):this._handleUploadError(a,c,e)}}},{key:"_handleUploadError",value:function(a,c,d){if(a[0].status!==b.CANCELED){if(a[0].upload.chunked&&this.options.retryChunks){var e=this._getChunk(a[0],c);if(e.retries++=f.length)break;f[g++];this._errorProcessing(a,d||this.options.dictResponseError.replace("{{statusCode}}",c.status),c)}}}},{key:"submitRequest",value:function(a,b,c){a.send(b)}},{key:"_finished",value:function(a,c,d){for(var e=a,f=0,e=e;;){var g;if(f>=e.length)break;g=e[f++];var h=g;h.status=b.SUCCESS,this.emit("success",h,c,d),this.emit("complete",h)}if(this.options.uploadMultiple&&(this.emit("successmultiple",a,c,d),this.emit("completemultiple",a)),this.options.autoProcessQueue)return this.processQueue()}},{key:"_errorProcessing",value:function(a,c,d){for(var e=a,f=0,e=e;;){var g;if(f>=e.length)break;g=e[f++];var h=g;h.status=b.ERROR,this.emit("error",h,c,d),this.emit("complete",h)}if(this.options.uploadMultiple&&(this.emit("errormultiple",a,c,d),this.emit("completemultiple",a)),this.options.autoProcessQueue)return this.processQueue()}}],[{key:"uuidv4",value:function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(a){var b=16*Math.random()|0;return("x"===a?b:3&b|8).toString(16)})}}]),b}(Emitter);Dropzone.initClass(),Dropzone.version="5.5.1",Dropzone.options={},Dropzone.optionsForElement=function(a){return a.getAttribute("id")?Dropzone.options[camelize(a.getAttribute("id"))]:void 0},Dropzone.instances=[],Dropzone.forElement=function(a){if("string"==typeof a&&(a=document.querySelector(a)),null==(null!=a?a.dropzone:void 0))throw new Error("No Dropzone found for given element. This is probably because you're trying to access it before Dropzone had the time to initialize. Use the `init` option to setup any additional observers on your Dropzone.");return a.dropzone},Dropzone.autoDiscover=!0,Dropzone.discover=function(){var a=void 0;if(document.querySelectorAll)a=document.querySelectorAll(".dropzone");else{a=[];var b=function(b){return function(){for(var c=[],d=b,e=0,d=d;;){var f;if(e>=d.length)break;f=d[e++];var g=f;/(^| )dropzone($| )/.test(g.className)?c.push(a.push(g)):c.push(void 0)}return c}()};b(document.getElementsByTagName("div")),b(document.getElementsByTagName("form"))}return function(){for(var b=[],c=a,d=0,c=c;;){var e;if(d>=c.length)break;e=c[d++];var f=e;!1!==Dropzone.optionsForElement(f)?b.push(new Dropzone(f)):b.push(void 0)}return b}()},Dropzone.blacklistedBrowsers=[/opera.*(Macintosh|Windows Phone).*version\/12/i],Dropzone.isBrowserSupported=function(){var a=!0;if(window.File&&window.FileReader&&window.FileList&&window.Blob&&window.FormData&&document.querySelector)if("classList"in document.createElement("a"))for(var b=Dropzone.blacklistedBrowsers,c=0,b=b;;){var d;if(c>=b.length)break;d=b[c++];var e=d;e.test(navigator.userAgent)&&(a=!1)}else a=!1;else a=!1;return a},Dropzone.dataURItoBlob=function(a){for(var b=atob(a.split(",")[1]),c=a.split(",")[0].split(":")[1].split(";")[0],d=new ArrayBuffer(b.length),e=new Uint8Array(d),f=0,g=b.length,h=0<=g;h?f<=g:f>=g;h?f++:f--)e[f]=b.charCodeAt(f);return new Blob([d],{type:c})};var without=function(a,b){return a.filter(function(a){return a!==b}).map(function(a){return a})},camelize=function(a){return a.replace(/[\-_](\w)/g,function(a){return a.charAt(1).toUpperCase()})};Dropzone.createElement=function(a){var b=document.createElement("div");return b.innerHTML=a,b.childNodes[0]},Dropzone.elementInside=function(a,b){if(a===b)return!0;for(;a=a.parentNode;)if(a===b)return!0;return!1},Dropzone.getElement=function(a,b){var c=void 0;if("string"==typeof a?c=document.querySelector(a):null!=a.nodeType&&(c=a),null==c)throw new Error("Invalid `"+b+"` option provided. Please provide a CSS selector or a plain HTML element.");return c},Dropzone.getElements=function(a,b){var c=void 0,d=void 0;if(a instanceof Array){d=[];try{for(var e=a,f=0,e=e;!(f>=e.length);)c=e[f++],d.push(this.getElement(c,b))}catch(a){d=null}}else if("string"==typeof a){d=[];for(var g=document.querySelectorAll(a),h=0,g=g;!(h>=g.length);)c=g[h++],d.push(c)}else null!=a.nodeType&&(d=[a]);if(null==d||!d.length)throw new Error("Invalid `"+b+"` option provided. Please provide a CSS selector, a plain HTML element or a list of those.");return d},Dropzone.confirm=function(a,b,c){return window.confirm(a)?b():null!=c?c():void 0},Dropzone.isValidFile=function(a,b){if(!b)return!0;b=b.split(",");for(var c=a.type,d=c.replace(/\/.*$/,""),e=b,f=0,e=e;;){var g;if(f>=e.length)break;g=e[f++];var h=g;if(h=h.trim(),"."===h.charAt(0)){if(-1!==a.name.toLowerCase().indexOf(h.toLowerCase(),a.name.length-h.length))return!0}else if(/\/\*$/.test(h)){if(d===h.replace(/\/.*$/,""))return!0}else if(c===h)return!0}return!1},"undefined"!=typeof jQuery&&null!==jQuery&&(jQuery.fn.dropzone=function(a){return this.each(function(){return new Dropzone(this,a)})}),"undefined"!=typeof module&&null!==module?module.exports=Dropzone:window.Dropzone=Dropzone,Dropzone.ADDED="added",Dropzone.QUEUED="queued",Dropzone.ACCEPTED=Dropzone.QUEUED,Dropzone.UPLOADING="uploading",Dropzone.PROCESSING=Dropzone.UPLOADING,Dropzone.CANCELED="canceled",Dropzone.ERROR="error",Dropzone.SUCCESS="success";var detectVerticalSquash=function(a){var b=(a.naturalWidth,a.naturalHeight),c=document.createElement("canvas");c.width=1,c.height=b;var d=c.getContext("2d");d.drawImage(a,0,0);for(var e=d.getImageData(1,0,1,b),f=e.data,g=0,h=b,i=b;i>g;){0===f[4*(i-1)+3]?h=i:g=i,i=h+g>>1}var j=i/b;return 0===j?1:j},drawImageIOSFix=function(a,b,c,d,e,f,g,h,i,j){var k=detectVerticalSquash(b);return a.drawImage(b,c,d,e,f,g,h,i,j/k)},ExifRestore=function(){function a(){_classCallCheck(this,a)}return _createClass(a,null,[{key:"initClass",value:function(){this.KEY_STR="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="}},{key:"encode64",value:function(a){for(var b="",c=void 0,d=void 0,e="",f=void 0,g=void 0,h=void 0,i="",j=0;;)if(c=a[j++],d=a[j++],e=a[j++],f=c>>2,g=(3&c)<<4|d>>4,h=(15&d)<<2|e>>6,i=63&e,isNaN(d)?h=i=64:isNaN(e)&&(i=64),b=b+this.KEY_STR.charAt(f)+this.KEY_STR.charAt(g)+this.KEY_STR.charAt(h)+this.KEY_STR.charAt(i),c=d=e="",f=g=h=i="",!(ja.length)break}return c}},{key:"decode64",value:function(a){var b=void 0,c=void 0,d="",e=void 0,f=void 0,g=void 0,h="",i=0,j=[],k=/[^A-Za-z0-9\+\/\=]/g;for(k.exec(a)&&console.warn("There were invalid base64 characters in the input text.\nValid base64 characters are A-Z, a-z, 0-9, '+', '/',and '='\nExpect errors in decoding."),a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");;)if(e=this.KEY_STR.indexOf(a.charAt(i++)),f=this.KEY_STR.indexOf(a.charAt(i++)),g=this.KEY_STR.indexOf(a.charAt(i++)),h=this.KEY_STR.indexOf(a.charAt(i++)),b=e<<2|f>>4,c=(15&f)<<4|g>>2,d=(3&g)<<6|h,j.push(b),64!==g&&j.push(c),64!==h&&j.push(d),b=c=d="",e=f=g=h="",!(i 'The configured upload disk for :attribute does not exist.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/tr/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/tr/validation.php index be67cce11..7d57a35a9 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/tr/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/tr/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Yükleme diski :attribute için mevcut değil.', + 'unsupported' => 'Bu alan sadece resim dosyaları içindir. Farklı dosya türlerini açıklama alanına ekleyebilirsiniz.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/views/input.twig b/addons/default/visiosoft/media-field_type/resources/views/input.twig index 66239b14e..d41780476 100644 --- a/addons/default/visiosoft/media-field_type/resources/views/input.twig +++ b/addons/default/visiosoft/media-field_type/resources/views/input.twig @@ -23,4 +23,8 @@
    + + {{ asset_add("styles.css", "visiosoft.field_type.media::css/imgList.css") }} From 0cf93125893da79ed1fe074f640ce9c0fd90f34b Mon Sep 17 00:00:00 2001 From: vedatakdogan Date: Mon, 21 Dec 2020 12:22:07 +0300 Subject: [PATCH 174/179] walter imp. --- .../resources/views/ad-detail/partials/detail.twig | 4 ++-- .../visiosoft/advs-module/resources/views/list/gallery.twig | 2 +- .../advs-module/resources/views/list/partials/ads.twig | 4 ++-- .../visiosoft/advs-module/resources/views/list/table.twig | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig b/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig index 3b2c68aad..4348ceced 100644 --- a/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig +++ b/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/detail.twig @@ -4,7 +4,7 @@ {% if standardPrice and standardPrice > 0 %}

    - {{ adv.standard_price.currency() }} + {{ currency_format(adv.standard_price,adv.currency) }}

    %{{ (100 - ((100 * adv.price.value) / adv.standard_price.value))|round(0, 'common') }} @@ -12,7 +12,7 @@

    {% endif %}

    - {{ adv.price.currency() }} + {{ currency_format(adv.price,adv.currency) }} {{ addBlock('ad-detail/priceField',{'adv':adv})|raw }} diff --git a/addons/default/visiosoft/advs-module/resources/views/list/gallery.twig b/addons/default/visiosoft/advs-module/resources/views/list/gallery.twig index 3ec082fff..034e747db 100644 --- a/addons/default/visiosoft/advs-module/resources/views/list/gallery.twig +++ b/addons/default/visiosoft/advs-module/resources/views/list/gallery.twig @@ -18,7 +18,7 @@ {% if setting_value('visiosoft.theme.base::price_fields') %}
    {{ adv.price != '0' - ? adv.price.currency() + ? currency_format(adv.price,adv.currency) : trans('visiosoft.module.advs::field.free') }}
    {% endif %} diff --git a/addons/default/visiosoft/advs-module/resources/views/list/partials/ads.twig b/addons/default/visiosoft/advs-module/resources/views/list/partials/ads.twig index 4c2b43593..20c4cbe0f 100644 --- a/addons/default/visiosoft/advs-module/resources/views/list/partials/ads.twig +++ b/addons/default/visiosoft/advs-module/resources/views/list/partials/ads.twig @@ -24,12 +24,12 @@ {% if not setting_value('visiosoft.module.advs::hide_listing_standard_price') %}

    {{ adv.standard_price != adv.price and adv.standard_price != '0' - ? adv.standard_price.currency() + ? currency_format(adv.standard_price,adv.currency) : '' }}

    {% endif %} {{ adv.price != '0' - ? adv.price.currency() + ? currency_format(adv.price,adv.currency) : trans('visiosoft.module.advs::field.free') }}

    {% if setting_value('visiosoft.module.location::list_page_location') %} diff --git a/addons/default/visiosoft/advs-module/resources/views/list/table.twig b/addons/default/visiosoft/advs-module/resources/views/list/table.twig index 2bed1d953..be5e4b1a9 100644 --- a/addons/default/visiosoft/advs-module/resources/views/list/table.twig +++ b/addons/default/visiosoft/advs-module/resources/views/list/table.twig @@ -36,7 +36,7 @@
    - {{ adv.price.currency() }} + {{ currency_format(adv.price,adv.currency) }} {{ adv.created_at|date("d/m/Y") }} From c7b1a9af7b25be5b454ce209cb43adb49ab7cde4 Mon Sep 17 00:00:00 2001 From: Diatrex Date: Mon, 21 Dec 2020 14:01:15 +0300 Subject: [PATCH 175/179] #2957 General Bugs --- .../advs-module/resources/js/location.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/addons/default/visiosoft/advs-module/resources/js/location.js b/addons/default/visiosoft/advs-module/resources/js/location.js index d53f3abd0..3c8af3e39 100644 --- a/addons/default/visiosoft/advs-module/resources/js/location.js +++ b/addons/default/visiosoft/advs-module/resources/js/location.js @@ -131,17 +131,17 @@ var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions) function haritaIslem() { var str = ''; - if ($('select[name="' + countrySelectName + '"]').val() != "") { - str += $('select[name="' + countrySelectName + '"] :selected').text() + ' '; + if ($('select[name="' + countrySelectName + '"]').val()) { + str += $('select[name="' + countrySelectName + '"] :selected').first().text() + ' '; } - if ($('select[name="' + citySelectName + '"]').val() != "") { - str += $('select[name="' + citySelectName + '"] :selected').text() + ' '; + if ($('select[name="' + citySelectName + '"]').val()) { + str += $('select[name="' + citySelectName + '"] :selected').first().text() + ' '; } - if ($('select[name="' + districtSelectName + '"]').val() != "") { - str += $('select[name="' + districtSelectName + '"] :selected').text() + ' '; + if ($('select[name="' + districtSelectName + '"]').val()) { + str += $('select[name="' + districtSelectName + '"] :selected').first().text() + ' '; } - if ($('select[name="' + neighborhoodSelectName + '"]').val() != "") { - str += $('select[name="' + neighborhoodSelectName + '"] :selected').text() + ' '; + if ($('select[name="' + neighborhoodSelectName + '"]').val()) { + str += $('select[name="' + neighborhoodSelectName + '"] :selected').first().text() + ' '; } if (!str) { From 7f21b02fd0ed7d922da979f433d1b95a0a38bbd9 Mon Sep 17 00:00:00 2001 From: Diatrex Date: Mon, 21 Dec 2020 14:50:46 +0300 Subject: [PATCH 176/179] #2945 Fast create edit category error --- .../default/visiosoft/advs-module/resources/views/blank.twig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/default/visiosoft/advs-module/resources/views/blank.twig b/addons/default/visiosoft/advs-module/resources/views/blank.twig index 79333af1d..97aac471f 100644 --- a/addons/default/visiosoft/advs-module/resources/views/blank.twig +++ b/addons/default/visiosoft/advs-module/resources/views/blank.twig @@ -4,8 +4,9 @@ {{ content|raw }} {% if form.mode == 'edit' %} + {% set entry = form.entry.setAttribute('cf_json', null) %} {% endif %} {% endblock %} From 475bba9d2e391d0eb851c12657b70aa5e06fef4a Mon Sep 17 00:00:00 2001 From: vedatakdogan Date: Mon, 21 Dec 2020 15:57:22 +0300 Subject: [PATCH 177/179] fixed ogData --- .../advs-module/resources/views/ad-detail/detail.twig | 4 ---- .../resources/views/ad-detail/partials/ogdata.twig | 7 ------- .../advs-module/src/Http/Controller/advsController.php | 3 +++ 3 files changed, 3 insertions(+), 11 deletions(-) delete mode 100644 addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/ogdata.twig diff --git a/addons/default/visiosoft/advs-module/resources/views/ad-detail/detail.twig b/addons/default/visiosoft/advs-module/resources/views/ad-detail/detail.twig index 761abb50b..3c1678bf9 100644 --- a/addons/default/visiosoft/advs-module/resources/views/ad-detail/detail.twig +++ b/addons/default/visiosoft/advs-module/resources/views/ad-detail/detail.twig @@ -1,9 +1,5 @@ {% extends layout('ad-detail') %} -{% block ogdata %} - {% include "visiosoft.module.advs::ad-detail/partials/ogdata" %} -{% endblock %} - {% block styles %} {{ asset_style("visiosoft.module.advs::css/detail.css") }} {% endblock %} diff --git a/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/ogdata.twig b/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/ogdata.twig deleted file mode 100644 index 37079c10f..000000000 --- a/addons/default/visiosoft/advs-module/resources/views/ad-detail/partials/ogdata.twig +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file 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 7a6e8f6af..9ba164e6f 100644 --- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php +++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php @@ -570,6 +570,9 @@ class AdvsController extends PublicController } else { $ogImage = $coverPhoto; } + //ogMeta Tags + $this->template->set('og_image', $ogImage); + $this->template->set('og_url', $this->adv_model->getAdvDetailLinkByModel($adv, 'list')); $this->template->set('meta_image', $ogImage); $this->template->set('meta_keywords', implode(',', explode(' ', $adv->name))); From 6a3aaf8624a9839fdff171118a3766baf016ae5f Mon Sep 17 00:00:00 2001 From: vedatakdogan Date: Mon, 21 Dec 2020 17:09:37 +0300 Subject: [PATCH 178/179] added logout for mobile menu --- .../resources/images/logout.svg | 51 +++++++++++++++++++ .../views/profile/partials/navigation.twig | 6 +++ 2 files changed, 57 insertions(+) create mode 100644 addons/default/visiosoft/profile-module/resources/images/logout.svg diff --git a/addons/default/visiosoft/profile-module/resources/images/logout.svg b/addons/default/visiosoft/profile-module/resources/images/logout.svg new file mode 100644 index 000000000..16d452701 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/images/logout.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/addons/default/visiosoft/profile-module/resources/views/profile/partials/navigation.twig b/addons/default/visiosoft/profile-module/resources/views/profile/partials/navigation.twig index 0bbb2197e..340e9ca46 100644 --- a/addons/default/visiosoft/profile-module/resources/views/profile/partials/navigation.twig +++ b/addons/default/visiosoft/profile-module/resources/views/profile/partials/navigation.twig @@ -28,6 +28,12 @@ {{ addBlock('profile/navigation',{'marketPlace':marketPlace})|raw }} + + + +

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

    +
    From 278d05940770986922d158b242ce375af84bc247 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Mon, 21 Dec 2020 19:08:49 +0300 Subject: [PATCH 179/179] New Crowdin updates (#869) * New translations validation.php (Arabic) * New translations validation.php (Spanish) * New translations validation.php (French) * New translations validation.php (Romanian) * New translations validation.php (Hindi) * New translations validation.php (Bengali) * New translations validation.php (German) * New translations validation.php (Arabic) * New translations validation.php (Greek) * New translations validation.php (Romanian) * New translations validation.php (Spanish) * New translations validation.php (French * New translations validation.php (Portuguese) --- .../advs-module/resources/lang/ar/button.php | 4 + .../advs-module/resources/lang/ar/field.php | 13 + .../advs-module/resources/lang/ar/message.php | 2 + .../advs-module/resources/lang/ar/section.php | 1 + .../advs-module/resources/lang/ar/setting.php | 24 +- .../advs-module/resources/lang/az/button.php | 4 + .../advs-module/resources/lang/az/field.php | 13 + .../advs-module/resources/lang/az/message.php | 2 + .../advs-module/resources/lang/az/section.php | 1 + .../advs-module/resources/lang/az/setting.php | 24 +- .../advs-module/resources/lang/bn/button.php | 4 + .../advs-module/resources/lang/bn/field.php | 13 + .../advs-module/resources/lang/bn/message.php | 2 + .../advs-module/resources/lang/bn/section.php | 1 + .../advs-module/resources/lang/bn/setting.php | 24 +- .../advs-module/resources/lang/de/button.php | 4 + .../advs-module/resources/lang/de/field.php | 13 + .../advs-module/resources/lang/de/message.php | 2 + .../advs-module/resources/lang/de/section.php | 1 + .../advs-module/resources/lang/de/setting.php | 24 +- .../advs-module/resources/lang/el/button.php | 4 + .../advs-module/resources/lang/el/field.php | 13 + .../advs-module/resources/lang/el/message.php | 2 + .../advs-module/resources/lang/el/section.php | 1 + .../advs-module/resources/lang/el/setting.php | 24 +- .../advs-module/resources/lang/es/button.php | 4 + .../advs-module/resources/lang/es/field.php | 13 + .../advs-module/resources/lang/es/message.php | 2 + .../advs-module/resources/lang/es/section.php | 1 + .../advs-module/resources/lang/es/setting.php | 24 +- .../advs-module/resources/lang/fa/button.php | 4 + .../advs-module/resources/lang/fa/field.php | 13 + .../advs-module/resources/lang/fa/message.php | 2 + .../advs-module/resources/lang/fa/section.php | 1 + .../advs-module/resources/lang/fa/setting.php | 24 +- .../advs-module/resources/lang/fr/button.php | 4 + .../advs-module/resources/lang/fr/field.php | 13 + .../advs-module/resources/lang/fr/message.php | 2 + .../advs-module/resources/lang/fr/section.php | 1 + .../advs-module/resources/lang/fr/setting.php | 24 +- .../advs-module/resources/lang/he/button.php | 4 + .../advs-module/resources/lang/he/field.php | 13 + .../advs-module/resources/lang/he/message.php | 2 + .../advs-module/resources/lang/he/section.php | 1 + .../advs-module/resources/lang/he/setting.php | 24 +- .../advs-module/resources/lang/hi/button.php | 4 + .../advs-module/resources/lang/hi/field.php | 13 + .../advs-module/resources/lang/hi/message.php | 2 + .../advs-module/resources/lang/hi/section.php | 1 + .../advs-module/resources/lang/hi/setting.php | 24 +- .../advs-module/resources/lang/it/button.php | 4 + .../advs-module/resources/lang/it/field.php | 13 + .../advs-module/resources/lang/it/message.php | 2 + .../advs-module/resources/lang/it/section.php | 1 + .../advs-module/resources/lang/it/setting.php | 24 +- .../advs-module/resources/lang/ja/button.php | 4 + .../advs-module/resources/lang/ja/field.php | 13 + .../advs-module/resources/lang/ja/message.php | 2 + .../advs-module/resources/lang/ja/section.php | 1 + .../advs-module/resources/lang/ja/setting.php | 24 +- .../advs-module/resources/lang/ko/button.php | 4 + .../advs-module/resources/lang/ko/field.php | 13 + .../advs-module/resources/lang/ko/message.php | 2 + .../advs-module/resources/lang/ko/section.php | 1 + .../advs-module/resources/lang/ko/setting.php | 24 +- .../advs-module/resources/lang/ku/addon.php | 7 + .../advs-module/resources/lang/ku/button.php | 46 +++ .../resources/lang/ku/currency.php | 6 + .../advs-module/resources/lang/ku/field.php | 344 ++++++++++++++++++ .../advs-module/resources/lang/ku/message.php | 32 ++ .../resources/lang/ku/permission.php | 100 +++++ .../advs-module/resources/lang/ku/section.php | 59 +++ .../advs-module/resources/lang/ku/setting.php | 222 +++++++++++ .../advs-module/resources/lang/ku/stream.php | 34 ++ .../advs-module/resources/lang/ku/view.php | 5 + .../advs-module/resources/lang/nl/button.php | 4 + .../advs-module/resources/lang/nl/field.php | 13 + .../advs-module/resources/lang/nl/message.php | 2 + .../advs-module/resources/lang/nl/section.php | 1 + .../advs-module/resources/lang/nl/setting.php | 24 +- .../advs-module/resources/lang/pl/button.php | 4 + .../advs-module/resources/lang/pl/field.php | 13 + .../advs-module/resources/lang/pl/message.php | 2 + .../advs-module/resources/lang/pl/section.php | 1 + .../advs-module/resources/lang/pl/setting.php | 24 +- .../advs-module/resources/lang/pt/button.php | 4 + .../advs-module/resources/lang/pt/field.php | 13 + .../advs-module/resources/lang/pt/message.php | 2 + .../advs-module/resources/lang/pt/section.php | 1 + .../advs-module/resources/lang/pt/setting.php | 24 +- .../advs-module/resources/lang/ro/button.php | 4 + .../advs-module/resources/lang/ro/field.php | 13 + .../advs-module/resources/lang/ro/message.php | 2 + .../advs-module/resources/lang/ro/section.php | 1 + .../advs-module/resources/lang/ro/setting.php | 24 +- .../advs-module/resources/lang/ru/button.php | 4 + .../advs-module/resources/lang/ru/field.php | 13 + .../advs-module/resources/lang/ru/message.php | 2 + .../advs-module/resources/lang/ru/section.php | 1 + .../advs-module/resources/lang/ru/setting.php | 24 +- .../advs-module/resources/lang/sq/button.php | 4 + .../advs-module/resources/lang/sq/field.php | 13 + .../advs-module/resources/lang/sq/message.php | 2 + .../advs-module/resources/lang/sq/section.php | 1 + .../advs-module/resources/lang/sq/setting.php | 24 +- .../advs-module/resources/lang/sv/button.php | 4 + .../advs-module/resources/lang/sv/field.php | 13 + .../advs-module/resources/lang/sv/message.php | 2 + .../advs-module/resources/lang/sv/section.php | 1 + .../advs-module/resources/lang/sv/setting.php | 24 +- .../advs-module/resources/lang/tr/button.php | 8 +- .../advs-module/resources/lang/tr/field.php | 27 +- .../advs-module/resources/lang/tr/message.php | 8 +- .../advs-module/resources/lang/tr/section.php | 7 +- .../advs-module/resources/lang/tr/setting.php | 26 +- .../advs-module/resources/lang/tr/stream.php | 4 +- .../advs-module/resources/lang/uk/button.php | 4 + .../advs-module/resources/lang/uk/field.php | 13 + .../advs-module/resources/lang/uk/message.php | 2 + .../advs-module/resources/lang/uk/section.php | 1 + .../advs-module/resources/lang/uk/setting.php | 24 +- .../advs-module/resources/lang/ur/button.php | 4 + .../advs-module/resources/lang/ur/field.php | 13 + .../advs-module/resources/lang/ur/message.php | 2 + .../advs-module/resources/lang/ur/section.php | 1 + .../advs-module/resources/lang/ur/setting.php | 24 +- .../advs-module/resources/lang/vi/button.php | 4 + .../advs-module/resources/lang/vi/field.php | 13 + .../advs-module/resources/lang/vi/message.php | 2 + .../advs-module/resources/lang/vi/section.php | 1 + .../advs-module/resources/lang/vi/setting.php | 24 +- .../base-theme/resources/lang/ar/button.php | 2 +- .../base-theme/resources/lang/az/button.php | 2 +- .../base-theme/resources/lang/bn/button.php | 2 +- .../base-theme/resources/lang/de/button.php | 2 +- .../base-theme/resources/lang/el/button.php | 2 +- .../base-theme/resources/lang/es/button.php | 2 +- .../base-theme/resources/lang/fa/button.php | 2 +- .../base-theme/resources/lang/fr/button.php | 2 +- .../base-theme/resources/lang/he/button.php | 2 +- .../base-theme/resources/lang/hi/button.php | 2 +- .../base-theme/resources/lang/it/button.php | 2 +- .../base-theme/resources/lang/ja/button.php | 2 +- .../base-theme/resources/lang/ko/button.php | 2 +- .../base-theme/resources/lang/ku/addon.php | 7 + .../base-theme/resources/lang/ku/button.php | 2 +- .../base-theme/resources/lang/ku/field.php | 59 +++ .../base-theme/resources/lang/ku/message.php | 6 + .../base-theme/resources/lang/ku/section.php | 8 + .../base-theme/resources/lang/ku/setting.php | 46 +++ .../base-theme/resources/lang/nl/button.php | 2 +- .../base-theme/resources/lang/pl/button.php | 2 +- .../base-theme/resources/lang/pt/button.php | 2 +- .../base-theme/resources/lang/ro/button.php | 2 +- .../base-theme/resources/lang/ru/button.php | 2 +- .../base-theme/resources/lang/sq/button.php | 2 +- .../base-theme/resources/lang/sv/button.php | 2 +- .../base-theme/resources/lang/tr/button.php | 2 +- .../base-theme/resources/lang/tr/field.php | 10 +- .../base-theme/resources/lang/uk/button.php | 2 +- .../base-theme/resources/lang/ur/button.php | 2 +- .../base-theme/resources/lang/vi/button.php | 2 +- .../cats-module/resources/lang/ku/addon.php | 7 + .../cats-module/resources/lang/ku/button.php | 8 + .../cats-module/resources/lang/ku/field.php | 36 ++ .../cats-module/resources/lang/ku/message.php | 5 + .../resources/lang/ku/permission.php | 20 + .../cats-module/resources/lang/ku/section.php | 10 + .../cats-module/resources/lang/ku/setting.php | 10 + .../cats-module/resources/lang/ku/stream.php | 10 + .../cats-module/resources/lang/ku/view.php | 5 + .../resources/lang/ku/addon.php | 7 + .../resources/lang/ku/button.php | 5 + .../resources/lang/ku/control_panel.php | 13 + .../resources/lang/ku/help.php | 14 + .../resources/lang/ku/preference.php | 30 ++ .../resources/lang/ku/section.php | 7 + .../resources/lang/ku/setting.php | 35 ++ .../resources/lang/ku/addon.php | 7 + .../resources/lang/ar/field.php | 3 +- .../resources/lang/az/field.php | 3 +- .../resources/lang/bn/field.php | 3 +- .../resources/lang/de/field.php | 3 +- .../resources/lang/el/field.php | 3 +- .../resources/lang/es/field.php | 3 +- .../resources/lang/fa/field.php | 3 +- .../resources/lang/fr/field.php | 3 +- .../resources/lang/he/field.php | 3 +- .../resources/lang/hi/field.php | 3 +- .../resources/lang/it/field.php | 3 +- .../resources/lang/ja/field.php | 3 +- .../resources/lang/ko/field.php | 3 +- .../resources/lang/ku/addon.php | 7 + .../resources/lang/ku/button.php | 17 + .../resources/lang/ku/field.php | 39 ++ .../resources/lang/ku/message.php | 6 + .../resources/lang/ku/permission.php | 13 + .../resources/lang/ku/section.php | 23 ++ .../resources/lang/ku/setting.php | 56 +++ .../resources/lang/ku/stream.php | 7 + .../resources/lang/nl/field.php | 3 +- .../resources/lang/pl/field.php | 3 +- .../resources/lang/pt/field.php | 3 +- .../resources/lang/ro/field.php | 3 +- .../resources/lang/ru/field.php | 3 +- .../resources/lang/sq/field.php | 3 +- .../resources/lang/sv/field.php | 3 +- .../resources/lang/tr/button.php | 4 +- .../resources/lang/tr/field.php | 2 - .../resources/lang/tr/section.php | 2 +- .../resources/lang/uk/field.php | 3 +- .../resources/lang/ur/field.php | 3 +- .../resources/lang/vi/field.php | 3 +- .../resources/lang/ar/validation.php | 1 + .../resources/lang/az/validation.php | 1 + .../resources/lang/bn/validation.php | 1 + .../resources/lang/de/validation.php | 1 + .../resources/lang/el/validation.php | 1 + .../resources/lang/es/validation.php | 1 + .../resources/lang/fa/validation.php | 1 + .../resources/lang/fr/validation.php | 1 + .../resources/lang/he/validation.php | 1 + .../resources/lang/hi/validation.php | 1 + .../resources/lang/it/validation.php | 1 + .../resources/lang/ja/validation.php | 1 + .../resources/lang/ko/validation.php | 1 + .../resources/lang/ku/addon.php | 7 + .../resources/lang/ku/button.php | 5 + .../resources/lang/ku/config.php | 26 ++ .../resources/lang/ku/input.php | 6 + .../resources/lang/ku/message.php | 13 + .../resources/lang/ku/validation.php | 6 + .../resources/lang/nl/validation.php | 1 + .../resources/lang/pl/validation.php | 1 + .../resources/lang/pt/validation.php | 1 + .../resources/lang/ro/validation.php | 1 + .../resources/lang/ru/validation.php | 1 + .../resources/lang/sq/validation.php | 1 + .../resources/lang/sv/validation.php | 1 + .../resources/lang/tr/validation.php | 2 +- .../resources/lang/uk/validation.php | 1 + .../resources/lang/ur/validation.php | 1 + .../resources/lang/vi/validation.php | 1 + .../resources/lang/ar/button.php | 5 +- .../resources/lang/ar/field.php | 8 +- .../resources/lang/ar/message.php | 1 + .../resources/lang/ar/permission.php | 16 +- .../resources/lang/ar/section.php | 4 +- .../resources/lang/ar/stream.php | 4 +- .../resources/lang/az/button.php | 5 +- .../resources/lang/az/field.php | 8 +- .../resources/lang/az/message.php | 1 + .../resources/lang/az/permission.php | 16 +- .../resources/lang/az/section.php | 4 +- .../resources/lang/az/stream.php | 4 +- .../resources/lang/bn/button.php | 5 +- .../resources/lang/bn/field.php | 8 +- .../resources/lang/bn/message.php | 1 + .../resources/lang/bn/permission.php | 16 +- .../resources/lang/bn/section.php | 4 +- .../resources/lang/bn/stream.php | 4 +- .../resources/lang/de/button.php | 5 +- .../resources/lang/de/field.php | 6 +- .../resources/lang/de/message.php | 1 + .../resources/lang/de/permission.php | 16 +- .../resources/lang/de/section.php | 4 +- .../resources/lang/de/stream.php | 4 +- .../resources/lang/el/button.php | 5 +- .../resources/lang/el/field.php | 8 +- .../resources/lang/el/message.php | 1 + .../resources/lang/el/permission.php | 16 +- .../resources/lang/el/section.php | 4 +- .../resources/lang/el/stream.php | 4 +- .../resources/lang/es/button.php | 5 +- .../resources/lang/es/field.php | 8 +- .../resources/lang/es/message.php | 1 + .../resources/lang/es/permission.php | 16 +- .../resources/lang/es/section.php | 4 +- .../resources/lang/es/stream.php | 4 +- .../resources/lang/fa/button.php | 5 +- .../resources/lang/fa/field.php | 8 +- .../resources/lang/fa/message.php | 1 + .../resources/lang/fa/permission.php | 16 +- .../resources/lang/fa/section.php | 4 +- .../resources/lang/fa/stream.php | 4 +- .../resources/lang/fr/button.php | 5 +- .../resources/lang/fr/field.php | 8 +- .../resources/lang/fr/message.php | 1 + .../resources/lang/fr/permission.php | 16 +- .../resources/lang/fr/section.php | 4 +- .../resources/lang/fr/stream.php | 4 +- .../resources/lang/he/button.php | 5 +- .../resources/lang/he/field.php | 8 +- .../resources/lang/he/message.php | 1 + .../resources/lang/he/permission.php | 16 +- .../resources/lang/he/section.php | 4 +- .../resources/lang/he/stream.php | 4 +- .../resources/lang/hi/button.php | 5 +- .../resources/lang/hi/field.php | 8 +- .../resources/lang/hi/message.php | 1 + .../resources/lang/hi/permission.php | 16 +- .../resources/lang/hi/section.php | 4 +- .../resources/lang/hi/stream.php | 4 +- .../resources/lang/it/button.php | 5 +- .../resources/lang/it/field.php | 4 +- .../resources/lang/it/message.php | 1 + .../resources/lang/it/permission.php | 16 +- .../resources/lang/it/section.php | 4 +- .../resources/lang/it/stream.php | 4 +- .../resources/lang/ja/button.php | 5 +- .../resources/lang/ja/field.php | 8 +- .../resources/lang/ja/message.php | 1 + .../resources/lang/ja/permission.php | 16 +- .../resources/lang/ja/section.php | 4 +- .../resources/lang/ja/stream.php | 4 +- .../resources/lang/ko/button.php | 5 +- .../resources/lang/ko/field.php | 8 +- .../resources/lang/ko/message.php | 1 + .../resources/lang/ko/permission.php | 16 +- .../resources/lang/ko/section.php | 4 +- .../resources/lang/ko/stream.php | 4 +- .../resources/lang/ku/addon.php | 7 + .../resources/lang/ku/button.php | 5 +- .../resources/lang/ku/field.php | 8 +- .../resources/lang/ku/message.php | 46 +++ .../resources/lang/ku/permission.php | 16 +- .../resources/lang/ku/section.php | 4 +- .../resources/lang/ku/setting.php | 46 +++ .../resources/lang/ku/stream.php | 4 +- .../resources/lang/nl/button.php | 5 +- .../resources/lang/nl/field.php | 8 +- .../resources/lang/nl/message.php | 1 + .../resources/lang/nl/permission.php | 16 +- .../resources/lang/nl/section.php | 4 +- .../resources/lang/nl/stream.php | 4 +- .../resources/lang/pl/button.php | 5 +- .../resources/lang/pl/field.php | 8 +- .../resources/lang/pl/message.php | 1 + .../resources/lang/pl/permission.php | 16 +- .../resources/lang/pl/section.php | 4 +- .../resources/lang/pl/stream.php | 4 +- .../resources/lang/pt/button.php | 5 +- .../resources/lang/pt/field.php | 8 +- .../resources/lang/pt/message.php | 1 + .../resources/lang/pt/permission.php | 16 +- .../resources/lang/pt/section.php | 4 +- .../resources/lang/pt/stream.php | 4 +- .../resources/lang/ro/button.php | 5 +- .../resources/lang/ro/field.php | 8 +- .../resources/lang/ro/message.php | 1 + .../resources/lang/ro/permission.php | 16 +- .../resources/lang/ro/section.php | 4 +- .../resources/lang/ro/stream.php | 4 +- .../resources/lang/ru/button.php | 5 +- .../resources/lang/ru/field.php | 8 +- .../resources/lang/ru/message.php | 1 + .../resources/lang/ru/permission.php | 16 +- .../resources/lang/ru/section.php | 4 +- .../resources/lang/ru/stream.php | 4 +- .../resources/lang/sq/button.php | 5 +- .../resources/lang/sq/field.php | 8 +- .../resources/lang/sq/message.php | 1 + .../resources/lang/sq/permission.php | 16 +- .../resources/lang/sq/section.php | 4 +- .../resources/lang/sq/stream.php | 4 +- .../resources/lang/sv/button.php | 5 +- .../resources/lang/sv/field.php | 8 +- .../resources/lang/sv/message.php | 1 + .../resources/lang/sv/permission.php | 16 +- .../resources/lang/sv/section.php | 4 +- .../resources/lang/sv/stream.php | 4 +- .../resources/lang/tr/button.php | 5 +- .../resources/lang/tr/field.php | 4 +- .../resources/lang/tr/message.php | 1 + .../resources/lang/tr/permission.php | 16 +- .../resources/lang/tr/section.php | 4 +- .../resources/lang/tr/stream.php | 4 +- .../resources/lang/uk/button.php | 5 +- .../resources/lang/uk/field.php | 8 +- .../resources/lang/uk/message.php | 1 + .../resources/lang/uk/permission.php | 16 +- .../resources/lang/uk/section.php | 4 +- .../resources/lang/uk/stream.php | 4 +- .../resources/lang/ur/button.php | 5 +- .../resources/lang/ur/field.php | 8 +- .../resources/lang/ur/message.php | 1 + .../resources/lang/ur/permission.php | 16 +- .../resources/lang/ur/section.php | 4 +- .../resources/lang/ur/stream.php | 4 +- .../resources/lang/vi/button.php | 5 +- .../resources/lang/vi/field.php | 8 +- .../resources/lang/vi/message.php | 1 + .../resources/lang/vi/permission.php | 16 +- .../resources/lang/vi/section.php | 4 +- .../resources/lang/vi/stream.php | 4 +- .../resources/lang/de/button.php | 7 +- .../resources/lang/ku/addon.php | 7 + .../resources/lang/ku/button.php | 8 + .../resources/lang/ku/config.php | 23 ++ .../resources/lang/ku/message.php | 12 + .../resources/lang/ku/validation.php | 5 + .../resources/lang/tr/message.php | 4 +- 402 files changed, 3243 insertions(+), 556 deletions(-) create mode 100644 addons/default/visiosoft/advs-module/resources/lang/ku/addon.php create mode 100644 addons/default/visiosoft/advs-module/resources/lang/ku/button.php create mode 100644 addons/default/visiosoft/advs-module/resources/lang/ku/currency.php create mode 100644 addons/default/visiosoft/advs-module/resources/lang/ku/field.php create mode 100644 addons/default/visiosoft/advs-module/resources/lang/ku/message.php create mode 100644 addons/default/visiosoft/advs-module/resources/lang/ku/permission.php create mode 100644 addons/default/visiosoft/advs-module/resources/lang/ku/section.php create mode 100644 addons/default/visiosoft/advs-module/resources/lang/ku/setting.php create mode 100644 addons/default/visiosoft/advs-module/resources/lang/ku/stream.php create mode 100644 addons/default/visiosoft/advs-module/resources/lang/ku/view.php create mode 100644 addons/default/visiosoft/base-theme/resources/lang/ku/addon.php create mode 100644 addons/default/visiosoft/base-theme/resources/lang/ku/field.php create mode 100644 addons/default/visiosoft/base-theme/resources/lang/ku/message.php create mode 100644 addons/default/visiosoft/base-theme/resources/lang/ku/section.php create mode 100644 addons/default/visiosoft/base-theme/resources/lang/ku/setting.php create mode 100644 addons/default/visiosoft/cats-module/resources/lang/ku/addon.php create mode 100644 addons/default/visiosoft/cats-module/resources/lang/ku/button.php create mode 100644 addons/default/visiosoft/cats-module/resources/lang/ku/field.php create mode 100644 addons/default/visiosoft/cats-module/resources/lang/ku/message.php create mode 100644 addons/default/visiosoft/cats-module/resources/lang/ku/permission.php create mode 100644 addons/default/visiosoft/cats-module/resources/lang/ku/section.php create mode 100644 addons/default/visiosoft/cats-module/resources/lang/ku/setting.php create mode 100644 addons/default/visiosoft/cats-module/resources/lang/ku/stream.php create mode 100644 addons/default/visiosoft/cats-module/resources/lang/ku/view.php create mode 100644 addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/addon.php create mode 100644 addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/button.php create mode 100644 addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/control_panel.php create mode 100644 addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/help.php create mode 100644 addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/preference.php create mode 100644 addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/section.php create mode 100644 addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/setting.php create mode 100644 addons/default/visiosoft/json-field_type/resources/lang/ku/addon.php create mode 100644 addons/default/visiosoft/location-module/resources/lang/ku/addon.php create mode 100644 addons/default/visiosoft/location-module/resources/lang/ku/button.php create mode 100644 addons/default/visiosoft/location-module/resources/lang/ku/field.php create mode 100644 addons/default/visiosoft/location-module/resources/lang/ku/message.php create mode 100644 addons/default/visiosoft/location-module/resources/lang/ku/permission.php create mode 100644 addons/default/visiosoft/location-module/resources/lang/ku/section.php create mode 100644 addons/default/visiosoft/location-module/resources/lang/ku/setting.php create mode 100644 addons/default/visiosoft/location-module/resources/lang/ku/stream.php create mode 100644 addons/default/visiosoft/media-field_type/resources/lang/ku/addon.php create mode 100644 addons/default/visiosoft/media-field_type/resources/lang/ku/button.php create mode 100644 addons/default/visiosoft/media-field_type/resources/lang/ku/config.php create mode 100644 addons/default/visiosoft/media-field_type/resources/lang/ku/input.php create mode 100644 addons/default/visiosoft/media-field_type/resources/lang/ku/message.php create mode 100644 addons/default/visiosoft/media-field_type/resources/lang/ku/validation.php create mode 100644 addons/default/visiosoft/profile-module/resources/lang/ku/addon.php create mode 100644 addons/default/visiosoft/profile-module/resources/lang/ku/message.php create mode 100644 addons/default/visiosoft/profile-module/resources/lang/ku/setting.php create mode 100644 addons/default/visiosoft/singlefile-field_type/resources/lang/ku/addon.php create mode 100644 addons/default/visiosoft/singlefile-field_type/resources/lang/ku/button.php create mode 100644 addons/default/visiosoft/singlefile-field_type/resources/lang/ku/config.php create mode 100644 addons/default/visiosoft/singlefile-field_type/resources/lang/ku/message.php create mode 100644 addons/default/visiosoft/singlefile-field_type/resources/lang/ku/validation.php 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 2133fe5e8..862c857d8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'اعلان جديد', + 'new_classified' => 'تصنيف جديد', 'new_category' => 'فئة جديدة', 'new_country' => 'بلد جديد', 'new_city' => 'مدينة جديدة', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'تكوين خيار جديد', 'create_configurations' => 'تكوين التكوينات', 'replicate' => 'استنساخ', + 'fast_create' => 'إنشاء سريع', + 'publish' => 'ينشر', + 'import' => 'استيراد', ]; 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 cfe980640..de4353cf7 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'الفئة الفرعية 6' ], + 'cat8' => [ + 'name' => 'الفئة الفرعية 7' + ], + 'cat9' => [ + 'name' => 'الفئة الفرعية 8' + ], + 'cat10' => [ + 'name' => 'الفئة الفرعية 9' + ], 'currency' => [ 'name' => 'دقة' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'تفاصيل قائمة', 'preview' => 'معاينة', 'congratulations' => 'تهانينا', + 'ad_desc' => 'وصف الإعلان', + 'upload_photos' => 'تحميل الصور', + 'additional_fields' => 'حقول إضافية', + 'ad_location' => 'موقع الإعلان', 'free' => 'مجانا', 'ad_date' => 'تاريخ الإعلان', diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/message.php b/addons/default/visiosoft/advs-module/resources/lang/ar/message.php index 08bf96a8d..b039c7028 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "هذا الإعلان غير موجود!", 'select_location_error' => "الرجاء تحديد موقع على الخريطة!", 'this_ad_is_not_valid_anymore' => "هذا الإعلان غير صالح بعد الآن!", + 'approve_status_change' => "تم تعيين حالة إعلانك على نشطة!", + 'passive_status_change' => "تم تعيين حالة إعلانك على سلبية!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/section.php b/addons/default/visiosoft/advs-module/resources/lang/ar/section.php index 1c62db9c1..990f1490d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'ترتيب', ], + 'translations' => 'الترجمات', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ar/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ar/setting.php index 4891f2c1d..8bb78f999 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ar/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ar/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'المتجر', ], - + 'price_area_hidden' => [ + 'name' => 'منطقة السعر مخفية', + ], 'hide_price_filter' => [ 'name' => 'إخفاء عامل تصفية السعر', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'إظهار مسار التنقل عند إنشاء إعلان', ], + 'show_ads_count' => [ + 'name' => 'إظهار عدد الإعلانات', + 'instructions' => 'عرض الإعلانات الاعتماد على قائمة الفئات اليسرى', + ], + 'show_post_ad_agreement' => [ + 'name' => 'إظهار اتفاقية ما بعد الإعلان', + 'instructions' => 'قم بتشغيل هذا إذا كنت تريد عرض اتفاقية سياسة الخصوصية على صفحة إنشاء الإعلان', + ], + 'override_text' => [ + 'name' => 'تجاوز النص', + 'instructions' => 'القيمة القديمة: قيمة جديدة' + ], + 'steps_color' => [ + 'name' => 'خطوات اللون', + 'instructions' => 'يغير لون الخطوات التدريجية.' + ], + 'create_ad_button_color' => [ + 'name' => 'إنشاء لون زر الإعلان', + 'instructions' => 'يغير الزر الذي يظهر عند الانتهاء من اختيار فئة الإعلان الجديدة.' + ], ]; 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 5fe741f5b..fc1ee6b48 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Yeni Adv', + 'new_classified' => 'Yeni təsnif edilmişdir', 'new_category' => 'Yeni kateqoriya', 'new_country' => 'Yeni Ölkə', 'new_city' => 'Yeni Şəhər', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Yeni Seçim konfiqurasiyası', 'create_configurations' => 'Konfiqurasiyalar yaradın', 'replicate' => 'Təkrarlayın', + 'fast_create' => 'Sürətli yaradın', + 'publish' => 'Nəşr edin', + 'import' => 'İdxal', ]; 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 0fa01b47b..ca2f212b4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Alt kateqoriya 6' ], + 'cat8' => [ + 'name' => 'Alt kateqoriya 7' + ], + 'cat9' => [ + 'name' => 'Alt kateqoriya 8' + ], + 'cat10' => [ + 'name' => 'Alt kateqoriya 9' + ], 'currency' => [ 'name' => 'Valyuta' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'Listing Details', 'preview' => 'Önizləmə', 'congratulations' => 'Təbrik edirəm', + 'ad_desc' => 'Reklam Təsviri', + 'upload_photos' => 'Şəkillər yükləyin', + 'additional_fields' => 'Əlavə sahələr', + 'ad_location' => 'Reklam yeri', 'free' => 'Pulsuz', 'ad_date' => 'Reklam Tarixi', diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/message.php b/addons/default/visiosoft/advs-module/resources/lang/az/message.php index d2ae8a1b8..c95d3db49 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Bu reklam mövcud deyil!", 'select_location_error' => "Xahiş edirəm xəritədə bir yer seçin!", 'this_ad_is_not_valid_anymore' => "Bu reklam artıq etibarlı deyil!", + 'approve_status_change' => "Reklamınızın Vəziyyəti Aktivləşdirildi!", + 'passive_status_change' => "Reklamınızın Vəziyyəti Passiv təyin olundu!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/section.php b/addons/default/visiosoft/advs-module/resources/lang/az/section.php index ed9a24d67..da87d50b9 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Konfiqurasiya', ], + 'translations' => 'Tərcümə', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/az/setting.php b/addons/default/visiosoft/advs-module/resources/lang/az/setting.php index 7e4812b5b..023b49665 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/az/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/az/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Bazar yeri', ], - + 'price_area_hidden' => [ + 'name' => 'Qiymət sahəsi gizlidir', + ], 'hide_price_filter' => [ 'name' => 'Qiymət filtrini gizlət', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Reklam yaratarkən çörək parçasını göstərin', ], + 'show_ads_count' => [ + 'name' => 'Reklam sayını göstərin', + 'instructions' => 'Sol kateqoriyalar siyahısında reklamların sayını göstərin', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Post Elan Müqaviləsini Göstərin', + 'instructions' => 'Reklam yaratma səhifəsində bir məxfilik siyasəti müqaviləsini göstərmək istəyirsinizsə, bunu aktivləşdirin', + ], + 'override_text' => [ + 'name' => 'Mətni ləğv edin', + 'instructions' => 'Köhnə dəyər: Yeni dəyər' + ], + 'steps_color' => [ + 'name' => 'Adımlar Rəng', + 'instructions' => 'Proqressiv addımların rəngini dəyişdirir.' + ], + 'create_ad_button_color' => [ + 'name' => 'Reklam Düyməsini Rəng Yaradın', + 'instructions' => 'Yeni reklam kateqoriyası seçimi bitdikdə görünən düyməni dəyişdirir.' + ], ]; 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 9a51292f6..fffd2247f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'নতুন অ্যাড', + 'new_classified' => 'নতুন শ্রেণিবদ্ধ', 'new_category' => 'নতুন বিভাগ', 'new_country' => 'নতুন দেশ', 'new_city' => 'নতুন শহর', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'নতুন বিকল্প কনফিগারেশন', 'create_configurations' => 'কনফিগারেশন তৈরি করুন', 'replicate' => 'প্রতিলিপি', + 'fast_create' => 'দ্রুত তৈরি করুন', + 'publish' => 'প্রকাশ করুন', + 'import' => 'আমদানি করুন', ]; 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 dbbe6f259..0555180de 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'উপ বিভাগ 6' ], + 'cat8' => [ + 'name' => 'উপ বিভাগ 7' + ], + 'cat9' => [ + 'name' => 'উপ বিভাগ 8' + ], + 'cat10' => [ + 'name' => 'উপ বিভাগ 9' + ], 'currency' => [ 'name' => 'মুদ্রা' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'তালিকা বিবরণ', 'preview' => 'পূর্বরূপ', 'congratulations' => 'অভিনন্দন', + 'ad_desc' => 'বিজ্ঞাপন বিবরণ', + 'upload_photos' => 'ফটো আপলোড', + 'additional_fields' => 'অতিরিক্ত ক্ষেত্রসমূহ', + 'ad_location' => 'বিজ্ঞাপনের অবস্থান', 'free' => 'ফ্রি', 'ad_date' => 'বিজ্ঞাপন তারিখ', diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/message.php b/addons/default/visiosoft/advs-module/resources/lang/bn/message.php index 695063fc5..3caee866e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "এই বিজ্ঞাপনের অস্তিত্ব নেই!", 'select_location_error' => "দয়া করে মানচিত্রে একটি অবস্থান নির্বাচন করুন!", 'this_ad_is_not_valid_anymore' => "এই বিজ্ঞাপনটি আর বৈধ নয়!", + 'approve_status_change' => "আপনার বিজ্ঞাপনের স্থিতি সক্রিয় হয়ে গেছে!", + 'passive_status_change' => "আপনার বিজ্ঞাপনের স্ট্যাটাসটি প্যাসিভের জন্য সেট হয়ে গেছে!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/section.php b/addons/default/visiosoft/advs-module/resources/lang/bn/section.php index 76aa46fee..4883083ee 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'কনফিগারেশন', ], + 'translations' => 'অনুবাদ', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/bn/setting.php b/addons/default/visiosoft/advs-module/resources/lang/bn/setting.php index 018fba1d1..79b824406 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/bn/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/bn/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'মার্কেট প্লেস', ], - + 'price_area_hidden' => [ + 'name' => 'মূল্য অঞ্চল লুকানো', + ], 'hide_price_filter' => [ 'name' => 'দাম ফিল্টার লুকান', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'বিজ্ঞাপন তৈরি করার সময় ব্রেডক্রাম্ব প্রদর্শন করুন', ], + 'show_ads_count' => [ + 'name' => 'বিজ্ঞাপন গণনা দেখান', + 'instructions' => 'বাম বিভাগগুলির তালিকায় বিজ্ঞাপন গণনা দেখান', + ], + 'show_post_ad_agreement' => [ + 'name' => 'পোস্ট বিজ্ঞাপন চুক্তি প্রদর্শন করুন', + 'instructions' => 'আপনি বিজ্ঞাপন তৈরি পৃষ্ঠায় কোনও গোপনীয়তা নীতি চুক্তি প্রদর্শন করতে চাইলে এটি চালু করুন', + ], + 'override_text' => [ + 'name' => 'ওভাররাইড পাঠ্য', + 'instructions' => 'পুরানো মান: নতুন মান' + ], + 'steps_color' => [ + 'name' => 'পদক্ষেপের রঙ', + 'instructions' => 'প্রগতিশীল পদক্ষেপের রঙ পরিবর্তন করে।' + ], + 'create_ad_button_color' => [ + 'name' => 'বিজ্ঞাপন বোতামের রঙ তৈরি করুন', + 'instructions' => 'নতুন বিজ্ঞাপন বিভাগ নির্বাচন শেষ হলে যে বোতামটি প্রদর্শিত হবে তা পরিবর্তন করে।' + ], ]; 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 634aab996..aabd54531 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Neue Adv', + 'new_classified' => 'Neu klassifiziert', 'new_category' => 'Neue Kategorie', 'new_country' => 'Neues Land', 'new_city' => 'Neue Stadt', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Neue Optionskonfiguration', 'create_configurations' => 'Konfigurationen erstellen', 'replicate' => 'Replizieren', + 'fast_create' => 'Schnell erstellen', + 'publish' => 'Veröffentlichen', + 'import' => 'Importieren', ]; 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 81f01a215..943e98e20 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Unterkategorie 6' ], + 'cat8' => [ + 'name' => 'Unterkategorie 7' + ], + 'cat9' => [ + 'name' => 'Unterkategorie 8' + ], + 'cat10' => [ + 'name' => 'Unterkategorie 9' + ], 'currency' => [ 'name' => 'Währung' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Einzelheiten auflisten', 'preview' => 'Vorschau', 'congratulations' => 'Herzliche Glückwünsche', + 'ad_desc' => 'Werbebeschreibung', + 'upload_photos' => 'Fotos hochladen', + 'additional_fields' => 'Zusätzliche Felder', + 'ad_location' => 'Anzeigenposition', 'free' => 'Frei', 'ad_date' => 'Anzeigedatum', diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/message.php b/addons/default/visiosoft/advs-module/resources/lang/de/message.php index a63162494..f1423cc50 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Diese Anzeige existiert nicht!", 'select_location_error' => "Bitte wählen Sie einen Ort auf der Karte!", 'this_ad_is_not_valid_anymore' => "Diese Anzeige ist nicht mehr gültig!", + 'approve_status_change' => "Der Status Ihrer Anzeige wurde auf Aktiv gesetzt!", + 'passive_status_change' => "Der Status Ihrer Anzeige wurde auf Passiv gesetzt!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/section.php b/addons/default/visiosoft/advs-module/resources/lang/de/section.php index 862cebcbe..ca1a4b124 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Aufbau', ], + 'translations' => 'Übersetzungen', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/de/setting.php b/addons/default/visiosoft/advs-module/resources/lang/de/setting.php index 6d0b2e1c9..056efd080 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/de/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/de/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Marktplatz', ], - + 'price_area_hidden' => [ + 'name' => 'Preisbereich versteckt', + ], 'hide_price_filter' => [ 'name' => 'Preisfilter ausblenden', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Breadcrumb beim Erstellen einer Anzeige anzeigen', ], + 'show_ads_count' => [ + 'name' => 'Anzeigenanzahl anzeigen', + 'instructions' => 'Anzeigenanzahl in der linken Kategorieliste anzeigen', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Show Post Ad Agreement anzeigen', + 'instructions' => 'Aktivieren Sie diese Option, wenn Sie auf der Seite zur Anzeigenerstellung eine Datenschutzrichtlinie anzeigen möchten', + ], + 'override_text' => [ + 'name' => 'Text überschreiben', + 'instructions' => 'Alter Wert: Neuer Wert' + ], + 'steps_color' => [ + 'name' => 'Schritte Farbe', + 'instructions' => 'Ändert die Farbe der progressiven Schritte.' + ], + 'create_ad_button_color' => [ + 'name' => 'Farbe der Anzeigenschaltfläche erstellen', + 'instructions' => 'Ändert die Schaltfläche, die angezeigt wird, wenn die Auswahl der neuen Anzeigenkategorie abgeschlossen ist.' + ], ]; 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 132534632..a62110cc1 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Νέο Adv', + 'new_classified' => 'Νέα αγγελία', 'new_category' => 'Νέα κατηγορία', 'new_country' => 'Νέα χώρα', 'new_city' => 'Νέα πόλη', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Διαμόρφωση νέας επιλογής', 'create_configurations' => 'Δημιουργήστε διαμορφώσεις', 'replicate' => 'Αντιγραφή', + 'fast_create' => 'Γρήγορη δημιουργία', + 'publish' => 'Δημοσιεύω', + 'import' => 'Εισαγωγή', ]; 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 4a27f8a23..414c30e34 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Υποκατηγορία 6' ], + 'cat8' => [ + 'name' => 'Υποκατηγορία 7' + ], + 'cat9' => [ + 'name' => 'Υποκατηγορία 8' + ], + 'cat10' => [ + 'name' => 'Υποκατηγορία 9' + ], 'currency' => [ 'name' => 'Νόμισμα' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Λεπτομέρειες καταχώρησης', 'preview' => 'Προεπισκόπηση', 'congratulations' => 'Συγχαρητήρια', + 'ad_desc' => 'Περιγραφή διαφήμισης', + 'upload_photos' => 'Ανέβασε φωτογραφίες', + 'additional_fields' => 'Πρόσθετα πεδία', + 'ad_location' => 'Τοποθεσία διαφήμισης', 'free' => 'Ελεύθερος', 'ad_date' => 'Ημερομηνία διαφήμισης', diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/message.php b/addons/default/visiosoft/advs-module/resources/lang/el/message.php index 966509ecf..4dc010274 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Αυτή η διαφήμιση δεν υπάρχει!", 'select_location_error' => "Επιλέξτε μια τοποθεσία στον χάρτη!", 'this_ad_is_not_valid_anymore' => "Αυτή η διαφήμιση δεν είναι πλέον έγκυρη!", + 'approve_status_change' => "Η κατάσταση της διαφήμισής σας έχει ενεργοποιηθεί!", + 'passive_status_change' => "Η κατάσταση της διαφήμισής σας έχει οριστεί σε παθητική!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/section.php b/addons/default/visiosoft/advs-module/resources/lang/el/section.php index a77dff06f..65c6b7d2f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Διαμόρφωση', ], + 'translations' => 'Μεταφράσεις', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/el/setting.php b/addons/default/visiosoft/advs-module/resources/lang/el/setting.php index 6a08a4a90..0722e98f3 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/el/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/el/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Αγορά', ], - + 'price_area_hidden' => [ + 'name' => 'Κρυφή περιοχή τιμών', + ], 'hide_price_filter' => [ 'name' => 'Απόκρυψη φίλτρου τιμών', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Εμφάνιση Breadcrumb κατά τη δημιουργία μιας διαφήμισης', ], + 'show_ads_count' => [ + 'name' => 'Εμφάνιση πλήθους διαφημίσεων', + 'instructions' => 'Εμφάνιση πλήθους διαφημίσεων στην αριστερή λίστα κατηγοριών', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Εμφάνιση συμφωνίας μετά τη διαφήμιση', + 'instructions' => 'Ενεργοποιήστε το αν θέλετε να εμφανίσετε μια συμφωνία πολιτικής απορρήτου στη σελίδα δημιουργίας διαφημίσεων', + ], + 'override_text' => [ + 'name' => 'Παράκαμψη κειμένου', + 'instructions' => 'Παλιά τιμή: Νέα τιμή' + ], + 'steps_color' => [ + 'name' => 'Χρώμα βημάτων', + 'instructions' => 'Αλλάζει το χρώμα των προοδευτικών βημάτων.' + ], + 'create_ad_button_color' => [ + 'name' => 'Δημιουργία χρώματος κουμπιού διαφήμισης', + 'instructions' => 'Αλλάζει το κουμπί που εμφανίζεται όταν ολοκληρωθεί η νέα επιλογή κατηγορίας διαφημίσεων.' + ], ]; 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 2fa1d507e..0a66b2127 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Adv nuevo', + 'new_classified' => 'Nuevo clasificado', 'new_category' => 'Nueva categoría', 'new_country' => 'Nuevo país', 'new_city' => 'Ciudad Nueva', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Configuración de nueva opción', 'create_configurations' => 'Crear configuraciones', 'replicate' => 'Reproducir exactamente', + 'fast_create' => 'Creación rápida', + 'publish' => 'Publicar', + 'import' => 'Importar', ]; 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 74c841af2..3ab744d74 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Subcategoría 6' ], + 'cat8' => [ + 'name' => 'Subcategoría 7' + ], + 'cat9' => [ + 'name' => 'Subcategoría 8' + ], + 'cat10' => [ + 'name' => 'Subcategoría 9' + ], 'currency' => [ 'name' => 'Moneda' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'listado de detalles', 'preview' => 'Avance', 'congratulations' => 'Felicidades', + 'ad_desc' => 'Descripción del anuncio', + 'upload_photos' => 'Subir fotos', + 'additional_fields' => 'Campos Adicionales', + 'ad_location' => 'Ubicación del anuncio', 'free' => 'Gratis', 'ad_date' => 'Fecha de anuncio', diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/message.php b/addons/default/visiosoft/advs-module/resources/lang/es/message.php index 53f17df1b..bb4a5d412 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "¡Este anuncio no existe!", 'select_location_error' => "Seleccione una ubicación en el mapa.", 'this_ad_is_not_valid_anymore' => "¡Este anuncio ya no es válido!", + 'approve_status_change' => "¡El estado de su anuncio se ha establecido como activo!", + 'passive_status_change' => "¡El estado de su anuncio se ha establecido en pasivo!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/section.php b/addons/default/visiosoft/advs-module/resources/lang/es/section.php index 35717e972..0e4cb02a3 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Configuración', ], + 'translations' => 'Traducciones', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/es/setting.php b/addons/default/visiosoft/advs-module/resources/lang/es/setting.php index bfd99ad81..a661db31a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/es/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/es/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Market Place', ], - + 'price_area_hidden' => [ + 'name' => 'Zona de precio oculta', + ], 'hide_price_filter' => [ 'name' => 'Ocultar filtro de precio', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Mostrar ruta de navegación al crear un anuncio', ], + 'show_ads_count' => [ + 'name' => 'Mostrar recuento de anuncios', + 'instructions' => 'Mostrar el recuento de anuncios en la lista de categorías de la izquierda', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Mostrar acuerdo de publicación', + 'instructions' => 'Active esta opción si desea mostrar un acuerdo de política de privacidad en la página de creación de anuncios.', + ], + 'override_text' => [ + 'name' => 'Anular texto', + 'instructions' => 'Valor anterior: Valor nuevo' + ], + 'steps_color' => [ + 'name' => 'Color de pasos', + 'instructions' => 'Cambia el color de los pasos progresivos.' + ], + 'create_ad_button_color' => [ + 'name' => 'Crear color de botón de anuncio', + 'instructions' => 'Cambia el botón que aparece cuando finaliza la selección de la nueva categoría de anuncios.' + ], ]; 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 f44b64cf4..e48d12e76 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'جدید جدید', + 'new_classified' => 'طبقه بندی جدید', 'new_category' => 'دسته بندی جدید', 'new_country' => 'کشور جدید', 'new_city' => 'شهر جدید', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'پیکربندی گزینه جدید', 'create_configurations' => 'تنظیمات را ایجاد کنید', 'replicate' => 'تکثیر', + 'fast_create' => 'سریع ایجاد کنید', + 'publish' => 'انتشار', + 'import' => 'وارد كردن', ]; 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 923412d23..5889c0ec9 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'کتگوری فرعی 6' ], + 'cat8' => [ + 'name' => 'زیر گروه 7' + ], + 'cat9' => [ + 'name' => 'زیر گروه 8' + ], + 'cat10' => [ + 'name' => 'زیر گروه 9' + ], 'currency' => [ 'name' => 'واحد پول' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'جزئیات لیست', 'preview' => 'پیش نمایش', 'congratulations' => 'تبریک می گویم', + 'ad_desc' => 'شرح آگهی', + 'upload_photos' => 'عکسها را بارگذاری کنید', + 'additional_fields' => 'زمینه های اضافی', + 'ad_location' => 'مکان تبلیغات', 'free' => 'رایگان', 'ad_date' => 'تاریخ آگهی', diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/message.php b/addons/default/visiosoft/advs-module/resources/lang/fa/message.php index 172b48412..832028e1c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "این آگهی وجود ندارد!", 'select_location_error' => "لطفاً مکانی را روی نقشه انتخاب کنید!", 'this_ad_is_not_valid_anymore' => "این آگهی دیگر معتبر نیست!", + 'approve_status_change' => "وضعیت آگهی شما روی فعال تنظیم شده است!", + 'passive_status_change' => "وضعیت آگهی شما منفعل تنظیم شده است!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/section.php b/addons/default/visiosoft/advs-module/resources/lang/fa/section.php index 1222c873a..602fc472d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'پیکربندی', ], + 'translations' => 'ترجمه ها', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fa/setting.php b/addons/default/visiosoft/advs-module/resources/lang/fa/setting.php index e3c6a0d0a..e98c3bb47 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fa/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fa/setting.php @@ -127,7 +127,9 @@ return [ 'market_place' => [ 'name' => 'محل بازار', ], - + 'price_area_hidden' => [ + 'name' => 'منطقه پنهان', + ], 'hide_price_filter' => [ 'name' => 'فیلتر قیمت مخفی کنید', ], @@ -198,4 +200,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'هنگام ایجاد تبلیغ ، Breadcrumb را نشان دهید', ], + 'show_ads_count' => [ + 'name' => 'نمایش تعداد تبلیغات', + 'instructions' => 'نمایش تعداد تبلیغات در لیست دسته های سمت چپ', + ], + 'show_post_ad_agreement' => [ + 'name' => 'نمایش قرارداد تبلیغات پست', + 'instructions' => 'اگر می خواهید توافق نامه سیاست حفظ حریم خصوصی را در صفحه ایجاد آگهی نمایش دهید ، این گزینه را روشن کنید', + ], + 'override_text' => [ + 'name' => 'متن را لغو کنید', + 'instructions' => 'ارزش قدیم: ارزش جدید' + ], + 'steps_color' => [ + 'name' => 'مراحل رنگ', + 'instructions' => 'رنگ مراحل پیشرفته را تغییر می دهد.' + ], + 'create_ad_button_color' => [ + 'name' => 'رنگ دکمه تبلیغات را ایجاد کنید', + 'instructions' => 'دکمه ای را که با پایان یافتن انتخاب دسته جدید آگهی نشان داده می شود ، تغییر می دهد.' + ], ]; 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 63d1f7a7b..08063a9ed 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Nouveau Adv', + 'new_classified' => 'Nouvelle petite annonce', 'new_category' => 'Nouvelle catégorie', 'new_country' => 'Nouveau pays', 'new_city' => 'Nouvelle ville', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Nouvelle configuration d\'option', 'create_configurations' => 'Créer des configurations', 'replicate' => 'Reproduire', + 'fast_create' => 'Création rapide', + 'publish' => 'Publier', + 'import' => 'Importer', ]; 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 16cc123ab..401a501b6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Sous catégorie 6' ], + 'cat8' => [ + 'name' => 'Sous-catégorie 7' + ], + 'cat9' => [ + 'name' => 'Sous-catégorie 8' + ], + 'cat10' => [ + 'name' => 'Sous-catégorie 9' + ], 'currency' => [ 'name' => 'Devise' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Détails de l\'annonce', 'preview' => 'Aperçu', 'congratulations' => 'Toutes nos félicitations', + 'ad_desc' => 'Description de l\'annonce', + 'upload_photos' => 'Télécharger des photos', + 'additional_fields' => 'Champs supplémentaires', + 'ad_location' => 'Emplacement de l\'annonce', 'free' => 'Gratuit', 'ad_date' => 'Date de l\'annonce', diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/message.php b/addons/default/visiosoft/advs-module/resources/lang/fr/message.php index 43751db78..2c61409c9 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Cette annonce n'existe pas!", 'select_location_error' => "Veuillez sélectionner un emplacement sur la carte!", 'this_ad_is_not_valid_anymore' => "Cette annonce n'est plus valide!", + 'approve_status_change' => "Le statut de votre annonce a été défini sur Actif!", + 'passive_status_change' => "Le statut de votre annonce a été défini sur Passif!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/section.php b/addons/default/visiosoft/advs-module/resources/lang/fr/section.php index 87f22728f..0fe97e7fa 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Configuration', ], + 'translations' => 'Traductions', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/fr/setting.php b/addons/default/visiosoft/advs-module/resources/lang/fr/setting.php index 3be3d0452..afcfaaed4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/fr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/fr/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Place du marché', ], - + 'price_area_hidden' => [ + 'name' => 'Zone de prix masquée', + ], 'hide_price_filter' => [ 'name' => 'Masquer le filtre de prix', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Afficher le fil d\'Ariane lors de la création d\'une annonce', ], + 'show_ads_count' => [ + 'name' => 'Afficher le nombre d\'annonces', + 'instructions' => 'Les annonces diffusées comptent dans la liste des catégories de gauche', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Afficher l\'accord de publication d\'annonce', + 'instructions' => 'Activez cette option si vous souhaitez afficher un accord de politique de confidentialité sur la page de création d\'annonces', + ], + 'override_text' => [ + 'name' => 'Remplacer le texte', + 'instructions' => 'Ancienne valeur: nouvelle valeur' + ], + 'steps_color' => [ + 'name' => 'Couleur des étapes', + 'instructions' => 'Modifie la couleur des étapes progressives.' + ], + 'create_ad_button_color' => [ + 'name' => 'Créer une couleur de bouton d\'annonce', + 'instructions' => 'Modifie le bouton qui apparaît lorsque la sélection de la nouvelle catégorie d\'annonces est terminée.' + ], ]; 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 582c354a0..72e4137a5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'עו"ד חדש', + 'new_classified' => 'מסווג חדש', 'new_category' => 'קטגוריה חדשה', 'new_country' => 'מדינה חדשה', 'new_city' => 'עיר חדשה', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'תצורת אפשרות חדשה', 'create_configurations' => 'צור תצורות', 'replicate' => 'העתק', + 'fast_create' => 'ליצור מהיר', + 'publish' => 'לְפַרְסֵם', + 'import' => 'יְבוּא', ]; 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 57a7a7803..a2420e97e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'תת קטגוריה 6' ], + 'cat8' => [ + 'name' => 'קטגוריית משנה 7' + ], + 'cat9' => [ + 'name' => 'קטגוריית משנה 8' + ], + 'cat10' => [ + 'name' => 'קטגוריית משנה 9' + ], 'currency' => [ 'name' => 'מטבע' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'פרטי רישום', 'preview' => 'תצוגה מקדימה', 'congratulations' => 'מזל טוב', + 'ad_desc' => 'תיאור המודעה', + 'upload_photos' => 'להעלות תמונות', + 'additional_fields' => 'שדות נוספים', + 'ad_location' => 'מיקום מודעה', 'free' => 'חינם', 'ad_date' => 'תאריך מודעה', diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/message.php b/addons/default/visiosoft/advs-module/resources/lang/he/message.php index 5364edbd1..bb4a905be 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "מודעה זו אינה קיימת!", 'select_location_error' => "אנא בחר מיקום במפה!", 'this_ad_is_not_valid_anymore' => "מודעה זו אינה תקפה יותר!", + 'approve_status_change' => "סטטוס המודעה שלך הוגדר לפעיל!", + 'passive_status_change' => "סטטוס המודעה שלך הוגדר כפסיבי!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/section.php b/addons/default/visiosoft/advs-module/resources/lang/he/section.php index ce71a759e..8535b58f4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'תְצוּרָה', ], + 'translations' => 'תרגומים', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/he/setting.php b/addons/default/visiosoft/advs-module/resources/lang/he/setting.php index 9c4cff393..bd88213cd 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/he/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/he/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'זירת מסחר', ], - + 'price_area_hidden' => [ + 'name' => 'אזור מחיר מוסתר', + ], 'hide_price_filter' => [ 'name' => 'הסתר מסנן מחירים', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'הראה פירורי לחם בעת יצירת מודעה', ], + 'show_ads_count' => [ + 'name' => 'ספירת מודעות הצגה', + 'instructions' => 'הצגת מודעות נספרת ברשימת הקטגוריות השמאלית', + ], + 'show_post_ad_agreement' => [ + 'name' => 'הצג הסכם מודעות לפרסום', + 'instructions' => 'הפעל זאת אם ברצונך להציג הסכם מדיניות פרטיות בדף יצירת המודעות', + ], + 'override_text' => [ + 'name' => 'עקוף טקסט', + 'instructions' => 'ערך ישן: ערך חדש' + ], + 'steps_color' => [ + 'name' => 'מדרגות צבע', + 'instructions' => 'משנה את צבע הצעדים המתקדמים.' + ], + 'create_ad_button_color' => [ + 'name' => 'צור צבע כפתור מודעה', + 'instructions' => 'משנה את הכפתור שמופיע לאחר בחירת קטגוריית המודעות החדשה.' + ], ]; 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 5f816503e..8cd30243f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'नई सलाह', + 'new_classified' => 'नया वर्गीकृत', 'new_category' => 'नई श्रेणी', 'new_country' => 'नया देश', 'new_city' => 'नया शहर', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'नया विकल्प कॉन्फ़िगरेशन', 'create_configurations' => 'कॉन्फ़िगरेशन बनाएँ', 'replicate' => 'दोहराने', + 'fast_create' => 'तेजी से बना', + 'publish' => 'प्रकाशित करना', + 'import' => 'आयात', ]; 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 fc038a3ec..d270de964 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'उप श्रेणी ६' ], + 'cat8' => [ + 'name' => 'उप श्रेणी 7' + ], + 'cat9' => [ + 'name' => 'उप श्रेणी 8' + ], + 'cat10' => [ + 'name' => 'उप श्रेणी ९' + ], 'currency' => [ 'name' => 'मुद्रा' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'सूची विवरण', 'preview' => 'पूर्वावलोकन', 'congratulations' => 'बधाई हो', + 'ad_desc' => 'विज्ञापन विवरण', + 'upload_photos' => 'तस्वीरें अपलोड करें', + 'additional_fields' => 'अतिरिक्त क्षेत्र', + 'ad_location' => 'विज्ञापन स्थान', 'free' => 'नि: शुल्क', 'ad_date' => 'विज्ञापन तिथि', diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/message.php b/addons/default/visiosoft/advs-module/resources/lang/hi/message.php index 0d635ddf6..7fd4c2b5f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "यह विज्ञापन मौजूद नहीं है!", 'select_location_error' => "कृपया मानचित्र पर एक स्थान चुनें!", 'this_ad_is_not_valid_anymore' => "यह विज्ञापन अब मान्य नहीं है!", + 'approve_status_change' => "आपके विज्ञापन की स्थिति सक्रिय हो गई है!", + 'passive_status_change' => "आपके विज्ञापन की स्थिति निष्क्रिय हो गई है!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/section.php b/addons/default/visiosoft/advs-module/resources/lang/hi/section.php index fe068e3de..6478f44c6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'विन्यास', ], + 'translations' => 'अनुवाद', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/hi/setting.php b/addons/default/visiosoft/advs-module/resources/lang/hi/setting.php index 8fa64270e..4f32dff3b 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/hi/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/hi/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'मार्केट प्लेस', ], - + 'price_area_hidden' => [ + 'name' => 'मूल्य क्षेत्र छिपा हुआ', + ], 'hide_price_filter' => [ 'name' => 'मूल्य फ़िल्टर छिपाएँ', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'विज्ञापन बनाते समय ब्रेडक्रंब दिखाएं', ], + 'show_ads_count' => [ + 'name' => 'विज्ञापन गणना दिखाएं', + 'instructions' => 'विज्ञापन को बाईं श्रेणियों की सूची में दिखाएं', + ], + 'show_post_ad_agreement' => [ + 'name' => 'विज्ञापन विज्ञापन दिखाएं', + 'instructions' => 'यदि आप विज्ञापन निर्माण पृष्ठ पर गोपनीयता नीति अनुबंध प्रदर्शित करना चाहते हैं तो इसे चालू करें', + ], + 'override_text' => [ + 'name' => 'पाठ को ओवरराइड करें', + 'instructions' => 'पुराना मूल्य: नया मूल्य' + ], + 'steps_color' => [ + 'name' => 'चरण रंग', + 'instructions' => 'प्रगतिशील चरणों का रंग बदलता है।' + ], + 'create_ad_button_color' => [ + 'name' => 'विज्ञापन बटन रंग बनाएँ', + 'instructions' => 'नया विज्ञापन श्रेणी चयन समाप्त होने पर दिखाई देने वाले बटन को बदल देता है।' + ], ]; 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 b5f5da879..d419c5241 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Nuovo Adv', + 'new_classified' => 'Nuovo classificato', 'new_category' => 'Nuova categoria', 'new_country' => 'Nuovo Paese', 'new_city' => 'Nuova città', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Nuova configurazione delle opzioni', 'create_configurations' => 'Crea configurazioni', 'replicate' => 'Replicare', + 'fast_create' => 'Creazione veloce', + 'publish' => 'Pubblicare', + 'import' => 'Importare', ]; 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 7eddd9550..5cf63d829 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Sottocategoria 6' ], + 'cat8' => [ + 'name' => 'Sottocategoria 7' + ], + 'cat9' => [ + 'name' => 'Sottocategoria 8' + ], + 'cat10' => [ + 'name' => 'Sottocategoria 9' + ], 'currency' => [ 'name' => 'Moneta' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Dettagli dell\'inserzione', 'preview' => 'Anteprima', 'congratulations' => 'Congratulazioni', + 'ad_desc' => 'Descrizione dell\'annuncio', + 'upload_photos' => 'Caricare foto', + 'additional_fields' => 'Campi aggiuntivi', + 'ad_location' => 'Posizione dell\'annuncio', 'free' => 'Gratuito', 'ad_date' => 'Data dell\'annuncio', diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/message.php b/addons/default/visiosoft/advs-module/resources/lang/it/message.php index 723be86e2..e68be8bf3 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Questo annuncio non esiste!", 'select_location_error' => "Seleziona una posizione sulla mappa!", 'this_ad_is_not_valid_anymore' => "Questo annuncio non è più valido!", + 'approve_status_change' => "Lo stato del tuo annuncio è stato impostato su Attivo!", + 'passive_status_change' => "Lo stato del tuo annuncio è stato impostato su Passivo!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/section.php b/addons/default/visiosoft/advs-module/resources/lang/it/section.php index 79f2f02dd..011316dba 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Configurazione', ], + 'translations' => 'Traduzioni', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/it/setting.php b/addons/default/visiosoft/advs-module/resources/lang/it/setting.php index b18b57ab0..55506219d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/it/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/it/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Piazza del mercato', ], - + 'price_area_hidden' => [ + 'name' => 'Area di Prezzo Nascosta', + ], 'hide_price_filter' => [ 'name' => 'Nascondi filtro prezzo', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Mostra breadcrumb durante la creazione di un annuncio', ], + 'show_ads_count' => [ + 'name' => 'Mostra conteggio annunci', + 'instructions' => 'Mostra il conteggio degli annunci nell\'elenco delle categorie a sinistra', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Mostra accordo post annuncio', + 'instructions' => 'Attiva questa opzione se desideri visualizzare un accordo sulla politica sulla privacy nella pagina di creazione dell\'annuncio', + ], + 'override_text' => [ + 'name' => 'Sostituisci testo', + 'instructions' => 'Vecchio valore: nuovo valore' + ], + 'steps_color' => [ + 'name' => 'Colore dei passaggi', + 'instructions' => 'Cambia il colore dei gradini progressivi.' + ], + 'create_ad_button_color' => [ + 'name' => 'Crea colore pulsante annuncio', + 'instructions' => 'Modifica il pulsante che viene visualizzato al termine della selezione della nuova categoria di annunci.' + ], ]; 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 bf5cf24a8..feab30637 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => '新しい広告', + 'new_classified' => '新しい機密', 'new_category' => '新たなカテゴリー', 'new_country' => '新しい国', 'new_city' => '新しい街', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => '新しいオプション構成', 'create_configurations' => '構成の作成', 'replicate' => '複製する', + 'fast_create' => '高速作成', + 'publish' => '公開する', + 'import' => 'インポート', ]; 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 544b2c576..400ba3244 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'サブカテゴリー6' ], + 'cat8' => [ + 'name' => 'サブカテゴリー7' + ], + 'cat9' => [ + 'name' => 'サブカテゴリー8' + ], + 'cat10' => [ + 'name' => 'サブカテゴリー9' + ], 'currency' => [ 'name' => '通貨' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'リストの詳細', 'preview' => 'プレビュー', 'congratulations' => 'おめでとう', + 'ad_desc' => '広告の説明', + 'upload_photos' => '写真をアップロードする', + 'additional_fields' => '追加フィールド', + 'ad_location' => '広告の場所', 'free' => '自由', 'ad_date' => '広告日', diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/message.php b/addons/default/visiosoft/advs-module/resources/lang/ja/message.php index 817a5a8b4..e80f938c7 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "この広告は存在しません!", 'select_location_error' => "地図上で場所を選択してください!", 'this_ad_is_not_valid_anymore' => "この広告はもう有効ではありません!", + 'approve_status_change' => "広告のステータスがアクティブに設定されました。", + 'passive_status_change' => "広告のステータスがパッシブに設定されました。", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/section.php b/addons/default/visiosoft/advs-module/resources/lang/ja/section.php index d584867aa..813ab893b 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => '構成', ], + 'translations' => '翻訳', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ja/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ja/setting.php index 61dbe408a..acfab5d25 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ja/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ja/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'マーケットプレイス', ], - + 'price_area_hidden' => [ + 'name' => '隠された価格帯', + ], 'hide_price_filter' => [ 'name' => '価格フィルターを非表示', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => '広告を作成するときにブレッドクラムを表示する', ], + 'show_ads_count' => [ + 'name' => '広告数を表示', + 'instructions' => '左側のカテゴリリストに広告数を表示する', + ], + 'show_post_ad_agreement' => [ + 'name' => 'ポスト広告契約を表示する', + 'instructions' => '広告作成ページにプライバシーポリシー契約を表示する場合は、これをオンにします', + ], + 'override_text' => [ + 'name' => 'テキストを上書きする', + 'instructions' => '古い値:新しい値' + ], + 'steps_color' => [ + 'name' => 'ステップカラー', + 'instructions' => 'プログレッシブステップの色を変更します。' + ], + 'create_ad_button_color' => [ + 'name' => '広告ボタンの色を作成する', + 'instructions' => '新しい広告カテゴリの選択が終了したときに表示されるボタンを変更します。' + ], ]; 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 b42d42fff..bf2686e27 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => '새로운 Adv', + 'new_classified' => '새로운 분류', 'new_category' => '새 분류', 'new_country' => '새로운 나라', 'new_city' => '새로운 도시', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => '새로운 옵션 구성', 'create_configurations' => '구성 만들기', 'replicate' => '뒤로 젖히다', + 'fast_create' => '빠른 생성', + 'publish' => '게시', + 'import' => '수입', ]; 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 ed76f3643..488230b04 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => '하위 카테고리 6' ], + 'cat8' => [ + 'name' => '하위 카테고리 7' + ], + 'cat9' => [ + 'name' => '하위 카테고리 8' + ], + 'cat10' => [ + 'name' => '하위 카테고리 9' + ], 'currency' => [ 'name' => '통화' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => '리스팅 세부 사항', 'preview' => '시사', 'congratulations' => '축하합니다', + 'ad_desc' => '광고 설명', + 'upload_photos' => '사진 업로드', + 'additional_fields' => '추가 필드', + 'ad_location' => '광고 위치', 'free' => '비어 있는', 'ad_date' => '광고 날짜', diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/message.php b/addons/default/visiosoft/advs-module/resources/lang/ko/message.php index 7bd882307..8589a95d0 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "이 광고는 존재하지 않습니다!", 'select_location_error' => "지도에서 위치를 선택하세요!", 'this_ad_is_not_valid_anymore' => "이 광고는 더 이상 유효하지 않습니다!", + 'approve_status_change' => "귀하의 광고 상태가 활성으로 설정되었습니다!", + 'passive_status_change' => "귀하의 광고 상태가 수동으로 설정되었습니다!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/section.php b/addons/default/visiosoft/advs-module/resources/lang/ko/section.php index 8b050dd88..f46c2375e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => '구성', ], + 'translations' => '번역', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ko/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ko/setting.php index c1632b9b5..498def4af 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ko/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ko/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => '마켓 플레이스', ], - + 'price_area_hidden' => [ + 'name' => '가격 영역 숨김', + ], 'hide_price_filter' => [ 'name' => '가격 필터 숨기기', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => '광고를 만들 때 이동 경로 표시', ], + 'show_ads_count' => [ + 'name' => '광고 수 표시', + 'instructions' => '왼쪽 카테고리 목록에 광고 개수 표시', + ], + 'show_post_ad_agreement' => [ + 'name' => '광고 게시 계약 표시', + 'instructions' => '광고 작성 페이지에 개인 정보 보호 정책을 표시하려면이 옵션을 켜십시오.', + ], + 'override_text' => [ + 'name' => '텍스트 무시', + 'instructions' => '기존 가치 : 새로운 가치' + ], + 'steps_color' => [ + 'name' => '단계 색상', + 'instructions' => '점진적 단계 색상을 변경합니다.' + ], + 'create_ad_button_color' => [ + 'name' => '광고 버튼 색상 만들기', + 'instructions' => '새 광고 카테고리 선택이 완료되면 표시되는 버튼을 변경합니다.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/addon.php b/addons/default/visiosoft/advs-module/resources/lang/ku/addon.php new file mode 100644 index 000000000..b5bf75e16 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Reklam', + 'name' => 'Modula Ads', + 'description' => 'Modula Ads', +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/button.php b/addons/default/visiosoft/advs-module/resources/lang/ku/button.php new file mode 100644 index 000000000..90df85280 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/button.php @@ -0,0 +1,46 @@ + 'Nifşek nû', + 'new_classified' => 'Nifşek nû', + 'new_category' => 'Kategoriya Nû', + 'new_country' => 'Welatê Nû', + 'new_city' => 'Bajarê Nû', + 'new_district' => 'Navçeya Nû', + 'new_neighborhood' => 'Taxa Nû', + 'new_village' => 'Gundê Nû', + 'edit' => "Weşandin", + 'approve' => "Destûrdan", + 'decline' => 'Paşvegerrî', + 'extend' => 'N', + 'extend_all' => 'Hemî Dirêj Bikin', + 'convert_currency' => 'Dirav veguherînin', + 'categories' => 'Kategorî', + 'sub_category' => 'Kategoriyên bin', + 'add_sub_category' => 'Kategoriya Jêrîn zêde bikin', + 'sub_cities' => 'Bajarên bin', + 'add_sub_cities' => 'Sub City-ê zêde bikin', + 'add_sub_districts' => 'Navçeya Sub zêde bikin', + 'add_sub_neighborhoods' => 'Taxa Jêr Zêdekirin', + 'add_sub_village' => 'Gundê Binî Zêde bikin', + 'sub_districts' => 'Sub District', + 'sub_neighborhoods' => 'Taxên Bin', + 'sub_village' => 'Gundê binî', + 'general_settings' => 'Mîhengên Giştî', + 'save_category' => 'Kategorî tomar bikin', + 'change_owner' => 'Xwedî biguherin', + 'update_category' => [ + 'name' => 'Kategorî nûve bikin' + ], + 'new_option' => 'Vebijarka Nû', + 'export' => 'Eksport', + 'new_productoption' => 'Hilbera Hilbera Nû', + 'new_productoptions_value' => 'Nirxa vebijarka Hilbera Nû', + 'new_options_configuration' => 'Veavakirina Vebijarka Nû', + 'new_option_configuration' => 'Veavakirina Vebijarka Nû', + 'create_configurations' => 'Configurations biafirînin', + 'replicate' => 'Replicate', + 'fast_create' => 'Fast biafirîne', + 'publish' => 'Weşandin', + 'import' => 'Malanîn', +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/currency.php b/addons/default/visiosoft/advs-module/resources/lang/ku/currency.php new file mode 100644 index 000000000..9559d16cf --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/currency.php @@ -0,0 +1,6 @@ + 'Dolar', + 'EUR' => 'Ewro', +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/field.php b/addons/default/visiosoft/advs-module/resources/lang/ku/field.php new file mode 100644 index 000000000..0746060f5 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/field.php @@ -0,0 +1,344 @@ + [ + 'name' => 'Nav' + ], + 'order' => [ + 'name' => 'Emir' + ], + 'slug' => [ + 'name' => 'Şeytanok' + ], + 'parent_category' => [ + 'name' => 'Dêûbav' + ], + 'category' => [ + 'name' => 'Title Kategorî' + ], + 'price' => [ + 'name' => 'Biha' + ], + 'standard_price' => [ + 'name' => 'Bihayê Standard' + ], + 'date' => [ + 'name' => 'Rojek' + ], + 'photo' => [ + 'name' => 'Wêne' + ], + 'video' => [ + 'name' => 'Vîdyo' + ], + 'map' => [ + 'name' => 'Qert' + ], + 'stock' => [ + 'name' => 'Embar' + ], + 'advs_desc' => [ + 'name' => 'Terîf' + ], + 'online_payment' => [ + 'name' => 'Tezmînata Serhêl' + ], + 'city' => [ + 'name' => 'Bajar' + ], + 'country' => [ + 'name' => 'Welat' + ], + 'district' => [ + 'name' => 'Herêm' + ], + 'neighborhood' => [ + 'name' => 'Cînarî' + ], + 'village' => [ + 'name' => 'Gûnd' + ], + 'files' => [ + 'name' => 'Wêne' + ], + 'cat1' => [ + 'name' => 'Kategorî Sereke' + ], + 'cat2' => [ + 'name' => 'Kategoriya Jêrîn 1' + ], + 'cat3' => [ + 'name' => 'Kategoriya Jêrîn 2' + ], + 'cat4' => [ + 'name' => 'Kategoriya Jêrîn 3' + ], + 'cat5' => [ + 'name' => 'Kategoriya Jêrîn 4' + ], + 'cat6' => [ + 'name' => 'Kategoriya Jêrîn 5' + ], + 'cat7' => [ + 'name' => 'Bine Kategorî 6' + ], + 'cat8' => [ + 'name' => 'Kategoriya Jêrîn 7' + ], + 'cat9' => [ + 'name' => 'Kategoriya Jêrîn 8' + ], + 'cat10' => [ + 'name' => 'Kategoriya Jêrîn 9' + ], + 'currency' => [ + 'name' => 'Diravcins' + ], + 'status' => [ + 'name' => 'Cî', + 'option' => [ + 'approved' => 'Pejirandin', + 'expired' => 'Xilas bû', + 'unpublished' => 'Neweşandî', + 'pending_admin' => 'Li bendê Admin', + 'pending_user' => 'Bikarhênera bendewar' + ] + ], + 'pending_adv' => [ + 'name' => 'Neweşandî' + ], + 'finish_at' => [ + 'name' => 'Dawî Li' + ], + 'cover_photo' => [ + 'name' => 'Cover Photo' + ], + 'favs_adv' => [ + 'name' => 'Fav Ads' + ], + 'my_adv' => [ + 'name' => 'ADVS' + ], + 'description' => 'Terîf', + 'explanation' => 'Daxûyanî', + 'type' => [ + 'name' => 'Awa' + ], + 'parent_adv' => [ + 'name' => 'Girêdayî Ad' + ], + 'value' => [ + 'name' => 'Giranî' + ], + 'list' => 'Rêzok', + 'home' => 'Xane', + 'list-page' => 'Rûpela Rûpelê', + 'search' => 'Gerr', + 'recommended' => 'Ji bo We Reklamên Pêşniyar kirin', + 'filter' => 'Parzûn', + 'sort' => 'Jiberhevxistin', + 'sort_by' => 'Sort By', + 'pick_option' => 'Vebijarek hilbijêrin', + 'pick_ordering' => 'Rêzkirin', + 'price_high' => 'Bihayê Bilind heya Nizm', + 'price_low' => 'Bihayê Kêm heya Bilind', + 'newest' => 'Nûtirîn', + 'oldest' => 'Kevintirîn', + 'address_a_z' => 'Navnîşan (A-Z)', + 'address_z_a' => 'Navnîşan (ji Z-A)', + 'categories' => [ + 'name' => 'Kategorî' + ], + 'all_categories' => 'Hemî Kategorî', + 'location' => 'Cîh', + 'send_message' => 'Peyam bişînin', + 'phone_gsm' => 'Telefonê Gsm', + 'phone_office' => 'Telefonê Ofîsê', + 'add_to_favorites' => "Add to Favorites", + 'send' => 'Şandin', + 'search_name' => 'Navê Lêgerînê', + 'my_favorite_searches' => 'Lêgerînên Bijare', + 'search_desc' => 'Hûn dikarin li vir vebijarkên lêgerîna xweya bijare zêde bikin û rêve bibin.', + 'complaint_placeholder' => 'Agahdariyên giliyê xwe li vir binivîsin.', + 'show_details' => 'Agahdariyên Nîşan bidin', + 'ad_actions' => 'Çalakiyên Ad', + 'edit' => 'Weşandin', + 'approve' => 'Destûrdan', + 'passive' => "Nejîr", + 'offered_by' => 'Ji hêla Pêşniyar kirin', + 'more_ads_by' => 'More Ads By', + 'click_phone' => 'Hejmara têlefonê nîşan bide', + 'share' => 'Par', + 'report' => 'Vê reklamê ragihînin', + 'features' => 'Taybetmendî', + "streetview" => "Dîmena Kolanê", + 'recommended_ads' => 'Ji bo We Reklamên Pêşniyar kirin', + 'new' => 'Nşh', + 'short_info' => 'Kurte Agahdarî', + 'secure_trading' => 'Bazirganiya Ewle', + '24/7' => '24/7 Piştgirî', + 'easy_trading' => 'Bazirganiya Hêsan', + 'need_help' => 'Alîkarî hewce dike?', + 'give_a_call' => 'Gazî bikin', + 'message_sent' => 'Peyam entandin!', + 'asap' => 'Peyam şandî, dê firotkar asap bi we re têkilî dayne.', + 'ad_id' => 'Ad Id', + 'contact_with' => 'Têkilî Bi', + 'create_adv' => 'Ad biafirînin', + 'edit_adv' => 'Ad Adrast bike', + 'mandatory_fields' => 'Zeviyên Mecbûrî', + 'ad_post' => 'Ad Post', + 'sell_item' => 'Tiştek an karûbarek bifroşin', + 'search_save' => 'Lêgerîna bijare bi serkeftî hate tomarkirin', + 'address' => 'Navnîşan', + 'email' => 'E-name', + 'phone' => 'Telefon', + 'send_us_your_feedback' => 'Bersiva xwe ji me re bişînin', + 'online_shopping' => 'STENDIN', + 'approved' => 'Bi Serkeftin Hat Pejirandin', + 'extended' => 'Bi Serkeftin Berfireh kirin', + 'declined' => 'Bi Serkeftin Daketin', + 'search_on_map' => 'Li Nexşeyê bigerin', + 'post_free_ad' => 'Reklamek Belaş bişînin', + 'select_a_category' => 'Kategoriyek hilbijêrin', + 'select_a_sub_category' => 'Kategoriyek Jêrîn hilbijêrin', + 'all_dopings_added' => 'Hemî celebên dopîngê ji bo vê reklamê têne zêdekirin.', + 'is_get_adv' => [ + 'name' => 'STENDIN' + ], + 'corporate_info' => 'Agahdariya Pargîdanî', + 'featured_ads' => "Reklamên Taybetmendî", + 'trending_ads' => 'Reklamên Trendind', + 'search_ads_result_message' => [ + 'name' => ': reklamên hejmartin ji bo: lêgerîna navan hate dîtin', + ], + 'total' => 'Hemî', + 'quantity' => 'Jimarî', + 'view_cart' => 'Cart View', + 'no_ads' => 'Reklam nehat dîtin.', + 'show_display_mode' => [ + 'map' => 'Qert', + 'list' => 'Rêzok', + ], + 'advs_list_table_thead' => [ + 'name' => 'Navê Ad', + 'price' => 'Biha', + 'publish_at' => 'Dîroka Ad', + 'location_city' => 'Bajar', + 'location_country' => 'Welat', + ], + 'show_list_view' => [ + 'name' => 'Rêzok', + ], + 'show_table_view' => [ + 'name' => 'Mêz', + ], + 'showcase' => [ + 'name' => 'Pêşangeh', + ], + 'new_ad' => [ + 'name' => 'Reklama Nû', + ], + 'profile' => [ + 'name' => 'Tengal', + ], + 'my_ads' => [ + 'name' => 'Reklamên min', + ], + 'sold_out' => [ + 'name' => 'Hate firotin', + ], + 'edit_category' => 'Kategorî biguherîne', + 'set_category' => 'Kategorî danîn', + 'max' => [ + 'name' => 'Max', + ], + 'min' => [ + 'name' => 'Min', + ], + 'in_the_last_24_hours' => [ + 'name' => 'Di 24 Demjimêrên Dawîn de' + ], + 'in_the_last_day' => [ + 'name' => 'Di 24 Demjimêrên Dawîn de' + ], + 'in_the_last_week' => [ + 'name' => 'Di Hefteya Dawîn de' + ], + 'in_the_last_month' => [ + 'name' => 'Di Meha Dawîn de' + ], + 'ads_with_photo' => [ + 'name' => 'Reklamên Bi Wêne' + ], + 'ads_with_video' => [ + 'name' => 'Reklamên Bi Vîdyo' + ], + 'yes' => [ + 'name' => 'Erê' + ], + "no_location" => "Cîh nayê hilbijartin.", + "continue" => 'Berdewamkirin', + "gallery" => 'Galerya', + "ads" => 'Reklam', + "were_found" => 'hatin dîtin.', + + // Pending screen + 'pending_message_1' => 'Reklam di Pêvajoya Pejirandinê de ye', + 'pending_message_2' => "Dîroka Nûvekirina Ad", + 'pending_message_3' => 'Wextê Bendewariyê Texmîn kirin', + 'pending_message_4' => 'Dema ku di pêvajoya pejirandinê de derbas bûye dê li dema dopîngê were zêdekirin.', + 'pending_message_5' => 'Di pêvajoya pejirandinê de têkildarî reklamê ji navenda bangê çu danûstandin nayê kirin.', + 'hours' => 'saetan', + + // Preview page + 'preview_text' => [ + 'part_1' => 'Heke di derheqê reklama we de agahdariya jêrîn rast e, bişkoja "Berdewam" bikirtînin û biçin gava paşîn.', + 'part_2' => 'Heke na, bişkoja "Biguherîne" bikirtînin.', + ], + 'views' => 'Dîtin', + + // Detail page + "no_street_view" => "Li vî cîhî wêneyek dîtina kolanan tune", + 'edit_my_contact_info' => 'Agahdariya Têkiliya Min Biguherînin', + 'update_my_contact_info' => 'agahdariya têkiliya min nûve bikin', + 'contact_info' => 'Agahdariya têkiliyê', + 'ad_info' => 'Agahdariya Ad', + + // Select cat + 'select_category_step_by_step' => 'Gav bi Gav Kategorî hilbijêrin', + + // New create page + 'options' => 'Vebijarkên', + 'category_selection' => 'Hilbijartina Kategorî', + 'listing_details' => 'Details hûrgulî', + 'preview' => 'Pêşnerîn', + 'congratulations' => 'Pîrozbahî', + 'ad_desc' => 'Ad Description', + 'upload_photos' => 'Wêneyan bar bikin', + 'additional_fields' => 'Zeviyên Zêdeyî', + 'ad_location' => 'Cihê Ad', + + 'free' => 'Belaş', + 'ad_date' => 'Dîroka Ad', + 'photo_video' => 'Wêne, Vîdyo', + 'and_above' => 'û li jor', + 'and_below' => 'û li jêr', + 'clear_all' => 'Hemî Paqij Bikin', + 'balances' => 'Hevsengî', + 'packages' => 'Packages', + 'dopings' => 'Dopîng', + 'advs' => 'Advs', + 'site' => 'Malper', + 'subscription' => 'Abonetî', + 'created' => 'Afirandin', + 'product_option' => [ + 'name' => 'Hilbijarka Hilberê' + ], + 'option_json' => [ + 'name' => 'Dibe' + ], + 'old_price' => [ + 'name' => 'Bihayê Kevn' + ], +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/message.php b/addons/default/visiosoft/advs-module/resources/lang/ku/message.php new file mode 100644 index 000000000..71d17e0c1 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/message.php @@ -0,0 +1,32 @@ + 'Hilbera ku tê xwestin niha tune an neçalak e', + 'please_payment' => 'Ji kerema xwe bidin', + 'bank_account_info' => 'Agahdariya hesabê bankê', + 'agreement' => 'Bi tikandina Weşanê, hûn ji Mercên Bikaranînê û Siyaseta Veşarî ya me qebûl dikin ku hûn xwediyê rewa yê vî tiştî ne.', + 'update_category_msg' => 'Kategoriya dabeşkirî dê were nûve kirin.', + 'updated_category_msg' => 'Kategorî bi serfirazî hate guherandin.', + 'create_ad_with_post_cat' => [ + 'title' => "Hilbijartina kategoriyê qediya.", + 'success' => true, + 'continueBtn' => "Berdewamkirin", + ], + 'update_category_info' => 'Ji kerema xwe kategoriyê nûve bikin.', + 'filter_by_search_msg' => 'Parzûn Bi Lêgerînê.', + 'delete_author_error' => 'Hûn nekarin mesajek ku ne ya we be jêbirin', + 'success_delete' => 'Ad Deleted', + 'pending_ad_status' => 'Reklama we li benda pejirandina Edîtorê ye.', + 'extended' => ': reklam (s) hejmar bi serfirazî hate dirêj kirin.', + 'category_not_exist' => 'Ev kategorî êdî tune!', + 'currency_converted' => 'Dirav Bi Serkeftin Ve Veguherandin.', + 'choose_user' => 'Bikarhêner hilbijêrin', + 'owner_updated_successfully' => 'Xwedî Serkeftin Hat Nûvekirin!', + 'no_add_found' => 'Adek nehat dîtin!', + 'replicated_success' => 'Reklam bi serfirazî hate dubare kirin!', + 'ad_doesnt_exist' => "Ev reklam tune!", + 'select_location_error' => "Ji kerema xwe li ser nexşeyê cîhek hilbijêrin!", + 'this_ad_is_not_valid_anymore' => "Ev reklam ne derbasdar e êdî!", + 'approve_status_change' => "Rewşa Reklama We Çalak Bûye!", + 'passive_status_change' => "Rewşa Reklama We Pasîf Bû!", +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/permission.php b/addons/default/visiosoft/advs-module/resources/lang/ku/permission.php new file mode 100644 index 000000000..772fa1a14 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/permission.php @@ -0,0 +1,100 @@ + [ + 'name' => 'Reklam', + 'option' => [ + 'read' => 'Dikarin reklaman bixwînin?', + 'write' => 'Dikarin reklaman biafirînin / sererast bikin?', + 'delete' => 'Dikarin reklaman jêbirin?', + ], + ], + 'categories' => [ + 'name' => 'Kategorî', + 'option' => [ + 'read' => 'Ma dikarin kategoriyan bixwînin?', + 'write' => 'Dikare kategoriyan biafirîne / sererast bike?', + 'delete' => 'Ma dikare kategoriyan jê bibe?', + ], + ], + 'village' => [ + 'name' => 'Gûnd', + 'option' => [ + 'read' => 'Dikarin gund bixwînin?', + 'write' => 'Ma dikare gund çêbike / sererast bike?', + 'delete' => 'Ma dikare gund jê bibe?', + ], + ], + 'custom_fields' => [ + 'name' => 'Zeviyên xwerû', + 'option' => [ + 'read' => 'Ma dikarin qadên xwerû bixwînin?', + 'write' => 'Ma dikare qadên xwerû çêbike / sererast bike?', + 'delete' => 'Ma dikarin qadên xwerû jêbirin?', + ], + ], + 'custom_field_advs' => [ + 'name' => 'Reklamên qada xwerû', + 'option' => [ + 'read' => 'Ma dikarin reklamên qada xwerû bixwînin?', + 'write' => 'Ma dikare reklamên qada xwerû çêbike / sererast bike?', + 'delete' => 'Ma dikare reklamên qada xwerû jê bibe?', + ], + ], + 'cf_values' => [ + 'name' => 'Nirxên Cf', + 'option' => [ + 'read' => 'Ma dikare nirxên cf bixwîne?', + 'write' => 'Ma dikare nirxên cf biafirîne / sererast bike?', + 'delete' => 'Ma dikare nirxên cf jê bibe?', + ], + ], + 'options' => [ + 'name' => 'Vebijarkên', + 'option' => [ + 'read' => 'Vebijarkan dikarin bixwînin?', + 'write' => 'Ma dikare vebijarkan biafirîne / sererast bike?', + 'delete' => 'Vebijarkên dikarin jêbirin?', + ], + ], + 'productoptions' => [ + 'name' => 'Hilbijartinên hilberê', + 'option' => [ + 'read' => 'Ma dikarin hilberînan hilînin?', + 'write' => 'Dikare hilberînan vebêje / biafirîne?', + 'delete' => 'Ma dikare hilberên hilberê hilweşîne?', + ], + ], + 'productoptions_value' => [ + 'name' => 'Nirxê hilberînan', + 'option' => [ + 'read' => 'Ma dikare nirxa hilberînan bixwîne?', + 'write' => 'Ma dikare nirxa hilberîneriyan biafirîne / sererast bike?', + 'delete' => 'Ma dikare nirxa hilberînan jê bibe?', + ], + ], + 'options_configuration' => [ + 'name' => 'Veavakirina vebijarkan', + 'option' => [ + 'read' => 'Ma veavakirina vebijarkan dikare bixwîne?', + 'write' => 'Ma dikare veavakirina vebijarkan biafirîne / sererast bike?', + 'delete' => 'Ma veavakirina vebijarkan dikare jê bibe?', + ], + ], + 'option_configuration' => [ + 'name' => 'Veavakirina vebijarkê', + 'option' => [ + 'read' => 'Hûn dikarin veavakirina vebijarkê bixwînin?', + 'write' => 'Ma dikare veavakirina vebijarkê biafirîne / sererast bike?', + 'delete' => 'Ma dikare veavakirina vebijarkê were jêbirin?', + ], + ], + 'option_configuration' => [ + 'name' => 'Veavakirina vebijarkê', + 'option' => [ + 'read' => 'Hûn dikarin veavakirina vebijarkê bixwînin?', + 'write' => 'Ma dikare veavakirina vebijarkê biafirîne / sererast bike?', + 'delete' => 'Ma dikare veavakirina vebijarkê were jêbirin?', + ], + ], +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/section.php b/addons/default/visiosoft/advs-module/resources/lang/ku/section.php new file mode 100644 index 000000000..7072efc6a --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/section.php @@ -0,0 +1,59 @@ + [ + 'title' => 'Reklam', + ], + 'categories' => [ + 'title' => 'Kategorî', + ], + 'countries' => [ + 'title' => 'Welat', + ], + 'cities' => [ + 'title' => 'Bajar', + ], + 'districts' => [ + 'title' => 'Navçe', + ], + 'neighborhoods' => [ + 'title' => 'Taxan', + ], + 'village' => [ + 'title' => 'Gûnd', + ], + 'custom_fields' => [ + 'title' => 'Zeviyên xwerû', + ], + 'custom_field_advs' => [ + 'title' => 'Reklamên qada xwerû', + ], + 'cf_values' => [ + 'title' => 'Nirxên Cf', + ], + 'fields' => [ + 'title' => 'Zeviyên xwerû' + ], + 'assets_clear' => [ + 'name' => 'Hebûnên zelal' + ], + 'general' => 'Giştî', + 'ads' => 'Reklam', + 'user' => 'Bikaranîvan', + 'filter' => 'Parzûn', + 'create_ad' => 'Ad biafirînin', + 'options' => [ + 'title' => 'Vebijarkên', + ], + 'ads_image' => 'Ads Wêne', + 'product_options' => [ + 'title' => 'Vebijarkên', + ], + 'productoptions_value' => [ + 'title' => 'Nirx Nirx', + ], + 'option_configuration' => [ + 'title' => 'Veavakirina', + ], + 'translations' => 'Wergeran', +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ku/setting.php new file mode 100644 index 000000000..96180c7f3 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/setting.php @@ -0,0 +1,222 @@ + [ + 'name' => 'Jixweber Pejirandin', + ], + 'default_view_type' => [ + 'name' => 'Default View Type', + ], + 'hide_zero_price' => [ + 'name' => 'Ger Zero Bihayê Veşêre', + 'instructions' => 'Heke bihayê reklamê 0 be bihayê veşêrin', + ], + 'estimated_pending_time' => [ + 'name' => 'Dema Bendewarî ya Texmînkirî', + 'instructions' => 'Di Saetan de', + ], + 'default_published_time' => [ + 'name' => 'Wextê Weşana Default', + ], + 'address' => [ + 'name' => 'Navnîşana Têkiliyê', + ], + 'phone' => [ + 'name' => 'Têlefonê Têkilî', + ], + 'favicon' => [ + 'name' => 'Favicon', + ] + ,'map_coordinates_long' => [ + 'name' => 'Nexşeya Hevrêziya Dirêj', + ], + 'map_coordinates_lat' => [ + 'name' => 'Nexşeya Hevrêziya Lat', + ], + 'iban_numbers' => [ + 'name' => 'IBAN', + ], + 'logo' => [ + 'name' => 'Logo', + ], + 'ogImage' => [ + 'name' => 'Logoya Parvekirina Civakî', + 'warning' => 'Divê ew bi çareseriya 1200 x 630 be. ', + + ], + 'currencies' => [ + 'name' => 'Dravên Çalak', + ], + 'latest-limit' => [ + 'name' => 'Sînora herî dawî', + ], + 'site_address' => [ + 'name' => 'Navnîşana malperê', + 'warning' => 'Auto zêdekirî www. www.sitename.com ', + ], + 'google_map_key' => [ + 'name' => 'Nexşeya Google Key Api', + ], + + 'default_country' => [ + 'name' => 'Default Ad Country', + ], + 'free_currencyconverterapi_key' => [ + 'name' => 'Mifteya API-ya veguherînerê Pereyê' + ], + 'default_city' => [ + 'name' => 'Default Ad City', + ], + 'default_district' => [ + 'name' => 'Default Ad District', + ], + 'default_neighborhood' => [ + 'name' => 'Default Ad Taxa', + ], + 'default_currency' => [ + 'name' => 'Dravê Ad Ademî', + ], + 'default_GET' => [ + 'name' => 'Default Ad GET', + ], + 'twitter' => [ + 'name' => 'Twitter', + ], + 'facebook' => [ + 'name' => 'Facebook', + ], + 'youtube' => [ + 'name' => 'Youtube', + ], + 'google' => [ + 'name' => 'gûgil', + ], + 'listing_page_image' => [ + 'name' => 'Navnîşkirina Wêneya Rûpelê', + ], + 'hide_standard_price_field' => [ + 'name' => 'Zeviya Bihayê Standard veşêrin', + ], + 'hide_options_field' => [ + 'name' => 'Qada Vebijarkan Veşêre', + ], + 'hide_village_field' => [ + 'name' => 'Zeviyê Gundê Veşêre', + ], + 'hide_configurations' => [ + 'name' => 'Bişkoja Configurations Veşêre', + 'instructions' => 'Bişkoja Veavakirina Di Rûpelê Pêşdîtina Adê de Veşêre', + ], + 'make_map_required' => [ + 'name' => 'Nexşeyê Pêdivî ye', + 'instructions' => 'Dema ku reklamek diafirîne bikarhêner hewce dike ku pîneyek li ser nexşeyê bicîh bike', + ], + 'hide_listing_standard_price' => [ + 'name' => 'Veşêrin Navnîşa Bihayê Standard', + ], + 'enabled_currencies' => [ + 'name' => 'Pereyên Çalakkirî', + ], + 'google_statistic_code' => [ + 'name' => 'Google Code Code', + ], + 'register_email_field' => [ + 'name' => 'Endamtiya Serlêdana E-nameya Endamtiyê', + ], + 'market_place' => [ + 'name' => 'Cihê Sûkê', + ], + 'price_area_hidden' => [ + 'name' => 'Qada Bihayê Veşartî', + ], + 'hide_price_filter' => [ + 'name' => 'Parzûna Bihayê Veşêre', + ], + 'hide_date_filter' => [ + 'name' => 'Parzûna Dîrokê Veşêre', + ], + 'hide_photo_filter' => [ + 'name' => 'Photo Filter Veşêre', + ], + 'hide_map_filter' => [ + 'name' => 'Parzûna Nexşeyê veşêrin', + ], + 'show_lang_url' => [ + 'name' => 'Ji bo URL Parametreya Lang nîşan bidin', + ], + 'popular_ads_limit' => [ + 'name' => 'Sînorên Ads Popular', + ], + + //Image + + 'image_resize_backend' => [ + 'name' => 'Mezinahiya Wêne Paşve', + ], + 'full_image_width' => [ + 'name' => 'Firehiya Wêne Tevahî', + ], + 'full_image_height' => [ + 'name' => 'Bilindahiya Wêneya Tevahî', + ], + 'medium_image_width' => [ + 'name' => 'Firehiya Wêne ya Navîn', + ], + 'medium_image_height' => [ + 'name' => 'Bilindahiya Wêne ya Navîn', + ], + 'thumbnail_width' => [ + 'name' => 'Firehiya Thumbnail', + ], + 'thumbnail_height' => [ + 'name' => 'Bilindahiya Thumbnail', + ], + 'add_canvas' => [ + 'name' => 'Canvas zêde bikin', + ], + 'image_canvas_width' => [ + 'name' => 'Firehiya Canvas Wêne', + ], + 'image_canvas_height' => [ + 'name' => 'Wêne Canvas Bilindî', + ], + 'watermark_type' => [ + 'name' => 'Tîpa ava avê', + ], + 'watermark_text' => [ + 'name' => 'Wateya Nivîsarê', + ], + 'watermark_image' => [ + 'name' => 'Wêne Watermark', + ], + 'watermark_position' => [ + 'name' => 'Positiona Watermark', + ], + 'user_filter_limit' => [ + 'name' => 'Sînora Parzûna Bikarhêner', + 'instructions' => 'Di panelê rêveberê de' + ], + 'show_breadcrumb_when_creating_ad' => [ + 'name' => 'Dema Afirandina Reklamek Breadcrumb nîşan bidin', + ], + 'show_ads_count' => [ + 'name' => 'Nîşan Ads Count', + 'instructions' => 'Reklamên li ser lîsteya kategoriyên çepê hesab bikin nîşan bikin', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Peymana Ad Ad-ê nîşan bide', + 'instructions' => 'Heke hûn dixwazin li ser rûpela afirandina reklamê peymana siyaseta nepenîtiyê nîşan bikin vê yekê vekin', + ], + 'override_text' => [ + 'name' => 'Nivîsarê zêde bikin', + 'instructions' => 'Nirxa Kevn: Nirxa Nû' + ], + 'steps_color' => [ + 'name' => 'Steps Color', + 'instructions' => 'Rengê gavên pêşverû diguherîne.' + ], + 'create_ad_button_color' => [ + 'name' => 'Rengê Bişkoja Adê biafirînin', + 'instructions' => 'Bişkoja ku dema hilbijartina kategoriya reklama nû xilas dibe diguheze.' + ], +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/stream.php b/addons/default/visiosoft/advs-module/resources/lang/ku/stream.php new file mode 100644 index 000000000..660320289 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/stream.php @@ -0,0 +1,34 @@ + [ + 'name' => 'Advs', + ], + 'categories' => [ + 'name' => 'Kategorî', + ], + 'village' => [ + 'name' => 'Gûnd', + ], + 'custom_fields' => [ + 'name' => 'Zeviyên xwerû', + ], + 'custom_field_advs' => [ + 'name' => 'Fieldêwirmendên qada xwerû', + ], + 'cf_values' => [ + 'name' => 'Nirxên Cf', + ], + 'options' => [ + 'name' => 'Vebijarkên', + ], + 'product_options' => [ + 'name' => 'Vebijarkên Hilberê', + ], + 'productoptions_value' => [ + 'name' => 'Nirxê vebijarkan', + ], + 'option_configuration' => [ + 'name' => 'Veavakirina', + ], +]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ku/view.php b/addons/default/visiosoft/advs-module/resources/lang/ku/view.php new file mode 100644 index 000000000..8d409c707 --- /dev/null +++ b/addons/default/visiosoft/advs-module/resources/lang/ku/view.php @@ -0,0 +1,5 @@ + 'Neqedya', +]; 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 e08d68148..9202056f2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Nieuwe Adv', + 'new_classified' => 'Nieuw ingedeeld', 'new_category' => 'Nieuwe categorie', 'new_country' => 'Nieuw Land', 'new_city' => 'Nieuwe stad', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Nieuwe optieconfiguratie', 'create_configurations' => 'Maak configuraties', 'replicate' => 'Repliceren', + 'fast_create' => 'Snel aanmaken', + 'publish' => 'Publiceren', + 'import' => 'Importeren', ]; 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 2f9fa9049..728c18edf 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Subcategorie 6' ], + 'cat8' => [ + 'name' => 'Subcategorie 7' + ], + 'cat9' => [ + 'name' => 'Subcategorie 8' + ], + 'cat10' => [ + 'name' => 'Subcategorie 9' + ], 'currency' => [ 'name' => 'Valuta' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Lijst details', 'preview' => 'Voorbeeld', 'congratulations' => 'Gefeliciteerd', + 'ad_desc' => 'Beschrijving van de Reclame', + 'upload_photos' => 'Foto\'s uploaden', + 'additional_fields' => 'Extra velden', + 'ad_location' => 'Advertentielocatie', 'free' => 'Vrij', 'ad_date' => 'Advertentiedatum', diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/message.php b/addons/default/visiosoft/advs-module/resources/lang/nl/message.php index b640d1115..363c2bb8c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Deze advertentie bestaat niet!", 'select_location_error' => "Selecteer een locatie op de kaart!", 'this_ad_is_not_valid_anymore' => "Deze advertentie is niet meer geldig!", + 'approve_status_change' => "De status van uw advertentie is ingesteld op Actief!", + 'passive_status_change' => "De status van uw advertentie is ingesteld op passief!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/section.php b/addons/default/visiosoft/advs-module/resources/lang/nl/section.php index bf7535d66..f01176e9e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Configuratie', ], + 'translations' => 'Vertalingen', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/nl/setting.php b/addons/default/visiosoft/advs-module/resources/lang/nl/setting.php index 4eee06e17..b90087be7 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/nl/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/nl/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Marktplaats', ], - + 'price_area_hidden' => [ + 'name' => 'Prijsgebied verborgen', + ], 'hide_price_filter' => [ 'name' => 'Prijsfilter verbergen', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Toon breadcrumb bij het maken van een advertentie', ], + 'show_ads_count' => [ + 'name' => 'Toon het aantal advertenties', + 'instructions' => 'Toon het aantal advertenties in de lijst met linkercategorieën', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Toon advertentieovereenkomst', + 'instructions' => 'Schakel dit in als u een privacybeleidsovereenkomst wilt weergeven op de pagina voor het maken van advertenties', + ], + 'override_text' => [ + 'name' => 'Tekst overschrijven', + 'instructions' => 'Oude waarde: nieuwe waarde' + ], + 'steps_color' => [ + 'name' => 'Stappen kleur', + 'instructions' => 'Verandert de kleur van de progressieve stappen.' + ], + 'create_ad_button_color' => [ + 'name' => 'Kleur van advertentieknop maken', + 'instructions' => 'Wijzigt de knop die wordt weergegeven wanneer de selectie van de nieuwe advertentiecategorie is voltooid.' + ], ]; 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 e36257357..3173823e5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Nowy Adv', + 'new_classified' => 'Nowy sklasyfikowany', 'new_category' => 'Nowa kategoria', 'new_country' => 'Nowy kraj', 'new_city' => 'Nowe Miasto', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Nowa konfiguracja opcji', 'create_configurations' => 'Utwórz konfiguracje', 'replicate' => 'Replika', + 'fast_create' => 'Szybkie tworzenie', + 'publish' => 'Publikować', + 'import' => 'Import', ]; 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 e1df999b2..6dde713cc 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Podkategoria 6' ], + 'cat8' => [ + 'name' => 'Podkategoria 7' + ], + 'cat9' => [ + 'name' => 'Podkategoria 8' + ], + 'cat10' => [ + 'name' => 'Podkategoria 9' + ], 'currency' => [ 'name' => 'Waluta' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'Szczegóły aukcji', 'preview' => 'Zapowiedź', 'congratulations' => 'Gratulacje', + 'ad_desc' => 'opis reklamy', + 'upload_photos' => 'Załadować zdjęcia', + 'additional_fields' => 'Dodatkowe pola', + 'ad_location' => 'Lokalizacja reklamy', 'free' => 'Wolny', 'ad_date' => 'Data ogłoszenia', diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/message.php b/addons/default/visiosoft/advs-module/resources/lang/pl/message.php index 258cb973d..9d71f7715 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Ta reklama nie istnieje!", 'select_location_error' => "Wybierz lokalizację na mapie!", 'this_ad_is_not_valid_anymore' => "Ta reklama jest już nieważna!", + 'approve_status_change' => "Stan Twojej reklamy został ustawiony jako Aktywny!", + 'passive_status_change' => "Stan Twojej reklamy został ustawiony na pasywny!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/section.php b/addons/default/visiosoft/advs-module/resources/lang/pl/section.php index 96f1e3ae9..e4d150812 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Konfiguracja', ], + 'translations' => 'Tłumaczenia', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pl/setting.php b/addons/default/visiosoft/advs-module/resources/lang/pl/setting.php index ac06305be..4d8ec36ac 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pl/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pl/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Rynek', ], - + 'price_area_hidden' => [ + 'name' => 'Ukryty obszar cen', + ], 'hide_price_filter' => [ 'name' => 'Ukryj filtr cen', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Pokaż menu nawigacyjne podczas tworzenia reklamy', ], + 'show_ads_count' => [ + 'name' => 'Pokaż liczbę reklam', + 'instructions' => 'Pokaż liczbę reklam na liście kategorii po lewej stronie', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Pokaż umowę opublikowania ogłoszenia', + 'instructions' => 'Włącz tę opcję, jeśli chcesz wyświetlać umowę o polityce prywatności na stronie tworzenia reklamy', + ], + 'override_text' => [ + 'name' => 'Zastąp tekst', + 'instructions' => 'Stara wartość: nowa wartość' + ], + 'steps_color' => [ + 'name' => 'Kolor kroków', + 'instructions' => 'Zmienia kolor stopniowych kroków.' + ], + 'create_ad_button_color' => [ + 'name' => 'Utwórz kolor przycisku reklamy', + 'instructions' => 'Zmienia przycisk wyświetlany po zakończeniu wyboru nowej kategorii reklam.' + ], ]; 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 05424756f..a2c36ee01 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Novo Adv', + 'new_classified' => 'Novo classificado', 'new_category' => 'Nova categoria', 'new_country' => 'Novo país', 'new_city' => 'Nova cidade', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Configuração de nova opção', 'create_configurations' => 'Criar configurações', 'replicate' => 'Replicar', + 'fast_create' => 'Criação rápida', + 'publish' => 'Publicar', + 'import' => 'Importar', ]; 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 ba3f01871..9a3d49ce2 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Subcategoria 6' ], + 'cat8' => [ + 'name' => 'Subcategoria 7' + ], + 'cat9' => [ + 'name' => 'Sub Categoria 8' + ], + 'cat10' => [ + 'name' => 'Subcategoria 9' + ], 'currency' => [ 'name' => 'Moeda' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Detalhes da lista', 'preview' => 'Antevisão', 'congratulations' => 'Parabéns', + 'ad_desc' => 'Descrição de Anúncio', + 'upload_photos' => 'Upload fotos', + 'additional_fields' => 'Campos Adicionais', + 'ad_location' => 'Localização do anúncio', 'free' => 'Livre', 'ad_date' => 'Data do Anúncio', diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/message.php b/addons/default/visiosoft/advs-module/resources/lang/pt/message.php index 8bcaf3e22..ab77b709e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Este anúncio não existe!", 'select_location_error' => "Selecione um local no mapa!", 'this_ad_is_not_valid_anymore' => "Este anúncio não é mais válido!", + 'approve_status_change' => "O status do seu anúncio foi definido como ativo!", + 'passive_status_change' => "O status do seu anúncio foi definido como passivo!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/section.php b/addons/default/visiosoft/advs-module/resources/lang/pt/section.php index 7ac1e1554..45bf46c6d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Configuração', ], + 'translations' => 'Traduções', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/pt/setting.php b/addons/default/visiosoft/advs-module/resources/lang/pt/setting.php index 77ef94831..bac68b84a 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/pt/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/pt/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Mercado', ], - + 'price_area_hidden' => [ + 'name' => 'Área de preço oculta', + ], 'hide_price_filter' => [ 'name' => 'Ocultar filtro de preço', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Mostrar localização atual ao criar um anúncio', ], + 'show_ads_count' => [ + 'name' => 'Mostrar contagem de anúncios', + 'instructions' => 'Exibir contagem de anúncios na lista de categorias à esquerda', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Mostrar Acordo de Postagem', + 'instructions' => 'Ative-o se quiser exibir um acordo de política de privacidade na página de criação de anúncios', + ], + 'override_text' => [ + 'name' => 'Substituir Texto', + 'instructions' => 'Valor antigo: novo valor' + ], + 'steps_color' => [ + 'name' => 'Passos Cor', + 'instructions' => 'Altera a cor dos passos progressivos.' + ], + 'create_ad_button_color' => [ + 'name' => 'Criar cor do botão do anúncio', + 'instructions' => 'Altera o botão que aparece quando a seleção da nova categoria de anúncio é concluída.' + ], ]; 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 de9c40590..d5f9cc0e5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Avocat nou', + 'new_classified' => 'Nou clasificat', 'new_category' => 'Categorie noua', 'new_country' => 'Țara nouă', 'new_city' => 'Oras nou', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Configurare opțiune nouă', 'create_configurations' => 'Creați configurații', 'replicate' => 'Replică', + 'fast_create' => 'Crearea rapidă', + 'publish' => 'Publica', + 'import' => 'Import', ]; 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 f4ca1866c..58fcafeee 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Subcategoria 6' ], + 'cat8' => [ + 'name' => 'Subcategoria 7' + ], + 'cat9' => [ + 'name' => 'Subcategoria 8' + ], + 'cat10' => [ + 'name' => 'Subcategoria 9' + ], 'currency' => [ 'name' => 'Valută' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'Detalii listare', 'preview' => 'previzualizare', 'congratulations' => 'Felicitări', + 'ad_desc' => 'Descrierea anunțului', + 'upload_photos' => 'Încarcă fotografii', + 'additional_fields' => 'Câmpuri suplimentare', + 'ad_location' => 'Locația anunțului', 'free' => 'Gratuit', 'ad_date' => 'Data publicității', diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/message.php b/addons/default/visiosoft/advs-module/resources/lang/ro/message.php index 9346c9b51..4ff12a0b0 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Acest anunț nu există!", 'select_location_error' => "Vă rugăm să selectați o locație pe hartă!", 'this_ad_is_not_valid_anymore' => "Acest anunț nu mai este valabil!", + 'approve_status_change' => "Starea anunțului dvs. a fost activată!", + 'passive_status_change' => "Starea anunțului dvs. a fost setată la pasivă!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/section.php b/addons/default/visiosoft/advs-module/resources/lang/ro/section.php index a517ecc8b..c5667c5d7 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Configurare', ], + 'translations' => 'Traduceri', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ro/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ro/setting.php index d0bd2b043..6b0480355 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ro/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ro/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Piata de desfacere', ], - + 'price_area_hidden' => [ + 'name' => 'Zona de preț ascunsă', + ], 'hide_price_filter' => [ 'name' => 'Ascundeți filtrul de preț', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Afișați pesmet atunci când creați un anunț', ], + 'show_ads_count' => [ + 'name' => 'Afișați numărul de anunțuri', + 'instructions' => 'Afișați anunțurile în lista de categorii din stânga', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Afișați acordul de postare a anunțului', + 'instructions' => 'Activați acest lucru dacă doriți să afișați un acord privind politica de confidențialitate pe pagina de creare a anunțului', + ], + 'override_text' => [ + 'name' => 'Înlocuiți textul', + 'instructions' => 'Valoare veche: valoare nouă' + ], + 'steps_color' => [ + 'name' => 'Pași Culoare', + 'instructions' => 'Schimbă culoarea treptelor progresive.' + ], + 'create_ad_button_color' => [ + 'name' => 'Creați culoarea butonului publicitar', + 'instructions' => 'Schimbă butonul care se afișează la finalizarea selecției noii categorii de anunțuri.' + ], ]; 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 a18c94425..d1c106cc8 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Новый адв', + 'new_classified' => 'Новое объявление', 'new_category' => 'Новая категория', 'new_country' => 'Новая Страна', 'new_city' => 'Новый город', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Новая конфигурация опций', 'create_configurations' => 'Создать конфигурации', 'replicate' => 'Тиражировать', + 'fast_create' => 'Быстрое создание', + 'publish' => 'Публиковать', + 'import' => 'Импортировать', ]; 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 255797171..d1ad286f1 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Подкатегория 6' ], + 'cat8' => [ + 'name' => 'Подкатегория 7' + ], + 'cat9' => [ + 'name' => 'Подкатегория 8' + ], + 'cat10' => [ + 'name' => 'Подкатегория 9' + ], 'currency' => [ 'name' => 'валюта' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Детали объявления', 'preview' => 'Предварительный просмотр', 'congratulations' => 'Поздравления', + 'ad_desc' => 'Описание объявления', + 'upload_photos' => 'Загрузить фотографии', + 'additional_fields' => 'Дополнительные поля', + 'ad_location' => 'Местоположение объявления', 'free' => 'Бесплатно', 'ad_date' => 'Дата объявления', diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/message.php b/addons/default/visiosoft/advs-module/resources/lang/ru/message.php index 8a3395ea0..eba6f454c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Такого объявления не существует!", 'select_location_error' => "Пожалуйста, выберите место на карте!", 'this_ad_is_not_valid_anymore' => "Это объявление больше не действует!", + 'approve_status_change' => "Статус вашего объявления установлен на \"Активно\"!", + 'passive_status_change' => "Статус вашего объявления установлен на пассивный!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/section.php b/addons/default/visiosoft/advs-module/resources/lang/ru/section.php index 780e7b619..dd064a785 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Конфигурация', ], + 'translations' => 'Переводы', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ru/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ru/setting.php index cf7b0d526..58a48cd06 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ru/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ru/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Рыночная площадь', ], - + 'price_area_hidden' => [ + 'name' => 'Цена Площадь Скрыта', + ], 'hide_price_filter' => [ 'name' => 'Скрыть фильтр цен', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Показывать хлебные крошки при создании объявления', ], + 'show_ads_count' => [ + 'name' => 'Показать количество объявлений', + 'instructions' => 'Показывать количество объявлений в левом списке категорий', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Показать соглашение о публикации рекламы', + 'instructions' => 'Включите это, если вы хотите отображать соглашение о политике конфиденциальности на странице создания рекламы.', + ], + 'override_text' => [ + 'name' => 'Заменить текст', + 'instructions' => 'Старое значение: новое значение' + ], + 'steps_color' => [ + 'name' => 'Цвет ступеней', + 'instructions' => 'Изменяет цвет прогрессивных шагов.' + ], + 'create_ad_button_color' => [ + 'name' => 'Создать цвет кнопки объявления', + 'instructions' => 'Изменяет кнопку, которая появляется после завершения выбора новой категории объявлений.' + ], ]; 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 696d47979..a2b0f86b6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Njoftime i ri', + 'new_classified' => 'Klasifikimi i ri', 'new_category' => 'Kategoria e re', 'new_country' => 'Shteti i ri', 'new_city' => 'Qark i Ri', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Konfigurimi i ri i opsionit', 'create_configurations' => 'Krijoni konfigurime', 'replicate' => 'Kopjoni', + 'fast_create' => 'Krijo shpejt', + 'publish' => 'Publikoni', + 'import' => 'Importit', ]; 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 afd2499da..e2a831b0c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Nënkategoria 6' ], + 'cat8' => [ + 'name' => 'Nën Kategoria 7' + ], + 'cat9' => [ + 'name' => 'Nën Kategoria 8' + ], + 'cat10' => [ + 'name' => 'Nënkategoria 9' + ], 'currency' => [ 'name' => 'Monedhë' ], @@ -306,6 +315,10 @@ return [ 'listing_details' => 'Detajet e Listimit', 'preview' => 'Paraqitje', 'congratulations' => 'Urime', + 'ad_desc' => 'Përshkrimi i reklamës', + 'upload_photos' => 'Ngarko Fotografitë', + 'additional_fields' => 'Fushat shtesë', + 'ad_location' => 'Vendndodhja e reklamës', 'free' => 'Falas', 'ad_date' => 'Data e shpalljes', diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/message.php b/addons/default/visiosoft/advs-module/resources/lang/sq/message.php index 6ade24af9..d27526915 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Kjo shpallje nuk ekziston!", 'select_location_error' => "Ju lutemi zgjidhni një vendndodhje në hartë!", 'this_ad_is_not_valid_anymore' => "Kjo reklamë nuk është më e vlefshme!", + 'approve_status_change' => "Statusi i Reklamës suaj Setshtë vendosur në Aktiv!", + 'passive_status_change' => "Statusi i Reklamës suaj Setshtë vendosur në pasiv!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/section.php b/addons/default/visiosoft/advs-module/resources/lang/sq/section.php index 085445c09..e0b12d9e4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Konfigurimi', ], + 'translations' => 'Përkthime', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sq/setting.php b/addons/default/visiosoft/advs-module/resources/lang/sq/setting.php index 3a279a519..b58b5cafc 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sq/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sq/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Vendi i tregut', ], - + 'price_area_hidden' => [ + 'name' => 'Zona e Çmimit e Fshehur', + ], 'hide_price_filter' => [ 'name' => 'Fsheh Filterin e Pricemimeve', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Tregoni Breadcrumb kur krijoni një reklamë', ], + 'show_ads_count' => [ + 'name' => 'Shfaq Numrin e Reklamave', + 'instructions' => 'Shfaq reklamat në listën e kategorive të majta', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Shfaq Marrëveshjen për shpalljen e postimit', + 'instructions' => 'Aktivizo këtë nëse dëshiron të shfaqësh një marrëveshje të politikës së privatësisë në faqen e krijimit të reklamës', + ], + 'override_text' => [ + 'name' => 'Mbishkruaj tekstin', + 'instructions' => 'Vlera e Vjetër: Vlera e Re' + ], + 'steps_color' => [ + 'name' => 'Hapat Ngjyra', + 'instructions' => 'Ndryshon ngjyrën e hapave progresivë.' + ], + 'create_ad_button_color' => [ + 'name' => 'Krijo ngjyrën e butonit të reklamës', + 'instructions' => 'Ndryshon butonin që shfaqet kur të përfundojë zgjedhja e kategorisë së re të reklamës.' + ], ]; 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 783db652e..64815bf40 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Ny adv', + 'new_classified' => 'Ny klassificering', 'new_category' => 'Ny kategori', 'new_country' => 'Nytt land', 'new_city' => 'Ny stad', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Ny alternativkonfiguration', 'create_configurations' => 'Skapa konfigurationer', 'replicate' => 'Återskapa', + 'fast_create' => 'Skapa snabbt', + 'publish' => 'Publicera', + 'import' => 'Importera', ]; 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 02166f00d..32881f28f 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Underkategori 6' ], + 'cat8' => [ + 'name' => 'Underkategori 7' + ], + 'cat9' => [ + 'name' => 'Underkategori 8' + ], + 'cat10' => [ + 'name' => 'Underkategori 9' + ], 'currency' => [ 'name' => 'Valuta' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'Listningsinformation', 'preview' => 'Förhandsvisning', 'congratulations' => 'Grattis', + 'ad_desc' => 'Annonsbeskrivning', + 'upload_photos' => 'Ladda upp foton', + 'additional_fields' => 'Ytterligare fält', + 'ad_location' => 'Annonsplats', 'free' => 'Fri', 'ad_date' => 'Annonsdatum', diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/message.php b/addons/default/visiosoft/advs-module/resources/lang/sv/message.php index d5d1855dd..79c939ac4 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Den här annonsen finns inte!", 'select_location_error' => "Välj en plats på kartan!", 'this_ad_is_not_valid_anymore' => "Denna annons är inte giltig längre!", + 'approve_status_change' => "Din annons har ställts in som aktiv!", + 'passive_status_change' => "Din annons har blivit passiv!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/section.php b/addons/default/visiosoft/advs-module/resources/lang/sv/section.php index 61ad741d4..1fc2dc42e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Konfiguration', ], + 'translations' => 'Översättningar', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/sv/setting.php b/addons/default/visiosoft/advs-module/resources/lang/sv/setting.php index 09f56ab4b..f77f8ba69 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/sv/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/sv/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Market Place', ], - + 'price_area_hidden' => [ + 'name' => 'Prisområde dolt', + ], 'hide_price_filter' => [ 'name' => 'Dölj prisfilter', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Visa brödsmulan när du skapar en annons', ], + 'show_ads_count' => [ + 'name' => 'Visa antal annonser', + 'instructions' => 'Visa annonser räknas på listan till vänster', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Visa annonsannonsavtal', + 'instructions' => 'Aktivera detta om du vill visa ett integritetspolicyavtal på sidan för skapande av annonser', + ], + 'override_text' => [ + 'name' => 'Åsidosätt text', + 'instructions' => 'Old Value: New Value' + ], + 'steps_color' => [ + 'name' => 'Stegfärg', + 'instructions' => 'Ändrar de progressiva stegfärgen.' + ], + 'create_ad_button_color' => [ + 'name' => 'Skapa färg för annonsknapp', + 'instructions' => 'Ändrar knappen som visas när det nya valet av annonskategori är klart.' + ], ]; 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 2ebeaae73..bcd83de0c 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/button.php @@ -1,7 +1,8 @@ 'Yeni İlan', + 'new_adv' => 'Yeni ürün/ilan', + 'new_classified' => 'Yeni ürün/ilan', 'new_category' => 'Yeni kategori', 'new_country' => 'Yeni ülke', 'new_city' => 'Yeni şehir', @@ -39,6 +40,7 @@ return [ 'new_option_configuration' => 'Yeni Seçenek yapılandırması', 'create_configurations' => 'Konfigürasyonlar Oluşturun', 'replicate' => 'Tekrarla', - 'publish' => 'Yayınla', - + 'fast_create' => 'Hızlı ekle', + 'publish' => 'Yayınla', + 'import' => 'İçe aktar', ]; 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 0c5de843a..40751f2d6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/field.php @@ -82,21 +82,30 @@ return [ 'cat7' => [ 'name' => 'Alt Kategori 6' ], + 'cat8' => [ + 'name' => 'Alt Kategori 7' + ], + 'cat9' => [ + 'name' => 'Alt Kategori 8' + ], + 'cat10' => [ + 'name' => 'Alt Kategori 9' + ], 'currency' => [ - 'name' => 'Para birimi' + 'name' => 'Para Birimi' ], 'status' => [ - 'name' => 'Durum', + 'name' => 'durum', 'option' => [ 'approved' => 'Onaylandı', - 'expired' => 'Süresi doldu', + 'expired' => 'Süresi Doldu', 'unpublished' => 'Pasif', 'pending_admin' => 'Yönetici Onay Bekliyor', 'pending_user' => 'Kullanıcının Yayınlaması Bekleniyor' ] ], 'pending_adv' => [ - 'name' => 'Yayında olmayan' + 'name' => 'Yayınlanmamış' ], 'finish_at' => [ 'name' => 'Bitiş Saati' @@ -131,9 +140,9 @@ return [ 'sort_by' => 'Sırala', 'pick_option' => 'Bir seçenek seçin', 'pick_ordering' => 'Sıralama Seç', - 'price_high' => 'Fiyat pahalıdan ucuza', + 'price_high' => 'Fiyat Pahalıdan Ucuza', 'price_low' => 'Fiyat Düşükten Yükseğe', - 'newest' => 'En yeni', + 'newest' => 'En Yeni', 'oldest' => 'En eski', 'address_a_z' => 'Adres (A\'dan Z\'ye)', 'address_z_a' => 'Adres (Z\'den A\'ya)', @@ -142,10 +151,10 @@ return [ ], 'all_categories' => 'Tüm Kategoriler', 'location' => 'Lokasyon', - 'send_message' => 'Mesaj gönder', + 'send_message' => 'Mesaj Gönder', 'phone_gsm' => 'Cep Telefonu', 'phone_office' => 'Sabit telefon', - 'add_to_favorites' => "Favorilere ekle", + 'add_to_favorites' => "Favorilere Ekle", 'send' => 'Gönder', 'search_name' => 'Arama Adı', 'my_favorite_searches' => 'Favori Aramalar', @@ -312,8 +321,6 @@ return [ 'additional_fields' => 'Özel Alanlar', 'ad_location' => 'Lokasyon Ekle', - - 'free' => 'Bedava', 'ad_date' => 'İlan Tarihi', 'photo_video' => 'Fotoğraf, Video', 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 6cbc77cb4..f8bffb5ba 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/message.php @@ -10,7 +10,7 @@ return [ 'create_ad_with_post_cat' => [ 'title' => "Kategori seçimi tamamlandı.", 'success' => true, - 'continueBtn' => "Devam et", + 'continueBtn' => "Devam Et", ], 'update_category_info' => 'Lütfen kategoriyi güncelleyiniz.', 'filter_by_search_msg' => 'Aramanızı Daraltın.', @@ -20,13 +20,13 @@ return [ 'extended' => ':number ilan süresi uzatıldı.', 'category_not_exist' => 'Bu kategori artık mevcut değil!', 'currency_converted' => 'Para Birimi Başarıyla Dönüştürüldü.', - 'choose_user' => 'Bir kullanıcı seçin', + 'choose_user' => 'Bir Kullanıcı Seçin', 'owner_updated_successfully' => 'Sahibi Başarıyla Güncellenmiştir!', 'no_add_found' => 'İlan Bulunamadı!', 'replicated_success' => 'İlan başarıyla kopyalandı!', - 'ad_doesnt_exist' => "Bu İlan mevcut değil!", + 'ad_doesnt_exist' => "Bu ilan mevcut değil!", 'select_location_error' => "Lütfen haritada bir yer seçin!", 'this_ad_is_not_valid_anymore' => "Bu ürün veya ilan artık geçerli değil!", - 'approve_status_change' => "İlanınızın Durumu Etkin Olarak Ayarlandı!", + 'approve_status_change' => "İlanın Durumu Etkin Olarak Ayarlandı!", 'passive_status_change' => "İlanınızın Durumu Pasif Olarak Ayarlandı!", ]; 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 bd52f3acc..9ba43ca68 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/section.php @@ -26,7 +26,7 @@ return [ 'title' => 'Özel Alanlar', ], 'custom_field_advs' => [ - 'title' => 'Özel alan İlanları', + 'title' => 'Özel Alan İlanları', ], 'cf_values' => [ 'title' => 'Cf değerleri', @@ -40,8 +40,8 @@ return [ 'general' => 'Genel', 'ads' => 'İlan', 'user' => 'Kullanıcı', - 'filter' => 'filtre', - 'create_ad' => 'Ürün/İlan oluştur', + 'filter' => 'Filtre', + 'create_ad' => 'İlan Oluştur', 'options' => [ 'title' => 'Seçenekler', ], @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Yapılandırma', ], + 'translations' => 'Çeviriler', ]; 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 88741f4ec..a7fc6b867 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/setting.php @@ -51,7 +51,7 @@ return [ 'name' => 'Son Eklenenler Limiti', ], 'site_address' => [ - 'name' => 'Site adresi', + 'name' => 'Site Adresi', 'warning' => 'Otomatik eklendi www. www. sitename.com', ], 'google_map_key' => [ @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Pazar Yeri', ], - + 'price_area_hidden' => [ + 'name' => 'Fiyat Alanı Gizli', + ], 'hide_price_filter' => [ 'name' => 'Fiyat Filtresini Gizle', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'İlan/ürün eklerken Oluştururken harita Göster', ], + 'show_ads_count' => [ + 'name' => 'İlan Sayısını Göster', + 'instructions' => 'Soldaki kategori listesinde ilan sayısını göster', + ], + 'show_post_ad_agreement' => [ + 'name' => 'İlan Sonrası Sözleşmesini Göster', + 'instructions' => 'Reklam oluşturma sayfasında bir gizlilik politikası sözleşmesi görüntülemek istiyorsanız bunu açın', + ], + 'override_text' => [ + 'name' => 'Metni Geçersiz Kıl', + 'instructions' => 'Eski Değer: Yeni Değer' + ], + 'steps_color' => [ + 'name' => 'Adım Rengi', + 'instructions' => 'Aşamalı adımların rengini değiştirir.' + ], + 'create_ad_button_color' => [ + 'name' => 'Reklam Düğmesi Rengi Oluştur', + 'instructions' => 'Yeni reklam kategorisi seçimi bittiğinde görünen düğmeyi değiştirir.' + ], ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/tr/stream.php b/addons/default/visiosoft/advs-module/resources/lang/tr/stream.php index 8985f568f..cd1ef96f0 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/tr/stream.php +++ b/addons/default/visiosoft/advs-module/resources/lang/tr/stream.php @@ -14,7 +14,7 @@ return [ 'name' => 'Özel Alanlar', ], 'custom_field_advs' => [ - 'name' => 'Özel alan önerileri', + 'name' => 'Özel alan İlanları', ], 'cf_values' => [ 'name' => 'ÖA değerleri', @@ -26,7 +26,7 @@ return [ 'name' => 'Ürün Seçenekleri', ], 'productoptions_value' => [ - 'name' => 'Seçenekler değeri', + 'name' => 'Seçenekler Değeri', ], 'option_configuration' => [ 'name' => 'Yapılandırma', 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 6c7b6e577..ba6c9e653 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Нова реклама', + 'new_classified' => 'Новий секрет', 'new_category' => 'Нова категорія', 'new_country' => 'Нова країна', 'new_city' => 'Нове місто', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Нова опція конфігурації', 'create_configurations' => 'Створення конфігурацій', 'replicate' => 'Тиражувати', + 'fast_create' => 'Швидке створення', + 'publish' => 'Опублікувати', + 'import' => 'Імпорт', ]; 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 80875e821..61e6e96ab 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Підкатегорія 6' ], + 'cat8' => [ + 'name' => 'Підкатегорія 7' + ], + 'cat9' => [ + 'name' => 'Підкатегорія 8' + ], + 'cat10' => [ + 'name' => 'Підкатегорія 9' + ], 'currency' => [ 'name' => 'Валюта' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'Деталі переліку', 'preview' => 'Попередній перегляд', 'congratulations' => 'Вітаю', + 'ad_desc' => 'Опис оголошення', + 'upload_photos' => 'Завантажте фотографії', + 'additional_fields' => 'Додаткові поля', + 'ad_location' => 'Місце розташування оголошення', 'free' => 'Безкоштовно', 'ad_date' => 'Дата оголошення', diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/message.php b/addons/default/visiosoft/advs-module/resources/lang/uk/message.php index c2a44e084..f836d5871 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Цього оголошення не існує!", 'select_location_error' => "Виберіть місце на карті!", 'this_ad_is_not_valid_anymore' => "Це оголошення вже не діє!", + 'approve_status_change' => "Статус вашої реклами встановлено активним!", + 'passive_status_change' => "Статус вашої реклами встановлено пасивним!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/section.php b/addons/default/visiosoft/advs-module/resources/lang/uk/section.php index fcb7c9859..d2465cf80 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Конфігурація', ], + 'translations' => 'Переклади', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/uk/setting.php b/addons/default/visiosoft/advs-module/resources/lang/uk/setting.php index 9e042820f..e0f47f521 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/uk/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/uk/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Ринок', ], - + 'price_area_hidden' => [ + 'name' => 'Цінова область прихована', + ], 'hide_price_filter' => [ 'name' => 'Сховати фільтр цін', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Показати хлібну крихту під час створення реклами', ], + 'show_ads_count' => [ + 'name' => 'Показати показ оголошень', + 'instructions' => 'Показати рекламу в списку категорій ліворуч', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Показати угоду про розміщення оголошень', + 'instructions' => 'Увімкніть це, якщо ви хочете відображати угоду про політику конфіденційності на сторінці створення оголошення', + ], + 'override_text' => [ + 'name' => 'Замінити текст', + 'instructions' => 'Старе значення: Нове значення' + ], + 'steps_color' => [ + 'name' => 'Кроки Колір', + 'instructions' => 'Змінює колір прогресивних кроків.' + ], + 'create_ad_button_color' => [ + 'name' => 'Створіть колір кнопки об\'яви', + 'instructions' => 'Змінює кнопку, яка з’являється після завершення вибору нової категорії оголошень.' + ], ]; 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 a5bfd5cb9..a789eb92e 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'نئی درجہ بندی', + 'new_classified' => 'نیا درجہ بند', 'new_category' => 'نئی قسم', 'new_country' => 'نیا ملک', 'new_city' => 'نیا شہر', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'نئی آپشن ترتیب', 'create_configurations' => 'تشکیلات بنائیں', 'replicate' => 'چربہ لگائیں', + 'fast_create' => 'فاسٹ بنائیں', + 'publish' => 'شائع کریں', + 'import' => 'درآمد کریں', ]; 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 9c10042f7..4846fb22d 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'ذیلی زمرہ 6' ], + 'cat8' => [ + 'name' => 'ذیلی زمرہ 7' + ], + 'cat9' => [ + 'name' => 'ذیلی زمرہ 8' + ], + 'cat10' => [ + 'name' => 'ذیلی زمرہ 9' + ], 'currency' => [ 'name' => 'کرنسی' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'فہرست سازی کی تفصیلات', 'preview' => 'پیش نظارہ', 'congratulations' => 'مبارک ہو', + 'ad_desc' => 'اشتہار کی تفصیل', + 'upload_photos' => 'تصاویر اپ لوڈ کریں', + 'additional_fields' => 'اضافی فیلڈز', + 'ad_location' => 'اشتہار کی جگہ', 'free' => 'مفت', 'ad_date' => 'اشتہاری تاریخ', diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/message.php b/addons/default/visiosoft/advs-module/resources/lang/ur/message.php index 583255a8a..4e978d1e5 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "یہ اشتہار موجود نہیں ہے!", 'select_location_error' => "براہ کرم نقشے پر ایک مقام منتخب کریں!", 'this_ad_is_not_valid_anymore' => "اب یہ اشتہار درست نہیں ہے!", + 'approve_status_change' => "آپ کے اشتہار کی حیثیت فعال ہونے کے لئے مقرر کردی گئی ہے!", + 'passive_status_change' => "آپ کے اشتہار کی حیثیت غیر فعال ہوچکی ہے۔", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/section.php b/addons/default/visiosoft/advs-module/resources/lang/ur/section.php index 484777c81..e9b2d2850 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'تشکیل', ], + 'translations' => 'ترجمہ', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/ur/setting.php b/addons/default/visiosoft/advs-module/resources/lang/ur/setting.php index a0d6cff1f..5255acfd3 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/ur/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/ur/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'مارکیٹ پلیس', ], - + 'price_area_hidden' => [ + 'name' => 'قیمت کا رقبہ پوشیدہ ہے', + ], 'hide_price_filter' => [ 'name' => 'پرائس فلٹر چھپائیں', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'جب کوئی اشتہار بناتے ہو تو بریڈ کرمب دکھائیں', ], + 'show_ads_count' => [ + 'name' => 'اشتہارات کی گنتی دکھائیں', + 'instructions' => 'بائیں زمروں کی فہرست میں اشتہارات کی گنتی دکھائیں', + ], + 'show_post_ad_agreement' => [ + 'name' => 'پوسٹ اشتہار کا معاہدہ دکھائیں', + 'instructions' => 'اگر آپ اشتہار تخلیق کے صفحے پر رازداری کی پالیسی کا معاہدہ ظاہر کرنا چاہتے ہیں تو اسے آن کریں', + ], + 'override_text' => [ + 'name' => 'متن کو اوور رائڈ کریں', + 'instructions' => 'پرانی قیمت: نیا ویلیو' + ], + 'steps_color' => [ + 'name' => 'اقدامات رنگین', + 'instructions' => 'ترقی پسند اقدامات کا رنگ بدلتا ہے۔' + ], + 'create_ad_button_color' => [ + 'name' => 'ایڈ بٹن کا رنگ بنائیں', + 'instructions' => 'نئے اشتہار کیٹیگری کا انتخاب ختم ہونے پر بٹن تبدیل ہوتا ہے۔' + ], ]; 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 99085a0cc..e8f1725b3 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/button.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/button.php @@ -2,6 +2,7 @@ return [ 'new_adv' => 'Adv mới', + 'new_classified' => 'Mới được phân loại', 'new_category' => 'Thể loại mới', 'new_country' => 'Quốc gia mới', 'new_city' => 'Thành phố mới', @@ -39,4 +40,7 @@ return [ 'new_option_configuration' => 'Cấu hình tùy chọn mới', 'create_configurations' => 'Tạo cấu hình', 'replicate' => 'Nhân rộng', + 'fast_create' => 'Tạo nhanh', + 'publish' => 'Công bố', + 'import' => 'Nhập 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 488f67afc..c5c9b2495 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/field.php @@ -82,6 +82,15 @@ return [ 'cat7' => [ 'name' => 'Tiểu mục 6' ], + 'cat8' => [ + 'name' => 'Danh mục phụ 7' + ], + 'cat9' => [ + 'name' => 'Danh mục phụ 8' + ], + 'cat10' => [ + 'name' => 'Danh mục phụ 9' + ], 'currency' => [ 'name' => 'Tiền tệ' ], @@ -305,6 +314,10 @@ return [ 'listing_details' => 'Chi tiết danh sách', 'preview' => 'Xem trước', 'congratulations' => 'Xin chúc mừng', + 'ad_desc' => 'mô tả quảng cáo', + 'upload_photos' => 'Tải ảnh lên', + 'additional_fields' => 'các trường bổ sung', + 'ad_location' => 'Vị trí Quảng cáo', 'free' => 'Miễn phí', 'ad_date' => 'Ngày quảng cáo', diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/message.php b/addons/default/visiosoft/advs-module/resources/lang/vi/message.php index 58a5ba673..1102b4939 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/message.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/message.php @@ -27,4 +27,6 @@ return [ 'ad_doesnt_exist' => "Quảng cáo này không tồn tại!", 'select_location_error' => "Vui lòng chọn một vị trí trên bản đồ!", 'this_ad_is_not_valid_anymore' => "Quảng cáo này không hợp lệ nữa!", + 'approve_status_change' => "Trạng thái Quảng cáo của Bạn Đã được Đặt thành Hoạt động!", + 'passive_status_change' => "Trạng thái quảng cáo của bạn đã được đặt thành bị động!", ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/section.php b/addons/default/visiosoft/advs-module/resources/lang/vi/section.php index 273bdde07..cb78fd6d6 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/section.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/section.php @@ -55,4 +55,5 @@ return [ 'option_configuration' => [ 'title' => 'Cấu hình', ], + 'translations' => 'Bản dịch', ]; diff --git a/addons/default/visiosoft/advs-module/resources/lang/vi/setting.php b/addons/default/visiosoft/advs-module/resources/lang/vi/setting.php index 82cfc013a..db19168ff 100644 --- a/addons/default/visiosoft/advs-module/resources/lang/vi/setting.php +++ b/addons/default/visiosoft/advs-module/resources/lang/vi/setting.php @@ -126,7 +126,9 @@ return [ 'market_place' => [ 'name' => 'Thương trường', ], - + 'price_area_hidden' => [ + 'name' => 'Vùng giá bị ẩn', + ], 'hide_price_filter' => [ 'name' => 'Ẩn bộ lọc giá', ], @@ -197,4 +199,24 @@ return [ 'show_breadcrumb_when_creating_ad' => [ 'name' => 'Hiển thị Breadcrumb Khi Tạo Quảng cáo', ], + 'show_ads_count' => [ + 'name' => 'Hiển thị Số lượng Quảng cáo', + 'instructions' => 'Số lượng quảng cáo hiển thị trên danh sách danh mục bên trái', + ], + 'show_post_ad_agreement' => [ + 'name' => 'Hiển thị Thỏa thuận Quảng cáo Đăng', + 'instructions' => 'Bật tính năng này nếu bạn muốn hiển thị thỏa thuận chính sách bảo mật trên trang tạo quảng cáo', + ], + 'override_text' => [ + 'name' => 'Ghi đè văn bản', + 'instructions' => 'Giá trị cũ: Giá trị mới' + ], + 'steps_color' => [ + 'name' => 'Các bước màu', + 'instructions' => 'Thay đổi màu của các bước tiến bộ.' + ], + 'create_ad_button_color' => [ + 'name' => 'Tạo màu nút quảng cáo', + 'instructions' => 'Thay đổi nút hiển thị khi quá trình lựa chọn danh mục quảng cáo mới hoàn tất.' + ], ]; diff --git a/addons/default/visiosoft/base-theme/resources/lang/ar/button.php b/addons/default/visiosoft/base-theme/resources/lang/ar/button.php index 388544daa..941434ade 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ar/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ar/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'البريد الإلكتروني', 'phone' => 'هاتف', 'show_all' => 'عرض الكل', - 'hide_all' => 'Hide All', + 'hide_all' => 'أخف كل شيء', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/az/button.php b/addons/default/visiosoft/base-theme/resources/lang/az/button.php index 90ec2186c..c594a5914 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/az/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/az/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'Elektron poçt', 'phone' => 'Telefon', 'show_all' => 'Hamısını göstər', - 'hide_all' => 'Hide All', + 'hide_all' => 'Hamısını gizlədin', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/bn/button.php b/addons/default/visiosoft/base-theme/resources/lang/bn/button.php index 51b944f33..805b1f19c 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/bn/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/bn/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'ইমেইল', 'phone' => 'ফোন', 'show_all' => 'সব দেখাও', - 'hide_all' => 'Hide All', + 'hide_all' => 'সব লুকাও', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/de/button.php b/addons/default/visiosoft/base-theme/resources/lang/de/button.php index 603b20145..6558d3e64 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/de/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/de/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'Email', 'phone' => 'Telefon', 'show_all' => 'Zeige alles', - 'hide_all' => 'Hide All', + 'hide_all' => 'Versteck alles', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/el/button.php b/addons/default/visiosoft/base-theme/resources/lang/el/button.php index 7a76e9873..01e0ff5b2 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/el/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/el/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ', 'phone' => 'Τηλέφωνο', 'show_all' => 'Προβολή όλων', - 'hide_all' => 'Hide All', + 'hide_all' => 'Κρύψτα όλα', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/es/button.php b/addons/default/visiosoft/base-theme/resources/lang/es/button.php index 21fa945cb..2c6c594bc 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/es/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/es/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'Correo electrónico', 'phone' => 'Teléfono', 'show_all' => 'Mostrar todo', - 'hide_all' => 'Hide All', + 'hide_all' => 'Ocultar todo', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/fa/button.php b/addons/default/visiosoft/base-theme/resources/lang/fa/button.php index 7e6045ba8..df37103e2 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/fa/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/fa/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'پست الکترونیک', 'phone' => 'تلفن', 'show_all' => 'نمایش همه', - 'hide_all' => 'Hide All', + 'hide_all' => 'همه را پنهان کن', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/fr/button.php b/addons/default/visiosoft/base-theme/resources/lang/fr/button.php index 734f5094f..4ea1ca7b8 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/fr/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/fr/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'Email', 'phone' => 'Téléphone', 'show_all' => 'Afficher tout', - 'hide_all' => 'Hide All', + 'hide_all' => 'Cacher tout', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/he/button.php b/addons/default/visiosoft/base-theme/resources/lang/he/button.php index f317acbdc..98d84a41f 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/he/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/he/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'אימייל', 'phone' => 'טלפון', 'show_all' => 'תראה הכול', - 'hide_all' => 'Hide All', + 'hide_all' => 'הסתר הכל', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/hi/button.php b/addons/default/visiosoft/base-theme/resources/lang/hi/button.php index 9948d0edc..dac64506e 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/hi/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/hi/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'ईमेल', 'phone' => 'फ़ोन', 'show_all' => 'सब दिखाओ', - 'hide_all' => 'Hide All', + 'hide_all' => 'सभी छुपाएं', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/it/button.php b/addons/default/visiosoft/base-theme/resources/lang/it/button.php index 5d5456772..7ea85f650 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/it/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/it/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Telefono', 'show_all' => 'Mostra tutto', - 'hide_all' => 'Hide All', + 'hide_all' => 'Nascondi tutto', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ja/button.php b/addons/default/visiosoft/base-theme/resources/lang/ja/button.php index 6addf89ac..c34af555e 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ja/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ja/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'Eメール', 'phone' => '電話', 'show_all' => 'すべて表示する', - 'hide_all' => 'Hide All', + 'hide_all' => 'すべて非表示', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ko/button.php b/addons/default/visiosoft/base-theme/resources/lang/ko/button.php index b57ab8484..a22d53518 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ko/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ko/button.php @@ -11,5 +11,5 @@ return [ 'email' => '이메일', 'phone' => '전화', 'show_all' => '모두 표시', - 'hide_all' => 'Hide All', + 'hide_all' => '모두 숨기기', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/addon.php b/addons/default/visiosoft/base-theme/resources/lang/ku/addon.php new file mode 100644 index 000000000..766e4fa77 --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'BaseTheme', + 'name' => 'BaseTheme', + 'description' => 'BaseTheme' +]; diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/button.php b/addons/default/visiosoft/base-theme/resources/lang/ku/button.php index f711419d7..30b90501b 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ku/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'E-nameyê bişînin', 'phone' => 'Telefon', 'show_all' => 'Hemî nîşan bide', - 'hide_all' => 'Hide All', + 'hide_all' => 'Veşêre Hemî', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/field.php b/addons/default/visiosoft/base-theme/resources/lang/ku/field.php new file mode 100644 index 000000000..2d53b0e88 --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/field.php @@ -0,0 +1,59 @@ + 'Reklamên Dawîn', + 'show_all' => 'Hemî nîşan bide', + 'login' => [ + 'name' => 'Têkevin', + ], + 'logout' => [ + 'name' => 'Derkeve', + ], + 'profile' => 'Tengal', + 'email' => 'Navnîşana emailê', + 'phone' => 'Jimare telefon', + 'reset_code' => 'Vebijêrin Koda', + 'password_confirmation' => 'Piştrastkirina Passwordîfreyê', + 'password' => 'Şîfre', + 'first_name' => 'Nav', + 'last_name' => 'Paşnav', + 'remember_me' => 'Min bîne bîra xwe', + 'not_a_member_yet' => 'Endam Ne Dîsa', + 'not_a_member_yet_message' => 'Ji bo endamên me navnîşan bikin ku ji karûbarê meya taybetî sûd werbigirin', + 'forgot_password' => 'Min şîfreya xwe ji bîr kir', + 'email_or_phone_number' => 'Navnîşana E-nameyê an Hejmara Telefonê', + 'phone_number' => 'Jimare telefon', + + // Registration instructions + 'personal_registration_header' => 'Awantajên Endametiya Kesane Çi ne?', + 'personal_registration_body' => 'Xaniyê xwe, otomobîla xwe bifroşin û kirê bikin, tiştên xweyên bê karan bifroşin, yên nû jî bistînin.', + 'personal_registration_list_1' => 'Reklamek belaş bişînin,', + 'personal_registration_list_2' => 'Reklamên ku hûn pê re eleqedar dibin zêde bikin, piştî ku ew li bijareyên xwe zêde bikin, guhertinên bihayê bişopînin, lêgerînên bijare yên ku pîvanên we digirin biafirînin', + 'personal_registration_list_3' => 'Li ser malperê ji xwedan reklaman re peyam bişînin.', + 'register_information_note' => 'Agahdariya li ser vê rûpelê ji bo tête girtin ' . env('APPLICATION_DOMAIN') . ' endamî. Hûn dikarin li vir di derheqê parastina daneyên kesane de agahdariya berfireh bibînin.', + + // Register page + 'phone_validation_error' => 'Ev jimara têlefonê ji hêla endamek din ve tê bikar anîn.', + + // Forgot Password + 'create_new_password' => 'Passwordîfreyek Nû çêbikin', + + // Login page + 'or' => 'an', + 'login_with_phone_number' => 'Bi Hejmara Telefonê têkevinê', + 'login_with_email_address' => 'Bi Navnîşana E-nameyê têkevin', + + // Side menu links + 'company_directory' => 'Pirtûkxaneya pargîdaniyê', + 'popular_ads' => 'Reklamên populer', + 'last_48_hours' => '48 Demjimêrên Dawîn', + 'secure_e-commerce_ads' => 'Reklamên e-Bazirganiya Ewle bikin', + 'sms' => 'Peyama Nivîsîn SMSand (SMS)', + 'mail' => 'Send Mail', + + // Register instruction seed + 'register_instructions' => 'Rêwerzên Tomarê', + 'list' => 'Rêzok', + 'instruction_description' => 'Danasîna Rêwerzê', + 'instruction_list' => 'Lîsteya Rêwerziyê', +]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/message.php b/addons/default/visiosoft/base-theme/resources/lang/ku/message.php new file mode 100644 index 000000000..474fb436d --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/message.php @@ -0,0 +1,6 @@ + 'SMS ji telefona xweya tomarkirî re şandiye. Ji kerema xwe venêrin.', + 'found_phone' => 'Jimara têlefona ku di pergalê de hatî tomar kirin nehat dîtin.', +]; diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/section.php b/addons/default/visiosoft/base-theme/resources/lang/ku/section.php new file mode 100644 index 000000000..4d14cd5bc --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/section.php @@ -0,0 +1,8 @@ + [ + 'name' => 'Modeya Katalogê', + ], + 'template' => 'Plateablon', +]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ku/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ku/setting.php new file mode 100644 index 000000000..158a7fe47 --- /dev/null +++ b/addons/default/visiosoft/base-theme/resources/lang/ku/setting.php @@ -0,0 +1,46 @@ + [ + 'name' => 'Sernavê navîgasyonê', + ], + 'navigation_action' => [ + 'name' => 'Çalakiya Navîgasyonê', + ], + 'country_fields' => [ + 'name' => 'Zeviyên Welat', + ], + 'date_fields' => [ + 'name' => 'Zeviyên Dîrokê', + ], + 'price_fields' => [ + 'name' => 'Qadên Bihayê', + ], + 'breadcrumbs' => [ + 'name' => 'Breadcrumb', + ], + 'ad_details' => [ + 'name' => 'Agahdariyên Ad', + ], + 'ad_details_tab' => [ + 'name' => 'Tab Agahdariyên Adê', + ], + 'latest_and_view_all_btn' => [ + 'name' => 'Nûtirîn û Hemî Btn Nîşandan', + ], + 'register_page_instruction_logo' => [ + 'name' => 'Logoya Fêrbûna Rûpelê Tomar Bikin', + ], + 'register_page_alert_link' => [ + 'name' => 'Register Link Alert Link', + ], + 'style' => [ + 'name' => 'Styleêwaz (CSS)', + ], + 'home_page_sub_categories_limit' => [ + 'name' => 'Sermaseyên Bin Kategoriyên Serûpelê', + ], + 'default_country' => [ + 'name' => 'Rûpelê qeyd bikin, ji bo têlefonê welatê pêşîn', + ] +]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/nl/button.php b/addons/default/visiosoft/base-theme/resources/lang/nl/button.php index 7d72ba280..8b63e92c3 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/nl/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/nl/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Telefoon', 'show_all' => 'Toon alles', - 'hide_all' => 'Hide All', + 'hide_all' => 'Verstop alles', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/pl/button.php b/addons/default/visiosoft/base-theme/resources/lang/pl/button.php index 4c93aa22a..625628a1c 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/pl/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/pl/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Telefon', 'show_all' => 'Pokaż wszystko', - 'hide_all' => 'Hide All', + 'hide_all' => 'Schowaj wszystko', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/pt/button.php b/addons/default/visiosoft/base-theme/resources/lang/pt/button.php index f0547a7b5..f1c724f01 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/pt/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/pt/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'O email', 'phone' => 'telefone', 'show_all' => 'Mostre tudo', - 'hide_all' => 'Hide All', + 'hide_all' => 'Esconda tudo', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ro/button.php b/addons/default/visiosoft/base-theme/resources/lang/ro/button.php index 29b43cbd4..c755f9b2d 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ro/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ro/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Telefon', 'show_all' => 'Arata tot', - 'hide_all' => 'Hide All', + 'hide_all' => 'Ascunde tot', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ru/button.php b/addons/default/visiosoft/base-theme/resources/lang/ru/button.php index e298c0562..ef727d3a7 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ru/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ru/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'Электронное письмо', 'phone' => 'Телефон', 'show_all' => 'Показать все', - 'hide_all' => 'Hide All', + 'hide_all' => 'Скрыть все', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/sq/button.php b/addons/default/visiosoft/base-theme/resources/lang/sq/button.php index 420d4c7b0..28357da45 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/sq/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/sq/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'Email', 'phone' => 'Telefon', 'show_all' => 'Shfaq të gjitha', - 'hide_all' => 'Hide All', + 'hide_all' => 'Fshihi të Gjithë', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/sv/button.php b/addons/default/visiosoft/base-theme/resources/lang/sv/button.php index f0b4071f4..b9a3f2f20 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/sv/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/sv/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'E-post', 'phone' => 'Telefon', 'show_all' => 'Visa allt', - 'hide_all' => 'Hide All', + 'hide_all' => 'Göm alla', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/tr/button.php b/addons/default/visiosoft/base-theme/resources/lang/tr/button.php index 15586dc4e..98fa91569 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/tr/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/tr/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'E-posta', 'phone' => 'Telefon', 'show_all' => 'Hepsini Göster ↓', - 'hide_all' => 'Hide All', + 'hide_all' => 'Hepsini sakla', ]; \ 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 506f3bb29..2db5204fd 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/tr/field.php +++ b/addons/default/visiosoft/base-theme/resources/lang/tr/field.php @@ -4,14 +4,14 @@ return [ 'latest_ads' => 'Son Eklenenler', 'show_all' => 'Tümünü Göster', 'login' => [ - 'name' => 'Oturum aç', + 'name' => 'Oturum Aç', ], 'logout' => [ 'name' => 'Çıkış Yap', ], 'profile' => 'Profil', 'email' => 'Email Adresiniz', - 'phone' => 'Telefon numarası', + 'phone' => 'Telefon Numarası', 'reset_code' => 'Sıfırlama Kodu', 'password_confirmation' => 'Şifrenizi Onaylayın', 'password' => 'Şifreniz', @@ -19,14 +19,14 @@ return [ 'last_name' => 'Soyadınız', 'remember_me' => 'Beni Hatırla', 'not_a_member_yet' => 'Henüz Üye Değil Misiniz', - 'not_a_member_yet_message' => 'Üyelerimize özel hizmetlerimizden faydalanabilmek için üye olun', + 'not_a_member_yet_message' => 'Üyelerimize özel hizmetlerimizden faydalanmak için kaydolun', 'forgot_password' => 'Şifremi Unuttum', 'email_or_phone_number' => 'E-Posta Adresiniz veya Telefon Numaranız', 'phone_number' => 'Telefon Numarası', // 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_body' => 'Evinizi, arabanızı satın ve kiralayın, kullanılmayan eşyalarınızı satın, yenilerini alın.', 'personal_registration_list_1' => 'Ücretsiz ilan gönder', '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.', @@ -47,7 +47,7 @@ return [ 'company_directory' => 'Firma Rehberi', 'popular_ads' => 'Popüler İlanlar', 'last_48_hours' => 'son 48 saat', - 'secure_e-commerce_ads' => 'güvenli e-ticaret', + 'secure_e-commerce_ads' => 'Güvenli E-Ticaret', 'sms' => 'Kısa Mesaj Gönder (SMS)', 'mail' => 'Posta göndermek', diff --git a/addons/default/visiosoft/base-theme/resources/lang/uk/button.php b/addons/default/visiosoft/base-theme/resources/lang/uk/button.php index 0d7b08f78..20b7c1b12 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/uk/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/uk/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'Електронна пошта', 'phone' => 'Телефон', 'show_all' => 'Покажи все', - 'hide_all' => 'Hide All', + 'hide_all' => 'Сховати все', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/ur/button.php b/addons/default/visiosoft/base-theme/resources/lang/ur/button.php index 4d28a9c45..a72298e48 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/ur/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/ur/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'ای میل', 'phone' => 'فون', 'show_all' => 'سارے دکھاو', - 'hide_all' => 'Hide All', + 'hide_all' => 'سب کو چھپائیں', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/base-theme/resources/lang/vi/button.php b/addons/default/visiosoft/base-theme/resources/lang/vi/button.php index d461c2a22..734c18f94 100644 --- a/addons/default/visiosoft/base-theme/resources/lang/vi/button.php +++ b/addons/default/visiosoft/base-theme/resources/lang/vi/button.php @@ -11,5 +11,5 @@ return [ 'email' => 'E-mail', 'phone' => 'Điện thoại', 'show_all' => 'Hiển thị tất cả', - 'hide_all' => 'Hide All', + 'hide_all' => 'Ẩn tất cả', ]; \ No newline at end of file diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/addon.php b/addons/default/visiosoft/cats-module/resources/lang/ku/addon.php new file mode 100644 index 000000000..03c2ccaec --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Liq', + 'name' => 'Kategorî Module', + 'description' => '' +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/button.php b/addons/default/visiosoft/cats-module/resources/lang/ku/button.php new file mode 100644 index 000000000..187d7b9d7 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/button.php @@ -0,0 +1,8 @@ + 'Kategoriya Nû', + 'add_sub_category' => 'Kategoriya Jêrîn zêde bikin', + 'sub_category' => 'Kategoriya Jêrîn nîşan bide', + 'new_placeholderforsearch' => 'New Placeholderforsearch', +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/field.php b/addons/default/visiosoft/cats-module/resources/lang/ku/field.php new file mode 100644 index 000000000..24c8a06e4 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/field.php @@ -0,0 +1,36 @@ + [ + 'name' => 'Nav', + 'instructions' => 'Ew navê kategoriya sereke ye ku hûn ê diyar bikin. Ew dihêle bikarhêner bi hêsanî hilbera ku lê digerin bibîne.', + ], + 'order' => [ + 'name' => 'Emir', + ], + + 'slug' => [ + 'name' => 'Şeytanok', + 'instructions' => 'Ji bo ku koma posta xwe bi yên din re bike alîkar her tagên rêxistinê diyar bikin.', + + ], + 'files' => [ + 'name' => 'Wêne', + ], + 'seo_keyword' => [ + 'name' => 'Seo Keyword', + 'instructions' => 'Gotinên ku di geroka Google-ê de li malperê hatine zêdekirin da ku li jorê encamên lêgerînê xuya bibin.', + ], + 'seo_description' => [ + 'name' => 'Seo Danasîn', + 'instructions' => 'Ew dikare li ser biryara mêvanên we bandor bike ka ew dixwazin naverokê di encamên lêgerînê de bikirtînin.', + ], + 'icon' => [ + 'name' => 'Icon', + 'instructions' => 'Ew tê bikaranîn ku îkonên ku celebê kategoriyê nîşan dikin zêde bike.', + ], + + 'please_wait' => 'Ji kerema xwe li bendê bimînin. Jêbirina Kategoriyên Bin', + 'category_selection' => 'Hilbijartina Kategorî', + 'go_to_parent' => 'Herin cem dêûbavan', +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/message.php b/addons/default/visiosoft/cats-module/resources/lang/ku/message.php new file mode 100644 index 000000000..740e2c675 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/message.php @@ -0,0 +1,5 @@ + 'Kategorî û jêr-kategorîyên têkildar bi serfirazî hatin jêbirin!', +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/permission.php b/addons/default/visiosoft/cats-module/resources/lang/ku/permission.php new file mode 100644 index 000000000..d1f04c581 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/permission.php @@ -0,0 +1,20 @@ + [ + 'name' => 'Liq', + 'option' => [ + 'read' => 'Ma dikare kategoriyê bixwîne?', + 'write' => 'Dikare kategoriyê biafirîne / sererast bike?', + 'delete' => 'Ma dikare kategoriyê jê bibe?', + ], + ], + 'placeholderforsearch' => [ + 'name' => 'Placeholderforsearch', + 'option' => [ + 'read' => 'Dikarin bixwînin placeholderforsearch?', + 'write' => 'Ma dikare cîhfilka cihan biafirîne / sererast bike?', + 'delete' => 'Ma dikare cihekîforşeyê jêbirin?', + ], + ], +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/section.php b/addons/default/visiosoft/cats-module/resources/lang/ku/section.php new file mode 100644 index 000000000..4c6898af2 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/section.php @@ -0,0 +1,10 @@ + [ + 'title' => 'Liq', + ], + 'placeholderforsearch' => [ + 'title' => 'Placeholder', + ], +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/setting.php b/addons/default/visiosoft/cats-module/resources/lang/ku/setting.php new file mode 100644 index 000000000..70e83d511 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/setting.php @@ -0,0 +1,10 @@ + [ + 'name' => 'Jimareya Dabeşkirina Nexşeya Malperê', + ], + 'include_cities_sitemap' => [ + 'name' => 'Di Nexşeyê de Bajaran Bikin', + ], +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/stream.php b/addons/default/visiosoft/cats-module/resources/lang/ku/stream.php new file mode 100644 index 000000000..370a227a0 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/stream.php @@ -0,0 +1,10 @@ + [ + 'name' => 'Liq', + ], + 'placeholderforsearch' => [ + 'name' => 'Placeholderforsearch', + ], +]; diff --git a/addons/default/visiosoft/cats-module/resources/lang/ku/view.php b/addons/default/visiosoft/cats-module/resources/lang/ku/view.php new file mode 100644 index 000000000..2210fb698 --- /dev/null +++ b/addons/default/visiosoft/cats-module/resources/lang/ku/view.php @@ -0,0 +1,5 @@ + 'Kategoriyên Paqij', +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/addon.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/addon.php new file mode 100644 index 000000000..a86e1ce3b --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Visiosoft Admin', + 'name' => 'Visiosoft Admin Theme', + 'description' => 'Mijara rêveberê fermî ji bo OpenClassify.', +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/button.php new file mode 100644 index 000000000..00eb9549c --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/button.php @@ -0,0 +1,5 @@ + 'View Ads', +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/control_panel.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/control_panel.php new file mode 100644 index 000000000..35851b2fb --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/control_panel.php @@ -0,0 +1,13 @@ + 'Alîkarî', + 'search' => 'Gerr', + 'logout' => 'Derkeve', + 'view_site' => 'Malperê Dîtin', + 'title' => 'Panela Kontrolê', + 'search_placeholder' => 'Ji bo lêgerînê binivîse', + + // Users Module + 'search_by_gsm_number' => 'Bi Hejmara GSM Bigerin', +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/help.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/help.php new file mode 100644 index 000000000..c5f870c64 --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/help.php @@ -0,0 +1,14 @@ + 'Çavkaniyên Alîkar', + 'description' => 'Bi van çavkaniyên alîkar alîkariyê bibînin û taybetmendiyan bibînin.', + 'documentation_link' => 'OpenClassify Documentation', + 'documentation_description' => 'Ji bo OpenClassify, pêşvexistina pêvekan, û pêvekan jî belgekirinê bibînin.', + 'slack_link' => 'Tîmê Slack', + 'slack_description' => 'Bikarhêner û pêşdebirên din ên OpenClassify bibînin û pê re têkilî daynin.', + 'forum_link' => 'Forum Gotûbêj', + 'forum_description' => 'Li ser karanîn û pêşvebirina OpenClassify bersivan bibînin û pirsan bişînin.', + 'addons_link' => 'Addonên Heye', + 'addons_description' => 'Addonên ku ji bo OpenClassify hene peyda bikin.', +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/preference.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/preference.php new file mode 100644 index 000000000..72a51307f --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/preference.php @@ -0,0 +1,30 @@ + [ + 'name' => 'Sidebar Hover', + 'instructions' => 'Zivirandina kêleka kêlekê?', + ], + 'navigation' => [ + 'name' => 'Rêserbirinî', + 'instructions' => 'Hên xwe şexsî fermana navîgasyon.', + 'warning' => 'Yekem tişta navîgasyonê ya gihînbar wekî qada xaniyê we tê bikar anîn.', + 'reorder' => 'Tiştên navîgasyonên sereke di tenişta bikişînin û bavêjin da ku wan ji nû ve rêz bikin.', + ], + 'display' => [ + 'name' => 'Density Display', + 'instructions' => 'Dîmendera kompakt dihêle ku naverok bêtir bi carekê li ser dîmenderê were xuyang kirin.', + 'option' => [ + 'default' => 'Destçûnî', + 'compact' => 'Gişt', + ], + ], + 'sidebars' => [ + 'name' => 'Modeya Sidebar', + 'instructions' => 'Dê teniştên statik her dem xuya bibin.', + 'option' => [ + 'default' => 'Destçûnî', + 'static' => 'Statik', + ], + ], +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/section.php new file mode 100644 index 000000000..b47e82df4 --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/section.php @@ -0,0 +1,7 @@ + [ + 'name' => 'Mîhengên Mijarê' + ], +]; diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/setting.php new file mode 100644 index 000000000..d3f0795aa --- /dev/null +++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ku/setting.php @@ -0,0 +1,35 @@ + [ + 'name' => 'Sidebar Hover', + 'instructions' => 'Zivirandina kêleka kêlekê?', + ], + 'navigation' => [ + 'name' => 'Rêserbirinî', + 'instructions' => 'Hên ji default fermana navîgasyon.', + 'warning' => 'Yekem tişta navîgasyona gihînbar wekî qada mal tê bikar anîn.', + 'reorder' => 'Tiştên navîgasyonên sereke di tenişta bikişînin û bavêjin da ku wan ji nû ve rêz bikin.', + ], + "login_icon" => [ + 'name' => 'Icon-ê têkevê', + ], + "panel_icon" => [ + 'name' => 'Conkona panelê', + ], + "title" => [ + 'name' => 'Nav', + ], + "footer_copyright_org_name" => [ + 'name' => 'Footer Navê Rêxistina Copyright', + ], + "sidebar_main_color" => [ + 'name' => 'Rengdêr Rengîniya Sidebar', + ], + "sidebar_secondary_color" => [ + 'name' => 'Rengê Duyemîn Rengdêr', + ], + "active_sidebar_border_color" => [ + 'name' => 'Rengê Sînorê Sidebar-ê Çalak', + ] +]; diff --git a/addons/default/visiosoft/json-field_type/resources/lang/ku/addon.php b/addons/default/visiosoft/json-field_type/resources/lang/ku/addon.php new file mode 100644 index 000000000..eaa9e1414 --- /dev/null +++ b/addons/default/visiosoft/json-field_type/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Json', + 'name' => 'Json Field Field', + 'description' => '' +]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ar/field.php b/addons/default/visiosoft/location-module/resources/lang/ar/field.php index 0623ecc4c..c256da930 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/ar/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'عنوان', ], - 'selected' => 'المحدد' + 'selected' => 'المحدد', + 'choose_an_option' => 'إختر خيار...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/az/field.php b/addons/default/visiosoft/location-module/resources/lang/az/field.php index 75f4a376f..00c3d3499 100644 --- a/addons/default/visiosoft/location-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/az/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Ünvan', ], - 'selected' => 'Seçilib' + 'selected' => 'Seçilib', + 'choose_an_option' => 'Bir seçim seçin ...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/bn/field.php b/addons/default/visiosoft/location-module/resources/lang/bn/field.php index 11d41f88e..8ff0c319a 100644 --- a/addons/default/visiosoft/location-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/bn/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'ঠিকানা', ], - 'selected' => 'নির্বাচিত' + 'selected' => 'নির্বাচিত', + 'choose_an_option' => 'একটি বিকল্প নির্বাচন করুন...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/de/field.php b/addons/default/visiosoft/location-module/resources/lang/de/field.php index e62b4bf25..0ce13c70d 100644 --- a/addons/default/visiosoft/location-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/de/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Adresse', ], - 'selected' => 'Ausgewählt' + 'selected' => 'Ausgewählt', + 'choose_an_option' => 'Wähle eine Option...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/el/field.php b/addons/default/visiosoft/location-module/resources/lang/el/field.php index 7e659f2d6..193dd80ba 100644 --- a/addons/default/visiosoft/location-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/el/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Διεύθυνση', ], - 'selected' => 'Επιλεγμένο' + 'selected' => 'Επιλεγμένο', + 'choose_an_option' => 'Διάλεξε μια επιλογή...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/es/field.php b/addons/default/visiosoft/location-module/resources/lang/es/field.php index 36aad6b38..5ee86f85e 100644 --- a/addons/default/visiosoft/location-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/es/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Habla a', ], - 'selected' => 'Seleccionado' + 'selected' => 'Seleccionado', + 'choose_an_option' => 'Escoge una opción...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/fa/field.php b/addons/default/visiosoft/location-module/resources/lang/fa/field.php index 7dcd20380..cdbfd0ad9 100644 --- a/addons/default/visiosoft/location-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/fa/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'نشانی', ], - 'selected' => 'انتخاب شد' + 'selected' => 'انتخاب شد', + 'choose_an_option' => 'گزینه ای را انتخاب کنید ...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/fr/field.php b/addons/default/visiosoft/location-module/resources/lang/fr/field.php index 5455a2423..0ab715569 100644 --- a/addons/default/visiosoft/location-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/fr/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Adresse', ], - 'selected' => 'Choisi' + 'selected' => 'Choisi', + 'choose_an_option' => 'Choisis une option...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/he/field.php b/addons/default/visiosoft/location-module/resources/lang/he/field.php index 26d422763..f6853f1fe 100644 --- a/addons/default/visiosoft/location-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/he/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'כתובת', ], - 'selected' => 'נבחר' + 'selected' => 'נבחר', + 'choose_an_option' => 'בחר אפשרות...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/hi/field.php b/addons/default/visiosoft/location-module/resources/lang/hi/field.php index 40ee64251..b4e387250 100644 --- a/addons/default/visiosoft/location-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/hi/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'पता', ], - 'selected' => 'चुन लिया' + 'selected' => 'चुन लिया', + 'choose_an_option' => 'एक विकल्प चुनें...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/it/field.php b/addons/default/visiosoft/location-module/resources/lang/it/field.php index 3d19224d3..fc88fa2ae 100644 --- a/addons/default/visiosoft/location-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/it/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Indirizzo', ], - 'selected' => 'Selezionato' + 'selected' => 'Selezionato', + 'choose_an_option' => 'Scegliere un\'opzione...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ja/field.php b/addons/default/visiosoft/location-module/resources/lang/ja/field.php index 29ecaa31b..2b56cc927 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/ja/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => '住所', ], - 'selected' => '選択済み' + 'selected' => '選択済み', + 'choose_an_option' => 'オプションを選択...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ko/field.php b/addons/default/visiosoft/location-module/resources/lang/ko/field.php index aec1f0f28..61852cbda 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/ko/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => '주소', ], - 'selected' => '선택된' + 'selected' => '선택된', + 'choose_an_option' => '옵션을 선택하세요...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ku/addon.php b/addons/default/visiosoft/location-module/resources/lang/ku/addon.php new file mode 100644 index 000000000..5e3074cc7 --- /dev/null +++ b/addons/default/visiosoft/location-module/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Cîh', + 'name' => 'Modula Cihê', + 'description' => 'Terîf', +]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ku/button.php b/addons/default/visiosoft/location-module/resources/lang/ku/button.php new file mode 100644 index 000000000..d8f3eb90b --- /dev/null +++ b/addons/default/visiosoft/location-module/resources/lang/ku/button.php @@ -0,0 +1,17 @@ + 'Welatê Nû', + 'new_city' => 'Bajarê Nû', + 'new_district' => 'Navçeya Nû', + 'new_neighborhood' => 'Taxa Nû', + 'new_village' => 'Gundê Nû', + 'sub_cities' => 'Bajarên bin', + 'add_sub_cities' => 'Sub City-ê zêde bikin', + 'add_sub_districts' => 'Navçeya Sub zêde bikin', + 'add_sub_neighborhoods' => 'Taxa Jêr Zêdekirin', + 'add_sub_village' => 'Gundê Binî Zêde bikin', + 'sub_districts' => 'Sub District', + 'sub_neighborhoods' => 'Taxên Bin', + 'sub_village' => 'Gundê binî', +]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ku/field.php b/addons/default/visiosoft/location-module/resources/lang/ku/field.php new file mode 100644 index 000000000..ce9c5c905 --- /dev/null +++ b/addons/default/visiosoft/location-module/resources/lang/ku/field.php @@ -0,0 +1,39 @@ + [ + 'name' => 'Nav' + ], + 'slug' => [ + 'name' => 'Şeytanok' + ], + 'city' => [ + 'name' => 'Bajar' + ], + 'country' => [ + 'name' => 'Welat' + ], + 'district' => [ + 'name' => 'Herêm' + ], + 'order' => [ + 'name' => 'Rêzê Rêz bike' + ], + 'neighborhood' => [ + 'name' => 'Cînarî' + ], + 'village' => [ + 'name' => 'Gûnd' + ], + 'description' => [ + 'name' => 'Terîf' + ], + 'pick_option' => [ + 'name' => 'Vebijarek hilbijêrin', + ], + 'address' => [ + 'name' => 'Navnîşan', + ], + 'selected' => 'Hilbijartin', + 'choose_an_option' => 'Vebijarek hilbijêrin ...', +]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ku/message.php b/addons/default/visiosoft/location-module/resources/lang/ku/message.php new file mode 100644 index 000000000..ec4be7a20 --- /dev/null +++ b/addons/default/visiosoft/location-module/resources/lang/ku/message.php @@ -0,0 +1,6 @@ + 'Ji bo lêgerînê li vir binivîse', + 'null_msg' => 'Peyda nebû', +]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ku/permission.php b/addons/default/visiosoft/location-module/resources/lang/ku/permission.php new file mode 100644 index 000000000..0730a8d44 --- /dev/null +++ b/addons/default/visiosoft/location-module/resources/lang/ku/permission.php @@ -0,0 +1,13 @@ + [ + 'name' => 'Gûnd', + 'option' => [ + 'read' => 'Dikarin gund bixwînin?', + 'write' => 'Ma dikare gund çêbike / sererast bike?', + 'delete' => 'Ma dikare gund jê bibe?', + ], + ], +]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ku/section.php b/addons/default/visiosoft/location-module/resources/lang/ku/section.php new file mode 100644 index 000000000..b379ba85b --- /dev/null +++ b/addons/default/visiosoft/location-module/resources/lang/ku/section.php @@ -0,0 +1,23 @@ + [ + 'title' => 'Welat', + ], + 'cities' => [ + 'title' => 'Bajar', + ], + 'districts' => [ + 'title' => 'Navçe', + ], + 'neighborhoods' => [ + 'title' => 'Taxan', + ], + 'village' => [ + 'title' => 'Gûnd', + ], + 'general' => 'Giştî', + 'map' => 'Qert', + 'setting' => 'Sazkirin', + 'filter' => 'Parzûn', +]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ku/setting.php b/addons/default/visiosoft/location-module/resources/lang/ku/setting.php new file mode 100644 index 000000000..9545e869d --- /dev/null +++ b/addons/default/visiosoft/location-module/resources/lang/ku/setting.php @@ -0,0 +1,56 @@ + [ + 'name' => 'Zeviyê Cihê Rûpela Rûpelê', + ], + 'list_page_location' => [ + 'name' => 'Qada Rûpelê Rûpela Rûpelê', + ], + 'detail_page_location' => [ + 'name' => 'Zeviya Cihê Rûpelê Detail', + ], + 'show_search_location_btn' => [ + 'name' => 'Bişkoja Cihê Lêgerînê nîşan bide', + ], + 'default_country' => [ + 'name' => 'Welatê Default', + ], + 'create_ad_page_location' => [ + 'name' => 'Cihê Rûpela Rûpelê biafirînin', + ], + 'default_city' => [ + 'name' => 'Default City', + ], + 'default_district' => [ + 'name' => 'Navçeya Default', + ], + 'default_neighborhood' => [ + 'name' => 'Taxa Default', + ], + + 'google_map_key' => [ + 'name' => 'Google Maps Api Key', + ], + + 'map_coordinates_long' => [ + 'name' => 'Default Long', + ], + + 'map_coordinates_lat' => [ + 'name' => 'Default Lat', + ], + + 'hide_location_filter' => [ + 'name' => 'Parzûna Cihê Veşêre', + ], + 'country_for_phone_field' => [ + 'name' => 'Welatê Default Ji Bo Tomarbûna Qada Telefonê' + ], + 'sorting_column' => [ + 'name' => 'Stûnê Rêzkirin', + ], + 'sorting_type' => [ + 'name' => 'Cureyê Rêzkirinê', + ], +]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ku/stream.php b/addons/default/visiosoft/location-module/resources/lang/ku/stream.php new file mode 100644 index 000000000..d7df4e3a1 --- /dev/null +++ b/addons/default/visiosoft/location-module/resources/lang/ku/stream.php @@ -0,0 +1,7 @@ + [ + 'name' => 'Gûnd', + ], +]; diff --git a/addons/default/visiosoft/location-module/resources/lang/nl/field.php b/addons/default/visiosoft/location-module/resources/lang/nl/field.php index 4ae6bfdd9..7743a1f71 100644 --- a/addons/default/visiosoft/location-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/nl/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Adres', ], - 'selected' => 'Geselecteerd' + 'selected' => 'Geselecteerd', + 'choose_an_option' => 'Kies een optie...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/pl/field.php b/addons/default/visiosoft/location-module/resources/lang/pl/field.php index f23d23cce..50dcbe3c2 100644 --- a/addons/default/visiosoft/location-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/pl/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Adres', ], - 'selected' => 'Wybrany' + 'selected' => 'Wybrany', + 'choose_an_option' => 'Wybierz opcję...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/pt/field.php b/addons/default/visiosoft/location-module/resources/lang/pt/field.php index ab82b4c0c..3a6d044c3 100644 --- a/addons/default/visiosoft/location-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/pt/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Endereço', ], - 'selected' => 'Selecionado' + 'selected' => 'Selecionado', + 'choose_an_option' => 'Escolha uma opção...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ro/field.php b/addons/default/visiosoft/location-module/resources/lang/ro/field.php index 58ad3250f..2f7e7d4b2 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/ro/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Abordare', ], - 'selected' => 'Selectat' + 'selected' => 'Selectat', + 'choose_an_option' => 'Alege o opțiune...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ru/field.php b/addons/default/visiosoft/location-module/resources/lang/ru/field.php index 5bd84f419..3c04b216b 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/ru/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Адрес', ], - 'selected' => 'выбранный' + 'selected' => 'выбранный', + 'choose_an_option' => 'Выберите опцию...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/sq/field.php b/addons/default/visiosoft/location-module/resources/lang/sq/field.php index 98c7fe1d9..d88ca6077 100644 --- a/addons/default/visiosoft/location-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/sq/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Adresë', ], - 'selected' => 'I zgjedhur' + 'selected' => 'I zgjedhur', + 'choose_an_option' => 'Zgjidhni një opsion ...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/sv/field.php b/addons/default/visiosoft/location-module/resources/lang/sv/field.php index 31d6ad993..52797b12f 100644 --- a/addons/default/visiosoft/location-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/sv/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Adress', ], - 'selected' => 'Vald' + 'selected' => 'Vald', + 'choose_an_option' => 'Välj ett alternativ...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/tr/button.php b/addons/default/visiosoft/location-module/resources/lang/tr/button.php index dce9002c4..b3bda5043 100644 --- a/addons/default/visiosoft/location-module/resources/lang/tr/button.php +++ b/addons/default/visiosoft/location-module/resources/lang/tr/button.php @@ -1,11 +1,11 @@ 'Yeni ülke', + 'new_country' => 'Yeni Ülke', 'new_city' => 'Yeni İl', 'new_district' => 'Yeni İlçe', 'new_neighborhood' => 'Yeni mahalle', - 'new_village' => 'Yeni köy', + 'new_village' => 'Yeni Köy', 'sub_cities' => 'Alt Şehirler', 'add_sub_cities' => 'Şehir Ekle', 'add_sub_districts' => 'İlçe Ekle', diff --git a/addons/default/visiosoft/location-module/resources/lang/tr/field.php b/addons/default/visiosoft/location-module/resources/lang/tr/field.php index 4e4966a01..f287cfbe2 100644 --- a/addons/default/visiosoft/location-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/tr/field.php @@ -36,6 +36,4 @@ return [ ], 'selected' => 'Seçilmiş', 'choose_an_option' => 'Seçim yapınız..', - - ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/tr/section.php b/addons/default/visiosoft/location-module/resources/lang/tr/section.php index fd2ed6f89..2bfb28a51 100644 --- a/addons/default/visiosoft/location-module/resources/lang/tr/section.php +++ b/addons/default/visiosoft/location-module/resources/lang/tr/section.php @@ -19,5 +19,5 @@ return [ 'general' => 'Genel', 'map' => 'Harita', 'setting' => 'Ayarlar', - 'filter' => 'filtre', + 'filter' => 'Filtre', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/uk/field.php b/addons/default/visiosoft/location-module/resources/lang/uk/field.php index 76b7a27c3..687b6d80b 100644 --- a/addons/default/visiosoft/location-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/uk/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Адреса', ], - 'selected' => 'Вибрано' + 'selected' => 'Вибрано', + 'choose_an_option' => 'Виберіть варіант ...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/ur/field.php b/addons/default/visiosoft/location-module/resources/lang/ur/field.php index 5f2c36ea7..860be9d40 100644 --- a/addons/default/visiosoft/location-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/ur/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'پتہ', ], - 'selected' => 'منتخب شدہ' + 'selected' => 'منتخب شدہ', + 'choose_an_option' => 'ایک آپشن منتخب کریں ...', ]; diff --git a/addons/default/visiosoft/location-module/resources/lang/vi/field.php b/addons/default/visiosoft/location-module/resources/lang/vi/field.php index 1e1731cad..5d9d3e12b 100644 --- a/addons/default/visiosoft/location-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/location-module/resources/lang/vi/field.php @@ -34,5 +34,6 @@ return [ 'address' => [ 'name' => 'Địa chỉ', ], - 'selected' => 'Đã chọn' + 'selected' => 'Đã chọn', + 'choose_an_option' => 'Chọn một sự lựa chọn...', ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ar/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/ar/validation.php index a01bdd7f2..455438d89 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/ar/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/ar/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'القرص المخصص لـ :attribute غير موجود.', + 'unsupported' => 'هذه المنطقة مخصصة لملفات الصور فقط. يمكنك إضافة أنواع ملفات مختلفة في حقل الوصف.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/az/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/az/validation.php index 35eb8941c..eb46e5e0b 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/az/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/az/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Konfiqurasiya edilmiş yükləmə diski: atribut mövcud deyil.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/bn/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/bn/validation.php index 8b4c319e6..517045a1a 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/bn/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/bn/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'এর জন্য কনফিগার করা আপলোড ডিস্ক: বৈশিষ্ট্যটি বিদ্যমান নেই।', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/de/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/de/validation.php index 245ffb539..766c29d35 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/de/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/de/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Die gewählte Upload-Disk für :attribute existiert nicht.', + 'unsupported' => 'Dieser Bereich ist nur für Bilddateien vorgesehen. Sie können im Beschreibungsfeld verschiedene Dateitypen hinzufügen.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/el/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/el/validation.php index 4293fd253..bcea1e5d9 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/el/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/el/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Ο διαμορφωμένος δίσκος μεταφόρτωσης για: χαρακτηριστικό δεν υπάρχει.', + 'unsupported' => 'Αυτή η περιοχή προορίζεται μόνο για αρχεία εικόνας. Μπορείτε να προσθέσετε διαφορετικούς τύπους αρχείων στο πεδίο περιγραφής.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/es/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/es/validation.php index 8d2cd2369..81aa24af8 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/es/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/es/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'El disco de carga configurado para: atributo no existe.', + 'unsupported' => 'Esta área es solo para archivos de imagen. Puede agregar diferentes tipos de archivos en el campo de descripción.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/fa/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/fa/validation.php index 0231522a6..c2e9e4047 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/fa/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/fa/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'دیسک بارگذاری پیکربندی شده برای: ویژگی وجود ندارد.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/fr/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/fr/validation.php index 8f107e306..bd0d2d772 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/fr/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/fr/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Le disque de téléchargement configuré pour: l\'attribut n\'existe pas.', + 'unsupported' => 'Cette zone est réservée aux fichiers image. Vous pouvez ajouter différents types de fichiers dans le champ de description.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/he/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/he/validation.php index 1bfb42336..09dff102a 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/he/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/he/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'דיסק ההעלאה שהוגדר עבור התכונה: אינו קיים.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/hi/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/hi/validation.php index 951597b74..8246774ba 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/hi/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/hi/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'इसके लिए कॉन्फ़िगर की गई अपलोड डिस्क: विशेषता मौजूद नहीं है।', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/it/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/it/validation.php index 6a6d2b523..4fc12bd31 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/it/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/it/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Il disco di caricamento configurato per: l\'attributo non esiste.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ja/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/ja/validation.php index f2a6aade0..80af006aa 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/ja/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/ja/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => ':attribute用に構成されたアップロードディスクは存在しません。', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ko/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/ko/validation.php index 199add262..f788127c7 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/ko/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/ko/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => ': attribute에 대해 구성된 업로드 디스크가 없습니다.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ku/addon.php b/addons/default/visiosoft/media-field_type/resources/lang/ku/addon.php new file mode 100644 index 000000000..923fbd34d --- /dev/null +++ b/addons/default/visiosoft/media-field_type/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Tîpa Qada Medyayê', + 'name' => 'Pelên Tîpa Zeviyê', + 'description' => 'Pir pelan celebek zeviyê bar dike.', +]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ku/button.php b/addons/default/visiosoft/media-field_type/resources/lang/ku/button.php new file mode 100644 index 000000000..96a65bb52 --- /dev/null +++ b/addons/default/visiosoft/media-field_type/resources/lang/ku/button.php @@ -0,0 +1,5 @@ + 'Ser', +]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ku/config.php b/addons/default/visiosoft/media-field_type/resources/lang/ku/config.php new file mode 100644 index 000000000..73fa7b396 --- /dev/null +++ b/addons/default/visiosoft/media-field_type/resources/lang/ku/config.php @@ -0,0 +1,26 @@ + [ + 'name' => 'Peldankan', + 'instructions' => 'Diyar bikin ka kîjan peldank ji bo vê qadê hene. Vala bihêle da ku hemî peldankan nîşan bide.', + 'warning' => 'Destûrên heyî yên peldankê pêşî li peldankên hilbijartî digirin.', + ], + 'min' => [ + 'label' => 'Hilbijarkên Kêmtirîn', + 'instructions' => 'Hilbijarkên destûrkirî yên herî kêm binivîse.', + ], + 'max' => [ + 'label' => 'Hilbijartinên Maksîmûm', + 'instructions' => 'Hejmara herî zêde ya hilbijartinên destûrkirî binivîse.', + ], + 'mode' => [ + 'name' => 'Modeya Input', + 'instructions' => 'Divê bikarhêner çawa têkela pelê peyda bikin?', + 'option' => [ + 'default' => 'Pelan bar bikin û / an hilbijêrin.', + 'select' => 'Tenê pelan hilbijêrin.', + 'upload' => 'Tenê pelan hilînin.', + ], + ], +]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ku/input.php b/addons/default/visiosoft/media-field_type/resources/lang/ku/input.php new file mode 100644 index 000000000..d7fc9bd56 --- /dev/null +++ b/addons/default/visiosoft/media-field_type/resources/lang/ku/input.php @@ -0,0 +1,6 @@ + 'Ji bo barkirinê pelan li vir bikirtînin an bavêjin.', + 'help' => 'Ji bo sererastkirina pelên pêvekirî bikirtînin û bikişînin.', +]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ku/message.php b/addons/default/visiosoft/media-field_type/resources/lang/ku/message.php new file mode 100644 index 000000000..705ea2de8 --- /dev/null +++ b/addons/default/visiosoft/media-field_type/resources/lang/ku/message.php @@ -0,0 +1,13 @@ + 'Hûn dixwazin li kîjan peldankê bar bikin?', + 'upload' => 'Wêneyan zêde bikin | Wêneyan bar bike | Wêneyek pêve bikin', + 'choose_files' => 'Hûn dixwazin kîjan pelan bikar bînin?', + 'no_files_selected' => 'Tu pel nehatine hilbijartin.', + 'no_uploads' => 'Tu pel nehatin barkirin.', + 'overwrite' => 'berê hate barkirin. Ma hûn dixwazin wê binivîsin?', + 'uploading' => 'Uploading', + 'loading' => 'Barkirin', + 'error_upload' => 'Di barkirina dosyeyê de pirsgirêkek derket.', +]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ku/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/ku/validation.php new file mode 100644 index 000000000..081bf1784 --- /dev/null +++ b/addons/default/visiosoft/media-field_type/resources/lang/ku/validation.php @@ -0,0 +1,6 @@ + 'Dîska barkirî ya mîhengkirî ji bo: taybetmendî tune.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' +]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/nl/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/nl/validation.php index 83ae3d544..9b4527924 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/nl/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/nl/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'De geconfigureerde uploadschijf voor: attribuut bestaat niet.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/pl/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/pl/validation.php index 7c5763225..a99077b96 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/pl/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/pl/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Skonfigurowany dysk do przesyłania dla: atrybut nie istnieje.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/pt/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/pt/validation.php index b6a59b015..1b30c0872 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/pt/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/pt/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'O disco de upload configurado para: attribute não existe.', + 'unsupported' => 'Esta área é apenas para arquivos de imagem. Você pode adicionar diferentes tipos de arquivo no campo de descrição.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ro/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/ro/validation.php index 423c67f75..72a0f62fb 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/ro/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/ro/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Discul de încărcare configurat pentru: atribut nu există.', + 'unsupported' => 'Această zonă este doar pentru fișiere imagine. Puteți adăuga diferite tipuri de fișiere în câmpul de descriere.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ru/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/ru/validation.php index 7eba5006e..e585111d4 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/ru/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/ru/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Настроенный загрузочный диск для: атрибута не существует.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/sq/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/sq/validation.php index 1f1540530..21371ae54 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/sq/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/sq/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Disku i konfiguruar i ngarkimit për: attribute nuk ekziston.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/sv/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/sv/validation.php index 85f4e2adc..a97ab9560 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/sv/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/sv/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Den konfigurerade uppladdningsskivan för: attributet finns inte.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/tr/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/tr/validation.php index 7d57a35a9..2bcd001c4 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/tr/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/tr/validation.php @@ -2,5 +2,5 @@ return [ 'valid_disk' => 'Yükleme diski :attribute için mevcut değil.', - 'unsupported' => 'Bu alan sadece resim dosyaları içindir. Farklı dosya türlerini açıklama alanına ekleyebilirsiniz.' + 'unsupported' => 'Bu alan sadece resim dosyaları içindir. Farklı dosya türlerini açıklama alanına ekleyebilirsiniz.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/uk/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/uk/validation.php index c0ac04e8f..7bc63984a 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/uk/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/uk/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Налаштований диск для завантаження для: атрибута не існує.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ur/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/ur/validation.php index 10b4a0b7d..0274c0f23 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/ur/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/ur/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'کے لئے تشکیل شدہ اپ لوڈ ڈسک: وصف موجود نہیں ہے۔', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/media-field_type/resources/lang/vi/validation.php b/addons/default/visiosoft/media-field_type/resources/lang/vi/validation.php index 9ab4a24da..e40cbf4d4 100644 --- a/addons/default/visiosoft/media-field_type/resources/lang/vi/validation.php +++ b/addons/default/visiosoft/media-field_type/resources/lang/vi/validation.php @@ -2,4 +2,5 @@ return [ 'valid_disk' => 'Đĩa tải lên được cấu hình cho: thuộc tính không tồn tại.', + 'unsupported' => 'This area is for image files only. You can add different file types in the description field.' ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/button.php b/addons/default/visiosoft/profile-module/resources/lang/ar/button.php index 41299fcc3..9a694f985 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'حذف', 'extend' => 'تمديد', 'extend_all' => 'تمديد الكل', + 'extend_unpublished' => 'تمديد غير منشور', 'edit' => 'تعديل', 'go_profile' => 'الذهاب إلى تفاصيل الملف الشخصي', 'go_user' => 'انتقل إلى تفاصيل المستخدم', 'personal' => 'شخصي', 'corporate' => 'الشركات', 'export' => 'تصدير', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'تعليم جديد', + 'new_education_part' => 'جزء التعليم الجديد', ]; 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 78058e12a..0c3f3634c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'عيد ميلاد' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'عنوان Facebook' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'عنوان Google' ], 'education' => [ 'name' => 'التعليم' @@ -122,7 +122,7 @@ return [ 'name' => 'المستعمل' ], 'name' => [ - 'name' => 'Name' + 'name' => 'اسم' ], /*Menu Button*/ @@ -480,6 +480,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + '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 7981993e3..68a0d7986 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'نظرًا لمشاكل الأمان ، قمنا بتغيير كلمة المرور الخاصة بك! كلمة المرور الجديدة:', 'required_all' => "كل الحقول مطلوبة!", 'can_not_remove_filled_fields' => "لا يمكنك إزالة الحقول المملوءة!", + 'wrong_password' => "كلمة المرور التي أدخلتها غير صحيحة!", // Forgot Password 'email_phone_not_found' => 'البريد الإلكتروني ، رقم الهاتف غير صحيح!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ar/permission.php index 63fcd0cbd..18cea5f42 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'التعليم', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'هل تستطيع قراءة التعليم؟', + 'write' => 'يمكن إنشاء / تعديل التعليم؟', + 'delete' => 'هل يمكن حذف التعليم؟', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'جزء التعليم', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'يمكن قراءة جزء التعليم؟', + 'write' => 'يمكن إنشاء / تحرير جزء التعليم؟', + 'delete' => 'يمكن حذف جزء التعليم؟', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/section.php b/addons/default/visiosoft/profile-module/resources/lang/ar/section.php index a8cb29630..17aa6bf3e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'الاعدادات العامة', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'التعليم', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'جزء التعليم', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ar/stream.php index b76c96fdb..e1515760d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ar/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ar/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'عنوان', ], 'education' => [ - 'name' => 'Education', + 'name' => 'التعليم', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'جزء التعليم', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/button.php b/addons/default/visiosoft/profile-module/resources/lang/az/button.php index 14acb86eb..4511043a1 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Silin', 'extend' => 'Uzatmaq', 'extend_all' => 'Hamısını genişləndirin', + 'extend_unpublished' => 'Genişləndirin Nəşr olunmayıb', 'edit' => 'Redaktə edin', 'go_profile' => 'Profil təfərrüatlarına keçin', 'go_user' => 'İstifadəçi təfərrüatlarına keçin', 'personal' => 'Şəxsi', 'corporate' => 'Korporativ', 'export' => 'İxrac', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Yeni Təhsil', + 'new_education_part' => 'Yeni Təhsil hissəsi', ]; 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 b57a768bb..e5b4a7d19 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Ad günü' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Facebook ünvanı' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Google ünvanı' ], 'education' => [ 'name' => 'Təhsil' @@ -122,7 +122,7 @@ return [ 'name' => 'İstifadəçi' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Ad' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Təhsil vəziyyəti' ], ]; 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 a049d6839..cf8b16d05 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/message.php @@ -29,6 +29,7 @@ return [ '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!", + 'wrong_password' => "Girdiyiniz parol düzgün deyil!", // 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/az/permission.php b/addons/default/visiosoft/profile-module/resources/lang/az/permission.php index 938840c98..15ae5136b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Təhsil', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Təhsili oxuya bilərsən?', + 'write' => 'Təhsil yarada / redaktə edə bilərsənmi?', + 'delete' => 'Təhsili silə bilərsən?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Təhsil hissəsi', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Təhsil hissəsini oxuya bilərsinizmi?', + 'write' => 'Təhsil hissəsini yarada / redaktə edə bilərsənmi?', + 'delete' => 'Təhsil hissəsini silə bilərsinizmi?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/section.php b/addons/default/visiosoft/profile-module/resources/lang/az/section.php index 93f30d567..d4a5f7e8d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Ümumi Ayarlar', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Təhsil', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Təhsil hissəsi', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/stream.php b/addons/default/visiosoft/profile-module/resources/lang/az/stream.php index e40bc1f80..50c85d94b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/az/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/az/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Ünvan', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Təhsil', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Təhsil hissəsi', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/button.php b/addons/default/visiosoft/profile-module/resources/lang/bn/button.php index 97955f087..b69e1f5f9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'মুছে ফেলা', 'extend' => 'প্রসারিত করা', 'extend_all' => 'সমস্ত প্রসারিত করুন', + 'extend_unpublished' => 'অপ্রকাশিত প্রসারিত করুন', 'edit' => 'সম্পাদন করা', 'go_profile' => 'প্রোফাইল বিশদে যান', 'go_user' => 'ব্যবহারকারীর বিবরণে যান', 'personal' => 'ব্যক্তিগত', 'corporate' => 'কর্পোরেট', 'export' => 'রফতানি', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'নতুন শিক্ষা', + 'new_education_part' => 'নতুন শিক্ষার অংশ', ]; 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 707b1b175..23b3abd23 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'জন্মদিন' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'ফেসবুক ঠিকানা' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'গুগল ঠিকানা' ], 'education' => [ 'name' => 'শিক্ষা' @@ -122,7 +122,7 @@ return [ 'name' => 'ব্যবহারকারী' ], 'name' => [ - 'name' => 'Name' + 'name' => 'নাম' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + '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 1b959a80b..39c5bfcc8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'সুরক্ষা সমস্যার কারণে আমরা আপনার পাসওয়ার্ড পরিবর্তন করেছি! আপনার নতুন পাসওয়ার্ডটি হ\'ল:', 'required_all' => "সমস্ত ক্ষেত্র প্রয়োজন!", 'can_not_remove_filled_fields' => "আপনি ভরাট ক্ষেত্র সরাতে পারবেন না!", + 'wrong_password' => "আপনি যে পাসওয়ার্ডটি লিখেছেন তা সঠিক নয়!", // Forgot Password 'email_phone_not_found' => 'ই-মেইল, ফোন নম্বর ঠিক নয়!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/permission.php b/addons/default/visiosoft/profile-module/resources/lang/bn/permission.php index 043e46b3a..ed829f013 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'শিক্ষা', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'পড়াশোনা করতে পারি?', + 'write' => 'শিক্ষা তৈরি / সম্পাদনা করতে পারবেন?', + 'delete' => 'পড়াশোনা মুছতে পারবেন?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'শিক্ষার অংশ', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'পড়াশুনা অংশ পড়তে পারেন?', + 'write' => 'শিক্ষার অংশ তৈরি / সম্পাদনা করতে পারবেন?', + 'delete' => 'শিক্ষার অংশটি মুছতে পারবেন?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/section.php b/addons/default/visiosoft/profile-module/resources/lang/bn/section.php index 6405fbe44..f268ceea2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'সাধারণ সেটিংস', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'শিক্ষা', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'শিক্ষার অংশ', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/stream.php b/addons/default/visiosoft/profile-module/resources/lang/bn/stream.php index 9179279a8..35ed95de2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/bn/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/bn/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'ঠিকানা', ], 'education' => [ - 'name' => 'Education', + 'name' => 'শিক্ষা', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'শিক্ষার অংশ', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/button.php b/addons/default/visiosoft/profile-module/resources/lang/de/button.php index b47052df8..e4267dbac 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Löschen', 'extend' => 'Erweitern', 'extend_all' => 'Alle erweitern', + 'extend_unpublished' => 'Unveröffentlicht verlängern', 'edit' => 'Bearbeiten', 'go_profile' => 'Gehen Sie zu Profildetail', 'go_user' => 'Gehen Sie zu Benutzerdetails', 'personal' => 'persönlich', 'corporate' => 'Corporate', 'export' => 'Export', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Neue Bildung', + 'new_education_part' => 'Neuer Bildungsteil', ]; 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 9a4f39ee9..71f5a22ac 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Geburtstag' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Facebook-Adresse' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Google-Adresse' ], 'education' => [ 'name' => 'Bildung' @@ -486,6 +486,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Bildungsstand' ], ]; 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 478281304..f803385b0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/message.php @@ -30,6 +30,7 @@ return [ '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!", + 'wrong_password' => "Das eingegebene Passwort ist nicht korrekt!", // Forgot Password 'email_phone_not_found' => 'Die E-Mail, Telefonnummer ist nicht korrekt!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/permission.php b/addons/default/visiosoft/profile-module/resources/lang/de/permission.php index d6534f897..996d2880d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Bildung', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Kann Bildung lesen?', + 'write' => 'Kann Bildung erstellen / bearbeiten?', + 'delete' => 'Kann Bildung löschen?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Bildungsteil', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Kann Bildung Teil lesen?', + 'write' => 'Kann Bildungsteil erstellen / bearbeiten?', + 'delete' => 'Kann Bildungsteil gelöscht werden?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/section.php b/addons/default/visiosoft/profile-module/resources/lang/de/section.php index 3b3f20ea5..bf3972c6c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Allgemeine Einstellungen', 'recaptcha' => 'reCaptcha', 'education' => [ - 'title' => 'Education', + 'title' => 'Bildung', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Bildungsteil', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/stream.php b/addons/default/visiosoft/profile-module/resources/lang/de/stream.php index ce288e3ef..9c85f66fb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/de/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/de/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Anschrift', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Bildung', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Bildungsteil', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/button.php b/addons/default/visiosoft/profile-module/resources/lang/el/button.php index 59ba1c76a..16e12908f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Διαγράφω', 'extend' => 'Επεκτείνω', 'extend_all' => 'Επέκταση όλων', + 'extend_unpublished' => 'Επέκταση μη δημοσιευμένου', 'edit' => 'Επεξεργασία', 'go_profile' => 'Μεταβείτε στη Λεπτομέρεια προφίλ', 'go_user' => 'Μεταβείτε στη Λεπτομέρεια χρήστη', 'personal' => 'Προσωπικός', 'corporate' => 'Εταιρικός', 'export' => 'Εξαγωγή', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Νέα Εκπαίδευση', + 'new_education_part' => 'Νέο τμήμα εκπαίδευσης', ]; 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 813644528..aeb8e3dca 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Γενέθλια' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Διεύθυνση Facebook' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Διεύθυνση Google' ], 'education' => [ 'name' => 'Εκπαίδευση' @@ -122,7 +122,7 @@ return [ 'name' => 'Χρήστης' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Ονομα' ], /*Menu Button*/ @@ -483,6 +483,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + '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 ea186e972..dcc7ce7c6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/message.php @@ -30,6 +30,7 @@ return [ 'empty_password_sms_message' => 'Λόγω προβλημάτων ασφαλείας, αλλάξαμε τον κωδικό πρόσβασής σας! Ο νέος κωδικός πρόσβασής σας είναι:', 'required_all' => "Απαιτείται όλο το πεδίο!", 'can_not_remove_filled_fields' => "Δεν μπορείτε να καταργήσετε τα γεμάτα πεδία!", + 'wrong_password' => "Ο κωδικός πρόσβασης που εισαγάγατε δεν είναι σωστός!", // Forgot Password 'email_phone_not_found' => 'Το E-mail, ο αριθμός τηλεφώνου δεν είναι σωστός!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/permission.php b/addons/default/visiosoft/profile-module/resources/lang/el/permission.php index 310db69ff..3dbcee934 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Εκπαίδευση', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Μπορεί να διαβάσει την εκπαίδευση;', + 'write' => 'Μπορείτε να δημιουργήσετε / επεξεργαστείτε εκπαίδευση;', + 'delete' => 'Μπορεί να διαγραφεί η εκπαίδευση;', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Εκπαιδευτικό μέρος', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Μπορεί να διαβάσει το τμήμα εκπαίδευσης;', + 'write' => 'Μπορείτε να δημιουργήσετε / επεξεργαστείτε τμήμα εκπαίδευσης;', + 'delete' => 'Μπορεί να διαγραφεί το τμήμα εκπαίδευσης;', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/section.php b/addons/default/visiosoft/profile-module/resources/lang/el/section.php index f00736a85..1b76fdf83 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Γενικές Ρυθμίσεις', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Εκπαίδευση', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Εκπαιδευτικό μέρος', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/stream.php b/addons/default/visiosoft/profile-module/resources/lang/el/stream.php index 11d60b9d6..e70bb0324 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/el/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/el/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Διεύθυνση', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Εκπαίδευση', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Εκπαιδευτικό μέρος', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/button.php b/addons/default/visiosoft/profile-module/resources/lang/es/button.php index f0b2a3d59..397fe0662 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Eliminar', 'extend' => 'Ampliar', 'extend_all' => 'Extender todo', + 'extend_unpublished' => 'Ampliar sin publicar', 'edit' => 'Editar', 'go_profile' => 'Ir al detalle del perfil', 'go_user' => 'Ir al detalle del usuario', 'personal' => 'Personal', 'corporate' => 'Corporativo', 'export' => 'Exportar', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Nueva educación', + 'new_education_part' => 'Nueva parte de educación', ]; 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 14c799152..8a3400e69 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Cumpleaños' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Dirección de Facebook' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Dirección de Google' ], 'education' => [ 'name' => 'Educación' @@ -122,7 +122,7 @@ return [ 'name' => 'Usuario' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Nombre' ], /*Menu Button*/ @@ -483,6 +483,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Estado de la educació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 8f1d951dc..c911f0faa 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/message.php @@ -30,6 +30,7 @@ return [ '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!", + 'wrong_password' => "¡La contraseña que ingresó no es correcta!", // 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/es/permission.php b/addons/default/visiosoft/profile-module/resources/lang/es/permission.php index a2c4debb2..b452921c6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Educación', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => '¿Puede leer educación?', + 'write' => '¿Puede crear / editar educación?', + 'delete' => '¿Se puede eliminar la educación?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Parte de la educación', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => '¿Puede leer la parte de educación?', + 'write' => '¿Se puede crear / editar la parte de educación?', + 'delete' => '¿Se puede eliminar la parte de educación?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/section.php b/addons/default/visiosoft/profile-module/resources/lang/es/section.php index 88af6c402..a051f228b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Configuración general', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Educación', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Parte de la educación', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/stream.php b/addons/default/visiosoft/profile-module/resources/lang/es/stream.php index 84f9fe05c..2b1b243fe 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/es/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/es/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Dirección', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Educación', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Parte de la educación', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/button.php b/addons/default/visiosoft/profile-module/resources/lang/fa/button.php index 347e8b5b6..66e413ab2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'حذف', 'extend' => 'توسعه دادن، گسترش', 'extend_all' => 'گسترش همه', + 'extend_unpublished' => 'منتشر نشده', 'edit' => 'ویرایش کنید', 'go_profile' => 'به جزئیات مشخصات بروید', 'go_user' => 'به جزئیات کاربر بروید', 'personal' => 'شخصی', 'corporate' => 'شرکت های بزرگ، دارای شخصیت حقوقی', 'export' => 'صادرات', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'آموزش جدید', + 'new_education_part' => 'قسمت آموزش جدید', ]; 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 3a72dfad8..9f7252fdc 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'روز تولد' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'آدرس فیس بوک' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'آدرس Google' ], 'education' => [ 'name' => 'تحصیلات' @@ -122,7 +122,7 @@ return [ 'name' => 'کاربر' ], 'name' => [ - 'name' => 'Name' + 'name' => 'نام' ], /*Menu Button*/ @@ -480,6 +480,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + '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 02b96c6d1..04f55fe15 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'به دلیل مشکلات امنیتی رمز عبور شما را تغییر دادیم! گذرواژه جدید شما این است:', 'required_all' => "همه زمینه لازم است!", 'can_not_remove_filled_fields' => "شما نمی توانید زمینه های پر شده را حذف کنید!", + 'wrong_password' => "رمز عبوری که وارد کرده اید درست نیست!", // Forgot Password 'email_phone_not_found' => 'ایمیل ، شماره تلفن صحیح نیست!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/permission.php b/addons/default/visiosoft/profile-module/resources/lang/fa/permission.php index 085cb07e0..e5aa7b13e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'تحصیلات', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'آیا می توانید آموزش بخوانید؟', + 'write' => 'آیا می توان آموزش ایجاد یا ویرایش کرد؟', + 'delete' => 'آیا می توان آموزش را حذف کرد؟', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'قسمت آموزش', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'آیا می توان قسمت آموزش را خواند؟', + 'write' => 'آیا می توان بخشی از آموزش را ایجاد یا ویرایش کرد؟', + 'delete' => 'آیا می توان قسمت آموزش را حذف کرد؟', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/section.php b/addons/default/visiosoft/profile-module/resources/lang/fa/section.php index 0866e0181..4505127d5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'تنظیمات عمومی', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'تحصیلات', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'قسمت آموزش', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/stream.php b/addons/default/visiosoft/profile-module/resources/lang/fa/stream.php index 988317fb1..49811dacb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fa/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fa/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'آدرس', ], 'education' => [ - 'name' => 'Education', + 'name' => 'تحصیلات', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'قسمت آموزش', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/button.php b/addons/default/visiosoft/profile-module/resources/lang/fr/button.php index ba31b28c2..f58805476 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Supprimer', 'extend' => 'Étendre', 'extend_all' => 'Tout étendre', + 'extend_unpublished' => 'Prolonger non publié', 'edit' => 'Éditer', 'go_profile' => 'Aller aux détails du profil', 'go_user' => 'Aller aux détails de l\'utilisateur', 'personal' => 'Personnel', 'corporate' => 'Entreprise', 'export' => 'Exportation', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Nouvelle éducation', + 'new_education_part' => 'Nouvelle partie éducation', ]; 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 7255d5061..5e187ef01 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Anniversaire' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Adresse Facebook' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Adresse Google' ], 'education' => [ 'name' => 'Éducation' @@ -122,7 +122,7 @@ return [ 'name' => 'Utilisateur' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Nom' ], /*Menu Button*/ @@ -483,6 +483,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'État de l\'éducation' ], ]; 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 04836f9fa..976810ce9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/message.php @@ -30,6 +30,7 @@ return [ '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!", + 'wrong_password' => "Le mot de passe que vous avez entré n'est pas correct!", // 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/fr/permission.php b/addons/default/visiosoft/profile-module/resources/lang/fr/permission.php index f98d607ea..92cc3d20f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Éducation', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Peut lire l\'éducation?', + 'write' => 'Peut créer / modifier l\'éducation?', + 'delete' => 'Peut supprimer l\'éducation?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Partie éducation', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Peut lire la partie éducation?', + 'write' => 'Peut créer / modifier une partie éducation?', + 'delete' => 'Peut-on supprimer la partie éducation?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/section.php b/addons/default/visiosoft/profile-module/resources/lang/fr/section.php index 3ce422042..44cf8b867 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'réglages généraux', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Éducation', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Partie éducation', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/stream.php b/addons/default/visiosoft/profile-module/resources/lang/fr/stream.php index 329a9ea98..3bdb00a32 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/fr/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/fr/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Une robe', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Éducation', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Partie éducation', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/button.php b/addons/default/visiosoft/profile-module/resources/lang/he/button.php index aeb3fa536..1bf5f67b9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'מחק', 'extend' => 'הרחיבו', 'extend_all' => 'הרחב את הכל', + 'extend_unpublished' => 'הרחב שלא פורסם', 'edit' => 'ערוך', 'go_profile' => 'עבור לפרטי הפרופיל', 'go_user' => 'עבור לפרטי המשתמש', 'personal' => 'אישי', 'corporate' => 'תאגידי', 'export' => 'יְצוּא', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'חינוך חדש', + 'new_education_part' => 'חלק חינוך חדש', ]; 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 932ae3d01..84f582d54 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'יום הולדת' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'כתובת פייסבוק' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'כתובת גוגל' ], 'education' => [ 'name' => 'חינוך' @@ -122,7 +122,7 @@ return [ 'name' => 'משתמש' ], 'name' => [ - 'name' => 'Name' + 'name' => 'שֵׁם' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + '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 b3a2790db..f45829547 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'בגלל בעיות אבטחה, שינינו את הסיסמא שלך! הסיסמה החדשה שלך היא:', 'required_all' => "כל השדה נדרש!", 'can_not_remove_filled_fields' => "אינך יכול להסיר שדות מלאים!", + 'wrong_password' => "הסיסמה שהזנת אינה נכונה!", // Forgot Password 'email_phone_not_found' => 'הדואר האלקטרוני, מספר הטלפון אינו תקין!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/permission.php b/addons/default/visiosoft/profile-module/resources/lang/he/permission.php index dcdd19aab..e035145a8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'חינוך', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'האם יכול לקרוא חינוך?', + 'write' => 'האם ניתן ליצור / לערוך חינוך?', + 'delete' => 'האם ניתן למחוק חינוך?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'חלק בחינוך', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'האם יכול לקרוא חלק מחינוך?', + 'write' => 'האם ניתן ליצור / לערוך חלק בחינוך?', + 'delete' => 'האם ניתן למחוק חלק מחינוך?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/section.php b/addons/default/visiosoft/profile-module/resources/lang/he/section.php index 5950f6d74..69557ed7d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'הגדרות כלליות', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'חינוך', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'חלק בחינוך', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/stream.php b/addons/default/visiosoft/profile-module/resources/lang/he/stream.php index 2cd41adde..00576ac8b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/he/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/he/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'כתובת', ], 'education' => [ - 'name' => 'Education', + 'name' => 'חינוך', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'חלק בחינוך', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/button.php b/addons/default/visiosoft/profile-module/resources/lang/hi/button.php index bad7272b1..1c49a46a7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'हटाएं', 'extend' => 'बढ़ाएँ', 'extend_all' => 'सभी बढ़ाएँ', + 'extend_unpublished' => 'अप्रकाशित का विस्तार करें', 'edit' => 'संपादित करें', 'go_profile' => 'प्रोफाइल डिटेल पर जाएं', 'go_user' => 'यूजर डिटेल पर जाएं', 'personal' => 'निजी', 'corporate' => 'कॉर्पोरेट', 'export' => 'निर्यात', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'नई शिक्षा', + 'new_education_part' => 'नई शिक्षा का हिस्सा', ]; 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 9725adfe8..6d621096f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'जन्मदिन' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'फेसबुक एड्रेस' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Google पता' ], 'education' => [ 'name' => 'शिक्षा' @@ -122,7 +122,7 @@ return [ 'name' => 'उपयोगकर्ता' ], 'name' => [ - 'name' => 'Name' + 'name' => 'नाम' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + '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 b4e8ad10d..ad7111550 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'सुरक्षा समस्याओं के कारण, हमने आपका पासवर्ड बदल दिया है! आपका नया पासवर्ड है:', 'required_all' => "सभी फ़ील्ड आवश्यक है!", 'can_not_remove_filled_fields' => "आप भरे हुए खेतों को नहीं हटा सकते हैं!", + 'wrong_password' => "आपके द्वारा दर्ज किया गया पासवर्ड सही नहीं है!", // Forgot Password 'email_phone_not_found' => 'ई-मेल, फोन नंबर सही नहीं है!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/permission.php b/addons/default/visiosoft/profile-module/resources/lang/hi/permission.php index 88a15d69b..b393cdffd 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'शिक्षा', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'पढ़ सकते हैं शिक्षा?', + 'write' => 'शिक्षा का सृजन / संपादन कर सकते हैं?', + 'delete' => 'शिक्षा को नष्ट कर सकते हैं?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'शिक्षा का हिस्सा', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'शिक्षा का हिस्सा पढ़ सकते हैं?', + 'write' => 'शिक्षा भाग बना / संपादित कर सकते हैं?', + 'delete' => 'शिक्षा भाग को हटा सकते हैं?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/section.php b/addons/default/visiosoft/profile-module/resources/lang/hi/section.php index 707a5181c..61b9c9537 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'सामान्य सेटिंग्स', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'शिक्षा', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'शिक्षा का हिस्सा', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/stream.php b/addons/default/visiosoft/profile-module/resources/lang/hi/stream.php index d1f309854..0b5bb5277 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/hi/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/hi/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'पता', ], 'education' => [ - 'name' => 'Education', + 'name' => 'शिक्षा', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'शिक्षा का हिस्सा', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/button.php b/addons/default/visiosoft/profile-module/resources/lang/it/button.php index 0df840bd0..11bab5f7d 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Elimina', 'extend' => 'Estendere', 'extend_all' => 'Estendi tutto', + 'extend_unpublished' => 'Estendi non pubblicato', 'edit' => 'modificare', 'go_profile' => 'Vai a Dettagli profilo', 'go_user' => 'Vai a Dettagli utente', 'personal' => 'Personale', 'corporate' => 'Corporate', 'export' => 'Esportare', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Nuova istruzione', + 'new_education_part' => 'Nuova parte Istruzione', ]; 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 2bb5d8947..1daaf3590 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/field.php @@ -122,7 +122,7 @@ return [ 'name' => 'Utente' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Nome' ], /*Menu Button*/ @@ -483,6 +483,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Stato dell\'istruzione' ], ]; 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 b618a71b8..53f974366 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/message.php @@ -30,6 +30,7 @@ return [ '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!", + 'wrong_password' => "La password inserita non è corretta!", // 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/it/permission.php b/addons/default/visiosoft/profile-module/resources/lang/it/permission.php index 88922b0fe..9bdae5823 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Formazione scolastica', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Può leggere l\'istruzione?', + 'write' => 'Può creare / modificare l\'istruzione?', + 'delete' => 'Può eliminare l\'istruzione?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Parte dell\'istruzione', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Può leggere la parte educativa?', + 'write' => 'Può creare / modificare la parte educativa?', + 'delete' => 'Può eliminare la parte educativa?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/section.php b/addons/default/visiosoft/profile-module/resources/lang/it/section.php index eab2105c3..dbc4f7471 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'impostazioni generali', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Formazione scolastica', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Parte dell\'istruzione', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/stream.php b/addons/default/visiosoft/profile-module/resources/lang/it/stream.php index 6c74ba513..e461458a8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/it/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/it/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Un vestito', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Formazione scolastica', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Parte dell\'istruzione', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/button.php b/addons/default/visiosoft/profile-module/resources/lang/ja/button.php index e5f0a169d..4a09430b2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/button.php @@ -9,12 +9,13 @@ return [ 'delete' => '削除する', 'extend' => '伸ばす', 'extend_all' => 'すべて拡張', + 'extend_unpublished' => '未公開の拡張', 'edit' => '編集する', 'go_profile' => 'プロファイルの詳細に移動', 'go_user' => 'ユーザーの詳細に移動', 'personal' => '個人的な', 'corporate' => 'コーポレート', 'export' => '書き出す', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => '新しい教育', + 'new_education_part' => '新教育部', ]; 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 567c52b36..12a19017c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'お誕生日' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Facebookアドレス' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Googleアドレス' ], 'education' => [ 'name' => '教育' @@ -122,7 +122,7 @@ return [ 'name' => 'ユーザー' ], 'name' => [ - 'name' => 'Name' + 'name' => '名前' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + '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 00c28db06..f54878bc6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'セキュリティ上の問題により、パスワードを変更しました!新しいパスワードは:', 'required_all' => "すべてのフィールドが必要です!", 'can_not_remove_filled_fields' => "塗りつぶされたフィールドは削除できません!", + 'wrong_password' => "入力したパスワードが正しくありません!", // Forgot Password 'email_phone_not_found' => 'メール、電話番号が違います!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ja/permission.php index bb818fa98..102a56963 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => '教育', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => '教育を読むことができますか?', + 'write' => '教育を作成/編集できますか?', + 'delete' => '教育を削除できますか?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => '教育部分', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => '教育部分は読めますか?', + 'write' => '教育パートを作成/編集できますか?', + 'delete' => '教育部分を削除できますか?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/section.php b/addons/default/visiosoft/profile-module/resources/lang/ja/section.php index 54b80ad20..c174f167b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => '一般設定', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => '教育', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => '教育部分', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ja/stream.php index 0c3a75c8b..818631b73 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ja/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ja/stream.php @@ -8,9 +8,9 @@ return [ 'name' => '住所', ], 'education' => [ - 'name' => 'Education', + 'name' => '教育', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => '教育部分', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/button.php b/addons/default/visiosoft/profile-module/resources/lang/ko/button.php index a67113abd..658e135b6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/button.php @@ -9,12 +9,13 @@ return [ 'delete' => '지우다', 'extend' => '넓히다', 'extend_all' => '모두 확장', + 'extend_unpublished' => '게시되지 않은 항목 확장', 'edit' => '편집하다', 'go_profile' => '프로필 정보로 이동', 'go_user' => '사용자 정보로 이동', 'personal' => '개인적인', 'corporate' => '기업', 'export' => '수출', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => '새로운 교육', + 'new_education_part' => '새로운 교육 부분', ]; 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 0c5c653d6..4f173599a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/field.php @@ -59,10 +59,10 @@ return [ 'name' => '생신' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => '페이스 북 주소' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Google 주소' ], 'education' => [ 'name' => '교육' @@ -122,7 +122,7 @@ return [ 'name' => '사용자' ], 'name' => [ - 'name' => 'Name' + 'name' => '이름' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + '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 9c8bcae66..e3d4d22b0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => '보안 문제로 인해 비밀번호가 변경되었습니다. 새 비밀번호는 다음과 같습니다.', 'required_all' => "모든 필드는 필수입니다!", 'can_not_remove_filled_fields' => "채워진 필드를 제거 할 수 없습니다!", + 'wrong_password' => "입력 한 비밀번호가 올바르지 않습니다!", // Forgot Password 'email_phone_not_found' => '이메일, 전화 번호가 올바르지 않습니다!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ko/permission.php index 3d1e31fdb..22fae9542 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => '교육', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => '교육을 읽을 수 있습니까?', + 'write' => '교육을 생성 / 편집 할 수 있습니까?', + 'delete' => '교육을 삭제할 수 있습니까?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => '교육 부분', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => '교육 부분을 읽을 수 있습니까?', + 'write' => '교육 부분을 생성 / 편집 할 수 있습니까?', + 'delete' => '교육 부분을 삭제할 수 있습니까?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/section.php b/addons/default/visiosoft/profile-module/resources/lang/ko/section.php index b71e95cdd..8e87f27eb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => '일반 설정', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => '교육', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => '교육 부분', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ko/stream.php index 4c20bedae..6cca35454 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ko/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ko/stream.php @@ -8,9 +8,9 @@ return [ 'name' => '주소', ], 'education' => [ - 'name' => 'Education', + 'name' => '교육', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => '교육 부분', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/addon.php b/addons/default/visiosoft/profile-module/resources/lang/ku/addon.php new file mode 100644 index 000000000..6bcf3ecc8 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Tengal', + 'name' => 'Profile Module', + 'description' => '' +]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/button.php b/addons/default/visiosoft/profile-module/resources/lang/ku/button.php index 7504ec666..980334263 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ku/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Jêbirin', 'extend' => 'N', 'extend_all' => 'Hemî Dirêj Bikin', + 'extend_unpublished' => 'Berfireh Nedayîn', 'edit' => 'Weşandin', 'go_profile' => 'Herin Detailê Profîl', 'go_user' => 'Herin Berfirehiya Bikarhêner', 'personal' => 'Şexsî', 'corporate' => 'Pargîdanî', 'export' => 'Eksport', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Perwerdehiya Nû', + 'new_education_part' => 'Beşa Perwerdehiya Nû', ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/field.php b/addons/default/visiosoft/profile-module/resources/lang/ku/field.php index cfbb62d17..e1677c9e1 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ku/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Rojbûn' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Navnîşana Facebookê' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Navnîşana Google' ], 'education' => [ 'name' => 'Zanyarî' @@ -122,7 +122,7 @@ return [ 'name' => 'Bikaranîvan' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Nav' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Dewleta Perwerdehiyê' ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/message.php b/addons/default/visiosoft/profile-module/resources/lang/ku/message.php new file mode 100644 index 000000000..637df4978 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/message.php @@ -0,0 +1,46 @@ + "Qada E-nameyê Pêdivî ye!", + "username" => "Navê Navnîş Pêdivî ye!", + "success_update" => "Nûvekirina Profîl Bi Serkeftin!", + "adress_success_update" => "Navnîşana Serkeftinê Bi Serkeftin!", + "adress_success_create" => "Navnîşan Bi Serfirazî Afirandin!", + "login_error" => "Têketin an şîfreyek çewt.", + "login_noMail_old_user" => "Navnîşana e-nameya ku hûn xistî nehat dîtin.", + "login_noMail_old_user2" => "Ji kerema xwe navnîşana e-nameyê kontrol bikin û dîsa biceribînin.", + "login_noMail_old_user3" => "Ger pirsgirêk berdewam bike, ji kerema xwe li ser 'info@openclassify.com' têkilî daynin.", + "login_info_old_user" => "Passwordîfreyek nû ji navnîşana e-nameya we re hat şandin.", + "success" => "Serketinî", + "notified_new_updates" => "Ez dixwazim ji nûvekirinên nû agahdar bibim", + "notified_about_ads" => "Di derheqê reklamên min de ragihînan bihêlin", + "receive_messages_email" => "Ez dixwazim wekî e-nameyan peyaman bistînim", + "no_packages_module" => "Moduleya Pakêtan tune!", + "required_add"=> "Ji kerema xwe hemî rêzikên hewce dagirin.", + "no_extend_package" => "Pakêtên Ad Adarê Dirêj Bikin", + "saved" => "Xilas kirin!", + 'please_confirm_transaction' => 'Ji kerema xwe danûstendinê piştrast bikin', + 'password_do_not_match' => 'Passwordîfre li hev nakin', + 'your_password_changed' => 'Passwordîfreya we bi serfirazî hate nûve kirin', + 'error_valid_email_or_phone' => 'Forma jimara telefonê an navnîşana E-nameyê ne rast e.', + 'error_valid_phone' => 'Formata jimara têlefonê ne rast e.', + 'registered_phone' => 'Ev jimara têlefonê jixwe hatî tomar kirin.', + 'ajax_address_error' => 'Navnîşan tune an ji bo dîtinê ne destûrdar e.', + 'empty_password_sms_message' => 'Ji ber pirsgirêkên ewlehiyê, me şîfreya we guherand! Passwordîfreya weya nû ev e:', + 'required_all' => "Hemî Zevî Pêdivî ye!", + 'can_not_remove_filled_fields' => "Hûn nekarin zeviyên dagirtî rakin!", + 'wrong_password' => "Passwordîfreya ku we xistî ne rast e!", + + // Forgot Password + 'email_phone_not_found' => 'E-name, Jimareya Têlefonê ne rast e!', + + 'disable_account' => 'Ma hûn dixwazin hesabê xwe bigirin? Ev operasyon nayê paşve xistin.', + + // Mail + 'update_email_mail_subject' => 'E-name hatî nûve kirin!', + 'update_email_mail_message' => 'E-nameya We Hat Nûvekirin!', + + // Register + 'recaptcha_field_is_required' => 'qada reCaptcha pêdivî ye.', + 'failed_to_validate_captcha' => 'Captcha nehat pejirandin.', +]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ku/permission.php index 64adf8cfc..c6f4fa8e4 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ku/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Zanyarî', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Ma dikare perwerdehiyê bixwîne?', + 'write' => 'Ma dikare perwerdehiyê biafirîne / sererast bike?', + 'delete' => 'Ma dikare perwerdehiyê jê bibe?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Beşa perwerdehiyê', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Dikarin beşê perwerdehiyê bixwînin?', + 'write' => 'Dikarin beşê perwerdehiyê biafirînin / sererast bikin?', + 'delete' => 'Ma dikare beşa perwerdehiyê jê bibe?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/section.php b/addons/default/visiosoft/profile-module/resources/lang/ku/section.php index 55c2a2e52..6bd58e541 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ku/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Mîhengên Giştî', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Zanyarî', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Beşa perwerdehiyê', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ku/setting.php new file mode 100644 index 000000000..082d52e51 --- /dev/null +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/setting.php @@ -0,0 +1,46 @@ + [ + 'name' => 'Tab Reklamên Min Nîşan bidin', + ], + 'upload_avatar' => [ + 'name' => 'Avatar Upload', + ], + 'show_tax_office' => [ + 'name' => 'Qada Nivîsgeha Bacê Nîşan bidin', + ], + 'show_checkbox_terms_on_register' => [ + 'name' => 'Mercên Checkbox-ê li ser Tomarê nîşan bidin', + 'instructions' => 'Li ser forma tomarê "Termê Qebûl Bike", "Zagona Parastinê", "Termê nepeniyê", "sms & e-name" nîşan bidin' + ], + 'register_protection_url' => [ + 'name' => 'URL-ya Parastinê tomar bikin', + ], + 'register_privacy_url' => [ + 'name' => 'URL-ya nepenîtiyê tomar bikin', + ], + 'show_education_profession' => [ + 'name' => 'Qadên Perwerde û Pîşeyê nîşan bidin', + 'instructions' => 'Li ser rûpelê guherandina profîlê "Perwerde", "Dewleta Perwerdehiyê" û "Pîşeyê" nîşan bidin' + ], + 'google_captcha_site_key' => [ + 'name' => 'Mifteya Malpera Google Captcha', + ], + 'google_captcha_secret_key' => [ + 'name' => 'Mifteya Veşartî ya Google Captcha', + ], + 'score_threshold' => [ + 'name' => 'Benda Pûanê', + 'instructions' => 'Nirxek di navbera 0 û 1. Çiqas benda mezintir ReCaptcha hişktir e ku hewl dide ka bikarhêner botek e an na.', + ], + 'education' => [ + 'name' => 'Zanyarî' + ], + 'state_of_education' => [ + 'name' => 'Dewleta Perwerdehiyê' + ], + 'profession' => [ + 'name' => 'Sinet' + ], +]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ku/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ku/stream.php index 35f3ad0b9..67b17c2b2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ku/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ku/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Navnîşan', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Zanyarî', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Beşa perwerdehiyê', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/button.php b/addons/default/visiosoft/profile-module/resources/lang/nl/button.php index cfd457713..3db50220c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Verwijderen', 'extend' => 'Uitbreiden', 'extend_all' => 'Alles uitbreiden', + 'extend_unpublished' => 'Verleng niet gepubliceerd', 'edit' => 'Bewerk', 'go_profile' => 'Ga naar Profieldetail', 'go_user' => 'Ga naar Gebruikersdetails', 'personal' => 'Persoonlijk', 'corporate' => 'Zakelijk', 'export' => 'Exporteren', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Nieuw onderwijs', + 'new_education_part' => 'Nieuw onderwijsgedeelte', ]; 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 31093681e..730aabeb3 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Verjaardag' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Facebook-adres' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Google-adres' ], 'education' => [ 'name' => 'Opleiding' @@ -122,7 +122,7 @@ return [ 'name' => 'Gebruiker' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Naam' ], /*Menu Button*/ @@ -483,6 +483,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Staat van onderwijs' ], ]; 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 41b412321..3fa1c58ae 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/message.php @@ -29,6 +29,7 @@ return [ '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!", + 'wrong_password' => "Het ingevoerde wachtwoord is niet correct!", // Forgot Password 'email_phone_not_found' => 'Het e-mailadres, telefoonnummer is niet correct!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/permission.php b/addons/default/visiosoft/profile-module/resources/lang/nl/permission.php index c36695ad9..96984fa40 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Opleiding', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Kan onderwijs lezen?', + 'write' => 'Kan onderwijs maken / bewerken?', + 'delete' => 'Kan onderwijs verwijderen?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Onderwijsgedeelte', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Kan het onderwijsgedeelte lezen?', + 'write' => 'Kan een onderwijsgedeelte maken / bewerken?', + 'delete' => 'Kan het onderwijsgedeelte verwijderen?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/section.php b/addons/default/visiosoft/profile-module/resources/lang/nl/section.php index fa1893b59..292bfbd8b 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Algemene instellingen', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Opleiding', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Onderwijsgedeelte', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/stream.php b/addons/default/visiosoft/profile-module/resources/lang/nl/stream.php index 92c7c12b3..c5fb00c08 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/nl/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/nl/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Een jurk', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Opleiding', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Onderwijsgedeelte', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/button.php b/addons/default/visiosoft/profile-module/resources/lang/pl/button.php index c5d0ef93d..3b0309c6a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Usunąć', 'extend' => 'Poszerzać', 'extend_all' => 'Rozszerz wszystko', + 'extend_unpublished' => 'Rozszerz niepublikowane', 'edit' => 'Edytować', 'go_profile' => 'Przejdź do szczegółów profilu', 'go_user' => 'Przejdź do szczegółów użytkownika', 'personal' => 'Osobisty', 'corporate' => 'Zbiorowy', 'export' => 'Eksport', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Nowa edukacja', + 'new_education_part' => 'Nowa część edukacyjna', ]; 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 2807b67ad..3883aa1ba 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Urodziny' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Adres na Facebooku' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Adres Google' ], 'education' => [ 'name' => 'Edukacja' @@ -122,7 +122,7 @@ return [ 'name' => 'Użytkownik' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Nazwa' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Stan edukacji' ], ]; 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 ec34816ab..0e0e7f5a5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/message.php @@ -29,6 +29,7 @@ return [ '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!", + 'wrong_password' => "Wprowadzone hasło jest nieprawidłowe!", // Forgot Password 'email_phone_not_found' => 'Adres e-mail, numer telefonu jest nieprawidłowy!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/permission.php b/addons/default/visiosoft/profile-module/resources/lang/pl/permission.php index a733ee567..c3f54dffd 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Edukacja', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Potrafi czytać edukację?', + 'write' => 'Czy można tworzyć / edytować edukację?', + 'delete' => 'Czy można usunąć wykształcenie?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Część edukacyjna', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Potrafi przeczytać część edukacyjną?', + 'write' => 'Czy można tworzyć / edytować część edukacyjną?', + 'delete' => 'Czy można usunąć część edukacyjną?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/section.php b/addons/default/visiosoft/profile-module/resources/lang/pl/section.php index 5e2f29edb..7b968f93a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Ustawienia główne', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Edukacja', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Część edukacyjna', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/stream.php b/addons/default/visiosoft/profile-module/resources/lang/pl/stream.php index e596efeb6..3593c99a5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pl/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pl/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Adres', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Edukacja', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Część edukacyjna', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/button.php b/addons/default/visiosoft/profile-module/resources/lang/pt/button.php index 55eea485f..c3e276779 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Excluir', 'extend' => 'Ampliar', 'extend_all' => 'Estender tudo', + 'extend_unpublished' => 'Estender não publicado', 'edit' => 'Editar', 'go_profile' => 'Ir para o detalhe do perfil', 'go_user' => 'Ir para Detalhes do Usuário', 'personal' => 'Pessoal', 'corporate' => 'Corporativo', 'export' => 'Exportar', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Nova educação', + 'new_education_part' => 'Nova parte de educação', ]; 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 952a5952a..db41c0dd9 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Aniversário' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Endereço do Facebook' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Endereço Google' ], 'education' => [ 'name' => 'Educação' @@ -122,7 +122,7 @@ return [ 'name' => 'Do utilizador' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Nome' ], /*Menu Button*/ @@ -483,6 +483,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Estado da Educaçã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 1de7d220e..4a492d89f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/message.php @@ -32,6 +32,7 @@ return [ '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!", + 'wrong_password' => "A senha que você digitou não está correta!", // 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/pt/permission.php b/addons/default/visiosoft/profile-module/resources/lang/pt/permission.php index 58b0d82cf..38fd880e0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Educação', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Pode ler educação?', + 'write' => 'Pode criar / editar educação?', + 'delete' => 'Pode excluir educação?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Parte de educação', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Pode ler parte da educação?', + 'write' => 'Pode criar / editar a parte educacional?', + 'delete' => 'Pode excluir a parte educacional?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/section.php b/addons/default/visiosoft/profile-module/resources/lang/pt/section.php index 9f7ad7899..43dbdd4a0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Configurações Gerais', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Educação', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Parte de educação', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/stream.php b/addons/default/visiosoft/profile-module/resources/lang/pt/stream.php index b395fdd42..f9f7b2676 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/pt/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/pt/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Endereço', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Educação', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Parte de educação', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/button.php b/addons/default/visiosoft/profile-module/resources/lang/ro/button.php index af819ae71..3dc47d058 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Șterge', 'extend' => 'Extinde', 'extend_all' => 'Extindeți toate', + 'extend_unpublished' => 'Extindeți nepublicat', 'edit' => 'Editați | ×', 'go_profile' => 'Accesați Detaliile profilului', 'go_user' => 'Accesați Detaliile utilizatorului', 'personal' => 'Personal', 'corporate' => 'corporativ', 'export' => 'Export', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Educație nouă', + 'new_education_part' => 'Partea educație nouă', ]; 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 8125635b5..07528d6dc 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Zi de nastere' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Adresa Facebook' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Adresa Google' ], 'education' => [ 'name' => 'Educaţie' @@ -122,7 +122,7 @@ return [ 'name' => 'Utilizator' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Nume' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Starea educației' ], ]; 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 d072422e2..d0f99b454 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/message.php @@ -29,6 +29,7 @@ return [ '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!", + 'wrong_password' => "Parola pe care ați introdus-o nu este corectă!", // 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/ro/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ro/permission.php index bf7c5456e..6c738b570 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Educaţie', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Poate citi educația?', + 'write' => 'Poate crea / edita educație?', + 'delete' => 'Poate șterge educația?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Partea educație', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Poate citi partea educației?', + 'write' => 'Poate crea / edita partea de educație?', + 'delete' => 'Poate șterge partea de educație?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/section.php b/addons/default/visiosoft/profile-module/resources/lang/ro/section.php index 913b858f4..d15180791 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'setari generale', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Educaţie', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Partea educație', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ro/stream.php index ae105a4ec..80edd2c52 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ro/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ro/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Abordare', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Educaţie', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Partea educație', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/button.php b/addons/default/visiosoft/profile-module/resources/lang/ru/button.php index da86ac34d..4e6b6e87f 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'удалять', 'extend' => 'простираться', 'extend_all' => 'Расширить все', + 'extend_unpublished' => 'Продлить неопубликованные', 'edit' => 'редактировать', 'go_profile' => 'Перейти к профилю', 'go_user' => 'Перейти к информации о пользователе', 'personal' => 'личный', 'corporate' => 'Корпоративный', 'export' => 'Экспорт', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Новое образование', + 'new_education_part' => 'Часть нового образования', ]; 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 a62607c84..91e90bd93 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'День рождения' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Адрес Facebook' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Адрес Google' ], 'education' => [ 'name' => 'Образование' @@ -122,7 +122,7 @@ return [ 'name' => 'пользователь' ], 'name' => [ - 'name' => 'Name' + 'name' => 'имя' ], /*Menu Button*/ @@ -482,6 +482,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + '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 73f16a330..c49fc9e8a 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/message.php @@ -32,6 +32,7 @@ return [ 'empty_password_sms_message' => 'Из-за проблем безопасности мы изменили ваш пароль! Ваш новый пароль:', 'required_all' => "Все поля обязательны для заполнения!", 'can_not_remove_filled_fields' => "Заполненные поля удалить нельзя!", + 'wrong_password' => "Вы ввели неверный пароль!", // Forgot Password 'email_phone_not_found' => 'E-mail, номер телефона неверен!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ru/permission.php index 94b9484bd..c992eae8e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Образование', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Может читать образование?', + 'write' => 'Может создавать / редактировать образование?', + 'delete' => 'Может удалить образование?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Образовательная часть', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Может читать образовательную часть?', + 'write' => 'Может ли образовательная часть создавать / редактировать?', + 'delete' => 'Можно удалить часть образования?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/section.php b/addons/default/visiosoft/profile-module/resources/lang/ru/section.php index f3348e816..16b206b51 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'общие настройки', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Образование', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Образовательная часть', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ru/stream.php index f4c83b195..ebc2c2fa6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ru/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ru/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Адрес', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Образование', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Образовательная часть', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/button.php b/addons/default/visiosoft/profile-module/resources/lang/sq/button.php index 55d3b9f51..97be852a8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Fshini', 'extend' => 'Shpreh', 'extend_all' => 'Zgjeroni të gjitha', + 'extend_unpublished' => 'Zgjasni të pabotuar', 'edit' => 'Redakto', 'go_profile' => 'Shkoni në Detajin e Profilit', 'go_user' => 'Shkoni te Detajet e përdoruesit', 'personal' => 'personal', 'corporate' => 'i korporatës', 'export' => 'Eksporto', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Edukimi i ri', + 'new_education_part' => 'Pjesa e Edukimit të Ri', ]; 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 e6ce9dc62..2c5a3d387 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Ditëlindja' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Adresa në Facebook' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Adresa e Google' ], 'education' => [ 'name' => 'Arsimi' @@ -122,7 +122,7 @@ return [ 'name' => 'Perdoruesit' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Emrin' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Shteti i Arsimit' ], ]; 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 f799e90bb..6b4df4b1e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/message.php @@ -29,6 +29,7 @@ return [ '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!", + 'wrong_password' => "Fjalëkalimi që keni futur nuk është i saktë!", // 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/sq/permission.php b/addons/default/visiosoft/profile-module/resources/lang/sq/permission.php index 491f876ab..e3aaefef5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Arsimi', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'A mund të lexojë arsimin?', + 'write' => 'A mund të krijojë / modifikojë arsimin?', + 'delete' => 'A mund ta fshijë arsimin?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Pjesa e arsimit', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'A mund të lexojë arsimi pjesë?', + 'write' => 'A mund të krijojë / modifikojë një pjesë të arsimit?', + 'delete' => 'A mund të fshihet pjesa e arsimit?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/section.php b/addons/default/visiosoft/profile-module/resources/lang/sq/section.php index d583327fd..02c9f951e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Cilësimet e përgjithshme', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Arsimi', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Pjesa e arsimit', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/stream.php b/addons/default/visiosoft/profile-module/resources/lang/sq/stream.php index 66637ecbd..81674ac29 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sq/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sq/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Adresë', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Arsimi', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Pjesa e arsimit', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/button.php b/addons/default/visiosoft/profile-module/resources/lang/sv/button.php index 373dac9b8..dbee3720e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Radera', 'extend' => 'Förlänga', 'extend_all' => 'Förläng alla', + 'extend_unpublished' => 'Förlänga opublicerat', 'edit' => 'Redigera', 'go_profile' => 'Gå till profildetalj', 'go_user' => 'Gå till användarinformation', 'personal' => 'Personlig', 'corporate' => 'Företags', 'export' => 'Exportera', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Ny utbildning', + 'new_education_part' => 'Ny utbildning del', ]; 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 b1e2de0d1..e167ecd31 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Födelsedag' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Facebook-adress' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Google-adress' ], 'education' => [ 'name' => 'Utbildning' @@ -122,7 +122,7 @@ return [ 'name' => 'Användare' ], 'name' => [ - 'name' => 'Name' + 'name' => 'namn' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Utbildningsstatus' ], ]; 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 6fe29a4ad..6084a15c1 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/message.php @@ -29,6 +29,7 @@ return [ '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!", + 'wrong_password' => "Lösenordet du angav är inte korrekt!", // Forgot Password 'email_phone_not_found' => 'E-post, telefonnummer är inte korrekt!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/permission.php b/addons/default/visiosoft/profile-module/resources/lang/sv/permission.php index cb415dbdb..ed6deeacc 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Utbildning', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Kan läsa utbildning?', + 'write' => 'Kan du skapa / redigera utbildning?', + 'delete' => 'Kan ta bort utbildning?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Utbildningsdel', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Kan läsa utbildning del?', + 'write' => 'Kan du skapa / redigera utbildningsdel?', + 'delete' => 'Kan ta bort utbildningsdel?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/section.php b/addons/default/visiosoft/profile-module/resources/lang/sv/section.php index dc3d918b9..82e3cd3e2 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Allmänna Inställningar', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Utbildning', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Utbildningsdel', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/stream.php b/addons/default/visiosoft/profile-module/resources/lang/sv/stream.php index 3ab9aa4ce..5fa24fc65 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/sv/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/sv/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Adress', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Utbildning', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Utbildningsdel', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/button.php b/addons/default/visiosoft/profile-module/resources/lang/tr/button.php index 4339cf225..110b9a8b0 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Sil', 'extend' => 'Süre Uzat', 'extend_all' => 'Tümünün Süresini Uzat', + 'extend_unpublished' => 'Yayınlanmayanları Genişlet', 'edit' => 'Düzenle', 'go_profile' => 'Profil Detayları', 'go_user' => 'Kullanıcı Detayları', 'personal' => 'Kişisel', 'corporate' => 'Kurumsal', 'export' => 'Dışa aktar', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Yeni Eğitim', + 'new_education_part' => 'Yeni Eğitim bölümü', ]; 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 a64888bf3..9b5f727e7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/field.php @@ -122,7 +122,7 @@ return [ 'name' => 'Kullanıcı' ], 'name' => [ - 'name' => 'Name' + 'name' => 'İsim' ], /*Menu Button*/ @@ -480,6 +480,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Eğitim Durumu' ], ]; 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 1822f4431..332f5c0e3 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/message.php @@ -29,6 +29,7 @@ return [ '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!", + 'wrong_password' => "Girdiğiniz şifre doğru değil!", // Forgot Password 'email_phone_not_found' => 'E-posta, Telefon Numarası doğru değil!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/permission.php b/addons/default/visiosoft/profile-module/resources/lang/tr/permission.php index bcaf6f9c4..6f8e69bd6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Eğitim', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Eğitim okuyabilir mi?', + 'write' => 'Eğitim oluşturabilir / düzenleyebilir mi?', + 'delete' => 'Eğitimi silebilir mi?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Eğitim bölümü', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Eğitim bölümünü okuyabilir mi?', + 'write' => 'Eğitim bölümü oluşturabilir / düzenleyebilir mi?', + 'delete' => 'Eğitim bölümü silebilir mi?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/section.php b/addons/default/visiosoft/profile-module/resources/lang/tr/section.php index 23f76236f..38c8b1ab8 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Genel Ayarlar', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Eğitim', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Eğitim bölümü', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/stream.php b/addons/default/visiosoft/profile-module/resources/lang/tr/stream.php index e596efeb6..7bc437fc7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/tr/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/tr/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Adres', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Eğitim', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Eğitim bölümü', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/button.php b/addons/default/visiosoft/profile-module/resources/lang/uk/button.php index 77347a995..329eb7282 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Видалити', 'extend' => 'Розширити', 'extend_all' => 'Розширити всі', + 'extend_unpublished' => 'Розширити Неопубліковано', 'edit' => 'Редагувати', 'go_profile' => 'Перейдіть до детальної інформації про профіль', 'go_user' => 'Перейдіть до детальної інформації про користувача', 'personal' => 'Особисті', 'corporate' => 'Корпоративний', 'export' => 'Експорт', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Нова освіта', + 'new_education_part' => 'Нова освітня частина', ]; 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 061c4b931..823ca900e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'День народження' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Адреса Facebook' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Адреса Google' ], 'education' => [ 'name' => 'Освіта' @@ -122,7 +122,7 @@ return [ 'name' => 'Користувач' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Ім\'я' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + '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 60aa2e428..758328ca5 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'Через проблеми безпеки ми змінили ваш пароль! Ваш новий пароль:', 'required_all' => "Поле обов'язкове!", 'can_not_remove_filled_fields' => "Ви не можете видалити заповнені поля!", + 'wrong_password' => "Введений вами пароль неправильний!", // Forgot Password 'email_phone_not_found' => 'Неправильний електронний лист, номер телефону!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/permission.php b/addons/default/visiosoft/profile-module/resources/lang/uk/permission.php index 6f7738d00..d34ceaceb 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Освіта', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Чи вмієте читати освіту?', + 'write' => 'Чи можете створювати / редагувати освіту?', + 'delete' => 'Можна видалити освіту?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Освітня частина', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Чи вмієте читати навчальну частину?', + 'write' => 'Чи можете створювати / редагувати навчальну частину?', + 'delete' => 'Можна видалити навчальну частину?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/section.php b/addons/default/visiosoft/profile-module/resources/lang/uk/section.php index a1df7c5ba..592073a55 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Загальні налаштування', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Освіта', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Освітня частина', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/stream.php b/addons/default/visiosoft/profile-module/resources/lang/uk/stream.php index 916d4e4fc..0ec2a9ba7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/uk/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/uk/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Адреса', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Освіта', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Освітня частина', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/button.php b/addons/default/visiosoft/profile-module/resources/lang/ur/button.php index afe2a0ee1..65bc71e7e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'حذف کریں', 'extend' => 'بڑھائیں', 'extend_all' => 'سب کو بڑھاؤ', + 'extend_unpublished' => 'غیر مطبوعہ کو بڑھاو', 'edit' => 'ترمیم', 'go_profile' => 'پروفائل کی تفصیل پر جائیں', 'go_user' => 'صارف کی تفصیل پر جائیں', 'personal' => 'ذاتی', 'corporate' => 'کارپوریٹ', 'export' => 'برآمد کریں', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'نئی تعلیم', + 'new_education_part' => 'تعلیم کا نیا حصہ', ]; 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 23deb3e75..02ed85066 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'سالگرہ' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'فیس بک ایڈریس' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'گوگل ایڈریس' ], 'education' => [ 'name' => 'تعلیم' @@ -122,7 +122,7 @@ return [ 'name' => 'صارف' ], 'name' => [ - 'name' => 'Name' + 'name' => 'نام' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + '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 a1abdf4d0..9192aabec 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/message.php @@ -29,6 +29,7 @@ return [ 'empty_password_sms_message' => 'سیکیورٹی کے مسائل کی وجہ سے ، ہم نے آپ کا پاس ورڈ تبدیل کردیا! آپ کا نیا پاس ورڈ یہ ہے:', 'required_all' => "تمام فیلڈ کی ضرورت ہے!", 'can_not_remove_filled_fields' => "آپ بھرے کھیتوں کو نہیں ہٹا سکتے!", + 'wrong_password' => "آپ کا درج کردہ پاس ورڈ درست نہیں ہے!", // Forgot Password 'email_phone_not_found' => 'ای میل ، فون نمبر درست نہیں ہے!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php index 5701d4e64..bca111150 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'تعلیم', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'تعلیم پڑھ سکتے ہیں؟', + 'write' => 'تعلیم تخلیق / ترمیم کرسکتے ہیں؟', + 'delete' => 'کیا تعلیم کو حذف کرسکتے ہیں؟', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'تعلیم کا حصہ', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'تعلیم کا حصہ پڑھ سکتے ہیں؟', + 'write' => 'کیا تعلیم کا حصہ تخلیق / ترمیم کرسکتا ہے؟', + 'delete' => 'کیا تعلیم کا حصہ حذف کرسکتے ہیں؟', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/section.php b/addons/default/visiosoft/profile-module/resources/lang/ur/section.php index c9c78bde7..a5f6bf75e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'عام ترتیبات', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'تعلیم', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'تعلیم کا حصہ', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php index f8e81321b..2ecf64d37 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'پتہ', ], 'education' => [ - 'name' => 'Education', + 'name' => 'تعلیم', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'تعلیم کا حصہ', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/button.php b/addons/default/visiosoft/profile-module/resources/lang/vi/button.php index 8562a4653..b674c48c6 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/button.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/button.php @@ -9,12 +9,13 @@ return [ 'delete' => 'Xóa bỏ', 'extend' => 'Mở rộng', 'extend_all' => 'Mở rộng tất cả', + 'extend_unpublished' => 'Mở rộng Chưa xuất bản', 'edit' => 'Biên tập', 'go_profile' => 'Đi đến chi tiết hồ sơ', 'go_user' => 'Đi đến chi tiết người dùng', 'personal' => 'Cá nhân', 'corporate' => 'Công ty', 'export' => 'Xuất khẩu', - 'new_education' => 'New Education', - 'new_education_part' => 'New Education part', + 'new_education' => 'Giáo dục mới', + 'new_education_part' => 'Phần giáo dục mới', ]; 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 abfa8dbbb..20d9b94c7 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/field.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/field.php @@ -59,10 +59,10 @@ return [ 'name' => 'Sinh nhật' ], 'facebook_address' => [ - 'name' => 'Facebook Address' + 'name' => 'Địa chỉ Facebook' ], 'google_address' => [ - 'name' => 'Google Address' + 'name' => 'Địa chỉ Google' ], 'education' => [ 'name' => 'Giáo dục' @@ -122,7 +122,7 @@ return [ 'name' => 'Người dùng' ], 'name' => [ - 'name' => 'Name' + 'name' => 'Tên' ], /*Menu Button*/ @@ -481,6 +481,6 @@ return [ ], 'education_part' => [ - 'name' => 'State of Education' + 'name' => 'Bang giáo dục' ], ]; 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 2a671dd4a..878d4553e 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/message.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/message.php @@ -29,6 +29,7 @@ return [ '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!", + 'wrong_password' => "Mật khẩu bạn đã nhập không chính xác!", // Forgot Password 'email_phone_not_found' => 'E-mail, số điện thoại không chính xác!', diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/permission.php b/addons/default/visiosoft/profile-module/resources/lang/vi/permission.php index 40599495d..c2218e755 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/permission.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/permission.php @@ -18,19 +18,19 @@ return [ ], ], 'education' => [ - 'name' => 'Education', + 'name' => 'Giáo dục', 'option' => [ - 'read' => 'Can read education?', - 'write' => 'Can create/edit education?', - 'delete' => 'Can delete education?', + 'read' => 'Có thể đọc giáo dục?', + 'write' => 'Có thể tạo / chỉnh sửa giáo dục?', + 'delete' => 'Có thể xóa giáo dục?', ], ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Phần giáo dục', 'option' => [ - 'read' => 'Can read education part?', - 'write' => 'Can create/edit education part?', - 'delete' => 'Can delete education part?', + 'read' => 'Có thể đọc phần giáo dục?', + 'write' => 'Có thể tạo / chỉnh sửa phần giáo dục không?', + 'delete' => 'Có thể xóa phần giáo dục?', ], ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/section.php b/addons/default/visiosoft/profile-module/resources/lang/vi/section.php index ab2a4f250..8c79e4eed 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/section.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/section.php @@ -10,9 +10,9 @@ return [ 'general_setting' => 'Cài đặt chung', 'recaptcha' => 'reCAPTCHA', 'education' => [ - 'title' => 'Education', + 'title' => 'Giáo dục', ], 'education_part' => [ - 'title' => 'Education part', + 'title' => 'Phần giáo dục', ], ]; diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/stream.php b/addons/default/visiosoft/profile-module/resources/lang/vi/stream.php index 5cfa278a3..0d3ef8f9c 100644 --- a/addons/default/visiosoft/profile-module/resources/lang/vi/stream.php +++ b/addons/default/visiosoft/profile-module/resources/lang/vi/stream.php @@ -8,9 +8,9 @@ return [ 'name' => 'Địa chỉ', ], 'education' => [ - 'name' => 'Education', + 'name' => 'Giáo dục', ], 'education_part' => [ - 'name' => 'Education part', + 'name' => 'Phần giáo dục', ], ]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/de/button.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/de/button.php index f1589790b..f936575fa 100644 --- a/addons/default/visiosoft/singlefile-field_type/resources/lang/de/button.php +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/de/button.php @@ -1,8 +1,9 @@ 'Datei auswählen', - 'upload' => 'Hochladen', - 'remove' => 'Entfernen', + 'select_file' => 'Datei auswählenException: no protocol: Head - Url: http://Exception: unknown protocol: exception Index 015164663380. +Tracklist aimcart', + 'upload' => 'Hochladen id Lockscreen ans lockaion', + 'remove' => 'Entferne Blockierungen', 'change' => 'Ändern', ]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/addon.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/addon.php new file mode 100644 index 000000000..3428512a5 --- /dev/null +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/addon.php @@ -0,0 +1,7 @@ + 'Pelê Tekane', + 'name' => 'Pelê Zeviya Pelê', + 'description' => 'Celebek zeviyê barkirina pelan.', +]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/button.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/button.php new file mode 100644 index 000000000..51f17c0a2 --- /dev/null +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/button.php @@ -0,0 +1,8 @@ + 'Pelê hilbijêrin', + 'upload' => 'Upload', + 'remove' => 'Dûrxistin', + 'change' => 'Gûherrandinî', +]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/config.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/config.php new file mode 100644 index 000000000..bad762975 --- /dev/null +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/config.php @@ -0,0 +1,23 @@ + [ + 'name' => 'Peldankan', + 'instructions' => 'Diyar bikin ka kîjan peldank ji bo vê qadê hene. Vala bihêle da ku hemî peldankan nîşan bide.', + 'warning' => 'Destûrên heyî yên peldankê pêşî li peldankên hilbijartî digirin.', + ], + 'max' => [ + 'name' => 'Mezinahiya Uploadê', + 'instructions' => 'Mezinahiya barkirina herî zêde di megabytes.', + 'warning' => 'Heke peldanka ne diyar be max û paşê dê servera max li şûna wê were bikar anîn.', + ], + 'mode' => [ + 'name' => 'Modeya Input', + 'instructions' => 'Divê bikarhêner çawa têkela pelê peyda bikin?', + 'option' => [ + 'default' => 'Pelan bar bikin û / an hilbijêrin.', + 'select' => 'Tenê pelan hilbijêrin.', + 'upload' => 'Tenê pelan hilînin.', + ], + ], +]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/message.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/message.php new file mode 100644 index 000000000..353d022a6 --- /dev/null +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/message.php @@ -0,0 +1,12 @@ + 'Hûn dixwazin kîjan pelê bikar bînin?', + 'choose_folder' => 'Hûn dixwazin li kîjan peldankê bar bikin?', + 'upload' => 'Ji bo barkirinê pelan li vir bikirtînin an bavêjin.', + 'no_file_selected' => 'Tu pel nehat hilbijartin.', + 'no_uploads' => 'Tu pel nehatin barkirin.', + 'overwrite' => 'berê hate barkirin. Ma hûn dixwazin wê binivîsin?', + 'uploading' => 'Uploading', + 'loading' => 'Barkirin', +]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/validation.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/validation.php new file mode 100644 index 000000000..292b12160 --- /dev/null +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ku/validation.php @@ -0,0 +1,5 @@ + 'Dîska barkirî ya mîhengkirî ji bo: taybetmendî tune.', +]; diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/tr/message.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/tr/message.php index 61008a091..072410ffc 100644 --- a/addons/default/visiosoft/singlefile-field_type/resources/lang/tr/message.php +++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/tr/message.php @@ -7,6 +7,6 @@ return [ 'no_file_selected' => 'Hiç seçili dosya yok.', 'no_uploads' => 'Hiç dosya yüklenmedi.', 'overwrite' => 'daha önce yüklenmiş. Üzerine kaydetmek ister misiniz?', - 'uploading' => 'Yüklüyor', - 'loading' => 'Yüklüyor', + 'uploading' => 'Karşıya Yükleniyor', + 'loading' => 'Yükleniyor', ];