-
{{ adv.price.currency(null,'currency') }}
+
+ {{ adv.standard_price != adv.price and adv.standard_price != '0'
+ ? adv.standard_price.currency(null,"currency")
+ : '' }}
+
+
{{ adv.price != '0'
+ ? adv.price.currency(null,"currency")
+ : trans('visiosoft.module.advs::field.free') }}
{% if setting_value('visiosoft.module.location::list_page_location') %}
diff --git a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php
index ae6dd403b..d20583319 100644
--- a/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php
+++ b/addons/default/visiosoft/advs-module/src/Adv/AdvRepository.php
@@ -477,4 +477,14 @@ class AdvRepository extends EntryRepository implements AdvRepositoryInterface
->where('advs_advs.status', 'approved')
->where('advs_advs.finish_at', '>', date('Y-m-d H:i:s'));
}
+
+ public function getPopular()
+ {
+ return $this->newQuery()
+ ->whereDate('finish_at', '>=', date("Y-m-d H:i:s"))
+ ->where('status', '=', 'approved')
+ ->where('slug', '!=', '')
+ ->orderBy('count_show_ad', 'desc')
+ ->paginate(setting_value('visiosoft.module.advs::popular_ads_limit', setting_value('streams::per_page')));
+ }
}
diff --git a/addons/default/visiosoft/advs-module/src/Adv/Command/getPopular.php b/addons/default/visiosoft/advs-module/src/Adv/Command/getPopular.php
new file mode 100644
index 000000000..672aa3868
--- /dev/null
+++ b/addons/default/visiosoft/advs-module/src/Adv/Command/getPopular.php
@@ -0,0 +1,20 @@
+getPopular();
+
+ $ads = $repository->getModel()->getLocationNames($ads);
+
+ foreach ($ads as $index => $ad) {
+ $ads[$index]->detail_url = $repository->getModel()->getAdvDetailLinkByModel($ad, 'list');
+ $ads[$index] = $repository->getModel()->AddAdsDefaultCoverImage($ad);
+ }
+
+ return $ads;
+ }
+}
diff --git a/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvRepositoryInterface.php b/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvRepositoryInterface.php
index be75176c9..110673937 100644
--- a/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvRepositoryInterface.php
+++ b/addons/default/visiosoft/advs-module/src/Adv/Contract/AdvRepositoryInterface.php
@@ -39,4 +39,6 @@ interface AdvRepositoryInterface extends EntryRepositoryInterface
public function extendAds($allAds, $isAdmin = false);
public function getByUsersIDs($usersIDs);
+
+ public function getPopular();
}
diff --git a/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php b/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php
index 64d8e466b..475def11a 100644
--- a/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php
+++ b/addons/default/visiosoft/advs-module/src/AdvsModulePlugin.php
@@ -6,8 +6,10 @@ use Visiosoft\AdvsModule\Adv\AdvModel;
use Visiosoft\AdvsModule\Adv\Command\appendRequestURL;
use Visiosoft\AdvsModule\Adv\Command\GetAd;
use Visiosoft\AdvsModule\Adv\Command\getExchange;
+use Visiosoft\AdvsModule\Adv\Command\getPopular;
use Visiosoft\AdvsModule\Adv\Command\isActive;
use Visiosoft\AdvsModule\Adv\Command\LatestAds;
+use Visiosoft\AdvsModule\Adv\Contract\AdvRepositoryInterface;
use Visiosoft\AdvsModule\Currency\Currency;
use Visiosoft\AdvsModule\Currency\CurrencyFormat;
@@ -109,7 +111,15 @@ class AdvsModulePlugin extends Plugin
}
return $exchange;
}
- )
+ ), new \Twig_SimpleFunction(
+ 'getPopular',
+ function () {
+ if (!$popular = $this->dispatch(new getPopular())) {
+ return null;
+ }
+ return $popular;
+ }
+ ),
];
}
}
diff --git a/addons/default/visiosoft/advs-module/src/AdvsModuleServiceProvider.php b/addons/default/visiosoft/advs-module/src/AdvsModuleServiceProvider.php
index fbd8c6d9c..74041899a 100644
--- a/addons/default/visiosoft/advs-module/src/AdvsModuleServiceProvider.php
+++ b/addons/default/visiosoft/advs-module/src/AdvsModuleServiceProvider.php
@@ -340,18 +340,24 @@ class AdvsModuleServiceProvider extends AddonServiceProvider
{
// Run extra post-boot registration logic here.
// Use method injection or commands to bring in services.
- $slug = 'general_settings';
- $section = [
- 'title' => 'visiosoft.module.advs::button.general_settings',
- 'href' => '/admin/settings/modules/visiosoft.module.advs',
+ $settings_url = [
+ 'general_settings' => [
+ 'title' => 'visiosoft.module.advs::button.general_settings',
+ 'href' => '/admin/settings/modules/visiosoft.module.advs',
+ ],
+ 'theme_settings' => [
+ 'title' => 'visiosoft.theme.defaultadmin::section.theme_settings.name',
+ 'href' => url('admin/settings/themes/' . setting_value('streams::standard_theme')),
+ ],
+ 'assets_clear' => [
+ 'title' => 'visiosoft.module.advs::section.assets_clear.name',
+ 'href' => route('assets_clear'),
+ ],
];
- $slug2 = 'assets_clear';
- $section2 = [
- 'title' => 'visiosoft.module.advs::section.assets_clear.name',
- 'href' => '/admin/assets/clear',
- ];
- $addonCollection->get('anomaly.module.settings')->addSection($slug, $section);
- $addonCollection->get('anomaly.module.settings')->addSection($slug2, $section2);
+
+ foreach ($settings_url as $key => $value) {
+ $addonCollection->get('anomaly.module.settings')->addSection($key, $value);
+ }
// Disable file versioning
$fileModel->disableVersioning();
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 e35b32ce5..868be0fdd 100644
--- a/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php
+++ b/addons/default/visiosoft/advs-module/src/Http/Controller/advsController.php
@@ -2,49 +2,46 @@
use Anomaly\SettingsModule\Setting\Contract\SettingRepositoryInterface;
use Anomaly\Streams\Platform\Http\Controller\PublicController;
+use Anomaly\Streams\Platform\Message\MessageBag;
use Anomaly\Streams\Platform\Model\Advs\AdvsAdvsEntryModel;
use Anomaly\Streams\Platform\Model\Advs\PurchasePurchaseEntryModel;
use Anomaly\Streams\Platform\Model\Complaints\ComplaintsComplainTypesEntryModel;
use Anomaly\Streams\Platform\Model\Options\OptionsAdvertisementEntryModel;
use Anomaly\UsersModule\User\Contract\UserRepositoryInterface;
-use Visiosoft\AdvsModule\Adv\Command\appendRequestURL;
-use Visiosoft\AdvsModule\Adv\Event\ChangedStatusAd;
-use Visiosoft\AdvsModule\Adv\Event\CreatedAd;
-use Visiosoft\AdvsModule\Adv\Event\showAdPhone;
+use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Cookie;
-use Visiosoft\AdvsModule\Option\Contract\OptionRepositoryInterface;
-use Visiosoft\LocationModule\City\CityRepository;
-use Visiosoft\ProfileModule\Adress\Contract\AdressRepositoryInterface;
-use function PMA\Util\get;
use Visiosoft\AdvsModule\Adv\AdvModel;
+use Visiosoft\AdvsModule\Adv\Command\appendRequestURL;
+use Visiosoft\AdvsModule\Adv\Contract\AdvRepositoryInterface;
+use Visiosoft\AdvsModule\Adv\Event\ChangedStatusAd;
+use Visiosoft\AdvsModule\Adv\Event\CreatedAd;
use Visiosoft\AdvsModule\Adv\Event\priceChange;
+use Visiosoft\AdvsModule\Adv\Event\showAdPhone;
use Visiosoft\AdvsModule\Adv\Event\UpdateAd;
use Visiosoft\AdvsModule\Adv\Event\viewAd;
use Visiosoft\AdvsModule\Adv\Form\AdvFormBuilder;
-use Visiosoft\CatsModule\Category\CategoryModel;
-use Visiosoft\CommentsModule\Comment\CommentModel;
-use Visiosoft\LocationModule\City\CityModel;
+use Visiosoft\AdvsModule\Option\Contract\OptionRepositoryInterface;
use Visiosoft\AlgoliaModule\Search\SearchModel;
use Visiosoft\AlgoliatestModule\Http\Controller\Admin\IndexController;
+use Visiosoft\CatsModule\Category\CategoryModel;
+use Visiosoft\CatsModule\Category\Contract\CategoryRepositoryInterface;
use Visiosoft\CloudinaryModule\Video\VideoModel;
+use Visiosoft\CommentsModule\Comment\Events\CreateNewComment;
use Visiosoft\FavsModule\Http\Controller\FavsController;
+use Visiosoft\LocationModule\City\CityModel;
+use Visiosoft\LocationModule\City\CityRepository;
+use Visiosoft\LocationModule\Country\Contract\CountryRepositoryInterface;
use Visiosoft\LocationModule\District\DistrictModel;
use Visiosoft\LocationModule\Neighborhood\NeighborhoodModel;
use Visiosoft\LocationModule\Village\VillageModel;
use Visiosoft\PackagesModule\Http\Controller\PackageFEController;
-use Visiosoft\AdvsModule\Adv\Contract\AdvRepositoryInterface;
-use Visiosoft\CatsModule\Category\Contract\CategoryRepositoryInterface;
-use Visiosoft\LocationModule\Country\Contract\CountryRepositoryInterface;
-use Anomaly\Streams\Platform\Message\MessageBag;
use Visiosoft\PackagesModule\Package\PackageModel;
-
-use Illuminate\Contracts\Events\Dispatcher;
+use Visiosoft\ProfileModule\Adress\Contract\AdressRepositoryInterface;
use Visiosoft\QrcontactModule\Qr\QrModel;
use Visiosoft\StoreModule\Ad\AdModel;
-
class AdvsController extends PublicController
{
private $userRepository;
@@ -410,10 +407,6 @@ class AdvsController extends PublicController
$options = $this->optionRepository->findAllBy('adv_id', $id);
- if ($this->adv_model->is_enabled('comments')) {
- $CommentModel = new CommentModel();
- $comments = $CommentModel->getComments($adv->id)->get();
- }
$this->event->dispatch(new viewAd($adv));//view ad
$this->template->set('meta_keywords', implode(',', explode(' ', $adv->name)));
@@ -434,7 +427,7 @@ class AdvsController extends PublicController
}
$this->template->set('meta_image', $coverPhoto);
- if ($adv->created_by_id == isset(auth()->user()->id) OR $adv->status == "approved") {
+ if ($adv->created_by_id == isset(auth()->user()->id) or $adv->status == "approved") {
return $this->view->make('visiosoft.module.advs::ad-detail/detail', compact('adv', 'complaints',
'recommended_advs', 'categories', 'features', 'comments', 'qrSRC', 'options'));
} else {
@@ -768,7 +761,7 @@ class AdvsController extends PublicController
$auto_approved = $settings->value('visiosoft.module.advs::auto_approve');
$default_published_time = $settings->value('visiosoft.module.advs::default_published_time');
- if ($auto_approved == true AND $type == 'pending_admin') {
+ if ($auto_approved == true and $type == 'pending_admin') {
$type = "approved";
}
if ($type == "approved" and $auto_approved != true) {
@@ -777,7 +770,7 @@ class AdvsController extends PublicController
if ($type == "approved") {
$this->adv_model->publish_at_Ads($id);
- if ($ad->finish_at == NULL AND $type == "approved") {
+ if ($ad->finish_at == NULL and $type == "approved") {
if ($this->adv_model->is_enabled('packages')) {
$packageModel = new PackageModel();
$published_time = $packageModel->reduceTimeLimit($ad->cat1);
@@ -954,6 +947,12 @@ class AdvsController extends PublicController
return "false";
}
+ public function isActiveJson($slug)
+ {
+ $isActive = $this->isActive($slug);
+ return response()->json(array('isActive' => $isActive));
+ }
+
public function isActive($slug)
{
$query = new AdvModel();
@@ -961,12 +960,6 @@ class AdvsController extends PublicController
return $query->is_enabled($slug);
}
- public function isActiveJson($slug)
- {
- $isActive = $this->isActive($slug);
- return response()->json(array('isActive' => $isActive));
- }
-
public function checkParentCat($id)
{
$option = new CategoryModel();
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ar/field.php b/addons/default/visiosoft/base-theme/resources/lang/ar/field.php
index 92635156c..724b67a96 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/ar/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/ar/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'ارسل بريد',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'تعليمات التسجيل',
+ 'list' => 'قائمة',
+ 'instruction_description' => 'وصف التعليمات',
+ 'instruction_list' => 'قائمة التعليمات',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ar/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ar/setting.php
index c027eb7a8..6265d15eb 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/ar/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/ar/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'تسجيل صفحة تعليمات الشعار',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'تسجيل رابط تنبيه الصفحة',
],
'style' => [
'name' => 'النمط (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/az/field.php b/addons/default/visiosoft/base-theme/resources/lang/az/field.php
index f06edc5ae..24bf6cbbb 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/az/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/az/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Məktub göndərin',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Qeyd təlimatları',
+ 'list' => 'Siyahı',
+ 'instruction_description' => 'Təlimatın təsviri',
+ 'instruction_list' => 'Təlimat siyahısı',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/az/setting.php b/addons/default/visiosoft/base-theme/resources/lang/az/setting.php
index 7aba57309..dea8e31cb 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/az/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/az/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Səhifə Təlimatı Loqosunu qeyd edin',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Qeyd Alert Linkini Qeyd et',
],
'style' => [
'name' => 'Stil (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/bn/field.php b/addons/default/visiosoft/base-theme/resources/lang/bn/field.php
index 070d56a6c..e9dd2e5c4 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/bn/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/bn/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'মেইল পাঠাও',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'নির্দেশাবলী নিবন্ধন করুন',
+ 'list' => 'তালিকা',
+ 'instruction_description' => 'নির্দেশের বিবরণ',
+ 'instruction_list' => 'নির্দেশের তালিকা',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/bn/setting.php b/addons/default/visiosoft/base-theme/resources/lang/bn/setting.php
index 73283ca3e..ff3d13cf2 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/bn/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/bn/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'পৃষ্ঠা নির্দেশিকা লোগো নিবন্ধন করুন',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'পৃষ্ঠা সতর্কতা লিঙ্ক নিবন্ধন করুন',
],
'style' => [
'name' => 'স্টাইল (css)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/de/field.php b/addons/default/visiosoft/base-theme/resources/lang/de/field.php
index a735a44f2..45a1d7014 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/de/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/de/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Mail senden',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Anweisungen registrieren',
+ 'list' => 'Aufführen',
+ 'instruction_description' => 'Anweisungsbeschreibung',
+ 'instruction_list' => 'Anweisungsliste',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/de/setting.php b/addons/default/visiosoft/base-theme/resources/lang/de/setting.php
index 4dcffad4f..af29faa67 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/de/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/de/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Registrieren Sie das Anweisungslogo für die Seite',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Link zum Registrieren von Seitenalarmen',
],
'style' => [
'name' => 'Stil (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/el/field.php b/addons/default/visiosoft/base-theme/resources/lang/el/field.php
index 53dd71609..0b26b4310 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/el/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/el/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Αποστολή αλληλογραφίας',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Εγγραφή οδηγιών',
+ 'list' => 'Λίστα',
+ 'instruction_description' => 'Περιγραφή οδηγιών',
+ 'instruction_list' => 'Λίστα οδηγιών',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/el/setting.php b/addons/default/visiosoft/base-theme/resources/lang/el/setting.php
index 57b580a04..4a87ecaaf 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/el/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/el/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Εγγραφή λογότυπου οδηγιών σελίδας',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Εγγραφή συνδέσμου ειδοποίησης σελίδας',
],
'style' => [
'name' => 'Στυλ (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/es/field.php b/addons/default/visiosoft/base-theme/resources/lang/es/field.php
index 6a0ae54bf..bdb4c0676 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/es/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/es/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Enviar correo',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Instrucciones de registro',
+ 'list' => 'Lista',
+ 'instruction_description' => 'Descripción de la instrucción',
+ 'instruction_list' => 'Lista de instrucciones',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/es/setting.php b/addons/default/visiosoft/base-theme/resources/lang/es/setting.php
index c636a590d..32222d06f 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/es/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/es/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Logotipo de instrucciones de la página de registro',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Enlace de alerta de página de registro',
],
'style' => [
'name' => 'Estilo (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/fa/field.php b/addons/default/visiosoft/base-theme/resources/lang/fa/field.php
index a0ab44dac..6c1b2a965 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/fa/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/fa/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'ارسال ایمیل',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'دستورالعمل های ثبت نام',
+ 'list' => 'لیست',
+ 'instruction_description' => 'توضیحات دستورالعمل',
+ 'instruction_list' => 'لیست دستورالعمل ها',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/fa/setting.php b/addons/default/visiosoft/base-theme/resources/lang/fa/setting.php
index 6ad62b7ad..6b8e78a6b 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/fa/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/fa/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'آرم صفحه آموزش را ثبت کنید',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'پیوند هشدار صفحه را ثبت کنید',
],
'style' => [
'name' => 'سبک (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/fr/field.php b/addons/default/visiosoft/base-theme/resources/lang/fr/field.php
index 1c98f2669..b3c1c4e03 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/fr/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/fr/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Envoyer un mail',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Instructions d\'enregistrement',
+ 'list' => 'liste',
+ 'instruction_description' => 'Description de l\'instruction',
+ 'instruction_list' => 'Liste d\'instructions',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/fr/setting.php b/addons/default/visiosoft/base-theme/resources/lang/fr/setting.php
index a0be9424e..9f444365c 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/fr/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/fr/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Logo d\'instructions de la page d\'inscription',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Enregistrer le lien d\'alerte de la page',
],
'style' => [
'name' => 'Style (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/he/field.php b/addons/default/visiosoft/base-theme/resources/lang/he/field.php
index 17c943e3e..554078eb4 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/he/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/he/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'שלח מייל',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'רישום הוראות',
+ 'list' => 'רשימה',
+ 'instruction_description' => 'תיאור הוראות',
+ 'instruction_list' => 'רשימת הוראות',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/he/setting.php b/addons/default/visiosoft/base-theme/resources/lang/he/setting.php
index 0b93fddb6..9f6d3c839 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/he/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/he/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'רשום לוגו של הוראות הדרכה',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'רישום קישור התראה לדף',
],
'style' => [
'name' => 'סגנון (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/hi/field.php b/addons/default/visiosoft/base-theme/resources/lang/hi/field.php
index aa665c062..ab98fd3ab 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/hi/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/hi/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'मेल भेजे',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'निर्देश दर्ज करें',
+ 'list' => 'सूची',
+ 'instruction_description' => 'निर्देश विवरण',
+ 'instruction_list' => 'निर्देश सूची',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/hi/setting.php b/addons/default/visiosoft/base-theme/resources/lang/hi/setting.php
index 3be2bf500..371d0890f 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/hi/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/hi/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'रजिस्टर पेज इंस्ट्रक्शन लोगो',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'पेज अलर्ट लिंक रजिस्टर करें',
],
'style' => [
'name' => 'शैली (सीएसएस)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/it/field.php b/addons/default/visiosoft/base-theme/resources/lang/it/field.php
index afcdbef2b..c5fbd1b60 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/it/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/it/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Inviare una mail',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Istruzioni per la registrazione',
+ 'list' => 'Elenco',
+ 'instruction_description' => 'Descrizione delle istruzioni',
+ 'instruction_list' => 'Elenco delle istruzioni',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/it/setting.php b/addons/default/visiosoft/base-theme/resources/lang/it/setting.php
index 44a2b9bfc..39505176f 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/it/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/it/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Logo delle istruzioni per la registrazione della pagina',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Registrati pagina Alert Link',
],
'style' => [
'name' => 'Stile (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ja/field.php b/addons/default/visiosoft/base-theme/resources/lang/ja/field.php
index 71afc1a9b..6d1072af3 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/ja/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/ja/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'メールを送る',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => '登録手順',
+ 'list' => 'リスト',
+ 'instruction_description' => '命令の説明',
+ 'instruction_list' => '指示リスト',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ja/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ja/setting.php
index da6a69c31..c4d4dfba4 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/ja/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/ja/setting.php
@@ -32,7 +32,7 @@ return [
'name' => '登録ページの指示ロゴ',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => '登録ページのアラートリンク',
],
'style' => [
'name' => 'スタイル(CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ko/field.php b/addons/default/visiosoft/base-theme/resources/lang/ko/field.php
index 39f1a8520..04e3fe0f1 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/ko/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/ko/field.php
@@ -52,8 +52,8 @@ return [
'mail' => '메일을 보내다',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => '등록 지침',
+ 'list' => '명부',
+ 'instruction_description' => '지시 설명',
+ 'instruction_list' => '지시 목록',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ko/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ko/setting.php
index f2055653e..4afe6e5f3 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/ko/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/ko/setting.php
@@ -32,7 +32,7 @@ return [
'name' => '페이지 지시 로고 등록',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => '페이지 경고 링크 등록',
],
'style' => [
'name' => '스타일 (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/nl/field.php b/addons/default/visiosoft/base-theme/resources/lang/nl/field.php
index 97d918277..c0c53e8be 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/nl/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/nl/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Verzend mail',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Registreer instructies',
+ 'list' => 'Lijst',
+ 'instruction_description' => 'Instructiebeschrijving',
+ 'instruction_list' => 'Instructielijst',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/nl/setting.php b/addons/default/visiosoft/base-theme/resources/lang/nl/setting.php
index baed546eb..1005f9569 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/nl/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/nl/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Registreer Page Instructie Logo',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Meldingslink voor pagina registreren',
],
'style' => [
'name' => 'Stijl (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/pl/field.php b/addons/default/visiosoft/base-theme/resources/lang/pl/field.php
index 564d5d0b5..58958af4e 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/pl/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/pl/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Wyślij maila',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Zarejestruj instrukcje',
+ 'list' => 'Lista',
+ 'instruction_description' => 'Opis instrukcji',
+ 'instruction_list' => 'Lista instrukcji',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/pl/setting.php b/addons/default/visiosoft/base-theme/resources/lang/pl/setting.php
index 50c4d1a3b..cb0fb7df8 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/pl/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/pl/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Zarejestruj stronę Instrukcja Logo',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Zarejestruj link do ostrzeżenia o stronie',
],
'style' => [
'name' => 'Styl (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/pt/field.php b/addons/default/visiosoft/base-theme/resources/lang/pt/field.php
index e221621d4..27e806064 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/pt/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/pt/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Enviar correio',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Instruções de registro',
+ 'list' => 'Lista',
+ 'instruction_description' => 'Descrição da Instrução',
+ 'instruction_list' => 'Lista de Instrução',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/pt/setting.php b/addons/default/visiosoft/base-theme/resources/lang/pt/setting.php
index 8a2095c1d..cf530813e 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/pt/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/pt/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Logotipo da instrução da página de registro',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Registrar o link de alerta da página',
],
'style' => [
'name' => 'Estilo (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ro/field.php b/addons/default/visiosoft/base-theme/resources/lang/ro/field.php
index 6e5439121..5c9211161 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/ro/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/ro/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Trimite e-mail',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Instrucțiuni de înregistrare',
+ 'list' => 'Listă',
+ 'instruction_description' => 'Descrierea instrucțiunilor',
+ 'instruction_list' => 'Lista de instrucțiuni',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ro/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ro/setting.php
index 41af1dd83..9063ef6b6 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/ro/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/ro/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Înregistrare Logo-ul Instrucțiunilor Pagina',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Înregistrare Link Alertă pagină',
],
'style' => [
'name' => 'Style (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ru/field.php b/addons/default/visiosoft/base-theme/resources/lang/ru/field.php
index 722a1e475..955393936 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/ru/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/ru/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Отправить почту',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Зарегистрируйте инструкции',
+ 'list' => 'Список',
+ 'instruction_description' => 'Описание инструкции',
+ 'instruction_list' => 'Список инструкций',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ru/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ru/setting.php
index 7d263b2f8..025680245 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/ru/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/ru/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Логотип Инструкции на странице регистрации',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Ссылка на оповещение на странице регистрации',
],
'style' => [
'name' => 'Style (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/sq/field.php b/addons/default/visiosoft/base-theme/resources/lang/sq/field.php
index 42cc7d5f3..b4216ef67 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/sq/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/sq/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Dërgo email',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Udhëzimet Regjistrohuni',
+ 'list' => 'Listë',
+ 'instruction_description' => 'Përshkrimi i udhëzimit',
+ 'instruction_list' => 'Lista e udhëzimeve',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/sq/setting.php b/addons/default/visiosoft/base-theme/resources/lang/sq/setting.php
index 627a9b405..10aa06b9f 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/sq/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/sq/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Regjistrohu Logo udhëzuese',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Regjistrohu Lidhja e njoftimit të faqes',
],
'style' => [
'name' => 'Style (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/sv/field.php b/addons/default/visiosoft/base-theme/resources/lang/sv/field.php
index 0d0ccce05..0d176e5f3 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/sv/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/sv/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Skicka brev',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Registrera instruktioner',
+ 'list' => 'Lista',
+ 'instruction_description' => 'Instruktionsbeskrivning',
+ 'instruction_list' => 'Instruktionslista',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/sv/setting.php b/addons/default/visiosoft/base-theme/resources/lang/sv/setting.php
index 8f81e86b6..c30618747 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/sv/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/sv/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Registrera sidinstruktionslogotyp',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Registrera sidalarmlänk',
],
'style' => [
'name' => 'Stil (CSS)',
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 9c349f8a0..5ff970318 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/tr/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/tr/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Posta göndermek',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Kayıt Talimatları',
+ 'list' => 'Liste',
+ 'instruction_description' => 'Talimat Açıklama',
+ 'instruction_list' => 'Talimat Listesi',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/tr/setting.php b/addons/default/visiosoft/base-theme/resources/lang/tr/setting.php
index ac8c65ce5..fe4e05720 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/tr/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/tr/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Kayıt Sayfası Talimat Logosu',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Sayfa Uyarısı Bağlantısını Kaydet',
],
'style' => [
'name' => 'Stil (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/uk/field.php b/addons/default/visiosoft/base-theme/resources/lang/uk/field.php
index 9680e1bf9..e4ff1651e 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/uk/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/uk/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Надіслати пошту',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Інструкції з реєстрації',
+ 'list' => 'Список',
+ 'instruction_description' => 'Опис інструкції',
+ 'instruction_list' => 'Список інструкцій',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/uk/setting.php b/addons/default/visiosoft/base-theme/resources/lang/uk/setting.php
index 90f1a7af7..85326bab7 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/uk/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/uk/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Логотип інструкції на сторінку реєстрації',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Посилання попередження про сторінку',
],
'style' => [
'name' => 'Стиль (CSS)',
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ur/addon.php b/addons/default/visiosoft/base-theme/resources/lang/ur/addon.php
new file mode 100644
index 000000000..1cb131d7e
--- /dev/null
+++ b/addons/default/visiosoft/base-theme/resources/lang/ur/addon.php
@@ -0,0 +1,7 @@
+ 'بیس تھیم',
+ 'name' => 'بیس تھیم',
+ 'description' => 'بیس تھیم'
+];
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ur/button.php b/addons/default/visiosoft/base-theme/resources/lang/ur/button.php
new file mode 100644
index 000000000..667e8473d
--- /dev/null
+++ b/addons/default/visiosoft/base-theme/resources/lang/ur/button.php
@@ -0,0 +1,13 @@
+ [
+ 'name' => 'پوسٹ اشتہار',
+ ],
+ 'login' => 'لاگ ان کریں',
+ 'register' => 'رجسٹر کریں',
+ 'continue' => 'جاری رہے',
+ 'reset_password' => 'پاس ورڈ ری سیٹ',
+ 'email' => 'ای میل',
+ 'phone' => 'فون',
+];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ur/field.php b/addons/default/visiosoft/base-theme/resources/lang/ur/field.php
new file mode 100644
index 000000000..c37905a42
--- /dev/null
+++ b/addons/default/visiosoft/base-theme/resources/lang/ur/field.php
@@ -0,0 +1,59 @@
+ 'تازہ ترین اشتہارات',
+ 'show_all' => 'سارے دکھاو',
+ 'login' => [
+ 'name' => 'لاگ ان کریں',
+ ],
+ 'logout' => [
+ 'name' => 'لاگ آوٹ',
+ ],
+ 'profile' => 'پروفائل',
+ 'email' => 'ای میل اڈریس',
+ 'phone' => 'فون نمبر',
+ 'reset_code' => 'کوڈ کو دوبارہ ترتیب دیں',
+ 'password_confirmation' => 'پاسورڈ کی تو ثیق',
+ 'password' => 'پاس ورڈ',
+ 'first_name' => 'پہلا نام',
+ 'last_name' => 'آخری نام',
+ 'remember_me' => 'مجھے پہچانتے ہو',
+ 'not_a_member_yet' => 'ابھی تک ممبر نہیں ہے',
+ 'not_a_member_yet_message' => 'ہمارے ممبروں کو ہماری خصوصی خدمت سے استفادہ کرنے کے لئے سائن اپ کریں',
+ 'forgot_password' => 'میں اپنا پاسورڈ بھول گیا',
+ 'email_or_phone_number' => 'ای میل ایڈریس یا فون نمبر',
+ 'phone_number' => 'فون نمبر',
+
+ // Registration instructions
+ 'personal_registration_header' => 'رکنیت کے انفرادی فوائد کیا ہیں؟',
+ 'personal_registration_body' => 'اپنا مکان ، کار بیچیں اور کرایہ پر دیں ، اپنی غیر استعمال شدہ اشیاء فروخت کریں ، نئی چیزیں حاصل کریں۔',
+ 'personal_registration_list_1' => 'ایک مفت اشتہار پوسٹ کریں ،',
+ 'personal_registration_list_2' => 'جس اشتہار میں آپ دلچسپی رکھتے ہیں ان کو شامل کریں ، قیمتوں میں ہونے والی تبدیلیوں کو اپنے پسندیدہ میں شامل کرنے کے بعد ان کی پیروی کریں ، ایسی پسندیدہ تلاشیاں بنائیں جو آپ کے معیار پر پورا اتریں ،',
+ 'personal_registration_list_3' => 'سائٹ پر اشتہار مالکان کو پیغامات بھیجیں۔',
+ 'register_information_note' => 'اس صفحے پر دی گئی معلومات کے ل taken لیا گیا ہے ' . env('APPLICATION_DOMAIN') . ' رکنیت آپ یہاں ذاتی معلومات کے تحفظ کے بارے میں تفصیلی معلومات حاصل کرسکتے ہیں۔',
+
+ // Register page
+ 'phone_validation_error' => 'یہ فون نمبر دوسرے ممبر کے زیر استعمال ہے۔',
+
+ // Forgot Password
+ 'create_new_password' => 'نیا پاس ورڈ بنائیں',
+
+ // Login page
+ 'or' => 'یا',
+ 'login_with_phone_number' => 'فون نمبر کے ساتھ لاگ ان کریں',
+ 'login_with_email_address' => 'ای میل ایڈریس کے ساتھ لاگ ان کریں',
+
+ // Side menu links
+ 'company_directory' => 'کمپنی کی ڈائرکٹری',
+ 'popular_ads' => 'مشہور اشتہارات',
+ 'last_48_hours' => 'آخری 48 گھنٹے',
+ 'secure_e-commerce_ads' => 'ای کامرس کے اشتہارات کو محفوظ بنائیں',
+ 'sms' => 'ٹیکسٹ میسج (SMS) بھیجیں',
+ 'mail' => 'میل بھیجیں',
+
+ // Register instruction seed
+ 'register_instructions' => 'ہدایات رجسٹر کریں',
+ 'list' => 'فہرست',
+ 'instruction_description' => 'ہدایات کی تفصیل',
+ 'instruction_list' => 'ہدایات کی فہرست',
+];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ur/message.php b/addons/default/visiosoft/base-theme/resources/lang/ur/message.php
new file mode 100644
index 000000000..54b51b2ac
--- /dev/null
+++ b/addons/default/visiosoft/base-theme/resources/lang/ur/message.php
@@ -0,0 +1,6 @@
+ 'آپ کے رجسٹرڈ فون پر SMS بھیجا گیا۔ براہ مہربانی دیکھ لیجے.',
+ 'found_phone' => 'سسٹم میں درج فون نمبر نہیں ملا۔',
+];
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ur/section.php b/addons/default/visiosoft/base-theme/resources/lang/ur/section.php
new file mode 100644
index 000000000..29fbdced4
--- /dev/null
+++ b/addons/default/visiosoft/base-theme/resources/lang/ur/section.php
@@ -0,0 +1,8 @@
+ [
+ 'name' => 'کیٹلاگ وضع',
+ ],
+ 'template' => 'سانچے',
+];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/ur/setting.php b/addons/default/visiosoft/base-theme/resources/lang/ur/setting.php
new file mode 100644
index 000000000..3be46a624
--- /dev/null
+++ b/addons/default/visiosoft/base-theme/resources/lang/ur/setting.php
@@ -0,0 +1,40 @@
+ [
+ 'name' => 'نیویگیشن کا عنوان',
+ ],
+ 'navigation_action' => [
+ 'name' => 'نیویگیشن ایکشن',
+ ],
+ 'country_fields' => [
+ 'name' => 'کنٹری فیلڈز',
+ ],
+ 'date_fields' => [
+ 'name' => 'تاریخ کے خانے',
+ ],
+ 'price_fields' => [
+ 'name' => 'قیمت کے میدان',
+ ],
+ 'breadcrumbs' => [
+ 'name' => 'روٹی crumb',
+ ],
+ 'ad_details' => [
+ 'name' => 'اشتہار کی تفصیلات',
+ ],
+ 'ad_details_tab' => [
+ 'name' => 'اشتہار کی تفصیلات کا ٹیب',
+ ],
+ 'latest_and_view_all_btn' => [
+ 'name' => 'تازہ ترین اور تمام Btn دیکھیں',
+ ],
+ 'register_page_instruction_logo' => [
+ 'name' => 'صفحہ ہدایت کا لوگو رجسٹر کریں',
+ ],
+ 'register_page_alert_link' => [
+ 'name' => 'پیج الرٹ لنک رجسٹر کریں',
+ ],
+ 'style' => [
+ 'name' => 'انداز (سی ایس ایس)',
+ ],
+];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/vi/field.php b/addons/default/visiosoft/base-theme/resources/lang/vi/field.php
index cd7caff0d..ad4af6f25 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/vi/field.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/vi/field.php
@@ -52,8 +52,8 @@ return [
'mail' => 'Gửi thư',
// Register instruction seed
- 'register_instructions' => 'Register Instructions',
- 'list' => 'List',
- 'instruction_description' => 'Instruction Description',
- 'instruction_list' => 'Instruction List',
+ 'register_instructions' => 'Đăng ký Hướng dẫn',
+ 'list' => 'Danh sách',
+ 'instruction_description' => 'Mô tả hướng dẫn',
+ 'instruction_list' => 'Danh sách hướng dẫn',
];
\ No newline at end of file
diff --git a/addons/default/visiosoft/base-theme/resources/lang/vi/setting.php b/addons/default/visiosoft/base-theme/resources/lang/vi/setting.php
index 321969e90..53cd78f91 100644
--- a/addons/default/visiosoft/base-theme/resources/lang/vi/setting.php
+++ b/addons/default/visiosoft/base-theme/resources/lang/vi/setting.php
@@ -32,7 +32,7 @@ return [
'name' => 'Đăng ký Trang hướng dẫn Logo',
],
'register_page_alert_link' => [
- 'name' => 'Register Page Alert Link',
+ 'name' => 'Đăng ký liên kết cảnh báo trang',
],
'style' => [
'name' => 'Phong cách (CSS)',
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ar/message.php b/addons/default/visiosoft/cats-module/resources/lang/ar/message.php
new file mode 100644
index 000000000..7d65111bc
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ar/message.php
@@ -0,0 +1,5 @@
+ 'تم حذف الفئات والفئات الفرعية ذات الصلة بنجاح!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ar/setting.php b/addons/default/visiosoft/cats-module/resources/lang/ar/setting.php
index ab795c85d..119f74923 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/ar/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/ar/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'رقم تقسيم خريطة الموقع',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'تضمين المدن في خريطة الموقع',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/az/message.php b/addons/default/visiosoft/cats-module/resources/lang/az/message.php
new file mode 100644
index 000000000..a43fa1189
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/az/message.php
@@ -0,0 +1,5 @@
+ 'Kateqoriyalar və əlaqəli alt kateqoriyalar uğurla silindi!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/az/setting.php b/addons/default/visiosoft/cats-module/resources/lang/az/setting.php
index ab795c85d..df9b4d2cf 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/az/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/az/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Saytın xəritəsi bölmə nömrəsi',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Şəhər xəritələrini Sayt Xəritəsinə daxil edin',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/bn/message.php b/addons/default/visiosoft/cats-module/resources/lang/bn/message.php
new file mode 100644
index 000000000..2fe189f6c
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/bn/message.php
@@ -0,0 +1,5 @@
+ 'বিভাগ এবং সম্পর্কিত উপ-বিভাগগুলি সফলভাবে মুছে ফেলা হয়েছে!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/bn/setting.php b/addons/default/visiosoft/cats-module/resources/lang/bn/setting.php
index ab795c85d..186660eaa 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/bn/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/bn/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'সাইটম্যাপ বিভাজক নম্বর',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'সাইটম্যাপে শহরগুলি অন্তর্ভুক্ত করুন',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/de/message.php b/addons/default/visiosoft/cats-module/resources/lang/de/message.php
new file mode 100644
index 000000000..ee566138e
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/de/message.php
@@ -0,0 +1,5 @@
+ 'Kategorien und verwandte Unterkategorien wurden erfolgreich gelöscht!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/de/setting.php b/addons/default/visiosoft/cats-module/resources/lang/de/setting.php
index ab795c85d..21fcb72a4 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/de/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/de/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Sitemap-Teilungsnummer',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Städte in Sitemap aufnehmen',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/el/message.php b/addons/default/visiosoft/cats-module/resources/lang/el/message.php
new file mode 100644
index 000000000..7d64842a6
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/el/message.php
@@ -0,0 +1,5 @@
+ 'Οι κατηγορίες και οι σχετικές υποκατηγορίες διαγράφηκαν με επιτυχία!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/el/setting.php b/addons/default/visiosoft/cats-module/resources/lang/el/setting.php
index ab795c85d..59a9a6037 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/el/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/el/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Αριθμός διαίρεσης χάρτη ιστότοπου',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Συμπερίληψη πόλεων στον χάρτη ιστότοπου',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/es/message.php b/addons/default/visiosoft/cats-module/resources/lang/es/message.php
new file mode 100644
index 000000000..c9badfe15
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/es/message.php
@@ -0,0 +1,5 @@
+ '¡Las categorías y subcategorías relacionadas se han eliminado correctamente!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/es/setting.php b/addons/default/visiosoft/cats-module/resources/lang/es/setting.php
index ab795c85d..55a0940b4 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/es/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/es/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Número de división del mapa del sitio',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Incluir ciudades en el mapa del sitio',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/fa/message.php b/addons/default/visiosoft/cats-module/resources/lang/fa/message.php
new file mode 100644
index 000000000..5dd1eccf7
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/fa/message.php
@@ -0,0 +1,5 @@
+ 'دسته بندی ها و زیر گروه های مرتبط با موفقیت حذف شد!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/fa/setting.php b/addons/default/visiosoft/cats-module/resources/lang/fa/setting.php
index ab795c85d..d399e65c7 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/fa/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/fa/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'شماره تقسیم نقشه سایت',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'شهرها را در نقشه سایت بگنجانید',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/fr/message.php b/addons/default/visiosoft/cats-module/resources/lang/fr/message.php
new file mode 100644
index 000000000..1212fcac1
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/fr/message.php
@@ -0,0 +1,5 @@
+ 'Les catégories et sous-catégories associées ont été supprimées avec succès!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/fr/setting.php b/addons/default/visiosoft/cats-module/resources/lang/fr/setting.php
index ab795c85d..47e611985 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/fr/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/fr/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Plan du site Nombre de division',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Inclure les villes dans le plan du site',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/he/message.php b/addons/default/visiosoft/cats-module/resources/lang/he/message.php
new file mode 100644
index 000000000..4ef737747
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/he/message.php
@@ -0,0 +1,5 @@
+ 'הקטגוריות ותתי הקטגוריות הקשורות בהן נמחקו בהצלחה!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/he/setting.php b/addons/default/visiosoft/cats-module/resources/lang/he/setting.php
index ab795c85d..cf98defa6 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/he/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/he/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'מספר חלוקת מפת האתר',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'כלול ערים במפת האתר',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/hi/message.php b/addons/default/visiosoft/cats-module/resources/lang/hi/message.php
new file mode 100644
index 000000000..65d5f0e9e
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/hi/message.php
@@ -0,0 +1,5 @@
+ 'श्रेणियों और संबंधित उप-श्रेणियों को सफलतापूर्वक हटा दिया गया है!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/hi/setting.php b/addons/default/visiosoft/cats-module/resources/lang/hi/setting.php
index ab795c85d..b4bac40a2 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/hi/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/hi/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'साइटमैप विभाजन संख्या',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'साइटमैप में शहर शामिल करें',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/it/message.php b/addons/default/visiosoft/cats-module/resources/lang/it/message.php
new file mode 100644
index 000000000..94e7d777f
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/it/message.php
@@ -0,0 +1,5 @@
+ 'Le categorie e le relative sottocategorie sono state eliminate con successo!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/it/setting.php b/addons/default/visiosoft/cats-module/resources/lang/it/setting.php
index ab795c85d..92ca314df 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/it/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/it/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Numero di divisione della mappa del sito',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Includi città nella mappa del sito',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ja/message.php b/addons/default/visiosoft/cats-module/resources/lang/ja/message.php
new file mode 100644
index 000000000..b0c716e80
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ja/message.php
@@ -0,0 +1,5 @@
+ 'カテゴリと関連するサブカテゴリが正常に削除されました!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ja/setting.php b/addons/default/visiosoft/cats-module/resources/lang/ja/setting.php
index ab795c85d..e4b2c6302 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/ja/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/ja/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'サイトマップの分割数',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'サイトマップに都市を含める',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ko/message.php b/addons/default/visiosoft/cats-module/resources/lang/ko/message.php
new file mode 100644
index 000000000..13c96528a
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ko/message.php
@@ -0,0 +1,5 @@
+ '카테고리 및 관련 하위 카테고리가 성공적으로 삭제되었습니다!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ko/setting.php b/addons/default/visiosoft/cats-module/resources/lang/ko/setting.php
index ab795c85d..073bd8d7a 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/ko/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/ko/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => '사이트 맵 분할 번호',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Sitemap에 도시 포함',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/nl/message.php b/addons/default/visiosoft/cats-module/resources/lang/nl/message.php
new file mode 100644
index 000000000..d9a922bb0
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/nl/message.php
@@ -0,0 +1,5 @@
+ 'Categorieën en gerelateerde subcategorieën zijn succesvol verwijderd!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/nl/setting.php b/addons/default/visiosoft/cats-module/resources/lang/nl/setting.php
index ab795c85d..04f55c8dc 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/nl/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/nl/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Sitemap Scheidingsnummer',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Plaats steden in sitemap',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/pl/message.php b/addons/default/visiosoft/cats-module/resources/lang/pl/message.php
new file mode 100644
index 000000000..48575379e
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/pl/message.php
@@ -0,0 +1,5 @@
+ 'Kategorie i powiązane podkategorie zostały pomyślnie usunięte!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/pl/setting.php b/addons/default/visiosoft/cats-module/resources/lang/pl/setting.php
index ab795c85d..bbdce1089 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/pl/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/pl/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Mapa witryny Dzielenie liczby',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Uwzględnij miasta w mapie witryny',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/pt/message.php b/addons/default/visiosoft/cats-module/resources/lang/pt/message.php
new file mode 100644
index 000000000..ffde9ff98
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/pt/message.php
@@ -0,0 +1,5 @@
+ 'Categorias e subcategorias relacionadas foram excluídas com sucesso!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/pt/setting.php b/addons/default/visiosoft/cats-module/resources/lang/pt/setting.php
index ab795c85d..6ee214e3c 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/pt/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/pt/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Número de divisão do mapa do site',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Incluir cidades no mapa do site',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ro/message.php b/addons/default/visiosoft/cats-module/resources/lang/ro/message.php
new file mode 100644
index 000000000..7e09c4c43
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ro/message.php
@@ -0,0 +1,5 @@
+ 'Categoriile și sub-categoriile aferente au fost șterse cu succes!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ro/setting.php b/addons/default/visiosoft/cats-module/resources/lang/ro/setting.php
index ab795c85d..59a5656e6 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/ro/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/ro/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Sitemap Număr de divizare',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Includeți orașe în Sitemap',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ru/message.php b/addons/default/visiosoft/cats-module/resources/lang/ru/message.php
new file mode 100644
index 000000000..77dd52dbf
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ru/message.php
@@ -0,0 +1,5 @@
+ 'Категории и связанные подкатегории были успешно удалены!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ru/setting.php b/addons/default/visiosoft/cats-module/resources/lang/ru/setting.php
index ab795c85d..6edcb806c 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/ru/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/ru/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Разделительный номер карты сайта',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Включить города в карту сайта',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/sq/message.php b/addons/default/visiosoft/cats-module/resources/lang/sq/message.php
new file mode 100644
index 000000000..100080e91
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/sq/message.php
@@ -0,0 +1,5 @@
+ 'Kategoritë dhe nënkategoritë përkatëse janë fshirë me sukses!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/sq/setting.php b/addons/default/visiosoft/cats-module/resources/lang/sq/setting.php
index ab795c85d..2f6a751f0 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/sq/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/sq/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Numri i Ndarjes së sitit',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Përfshini Qytetet në Sitemap',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/sv/message.php b/addons/default/visiosoft/cats-module/resources/lang/sv/message.php
new file mode 100644
index 000000000..0fa46d0cc
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/sv/message.php
@@ -0,0 +1,5 @@
+ 'Kategorier och relaterade underkategorier har tagits bort!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/sv/setting.php b/addons/default/visiosoft/cats-module/resources/lang/sv/setting.php
index ab795c85d..c62f363a0 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/sv/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/sv/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Sitemap Delningsnummer',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Inkludera städer i webbplatskartan',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/tr/message.php b/addons/default/visiosoft/cats-module/resources/lang/tr/message.php
new file mode 100644
index 000000000..393b2468f
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/tr/message.php
@@ -0,0 +1,5 @@
+ 'Kategoriler ve ilgili alt kategoriler başarıyla silindi!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/tr/setting.php b/addons/default/visiosoft/cats-module/resources/lang/tr/setting.php
index ab795c85d..53981b80c 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/tr/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/tr/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Site Haritası Bölme Numarası',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Şehirleri Site Haritasına Ekle',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/uk/message.php b/addons/default/visiosoft/cats-module/resources/lang/uk/message.php
new file mode 100644
index 000000000..f0cda131e
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/uk/message.php
@@ -0,0 +1,5 @@
+ 'Категорії та пов’язані з ними підкатегорії успішно видалено!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/uk/setting.php b/addons/default/visiosoft/cats-module/resources/lang/uk/setting.php
index ab795c85d..d11c87e38 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/uk/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/uk/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Номер поділу сайту',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Включіть міста в мапу сайту',
],
];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ur/addon.php b/addons/default/visiosoft/cats-module/resources/lang/ur/addon.php
new file mode 100644
index 000000000..2805128db
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ur/addon.php
@@ -0,0 +1,7 @@
+ 'قسم',
+ 'name' => 'زمرہ ماڈیول',
+ 'description' => ''
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ur/button.php b/addons/default/visiosoft/cats-module/resources/lang/ur/button.php
new file mode 100644
index 000000000..8f9ef0538
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ur/button.php
@@ -0,0 +1,8 @@
+ 'نئی قسم',
+ 'add_sub_category' => 'ذیلی زمرہ شامل کریں',
+ 'sub_category' => 'ذیلی زمرہ دکھائیں',
+ 'new_placeholderforsearch' => 'نئی جگہ دار نامعلوم تلاش',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ur/field.php b/addons/default/visiosoft/cats-module/resources/lang/ur/field.php
new file mode 100644
index 000000000..88fb3eea4
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ur/field.php
@@ -0,0 +1,35 @@
+ [
+ 'name' => 'عنوان',
+ 'instructions' => 'یہ اس اہم قسم کا نام ہے جسے آپ بیان کریں گے۔ اس سے صارف کو آسانی سے وہ پروڈکٹ تلاش کرنے کی اجازت ملتی ہے جس کی وہ تلاش کر رہے ہیں۔',
+ ],
+ 'order' => [
+ 'name' => 'ترتیب',
+ ],
+
+ 'slug' => [
+ 'name' => 'سلگ',
+ 'instructions' => 'اپنی پوسٹ کو دوسروں کے ساتھ گروپ کرنے میں مدد کے لئے کسی بھی تنظیمی ٹیگ کی وضاحت کریں۔',
+
+ ],
+ 'files' => [
+ 'name' => 'تصویر',
+ ],
+ 'seo_keyword' => [
+ 'name' => 'SEO کلیدی لفظ',
+ 'instructions' => 'گوگل کے براؤزر میں سائٹ سے الفاظ تلاش کے نتائج کے اوپر ظاہر ہونے کے لئے شامل کیے گئے۔',
+ ],
+ 'seo_description' => [
+ 'name' => 'SEO کی تفصیل',
+ 'instructions' => 'اس سے آپ کے زائرین کے فیصلے پر اثر پڑ سکتا ہے کہ آیا وہ تلاش کے نتائج میں موجود مواد پر کلک کرنا چاہتے ہیں۔',
+ ],
+ 'icon' => [
+ 'name' => 'شبیہہ',
+ 'instructions' => 'اس قسم کا اشارہ کرنے والی شبیہیں شامل کرنے کے لئے استعمال کیا جاتا ہے۔',
+ ],
+
+ 'please_wait' => 'براہ کرم انتظار کریں۔ ذیلی زمرے ختم کرنا',
+ 'category_selection' => 'زمرہ انتخاب',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ur/message.php b/addons/default/visiosoft/cats-module/resources/lang/ur/message.php
new file mode 100644
index 000000000..02f95e9e0
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ur/message.php
@@ -0,0 +1,5 @@
+ 'زمرہ جات اور متعلقہ ذیلی زمرے کامیابی کے ساتھ حذف کردیئے گئے ہیں!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ur/permission.php b/addons/default/visiosoft/cats-module/resources/lang/ur/permission.php
new file mode 100644
index 000000000..564852a5f
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ur/permission.php
@@ -0,0 +1,20 @@
+ [
+ 'name' => 'قسم',
+ 'option' => [
+ 'read' => 'زمرہ پڑھ سکتے ہیں؟',
+ 'write' => 'کیا زمرہ تشکیل / ترمیم کرسکتے ہیں؟',
+ 'delete' => 'زمرہ حذف کرسکتے ہیں؟',
+ ],
+ ],
+ 'placeholderforsearch' => [
+ 'name' => 'پلیس ہولڈفورس تلاش',
+ 'option' => [
+ 'read' => 'کیا پلیس ہولڈفورس سرچز پڑھ سکتے ہیں؟',
+ 'write' => 'کیا پلیس ہولڈفورسز تلاش / ترمیم کرسکتے ہیں؟',
+ 'delete' => 'کیا پلیس ہولڈفورس سرچ کو حذف کیا جاسکتا ہے؟',
+ ],
+ ],
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ur/setting.php b/addons/default/visiosoft/cats-module/resources/lang/ur/setting.php
new file mode 100644
index 000000000..30fbcce9f
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ur/setting.php
@@ -0,0 +1,10 @@
+ [
+ 'name' => 'سائٹ کا نقشہ تقسیم نمبر',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'سائٹ میپ میں شہروں کو شامل کریں',
+ ],
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ur/stream.php b/addons/default/visiosoft/cats-module/resources/lang/ur/stream.php
new file mode 100644
index 000000000..9a8def464
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ur/stream.php
@@ -0,0 +1,10 @@
+ [
+ 'name' => 'قسم',
+ ],
+ 'placeholderforsearch' => [
+ 'name' => 'پلیس ہولڈفورس تلاش',
+ ],
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/ur/view.php b/addons/default/visiosoft/cats-module/resources/lang/ur/view.php
new file mode 100644
index 000000000..39069c6b0
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/ur/view.php
@@ -0,0 +1,5 @@
+ 'صاف زمرہ جات',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/vi/message.php b/addons/default/visiosoft/cats-module/resources/lang/vi/message.php
new file mode 100644
index 000000000..b47e9a1f3
--- /dev/null
+++ b/addons/default/visiosoft/cats-module/resources/lang/vi/message.php
@@ -0,0 +1,5 @@
+ 'Danh mục và các tiểu mục liên quan đã được xóa thành công!',
+];
diff --git a/addons/default/visiosoft/cats-module/resources/lang/vi/setting.php b/addons/default/visiosoft/cats-module/resources/lang/vi/setting.php
index ab795c85d..287f98598 100644
--- a/addons/default/visiosoft/cats-module/resources/lang/vi/setting.php
+++ b/addons/default/visiosoft/cats-module/resources/lang/vi/setting.php
@@ -2,6 +2,9 @@
return [
'sitemap_dividing_number' => [
- 'name' => 'Sitemap Dividing Number',
+ 'name' => 'Số phân chia sơ đồ trang web',
+ ],
+ 'include_cities_sitemap' => [
+ 'name' => 'Bao gồm các thành phố trong Sơ đồ trang web',
],
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ar/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ar/button.php
index 00eb9549c..af538fc99 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ar/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ar/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'شاهد الاعلانات',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ar/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ar/section.php
new file mode 100644
index 000000000..c21e82521
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ar/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'إعدادات الموضوع'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ar/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ar/setting.php
index 4cdb6b130..4aff335b4 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ar/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ar/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'يتم استخدام أول عنصر تنقل يمكن الوصول إليه باعتباره منطقة home.',
'reorder' => 'سحب وإسقاط البنود الملاحة الابتدائية في الشريط الجانبي إلى إعادة ترتيب لهم.',
],
+ "icon" => [
+ 'name' => 'أيقونة',
+ ],
+ "title" => [
+ 'name' => 'عنوان',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'اسم منظمة حقوق الطبع والنشر التذييل',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'اللون الرئيسي للشريط الجانبي',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'اللون الثانوي للشريط الجانبي',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'لون حدود الشريط الجانبي النشط',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/az/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/az/button.php
index 00eb9549c..048522c62 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/az/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/az/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Reklamlara baxın',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/az/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/az/section.php
new file mode 100644
index 000000000..4fc6981c3
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/az/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Tema parametrləri'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/az/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/az/setting.php
index 42a1d0882..a3e53f221 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/az/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/az/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'İlk əlçatan naviqasiya elementi ev sahə kimi istifadə olunur.',
'reorder' => 'Sıralamaq üçün yan çubuğun də ilkin naviqasiya elementlərini sürükləyin və buraxın.',
],
+ "icon" => [
+ 'name' => 'Nişan',
+ ],
+ "title" => [
+ 'name' => 'Başlıq',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Altbilgi Müəllif Hüquqları Təşkilatı Adı',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Yan panel əsas rəng',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Yan panel orta rəng',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Aktiv Sıra Sərhəd Rəngi',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/bn/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/bn/button.php
index 00eb9549c..d9481bd52 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/bn/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/bn/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'বিজ্ঞাপনগুলো দেখুন',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/bn/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/bn/section.php
new file mode 100644
index 000000000..782178f13
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/bn/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'থিম সেটিং'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/bn/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/bn/setting.php
index 7135bcd0f..436406e4c 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/bn/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/bn/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'প্রথম অ্যাক্সেসযোগ্য নেভিগেশন আইটেমটি হোম অঞ্চল হিসাবে ব্যবহৃত হয়।',
'reorder' => 'পুনরায় ক্রম করতে প্রাথমিক নেভিগেশন আইটেমগুলিকে সাইডবার টেনে আনুন।',
],
+ "icon" => [
+ 'name' => 'আইকন',
+ ],
+ "title" => [
+ 'name' => 'শিরোনাম',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'পাদদেশ কপিরাইট সংস্থার নাম',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'সাইডবার প্রধান রঙ Color',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'সাইডবার সেকেন্ডারি রঙ',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'সক্রিয় সাইডবার বর্ডার রঙ',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/de/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/de/button.php
index 00eb9549c..51bdd619f 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/de/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/de/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Anzeigen anschauen',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/de/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/de/section.php
new file mode 100644
index 000000000..6ffa166b8
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/de/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Themen Einstellungen'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/de/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/de/setting.php
index 9a7ea8fbf..53233e974 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/de/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/de/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'Das erste verfügbare Navigationselement wird als Startseite verwendet.',
'reorder' => 'Sie können die primären Navigationelemente per Drag & Drop in der Sidebar sortieren.',
],
+ "icon" => [
+ 'name' => 'Symbol',
+ ],
+ "title" => [
+ 'name' => 'Titel',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Fußzeile Copyright Organisationsname',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Hauptfarbe der Seitenleiste',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Sekundärfarbe der Seitenleiste',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Aktive Seitenleistenrandfarbe',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/el/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/el/button.php
index 00eb9549c..7fcbbb109 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/el/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/el/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Προβολή διαφημίσεων',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/el/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/el/section.php
new file mode 100644
index 000000000..c614776a8
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/el/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Ρυθμίσεις θέματος'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/el/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/el/setting.php
index a915de341..c0b63068b 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/el/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/el/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'Το πρώτο προσβάσιμο στοιχείο πλοήγησης χρησιμοποιείται ως περιοχή home.',
'reorder' => 'Μεταφέρετε και αποθέστε τα κύρια στοιχεία πλοήγησης στην πλευρική γραμμή για να τα αναδιατάξετε.',
],
+ "icon" => [
+ 'name' => 'Εικόνισμα',
+ ],
+ "title" => [
+ 'name' => 'Τίτλος',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Όνομα οργανισμού πνευματικών δικαιωμάτων υποσέλιδου',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Κύριο χρώμα πλευρικής γραμμής',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Δευτερεύον χρώμα πλευρικής γραμμής',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Ενεργό χρώμα περιγράμματος πλευρικής γραμμής',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/en/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/en/section.php
new file mode 100644
index 000000000..646bfd710
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/en/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Theme Settings'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/es/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/es/button.php
index 00eb9549c..b613f1d86 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/es/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/es/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Ver anuncios',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/es/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/es/section.php
new file mode 100644
index 000000000..314a6ac79
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/es/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Ajustes de tema'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/es/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/es/setting.php
index 1834a65b3..a2b93242a 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/es/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/es/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'El primer elemento de navegación accesible se utiliza como el área inicio.',
'reorder' => 'Arrastre y suelte los elementos de navegación principales en la barra lateral para reordenarlos.',
],
+ "icon" => [
+ 'name' => 'Icono',
+ ],
+ "title" => [
+ 'name' => 'Título',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Pie de página Copyright Nombre de la organización',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Color principal de la barra lateral',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Color secundario de la barra lateral',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Color del borde de la barra lateral activa',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/fa/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/fa/button.php
index 00eb9549c..a9bca191f 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/fa/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/fa/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'نمایش تبلیغات',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/fa/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/fa/section.php
new file mode 100644
index 000000000..d5c933c76
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/fa/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'تنظیمات پوسته'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/fa/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/fa/setting.php
index b1fcda0e6..40f5f424e 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/fa/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/fa/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'اولین آیتم در منو به عنوان خانه در نظر گرفته می شود',
'reorder' => 'برای مرتب کردن آیتم ها را در سایدبار با موس جابجا کنید',
],
+ "icon" => [
+ 'name' => 'آیکون',
+ ],
+ "title" => [
+ 'name' => 'عنوان',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'پاورقی نام سازمان حق چاپ',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'رنگ اصلی نوار کناری',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'رنگ ثانویه نوار کناری',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'رنگ حاشیه فعال نوار کناری',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/fr/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/fr/button.php
index 00eb9549c..3c849ab6d 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/fr/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/fr/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Voir les annonces',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/fr/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/fr/section.php
new file mode 100644
index 000000000..95adbea99
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/fr/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Réglage des thèmes'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/fr/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/fr/setting.php
index 763d1584f..4406c8031 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/fr/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/fr/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'Le premier élément de navigation accessible est utilisé comme zone origine.',
'reorder' => 'Faites glisser et déposez les éléments de navigation principaux dans la barre latérale pour les réorganiser.',
],
+ "icon" => [
+ 'name' => 'Icône',
+ ],
+ "title" => [
+ 'name' => 'Titre',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Nom de l\'organisation de copyright du pied de page',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Couleur principale de la barre latérale',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Couleur secondaire de la barre latérale',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Couleur de bordure de la barre latérale active',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/he/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/he/button.php
index 00eb9549c..d671a8028 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/he/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/he/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'הצג מודעות',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/he/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/he/section.php
new file mode 100644
index 000000000..9f6de35e7
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/he/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'הגדרות נושא'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/he/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/he/setting.php
index 5cfee59d4..7a681e9f8 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/he/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/he/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'פריט הניווט הנגיש הראשון משמש כאזור ביתי.',
'reorder' => 'גרור ושחרר את הפריטים ניווט העיקרי הצדדי כדי לסדר אותן מחדש.',
],
+ "icon" => [
+ 'name' => 'אייקון',
+ ],
+ "title" => [
+ 'name' => 'כותרת',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'שם ארגון זכויות יוצרים תחתונה',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'צבע עיקרי בסרגל הצד',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'צבע משני בסרגל הצד',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'צבע גבול פעיל בסרגל הצד',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/hi/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/hi/button.php
index 00eb9549c..c3f56b9a3 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/hi/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/hi/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'विज्ञापन देखें',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/hi/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/hi/section.php
new file mode 100644
index 000000000..84da65930
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/hi/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'विषय सेटिंग'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/hi/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/hi/setting.php
index 241d0d0e8..f8d6337a3 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/hi/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/hi/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'पहला सुलभ नेविगेशन आइटम होम क्षेत्र के रूप में उपयोग किया जाता है।',
'reorder' => 'उन्हें पुन: व्यवस्थित करने के लिए साइडबार में प्राथमिक नेविगेशन आइटम खींचें और छोड़ें।',
],
+ "icon" => [
+ 'name' => 'चिह्न',
+ ],
+ "title" => [
+ 'name' => 'शीर्षक',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'पाद कॉपीराइट संगठन का नाम',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'साइडबार मेन कलर',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'साइडबार माध्यमिक रंग',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'सक्रिय साइडबार बॉर्डर रंग',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/it/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/it/button.php
index 00eb9549c..00a57678d 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/it/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/it/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Vedi annunci',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/it/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/it/section.php
new file mode 100644
index 000000000..632985698
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/it/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Impostazioni tema'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/it/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/it/setting.php
index 32b5a4797..4a6ce2663 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/it/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/it/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'Il primo elemento di navigazione accessibile viene utilizzato come area home.',
'reorder' => 'Trascina e rilascia gli elementi di navigazione principali nella barra laterale per riordinarli.',
],
+ "icon" => [
+ 'name' => 'Icona',
+ ],
+ "title" => [
+ 'name' => 'Titolo',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Nome dell\'organizzazione del copyright nel piè di pagina',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Colore principale barra laterale',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Colore secondario barra laterale',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Colore bordo barra laterale attiva',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ja/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ja/button.php
index 00eb9549c..d1faa260a 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ja/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ja/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => '広告を見る',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ja/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ja/section.php
new file mode 100644
index 000000000..282062e80
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ja/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'テーマ設定'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ja/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ja/setting.php
index ff9c95d03..653a00f64 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ja/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ja/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => '最初のアクセス可能なナビゲーション項目は、 ホーム エリアとして使用されます。',
'reorder' => 'プライマリナビゲーションアイテムを サイドバー にドラッグアンドドロップして並べ替えます。',
],
+ "icon" => [
+ 'name' => 'アイコン',
+ ],
+ "title" => [
+ 'name' => '題名',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'フッター著作権機関名',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'サイドバーのメインカラー',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'サイドバーのセカンダリカラー',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'アクティブなサイドバーのボーダー色',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ko/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ko/button.php
index 00eb9549c..5abcfdeb9 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ko/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ko/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => '광고보기',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ko/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ko/section.php
new file mode 100644
index 000000000..b29deec0c
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ko/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => '주제 설정'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ko/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ko/setting.php
index d46b21591..ae3631dd8 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ko/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ko/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => '액세스 가능한 첫 번째 탐색 항목은 홈 영역으로 사용됩니다.',
'reorder' => '사이드 바 에서 기본 탐색 항목을 끌어다 놓아 순서를 바꿉니다.',
],
+ "icon" => [
+ 'name' => '상',
+ ],
+ "title" => [
+ 'name' => '표제',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => '바닥 글 저작권 조직 이름',
+ ],
+ "sidebar_main_color" => [
+ 'name' => '사이드 바 기본 색상',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => '사이드 바 보조 색상',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => '활성 사이드 바 테두리 색상',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/nl/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/nl/button.php
index 00eb9549c..0414f12c3 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/nl/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/nl/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Advertenties bekijken',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/nl/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/nl/section.php
new file mode 100644
index 000000000..9607011b8
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/nl/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Thema instellingen'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/nl/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/nl/setting.php
index 29f6b2a9f..b076f819c 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/nl/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/nl/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'Het eerste toegankelijke navigatie-item wordt gebruikt als het home gebied.',
'reorder' => 'Sleep de primaire navigatie-items in de zijbalk om ze opnieuw te ordenen.',
],
+ "icon" => [
+ 'name' => 'Icoon',
+ ],
+ "title" => [
+ 'name' => 'Titel',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Voettekst Copyright naam organisatie',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Hoofdkleur zijbalk',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Secundaire kleur zijbalk',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Actieve randkleur zijbalk',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/pl/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/pl/button.php
index 00eb9549c..6eb0d2573 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/pl/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/pl/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Wyświetl reklamy',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/pl/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/pl/section.php
new file mode 100644
index 000000000..a47a80014
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/pl/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Ustawienia motywu'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/pl/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/pl/setting.php
index 49c7ba42d..0ea8e6ad1 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/pl/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/pl/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'Pierwszy dostępny element nawigacyjny jest używany jako obszar domu.',
'reorder' => 'Przeciągnij i upuść podstawowe elementy nawigacji na pasku bocznym aby zmienić ich kolejność.',
],
+ "icon" => [
+ 'name' => 'Ikona',
+ ],
+ "title" => [
+ 'name' => 'Tytuł',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Nazwa organizacji zajmującej się prawami autorskimi w stopce',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Główny kolor paska bocznego',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Kolor dodatkowy paska bocznego',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Kolor obramowania aktywnego paska bocznego',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/pt/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/pt/button.php
index 00eb9549c..a1a991dbf 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/pt/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/pt/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Exibir anúncios',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/pt/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/pt/section.php
new file mode 100644
index 000000000..ff4c4c428
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/pt/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Configurações de tema'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/pt/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/pt/setting.php
index e78ad754e..514bd645b 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/pt/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/pt/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'O primeiro item de navegação acessível é usado como a área inicial.',
'reorder' => 'Arraste e solte os itens de navegação principais na barra lateral para reordená-los.',
],
+ "icon" => [
+ 'name' => 'Ícone',
+ ],
+ "title" => [
+ 'name' => 'Título',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Rodapé Copyright Nome da Organização',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Cor principal da barra lateral',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Cor secundária da barra lateral',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Cor ativa da borda da barra lateral',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ro/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ro/button.php
index 00eb9549c..3b2163852 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ro/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ro/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Vezi reclamele',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ro/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ro/section.php
new file mode 100644
index 000000000..35e72713e
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ro/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Setari tema'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ro/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ro/setting.php
index e0312c4db..0eb0ccf3d 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ro/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ro/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'Primul articol accesibil de navigare este utilizat ca zonă acasă.',
'reorder' => 'Trageți și fixați elementele principale de navigație în bara laterală pentru a le reordona.',
],
+ "icon" => [
+ 'name' => 'icoană',
+ ],
+ "title" => [
+ 'name' => 'Titlu',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Subsol Nume organizație drepturi de autor',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Bara principală a culorii principale',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Bara laterală secundară',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Culoare activă a marginii laterale',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ru/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ru/button.php
index 00eb9549c..c86678580 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ru/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ru/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Просмотр рекламы',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ru/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ru/section.php
new file mode 100644
index 000000000..5ff7375b2
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ru/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Настройки темы'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ru/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ru/setting.php
index 4e737fcb2..f6995c87a 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ru/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ru/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'Первый доступный элемент навигации используется как область home.',
'reorder' => 'Перетащите основные элементы навигации на боковой панели чтобы изменить их порядок.',
],
+ "icon" => [
+ 'name' => 'Значок',
+ ],
+ "title" => [
+ 'name' => 'заглавие',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Название организации по защите авторских прав в нижнем колонтитуле',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Основной цвет боковой панели',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Дополнительный цвет боковой панели',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Цвет границы активной боковой панели',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/sq/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/sq/button.php
index 00eb9549c..354d4d3c8 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/sq/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/sq/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Shikoni reklamat',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/sq/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/sq/section.php
new file mode 100644
index 000000000..b78d8532f
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/sq/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Cilësimet e temës'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/sq/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/sq/setting.php
index 8719747fa..19e9b1621 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/sq/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/sq/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'Artikulli i parë i arritshëm i navigimit përdoret si zona shtëpi.',
'reorder' => 'Zvarritni dhe lëshoni artikujt kryesorë të lundrimit në sidebar për t\'i rivartuar ato.',
],
+ "icon" => [
+ 'name' => 'ikonë',
+ ],
+ "title" => [
+ 'name' => 'titull',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Fundi i faqes Emri i Organizatës',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Ngjyra kryesore e shiritit anësor',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Ngjyra sekondare e shiritit anësor',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Ngjyra kufitare aktive e kufirit',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/sv/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/sv/button.php
index 00eb9549c..283d315c5 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/sv/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/sv/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Visa annonser',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/sv/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/sv/section.php
new file mode 100644
index 000000000..834ccb4b4
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/sv/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Temainställningar'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/sv/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/sv/setting.php
index 6c5d2c38a..91b189577 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/sv/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/sv/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'Det första tillgängliga navigationsobjektet används som hem området.',
'reorder' => 'Dra och släpp de primära navigeringsobjekten i sidfältet att ordna dem.',
],
+ "icon" => [
+ 'name' => 'Ikon',
+ ],
+ "title" => [
+ 'name' => 'Titel',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Sidfot Copyright Organisationsnamn',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Sidofältets huvudfärg',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Sidofält Sekundärfärg',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Aktiv sidofält kantfärg',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/button.php
index 00eb9549c..33ed84ff3 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Reklamlara göz at',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/section.php
new file mode 100644
index 000000000..ff8357d72
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Tema ayarları'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/setting.php
index 040fc4043..7110b5604 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/tr/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'İlk erişilebilir gezinme öğesi ana alanı olarak kullanılır.',
'reorder' => 'Birincil gezinme öğelerini yeniden sıralamak için kenar çubuğu sürükleyip bırakın.',
],
+ "icon" => [
+ 'name' => 'ikon',
+ ],
+ "title" => [
+ 'name' => 'Başlık',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Altbilgi Telif Hakkı Kuruluş Adı',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Kenar Çubuğu Ana Rengi',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Kenar Çubuğu İkincil Rengi',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Etkin Kenar Çubuğu Kenarlık Rengi',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/uk/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/uk/button.php
index 00eb9549c..c2f51dc7b 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/uk/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/uk/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Перегляд оголошень',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/uk/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/uk/section.php
new file mode 100644
index 000000000..d026e283f
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/uk/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Налаштування теми'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/uk/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/uk/setting.php
index 75ccf64d3..f7468d482 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/uk/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/uk/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'Перший доступний елемент навігації використовується як область додому.',
'reorder' => 'Перетягніть основні елементи навігації в бічній панелі , щоб змінити їх порядок.',
],
+ "icon" => [
+ 'name' => 'Значок',
+ ],
+ "title" => [
+ 'name' => 'Назва',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Заголовок авторського права Назва організації',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Основний колір бічної панелі',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Колір бічної панелі вторинного кольору',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Активний колір бордюру',
+ ]
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/addon.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/addon.php
new file mode 100644
index 000000000..6d5beebfc
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/addon.php
@@ -0,0 +1,7 @@
+ 'ویزیوسافٹ ایڈمن',
+ 'name' => 'ویزیوسافٹ ایڈمن تھیم',
+ 'description' => 'اوپن کلاسیفائف کے لئے سرکاری منتظم تھیم۔',
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/button.php
new file mode 100644
index 000000000..7efc8c50a
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/button.php
@@ -0,0 +1,5 @@
+ 'اشتہارات دیکھیں',
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/control_panel.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/control_panel.php
new file mode 100644
index 000000000..a5ba4f03a
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/control_panel.php
@@ -0,0 +1,13 @@
+ 'مدد',
+ 'search' => 'تلاش کریں',
+ 'logout' => 'لاگ آوٹ',
+ 'view_site' => 'سائٹ دیکھیں',
+ 'title' => 'کنٹرول پینل',
+ 'search_placeholder' => 'تلاش کرنے کے لئے ٹائپ کریں',
+
+ // Users Module
+ 'search_by_gsm_number' => 'جی ایس ایم نمبر کے ذریعہ تلاش کریں',
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/help.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/help.php
new file mode 100644
index 000000000..97d1e2b9d
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/help.php
@@ -0,0 +1,14 @@
+ 'مددگار وسائل',
+ 'description' => 'مددگار تلاش کریں اور ان معاون وسائل سے خصوصیات تلاش کریں۔',
+ 'documentation_link' => 'اوپنکلاسافی دستاویزات',
+ 'documentation_description' => 'اوپن کلاسیفائف ، ایڈونس تیار کرنے اور ایڈونز کو بھی استعمال کرنے کیلئے دستاویزات ڈھونڈیں۔',
+ 'slack_link' => 'سلیک ٹیم',
+ 'slack_description' => 'دوسرے اوپن کلاسیفائی صارفین اور ڈویلپرز کے ساتھ بات چیت کریں۔',
+ 'forum_link' => 'ڈسکشن فورم',
+ 'forum_description' => 'جوابات تلاش کریں اور اوپن کلاسیفائف کے ساتھ تیار کرنے کے بارے میں سوالات پوسٹ کریں۔',
+ 'addons_link' => 'دستیاب اڈونز',
+ 'addons_description' => 'اوپن کلاسیفائف کے لئے دستیاب ایڈونس دریافت کریں۔',
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/preference.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/preference.php
new file mode 100644
index 000000000..c3a2b282e
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/preference.php
@@ -0,0 +1,30 @@
+ [
+ 'name' => 'سائڈبار ہوور',
+ 'instructions' => 'ہوور پر سائڈبار پھیلائیں؟',
+ ],
+ 'navigation' => [
+ 'name' => 'سمت شناسی',
+ 'instructions' => 'نیویگیشن کے اپنے ذاتی آرڈر کی وضاحت کریں۔',
+ 'warning' => 'پہلا قابل رسا نیویگیشن آئٹم آپ کے گھر ایریا کے بطور استعمال ہوتا ہے۔',
+ 'reorder' => 'پرائمری نیویگیشن آئٹمز کو دوبارہ ترتیب دینے کیلئے سائڈبار میں گھسیٹیں اور چھوڑیں۔',
+ ],
+ 'display' => [
+ 'name' => 'کثافت دکھائیں',
+ 'instructions' => 'کومپیکٹ ڈسپلے سکرین پر ایک ساتھ میں مزید مواد دکھائے جانے کی اجازت دیتا ہے۔',
+ 'option' => [
+ 'default' => 'پہلے سے طے شدہ',
+ 'compact' => 'کومپیکٹ',
+ ],
+ ],
+ 'sidebars' => [
+ 'name' => 'سائڈبار وضع',
+ 'instructions' => 'جامد سائڈبار ہمیشہ مرئی ہوں گے۔',
+ 'option' => [
+ 'default' => 'پہلے سے طے شدہ',
+ 'static' => 'جامد',
+ ],
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/section.php
new file mode 100644
index 000000000..e81b60d01
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'تھیم کی ترتیبات'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/setting.php
new file mode 100644
index 000000000..bd79eff5b
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/ur/setting.php
@@ -0,0 +1,32 @@
+ [
+ 'name' => 'سائڈبار ہوور',
+ 'instructions' => 'ہوور پر سائڈبار پھیلائیں؟',
+ ],
+ 'navigation' => [
+ 'name' => 'سمت شناسی',
+ 'instructions' => 'نیویگیشن کے پہلے سے طے شدہ آرڈر کی وضاحت کریں۔',
+ 'warning' => 'پہلا قابل رسائی نیویگیشن آئٹم ہوم ایریا کے بطور استعمال ہوتا ہے۔',
+ 'reorder' => 'پرائمری نیویگیشن آئٹمز کو دوبارہ ترتیب دینے کیلئے سائڈبار میں گھسیٹیں اور چھوڑیں۔',
+ ],
+ "icon" => [
+ 'name' => 'شبیہہ',
+ ],
+ "title" => [
+ 'name' => 'عنوان',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'فوٹر کاپی رائٹ آرگنائزیشن کا نام',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'سائڈبار مین رنگین',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'سائڈبار ثانوی رنگ',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'متحرک سائڈبار بارڈر رنگین',
+ ]
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/vi/button.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/vi/button.php
index 00eb9549c..0d680364d 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/vi/button.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/vi/button.php
@@ -1,5 +1,5 @@
'View Ads',
+ 'view_ads' => 'Xem quảng cáo',
];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/vi/section.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/vi/section.php
new file mode 100644
index 000000000..64237f12b
--- /dev/null
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/vi/section.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'Cài đặt chủ đề'
+ ],
+];
diff --git a/addons/default/visiosoft/defaultadmin-theme/resources/lang/vi/setting.php b/addons/default/visiosoft/defaultadmin-theme/resources/lang/vi/setting.php
index 6d5e6c82d..540aab96c 100644
--- a/addons/default/visiosoft/defaultadmin-theme/resources/lang/vi/setting.php
+++ b/addons/default/visiosoft/defaultadmin-theme/resources/lang/vi/setting.php
@@ -11,4 +11,22 @@ return [
'warning' => 'Mục điều hướng có thể truy cập đầu tiên được sử dụng làm khu vực nhà.',
'reorder' => 'Kéo và thả các mục điều hướng chính trong thanh bên để sắp xếp lại chúng.',
],
+ "icon" => [
+ 'name' => 'Biểu tượng',
+ ],
+ "title" => [
+ 'name' => 'Tiêu đề',
+ ],
+ "footer_copyright_org_name" => [
+ 'name' => 'Tên tổ chức bản quyền chân trang',
+ ],
+ "sidebar_main_color" => [
+ 'name' => 'Màu chính của thanh bên',
+ ],
+ "sidebar_secondary_color" => [
+ 'name' => 'Màu phụ của thanh bên',
+ ],
+ "active_sidebar_border_color" => [
+ 'name' => 'Màu đường viền thanh bên hoạt động',
+ ]
];
diff --git a/addons/default/visiosoft/json-field_type/resources/lang/ur/addon.php b/addons/default/visiosoft/json-field_type/resources/lang/ur/addon.php
new file mode 100644
index 000000000..c0c6643a7
--- /dev/null
+++ b/addons/default/visiosoft/json-field_type/resources/lang/ur/addon.php
@@ -0,0 +1,7 @@
+ 'Json',
+ 'name' => 'Json فیلڈ کی قسم',
+ 'description' => ''
+];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ar/section.php b/addons/default/visiosoft/location-module/resources/lang/ar/section.php
index cab4c3096..5e50b0926 100644
--- a/addons/default/visiosoft/location-module/resources/lang/ar/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/ar/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'جنرال لواء',
'map' => 'خريطة',
'setting' => 'ضبط',
+ 'filter' => 'منقي',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ar/setting.php b/addons/default/visiosoft/location-module/resources/lang/ar/setting.php
index 6d6638bfc..46c416cec 100644
--- a/addons/default/visiosoft/location-module/resources/lang/ar/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/ar/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'الافتراضي اللات',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'إخفاء عامل تصفية الموقع',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/az/section.php b/addons/default/visiosoft/location-module/resources/lang/az/section.php
index ab14ef164..5c964f86f 100644
--- a/addons/default/visiosoft/location-module/resources/lang/az/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/az/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Ümumi',
'map' => 'Xəritə',
'setting' => 'Quraşdırma',
+ 'filter' => 'Süzgəc',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/az/setting.php b/addons/default/visiosoft/location-module/resources/lang/az/setting.php
index 40f7177ac..908fdaeaa 100644
--- a/addons/default/visiosoft/location-module/resources/lang/az/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/az/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Defolt Lat',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Yer filtrini gizlət',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/bn/section.php b/addons/default/visiosoft/location-module/resources/lang/bn/section.php
index f5b642105..7fc0aa1f6 100644
--- a/addons/default/visiosoft/location-module/resources/lang/bn/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/bn/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'সাধারণ',
'map' => 'মানচিত্র',
'setting' => 'বিন্যাস',
+ 'filter' => 'ছাঁকনি',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/bn/setting.php b/addons/default/visiosoft/location-module/resources/lang/bn/setting.php
index 0985afe4b..80ed5bd8c 100644
--- a/addons/default/visiosoft/location-module/resources/lang/bn/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/bn/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'ডিফল্ট ল্যাট',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'অবস্থান ফিল্টার লুকান',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/de/section.php b/addons/default/visiosoft/location-module/resources/lang/de/section.php
index e0f599be9..9d81d74ad 100644
--- a/addons/default/visiosoft/location-module/resources/lang/de/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/de/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Allgemeines',
'map' => 'Karte',
'setting' => 'Rahmen',
+ 'filter' => 'Filter',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/de/setting.php b/addons/default/visiosoft/location-module/resources/lang/de/setting.php
index e9d656624..c07cc85d1 100644
--- a/addons/default/visiosoft/location-module/resources/lang/de/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/de/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Standard Lat',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Standortfilter ausblenden',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/el/section.php b/addons/default/visiosoft/location-module/resources/lang/el/section.php
index 71510e89a..4f6456700 100644
--- a/addons/default/visiosoft/location-module/resources/lang/el/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/el/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Γενικός',
'map' => 'Χάρτης',
'setting' => 'Σύνθεση',
+ 'filter' => 'Φίλτρο',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/el/setting.php b/addons/default/visiosoft/location-module/resources/lang/el/setting.php
index c41bad1f3..6982015cf 100644
--- a/addons/default/visiosoft/location-module/resources/lang/el/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/el/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Προεπιλεγμένο Lat',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Απόκρυψη φίλτρου τοποθεσίας',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/es/section.php b/addons/default/visiosoft/location-module/resources/lang/es/section.php
index 94ca07b41..c1aa2d17d 100644
--- a/addons/default/visiosoft/location-module/resources/lang/es/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/es/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'General',
'map' => 'Mapa',
'setting' => 'Ajuste',
+ 'filter' => 'Filtrar',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/es/setting.php b/addons/default/visiosoft/location-module/resources/lang/es/setting.php
index bd511d47f..cba0a41fd 100644
--- a/addons/default/visiosoft/location-module/resources/lang/es/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/es/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Lat predeterminado',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Ocultar filtro de ubicación',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/fa/section.php b/addons/default/visiosoft/location-module/resources/lang/fa/section.php
index 0226ab057..c8658e5b2 100644
--- a/addons/default/visiosoft/location-module/resources/lang/fa/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/fa/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'عمومی',
'map' => 'نقشه',
'setting' => 'تنظیمات',
+ 'filter' => 'فیلتر',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/fa/setting.php b/addons/default/visiosoft/location-module/resources/lang/fa/setting.php
index 38864798d..030faba0a 100644
--- a/addons/default/visiosoft/location-module/resources/lang/fa/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/fa/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'پیش فرض Lat',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'فیلتر مکان را مخفی کنید',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/fr/section.php b/addons/default/visiosoft/location-module/resources/lang/fr/section.php
index fb5bc836b..bb72782fa 100644
--- a/addons/default/visiosoft/location-module/resources/lang/fr/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/fr/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Général',
'map' => 'Carte',
'setting' => 'Réglage',
+ 'filter' => 'Filtre',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/fr/setting.php b/addons/default/visiosoft/location-module/resources/lang/fr/setting.php
index 24e602401..6f3097d01 100644
--- a/addons/default/visiosoft/location-module/resources/lang/fr/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/fr/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Lat par défaut',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Masquer le filtre de localisation',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/he/section.php b/addons/default/visiosoft/location-module/resources/lang/he/section.php
index 41f5618b0..2091fe635 100644
--- a/addons/default/visiosoft/location-module/resources/lang/he/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/he/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'כללי',
'map' => 'מפה',
'setting' => 'הגדרה',
+ 'filter' => 'לְסַנֵן',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/he/setting.php b/addons/default/visiosoft/location-module/resources/lang/he/setting.php
index 2e4047618..67bee08f4 100644
--- a/addons/default/visiosoft/location-module/resources/lang/he/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/he/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Lat ברירת מחדל',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'הסתר מסנן מיקום',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/hi/section.php b/addons/default/visiosoft/location-module/resources/lang/hi/section.php
index 569830d15..c419dbaa4 100644
--- a/addons/default/visiosoft/location-module/resources/lang/hi/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/hi/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'सामान्य',
'map' => 'नक्शा',
'setting' => 'स्थापना',
+ 'filter' => 'फ़िल्टर',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/hi/setting.php b/addons/default/visiosoft/location-module/resources/lang/hi/setting.php
index 8972f6240..9f34d73fd 100644
--- a/addons/default/visiosoft/location-module/resources/lang/hi/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/hi/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'डिफ़ॉल्ट लैट',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'स्थान फ़िल्टर छिपाएँ',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/it/section.php b/addons/default/visiosoft/location-module/resources/lang/it/section.php
index 446ba8b0b..17b075e73 100644
--- a/addons/default/visiosoft/location-module/resources/lang/it/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/it/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Generale',
'map' => 'Carta geografica',
'setting' => 'Ambientazione',
+ 'filter' => 'Filtro',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/it/setting.php b/addons/default/visiosoft/location-module/resources/lang/it/setting.php
index 7f9cf7d47..4f3932431 100644
--- a/addons/default/visiosoft/location-module/resources/lang/it/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/it/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Lat predefinito',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Nascondi filtro posizione',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ja/section.php b/addons/default/visiosoft/location-module/resources/lang/ja/section.php
index 214062412..84d13e624 100644
--- a/addons/default/visiosoft/location-module/resources/lang/ja/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/ja/section.php
@@ -19,4 +19,5 @@ return [
'general' => '一般的な',
'map' => '地図',
'setting' => '設定',
+ 'filter' => 'フィルタ',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ja/setting.php b/addons/default/visiosoft/location-module/resources/lang/ja/setting.php
index 9ead33f17..c5d1850af 100644
--- a/addons/default/visiosoft/location-module/resources/lang/ja/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/ja/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'デフォルトの緯度',
],
+
+ 'hide_location_filter' => [
+ 'name' => '場所フィルターを非表示',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ko/section.php b/addons/default/visiosoft/location-module/resources/lang/ko/section.php
index 73828e0e1..1896e31b7 100644
--- a/addons/default/visiosoft/location-module/resources/lang/ko/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/ko/section.php
@@ -19,4 +19,5 @@ return [
'general' => '일반',
'map' => '지도',
'setting' => '환경',
+ 'filter' => '필터',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ko/setting.php b/addons/default/visiosoft/location-module/resources/lang/ko/setting.php
index 117ded63f..384ece314 100644
--- a/addons/default/visiosoft/location-module/resources/lang/ko/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/ko/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => '기본 위도',
],
+
+ 'hide_location_filter' => [
+ 'name' => '위치 필터 숨기기',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/nl/section.php b/addons/default/visiosoft/location-module/resources/lang/nl/section.php
index 8e543d008..ca76002f5 100644
--- a/addons/default/visiosoft/location-module/resources/lang/nl/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/nl/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Algemeen',
'map' => 'Kaart',
'setting' => 'Omgeving',
+ 'filter' => 'Filter',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/nl/setting.php b/addons/default/visiosoft/location-module/resources/lang/nl/setting.php
index a6f370abc..e40132984 100644
--- a/addons/default/visiosoft/location-module/resources/lang/nl/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/nl/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Standaard Lat',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Verberg locatiefilter',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/pl/section.php b/addons/default/visiosoft/location-module/resources/lang/pl/section.php
index bbc4ddb90..4a7624e24 100644
--- a/addons/default/visiosoft/location-module/resources/lang/pl/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/pl/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Generał',
'map' => 'Mapa',
'setting' => 'Oprawa',
+ 'filter' => 'Filtr',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/pl/setting.php b/addons/default/visiosoft/location-module/resources/lang/pl/setting.php
index 6fbe6282f..aaadbc034 100644
--- a/addons/default/visiosoft/location-module/resources/lang/pl/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/pl/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Domyślnie Lat',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Ukryj filtr lokalizacji',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/pt/section.php b/addons/default/visiosoft/location-module/resources/lang/pt/section.php
index 91db0e17f..1d0d3b59e 100644
--- a/addons/default/visiosoft/location-module/resources/lang/pt/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/pt/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Geral',
'map' => 'Mapa',
'setting' => 'Configuração',
+ 'filter' => 'Filtro',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/pt/setting.php b/addons/default/visiosoft/location-module/resources/lang/pt/setting.php
index 58862c2fd..dedbb290e 100644
--- a/addons/default/visiosoft/location-module/resources/lang/pt/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/pt/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Lat padrão',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Ocultar filtro de localização',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ro/section.php b/addons/default/visiosoft/location-module/resources/lang/ro/section.php
index dc5658604..7a64028d4 100644
--- a/addons/default/visiosoft/location-module/resources/lang/ro/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/ro/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'General',
'map' => 'Hartă',
'setting' => 'reglaj',
+ 'filter' => 'Filtru',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ro/setting.php b/addons/default/visiosoft/location-module/resources/lang/ro/setting.php
index b1e9dbd0f..295ed9238 100644
--- a/addons/default/visiosoft/location-module/resources/lang/ro/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/ro/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Default Lat',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Ascundeți filtrul de locație',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ru/section.php b/addons/default/visiosoft/location-module/resources/lang/ru/section.php
index d06d95c31..9892c4eda 100644
--- a/addons/default/visiosoft/location-module/resources/lang/ru/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/ru/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Общая',
'map' => 'карта',
'setting' => 'настройка',
+ 'filter' => 'Фильтр',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ru/setting.php b/addons/default/visiosoft/location-module/resources/lang/ru/setting.php
index 9118f28f6..99c4ea4a9 100644
--- a/addons/default/visiosoft/location-module/resources/lang/ru/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/ru/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Lat по умолчанию',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Скрыть фильтр местоположения',
+ ],
];
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 8ac14b25e..98c7fe1d9 100644
--- a/addons/default/visiosoft/location-module/resources/lang/sq/field.php
+++ b/addons/default/visiosoft/location-module/resources/lang/sq/field.php
@@ -17,7 +17,7 @@ return [
'name' => 'Bashkia'
],
'order' => [
- 'name' => 'Sort Order'
+ 'name' => 'Renditja e renditjes'
],
'neighborhood' => [
'name' => 'Njësitë Administrative'
diff --git a/addons/default/visiosoft/location-module/resources/lang/sq/section.php b/addons/default/visiosoft/location-module/resources/lang/sq/section.php
index 977a65aa6..67cafcf53 100644
--- a/addons/default/visiosoft/location-module/resources/lang/sq/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/sq/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'I përgjithshëm',
'map' => 'Hartë',
'setting' => 'Cilësimet',
+ 'filter' => 'filtër',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/sq/setting.php b/addons/default/visiosoft/location-module/resources/lang/sq/setting.php
index 9802a30fa..9703b8d3e 100644
--- a/addons/default/visiosoft/location-module/resources/lang/sq/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/sq/setting.php
@@ -30,7 +30,7 @@ return [
],
'google_map_key' => [
- 'name' => 'Google Maps Api Key',
+ 'name' => 'Google Key Api Key',
],
'map_coordinates_long' => [
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Default Lat',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Fshih Filtrin e Vendndodhjes',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/sv/section.php b/addons/default/visiosoft/location-module/resources/lang/sv/section.php
index decb57be4..e09df29bf 100644
--- a/addons/default/visiosoft/location-module/resources/lang/sv/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/sv/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Allmän',
'map' => 'Karta',
'setting' => 'Miljö',
+ 'filter' => 'Filtrera',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/sv/setting.php b/addons/default/visiosoft/location-module/resources/lang/sv/setting.php
index 677465f92..2043691ab 100644
--- a/addons/default/visiosoft/location-module/resources/lang/sv/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/sv/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Standard Lat',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Dölj platsfilter',
+ ],
];
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 2430eaeda..fd2ed6f89 100644
--- a/addons/default/visiosoft/location-module/resources/lang/tr/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/tr/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Genel',
'map' => 'Harita',
'setting' => 'Ayarlar',
+ 'filter' => 'filtre',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/tr/setting.php b/addons/default/visiosoft/location-module/resources/lang/tr/setting.php
index a805d5bb8..efd8c1bc7 100644
--- a/addons/default/visiosoft/location-module/resources/lang/tr/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/tr/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Varsayılan Lat',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Konum Filtresini Gizle',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/uk/section.php b/addons/default/visiosoft/location-module/resources/lang/uk/section.php
index e0bd876db..e1ec80bf8 100644
--- a/addons/default/visiosoft/location-module/resources/lang/uk/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/uk/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Загальні',
'map' => 'Карта',
'setting' => 'Налаштування',
+ 'filter' => 'Фільтр',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/uk/setting.php b/addons/default/visiosoft/location-module/resources/lang/uk/setting.php
index 4b12e62b1..70f89f2f7 100644
--- a/addons/default/visiosoft/location-module/resources/lang/uk/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/uk/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Ширина за замовчуванням',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Сховати фільтр місцеположення',
+ ],
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ur/addon.php b/addons/default/visiosoft/location-module/resources/lang/ur/addon.php
new file mode 100644
index 000000000..54101661b
--- /dev/null
+++ b/addons/default/visiosoft/location-module/resources/lang/ur/addon.php
@@ -0,0 +1,7 @@
+ 'مقام',
+ 'name' => 'مقام ماڈیول',
+ 'description' => 'تفصیل',
+];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ur/button.php b/addons/default/visiosoft/location-module/resources/lang/ur/button.php
new file mode 100644
index 000000000..d2c9a1fa8
--- /dev/null
+++ b/addons/default/visiosoft/location-module/resources/lang/ur/button.php
@@ -0,0 +1,17 @@
+ 'نیا ملک',
+ 'new_city' => 'نیا شہر',
+ 'new_district' => 'نیا ضلع',
+ 'new_neighborhood' => 'نیا پڑوس',
+ 'new_village' => 'نیا گاؤں',
+ 'sub_cities' => 'سب شہر',
+ 'add_sub_cities' => 'سب سٹی شامل کریں',
+ 'add_sub_districts' => 'سب ڈسٹرکٹ شامل کریں',
+ 'add_sub_neighborhoods' => 'ذیلی پڑوس شامل کریں',
+ 'add_sub_village' => 'سب گاؤں شامل کریں',
+ 'sub_districts' => 'سب اضلاع',
+ 'sub_neighborhoods' => 'ذیلی پڑوس',
+ 'sub_village' => 'سب گاؤں',
+];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ur/field.php b/addons/default/visiosoft/location-module/resources/lang/ur/field.php
new file mode 100644
index 000000000..5f2c36ea7
--- /dev/null
+++ b/addons/default/visiosoft/location-module/resources/lang/ur/field.php
@@ -0,0 +1,38 @@
+ [
+ 'name' => 'عنوان'
+ ],
+ 'slug' => [
+ 'name' => 'سلگ'
+ ],
+ 'city' => [
+ 'name' => 'شہر'
+ ],
+ 'country' => [
+ 'name' => 'ملک'
+ ],
+ 'district' => [
+ 'name' => 'ضلع'
+ ],
+ 'order' => [
+ 'name' => 'ترتیب'
+ ],
+ 'neighborhood' => [
+ 'name' => 'ہمسایہ'
+ ],
+ 'village' => [
+ 'name' => 'گاؤں'
+ ],
+ 'description' => [
+ 'name' => 'تفصیل'
+ ],
+ 'pick_option' => [
+ 'name' => 'ایک اختیار منتخب کریں',
+ ],
+ 'address' => [
+ 'name' => 'پتہ',
+ ],
+ 'selected' => 'منتخب شدہ'
+];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ur/message.php b/addons/default/visiosoft/location-module/resources/lang/ur/message.php
new file mode 100644
index 000000000..3918e86a9
--- /dev/null
+++ b/addons/default/visiosoft/location-module/resources/lang/ur/message.php
@@ -0,0 +1,6 @@
+ 'تلاش کرنے کے لئے یہاں ٹائپ کریں',
+ 'null_msg' => 'نہیں ملا',
+];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ur/permission.php b/addons/default/visiosoft/location-module/resources/lang/ur/permission.php
new file mode 100644
index 000000000..fe25e78c2
--- /dev/null
+++ b/addons/default/visiosoft/location-module/resources/lang/ur/permission.php
@@ -0,0 +1,13 @@
+ [
+ 'name' => 'گاؤں',
+ 'option' => [
+ 'read' => 'گاؤں پڑھ سکتے ہو؟',
+ 'write' => 'گاؤں بنا / ترمیم کرسکتے ہیں؟',
+ 'delete' => 'گاؤں کو حذف کرسکتے ہیں؟',
+ ],
+ ],
+];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ur/section.php b/addons/default/visiosoft/location-module/resources/lang/ur/section.php
new file mode 100644
index 000000000..b0d61ba82
--- /dev/null
+++ b/addons/default/visiosoft/location-module/resources/lang/ur/section.php
@@ -0,0 +1,23 @@
+ [
+ 'title' => 'ممالک',
+ ],
+ 'cities' => [
+ 'title' => 'شہر',
+ ],
+ 'districts' => [
+ 'title' => 'اضلاع',
+ ],
+ 'neighborhoods' => [
+ 'title' => 'پڑوس',
+ ],
+ 'village' => [
+ 'title' => 'گاؤں',
+ ],
+ 'general' => 'جنرل',
+ 'map' => 'نقشہ',
+ 'setting' => 'سیٹنگ',
+ 'filter' => 'فلٹر کریں',
+];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ur/setting.php b/addons/default/visiosoft/location-module/resources/lang/ur/setting.php
new file mode 100644
index 000000000..2dcc964d9
--- /dev/null
+++ b/addons/default/visiosoft/location-module/resources/lang/ur/setting.php
@@ -0,0 +1,47 @@
+ [
+ 'name' => 'ہوم پیج لوکیشن فیلڈ',
+ ],
+ 'list_page_location' => [
+ 'name' => 'فہرست صفحہ مقام کا فیلڈ',
+ ],
+ 'detail_page_location' => [
+ 'name' => 'تفصیل سے صفحہ محل وقوع',
+ ],
+ 'show_search_location_btn' => [
+ 'name' => 'تلاش مقام کا بٹن دکھائیں',
+ ],
+ 'default_country' => [
+ 'name' => 'پہلے سے طے شدہ ملک',
+ ],
+ 'create_ad_page_location' => [
+ 'name' => 'اشتھاراتی صفحہ کی جگہ بنائیں',
+ ],
+ 'default_city' => [
+ 'name' => 'ڈیفالٹ سٹی',
+ ],
+ 'default_district' => [
+ 'name' => 'ڈیفالٹ ڈسٹرکٹ',
+ ],
+ 'default_neighborhood' => [
+ 'name' => 'پہلے سے طے شدہ پڑوس',
+ ],
+
+ 'google_map_key' => [
+ 'name' => 'گوگل نقشہ جات آپ کی کلید',
+ ],
+
+ 'map_coordinates_long' => [
+ 'name' => 'ڈیفالٹ لانگ',
+ ],
+
+ 'map_coordinates_lat' => [
+ 'name' => 'طے شدہ لیٹ',
+ ],
+
+ 'hide_location_filter' => [
+ 'name' => 'لوکیشن فلٹر چھپائیں',
+ ],
+];
diff --git a/addons/default/visiosoft/location-module/resources/lang/ur/stream.php b/addons/default/visiosoft/location-module/resources/lang/ur/stream.php
new file mode 100644
index 000000000..d78c86910
--- /dev/null
+++ b/addons/default/visiosoft/location-module/resources/lang/ur/stream.php
@@ -0,0 +1,7 @@
+ [
+ 'name' => 'گاؤں',
+ ],
+];
diff --git a/addons/default/visiosoft/location-module/resources/lang/vi/section.php b/addons/default/visiosoft/location-module/resources/lang/vi/section.php
index db3b37865..bc04890c5 100644
--- a/addons/default/visiosoft/location-module/resources/lang/vi/section.php
+++ b/addons/default/visiosoft/location-module/resources/lang/vi/section.php
@@ -19,4 +19,5 @@ return [
'general' => 'Chung',
'map' => 'Bản đồ',
'setting' => 'Cài đặt',
+ 'filter' => 'Bộ lọc',
];
diff --git a/addons/default/visiosoft/location-module/resources/lang/vi/setting.php b/addons/default/visiosoft/location-module/resources/lang/vi/setting.php
index eb11405eb..9f51b6d10 100644
--- a/addons/default/visiosoft/location-module/resources/lang/vi/setting.php
+++ b/addons/default/visiosoft/location-module/resources/lang/vi/setting.php
@@ -40,4 +40,8 @@ return [
'map_coordinates_lat' => [
'name' => 'Lat mặc định',
],
+
+ 'hide_location_filter' => [
+ 'name' => 'Ẩn Bộ lọc Vị trí',
+ ],
];
diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ur/addon.php b/addons/default/visiosoft/media-field_type/resources/lang/ur/addon.php
new file mode 100644
index 000000000..a0b5e2a5c
--- /dev/null
+++ b/addons/default/visiosoft/media-field_type/resources/lang/ur/addon.php
@@ -0,0 +1,7 @@
+ 'میڈیا فیلڈ کی قسم',
+ 'name' => 'فائلیں فیلڈ کی قسم',
+ 'description' => 'ایک سے زیادہ فائلیں اپ لوڈ فیلڈ کی قسم۔',
+];
diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ur/button.php b/addons/default/visiosoft/media-field_type/resources/lang/ur/button.php
new file mode 100644
index 000000000..8cef44d50
--- /dev/null
+++ b/addons/default/visiosoft/media-field_type/resources/lang/ur/button.php
@@ -0,0 +1,5 @@
+ 'مرکزی',
+];
diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ur/config.php b/addons/default/visiosoft/media-field_type/resources/lang/ur/config.php
new file mode 100644
index 000000000..18e95922e
--- /dev/null
+++ b/addons/default/visiosoft/media-field_type/resources/lang/ur/config.php
@@ -0,0 +1,26 @@
+ [
+ 'name' => 'فولڈرز',
+ 'instructions' => 'بتائیں کہ اس فیلڈ کے لئے کون سے فولڈر دستیاب ہیں۔ تمام فولڈرز کو ظاہر کرنے کے لئے خالی چھوڑیں۔',
+ 'warning' => 'موجودہ فولڈروں میں فولڈر کی موجودہ اجازتوں کو فوقیت دیتی ہے۔',
+ ],
+ 'min' => [
+ 'label' => 'کم سے کم انتخاب',
+ 'instructions' => 'اجازت شدہ انتخاب کی کم از کم تعداد درج کریں۔',
+ ],
+ 'max' => [
+ 'label' => 'زیادہ سے زیادہ انتخاب',
+ 'instructions' => 'اجازت شدہ انتخاب کی زیادہ سے زیادہ تعداد درج کریں۔',
+ ],
+ 'mode' => [
+ 'name' => 'ان پٹ وضع',
+ 'instructions' => 'صارفین کو فائل ان پٹ کس طرح فراہم کرنا چاہئے؟',
+ 'option' => [
+ 'default' => 'فائلیں اپ لوڈ اور / یا منتخب کریں۔',
+ 'select' => 'صرف فائلیں منتخب کریں۔',
+ 'upload' => 'صرف فائلیں اپ لوڈ کریں۔',
+ ],
+ ],
+];
diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ur/input.php b/addons/default/visiosoft/media-field_type/resources/lang/ur/input.php
new file mode 100644
index 000000000..a021c8aed
--- /dev/null
+++ b/addons/default/visiosoft/media-field_type/resources/lang/ur/input.php
@@ -0,0 +1,6 @@
+ 'فائلوں کو اپ لوڈ کرنے کے لئے یہاں دبائیں یا چھوڑیں۔',
+ 'help' => 'منسلک فائلوں کو دوبارہ ترتیب دینے کیلئے کلک اور ڈریگ کریں۔',
+];
diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ur/message.php b/addons/default/visiosoft/media-field_type/resources/lang/ur/message.php
new file mode 100644
index 000000000..b1bcc2806
--- /dev/null
+++ b/addons/default/visiosoft/media-field_type/resources/lang/ur/message.php
@@ -0,0 +1,12 @@
+ 'آپ کس فولڈر میں اپ لوڈ کرنا چاہیں گے؟',
+ 'upload' => 'İmages شامل کریں اپ لوڈ İmages | تصویر منسلک کریں',
+ 'choose_files' => 'آپ کون سی فائلیں استعمال کرنا چاہیں گے؟',
+ 'no_files_selected' => 'کوئی فائلیں منتخب نہیں کی گئیں۔',
+ 'no_uploads' => 'کوئی فائلیں اپ لوڈ نہیں کی گئیں۔',
+ 'overwrite' => 'پہلے ہی اپ لوڈ ہوچکا ہے۔ کیا آپ اسے ادلیکھت کرنا چاہیں گے؟',
+ 'uploading' => 'اپ لوڈ ہو رہا ہے',
+ 'loading' => 'لوڈ ہو رہا ہے',
+];
diff --git a/addons/default/visiosoft/media-field_type/resources/lang/ur/setting.php b/addons/default/visiosoft/media-field_type/resources/lang/ur/setting.php
new file mode 100644
index 000000000..16108a2ed
--- /dev/null
+++ b/addons/default/visiosoft/media-field_type/resources/lang/ur/setting.php
@@ -0,0 +1,16 @@
+ [
+ 'name' => 'تصویری کینوس کی چوڑائی'
+ ],
+ 'imageCanvasH' => [
+ 'name' => 'تصویری کینوس کی اونچائی'
+ ],
+ 'imageResizeW' => [
+ 'name' => 'شبیہہ کا سائز تبدیل کریں چوڑائی'
+ ],
+ 'imageResizeH' => [
+ 'name' => 'امیج کا سائز تبدیل کریں اونچائی'
+ ],
+];
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
new file mode 100644
index 000000000..10b4a0b7d
--- /dev/null
+++ b/addons/default/visiosoft/media-field_type/resources/lang/ur/validation.php
@@ -0,0 +1,5 @@
+ 'کے لئے تشکیل شدہ اپ لوڈ ڈسک: وصف موجود نہیں ہے۔',
+];
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 d145d470b..3572af540 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ar/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ar/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'تعديل',
'go_profile' => 'الذهاب إلى تفاصيل الملف الشخصي',
'go_user' => 'انتقل إلى تفاصيل المستخدم',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'شخصي',
+ 'corporate' => 'الشركات',
+ 'export' => 'تصدير',
];
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 9075384d9..06260197a 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ar/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ar/field.php
@@ -427,19 +427,19 @@ return [
'my_address' => 'عنواني',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'اسم الشركة'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'مكتب الضرائب'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'الرقم الضريبي'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'ملفي',
+ 'edit_profile' => 'تعديل الملف الشخصي',
+ 'edit_details' => 'عدل التفاصيل',
+ 'update' => 'تحديث',
+ 'change_password' => 'غير كلمة السر',
];
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 7454b47d5..6a32416c9 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ar/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ar/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'هل تريد إغلاق حسابك؟ هذه العملية لا يمكن التراجع عنها.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'تم تحديث البريد الإلكتروني!',
+ 'update_email_mail_message' => 'تم تحديث بريدك الإلكتروني!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/ar/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ar/setting.php
index 7548727ae..8bf445316 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ar/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ar/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ '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 b9068d68e..c95bbdb80 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/az/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/az/button.php
@@ -12,6 +12,7 @@ return [
'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' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'Şəxsi',
+ 'corporate' => 'Korporativ',
+ 'export' => 'İxrac',
];
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 842c4acf1..bbe9d9d37 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/az/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/az/field.php
@@ -428,19 +428,19 @@ return [
'my_address' => 'Ünvanım',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Şirkət Adı'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Vergi ofisi'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Vergi nömrəsi'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Mənim Hesabım',
+ 'edit_profile' => 'Profilə düzəliş et',
+ 'edit_details' => 'Ətraflı məlumatları redaktə edin',
+ 'update' => 'Yeniləyin',
+ 'change_password' => 'Parolu dəyişdirin',
];
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 48d85041f..2228931ed 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/az/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/az/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'Hesabınızı bağlamaq istəyirsiniz? Bu əməliyyatı geri qaytarmaq olmaz.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'E-poçt Yenilənib!',
+ 'update_email_mail_message' => 'E-poçtunuz Yeniləndi!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/az/setting.php b/addons/default/visiosoft/profile-module/resources/lang/az/setting.php
index c6a0a0776..bc7124e7e 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/az/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/az/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Vergi Dairəsi Sahəsini göstərin',
],
];
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 fcf52311a..aa4f6e333 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/bn/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/bn/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'সম্পাদন করা',
'go_profile' => 'প্রোফাইল বিশদে যান',
'go_user' => 'ব্যবহারকারীর বিবরণে যান',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'ব্যক্তিগত',
+ 'corporate' => 'কর্পোরেট',
+ 'export' => 'রফতানি',
];
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 10bd74fc0..330265a88 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/bn/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/bn/field.php
@@ -428,19 +428,19 @@ return [
'my_address' => 'আমার ঠিকানা',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'কোমপানির নাম'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'কর অফিস'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'কর নম্বর'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'আমার প্রোফাইল',
+ 'edit_profile' => 'জীবন বৃত্তান্ত সম্পাদনা',
+ 'edit_details' => 'তথ্য সংশোধন কর',
+ 'update' => 'হালনাগাদ',
+ 'change_password' => 'পাসওয়ার্ড পরিবর্তন করুন',
];
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 ce6831b1d..eccc91049 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/bn/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/bn/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'আপনি কি আপনার অ্যাকাউন্ট বন্ধ করতে চান? এই অপারেশনটি পূর্বাবস্থায় ফেরা যায় না।',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'ইমেল আপডেট!',
+ 'update_email_mail_message' => 'আপনার ইমেল আপডেট হয়েছে!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/bn/setting.php b/addons/default/visiosoft/profile-module/resources/lang/bn/setting.php
index 16c16f87c..87a4380fa 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/bn/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/bn/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ '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 4137e105e..ee5436515 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/de/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/de/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'Bearbeiten',
'go_profile' => 'Gehen Sie zu Profildetail',
'go_user' => 'Gehen Sie zu Benutzerdetails',
- 'personal' => 'Personal',
+ 'personal' => 'persönlich',
'corporate' => 'Corporate',
+ 'export' => 'Export',
];
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 917acdd59..a5ebc6e2c 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/de/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/de/field.php
@@ -433,19 +433,19 @@ return [
'my_address' => 'Meine Adresse',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Name der Firma'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Finanzamt'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Steuernummer'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Mein Profil',
+ 'edit_profile' => 'Profil bearbeiten',
+ 'edit_details' => 'Details bearbeiten',
+ 'update' => 'Aktualisieren',
+ 'change_password' => 'Ändere das Passwort',
];
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 837f3f2e6..2ab48b44b 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/de/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/de/message.php
@@ -36,6 +36,6 @@ return [
'disable_account' => 'Möchten Sie Ihr Konto schließen? Dieser Vorgang kann nicht rückgängig gemacht werden.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'E-Mail aktualisiert!',
+ 'update_email_mail_message' => 'Ihre E-Mail wurde aktualisiert!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/de/setting.php b/addons/default/visiosoft/profile-module/resources/lang/de/setting.php
index c04e15aa7..4aa76e73f 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/de/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/de/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Feld des Finanzamtes anzeigen',
],
];
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 f14cc9e21..1ca2c3e0b 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/el/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/el/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'Επεξεργασία',
'go_profile' => 'Μεταβείτε στη Λεπτομέρεια προφίλ',
'go_user' => 'Μεταβείτε στη Λεπτομέρεια χρήστη',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'Προσωπικός',
+ 'corporate' => 'Εταιρικός',
+ 'export' => 'Εξαγωγή',
];
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 d3021103e..2212a1263 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/el/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/el/field.php
@@ -430,19 +430,19 @@ return [
'my_address' => 'Η διεύθυνσή μου',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Όνομα εταιρείας'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Εφορία'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'ΑΦΜ'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Το ΠΡΟΦΙΛ μου',
+ 'edit_profile' => 'Επεξεργασία προφίλ',
+ 'edit_details' => 'Επεξεργασία λεπτομερειών',
+ 'update' => 'Εκσυγχρονίζω',
+ 'change_password' => 'Άλλαξε κωδικό',
];
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 a7669ee4e..56af6606b 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/el/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/el/message.php
@@ -36,6 +36,6 @@ return [
'disable_account' => 'Θέλετε να κλείσετε τον λογαριασμό σας; Δεν είναι δυνατή η αναίρεση αυτής της λειτουργίας.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'Ενημερώθηκε το email!',
+ 'update_email_mail_message' => 'Το email σας ενημερώθηκε!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/el/setting.php b/addons/default/visiosoft/profile-module/resources/lang/el/setting.php
index acc3dab74..ac7e67c33 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/el/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/el/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ '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 94d19e066..e088a0475 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/es/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/es/button.php
@@ -13,5 +13,6 @@ return [
'go_profile' => 'Ir al detalle del perfil',
'go_user' => 'Ir al detalle del usuario',
'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'corporate' => 'Corporativo',
+ 'export' => 'Exportar',
];
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 49120bdcf..59afc16df 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/es/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/es/field.php
@@ -430,19 +430,19 @@ return [
'my_address' => 'Mi dirección',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'nombre de empresa'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Oficina de impuestos'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Número de impuesto'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Mi perfil',
+ 'edit_profile' => 'Editar perfil',
+ 'edit_details' => 'Editar detalles',
+ 'update' => 'Actualizar',
+ 'change_password' => 'Cambia la contraseña',
];
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 16bf926d4..7ee667ddf 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/es/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/es/message.php
@@ -36,6 +36,6 @@ return [
'disable_account' => '¿Quieres cerrar tu cuenta? Esta operación no se puede deshacer.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => '¡Correo electrónico actualizado!',
+ 'update_email_mail_message' => '¡Su correo electrónico ha sido actualizado!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/es/setting.php b/addons/default/visiosoft/profile-module/resources/lang/es/setting.php
index 2d8298ff9..0c8f38a8f 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/es/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/es/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Mostrar campo de la oficina de impuestos',
],
];
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 c205bebe0..224dc4f24 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/fa/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/fa/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'ویرایش کنید',
'go_profile' => 'به جزئیات مشخصات بروید',
'go_user' => 'به جزئیات کاربر بروید',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'شخصی',
+ 'corporate' => 'شرکت های بزرگ، دارای شخصیت حقوقی',
+ 'export' => 'صادرات',
];
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 4efb9cb15..ebb7805f3 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/fa/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/fa/field.php
@@ -427,19 +427,19 @@ return [
'my_address' => 'نشانی من',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'نام شرکت'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'اداره مالیات'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'شماره مالیاتی'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'پروفایل من',
+ 'edit_profile' => 'ویرایش نمایه',
+ 'edit_details' => 'جزئیات ویرایش',
+ 'update' => 'به روز رسانی',
+ 'change_password' => 'تغییر رمز عبور',
];
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 74a876f38..f0c90c6a3 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/fa/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/fa/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'آیا می خواهید حساب خود را ببندید؟ این عملیات قابل بازگشت نیست.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'ایمیل به روز شد!',
+ 'update_email_mail_message' => 'ایمیل شما به روز شده است!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/fa/setting.php b/addons/default/visiosoft/profile-module/resources/lang/fa/setting.php
index 345d4eada..ffa49975f 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/fa/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/fa/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ '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 3a50374ec..2fc879935 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/fr/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/fr/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'Éditer',
'go_profile' => 'Aller aux détails du profil',
'go_user' => 'Aller aux détails de l\'utilisateur',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'Personnel',
+ 'corporate' => 'Entreprise',
+ 'export' => 'Exportation',
];
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 487e65e90..db342a737 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/fr/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/fr/field.php
@@ -430,19 +430,19 @@ return [
'my_address' => 'Mon adresse',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Nom de la compagnie'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Bureau des impôts'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Numéro d\'identification fiscale'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Mon profil',
+ 'edit_profile' => 'Editer le profil',
+ 'edit_details' => 'Modifier les détails',
+ 'update' => 'Mettre à jour',
+ 'change_password' => 'Changer le mot de passe',
];
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 de11ed358..6c114ed4b 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/fr/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/fr/message.php
@@ -36,6 +36,6 @@ return [
'disable_account' => 'Voulez-vous fermer votre compte? Cette opération ne peut pas être annulée.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'Email mis à jour!',
+ 'update_email_mail_message' => 'Votre e-mail a été mis à jour!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/fr/setting.php b/addons/default/visiosoft/profile-module/resources/lang/fr/setting.php
index 7c3a7d993..c71073fce 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/fr/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/fr/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Afficher le champ du bureau des impôts',
],
];
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 94aa73c3c..757cc1cd0 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/he/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/he/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'ערוך',
'go_profile' => 'עבור לפרטי הפרופיל',
'go_user' => 'עבור לפרטי המשתמש',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'אישי',
+ 'corporate' => 'תאגידי',
+ 'export' => 'יְצוּא',
];
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 f412e8f2e..11f643910 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/he/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/he/field.php
@@ -428,19 +428,19 @@ return [
'my_address' => 'הכתובת שלי',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'שם החברה'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'משרד המס'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'מספר מס'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'הפרופיל שלי',
+ 'edit_profile' => 'ערוך פרופיל',
+ 'edit_details' => 'לערוך פרטים',
+ 'update' => 'עדכון',
+ 'change_password' => 'שנה סיסמא',
];
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 9d4886054..f619d2074 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/he/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/he/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'האם אתה רוצה לסגור את חשבונך? לא ניתן לבטל פעולה זו.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'אימייל עודכן!',
+ 'update_email_mail_message' => 'הדוא"ל שלך עודכן!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/he/setting.php b/addons/default/visiosoft/profile-module/resources/lang/he/setting.php
index eef27ea85..1d6bee685 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/he/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/he/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ '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 bfed02edc..bc6f1e8f7 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/hi/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/hi/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'संपादित करें',
'go_profile' => 'प्रोफाइल डिटेल पर जाएं',
'go_user' => 'यूजर डिटेल पर जाएं',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'निजी',
+ 'corporate' => 'कॉर्पोरेट',
+ 'export' => 'निर्यात',
];
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 b45d1a497..952b5e8a3 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/hi/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/hi/field.php
@@ -428,19 +428,19 @@ return [
'my_address' => 'मेरा पता',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'कंपनी का नाम'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'कर कार्यालय'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'कर संख्या'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'मेरी प्रोफाइल',
+ 'edit_profile' => 'प्रोफ़ाइल संपादित करें',
+ 'edit_details' => 'विवरण संपादित करें',
+ 'update' => 'अपडेट करें',
+ 'change_password' => 'पासवर्ड बदलें',
];
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 30e391b93..1c8a9086f 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/hi/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/hi/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'क्या आप अपना खाता बंद करना चाहते हैं? यह ऑपरेशन पूर्ववत नहीं किया जा सकता है।',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'ईमेल अपडेट किया गया!',
+ 'update_email_mail_message' => 'आपका ईमेल अपडेट किया गया है!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/hi/setting.php b/addons/default/visiosoft/profile-module/resources/lang/hi/setting.php
index 3f3dbcc2b..7639d8ba6 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/hi/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/hi/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ '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 d798b0504..12ffba620 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/it/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/it/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'modificare',
'go_profile' => 'Vai a Dettagli profilo',
'go_user' => 'Vai a Dettagli utente',
- 'personal' => 'Personal',
+ 'personal' => 'Personale',
'corporate' => 'Corporate',
+ 'export' => 'Esportare',
];
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 c66d91c39..21c9d7e35 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/it/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/it/field.php
@@ -430,19 +430,19 @@ return [
'my_address' => 'Il mio indirizzo',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Nome della ditta'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Ufficio delle imposte'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Codice fiscale'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Il mio profilo',
+ 'edit_profile' => 'Modifica Profilo',
+ 'edit_details' => 'Modifica i dettagli',
+ 'update' => 'Aggiornare',
+ 'change_password' => 'Cambia la password',
];
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 13fb94c8f..9f94f247e 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/it/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/it/message.php
@@ -36,6 +36,6 @@ return [
'disable_account' => 'Vuoi chiudere il tuo account? Questa operazione non può essere annullata.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'Email aggiornata!',
+ 'update_email_mail_message' => 'La tua email è stata aggiornata!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/it/setting.php b/addons/default/visiosoft/profile-module/resources/lang/it/setting.php
index 0b271fcf0..4ef88a077 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/it/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/it/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Mostra campo Ufficio delle imposte',
],
];
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 674fe76b4..1a67809a7 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ja/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ja/button.php
@@ -12,6 +12,7 @@ return [
'edit' => '編集する',
'go_profile' => 'プロファイルの詳細に移動',
'go_user' => 'ユーザーの詳細に移動',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => '個人的な',
+ 'corporate' => 'コーポレート',
+ 'export' => '書き出す',
];
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 ee4b88fcf..ac91892ea 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ja/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ja/field.php
@@ -428,19 +428,19 @@ return [
'my_address' => '私のアドレス',
'company' => [
- 'name' => 'Company Name'
+ 'name' => '会社名'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => '税務署'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => '税番号'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => '私のプロフィール',
+ 'edit_profile' => 'プロファイル編集',
+ 'edit_details' => '詳細を編集する',
+ 'update' => '更新',
+ 'change_password' => 'パスワードを変更する',
];
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 272ab69d8..914a5e122 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ja/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ja/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'アカウントを閉鎖しますか?この操作は元に戻せません。',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'メールを更新しました!',
+ 'update_email_mail_message' => 'メールが更新されました!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/ja/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ja/setting.php
index b9ab74ffc..a96d18ecd 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ja/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ja/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ '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 242efaf1e..c6eac39c8 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ko/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ko/button.php
@@ -12,6 +12,7 @@ return [
'edit' => '편집하다',
'go_profile' => '프로필 정보로 이동',
'go_user' => '사용자 정보로 이동',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => '개인적인',
+ 'corporate' => '기업',
+ 'export' => '수출',
];
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 ed0162023..773c78dce 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ko/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ko/field.php
@@ -428,19 +428,19 @@ return [
'my_address' => '내 주소',
'company' => [
- 'name' => 'Company Name'
+ 'name' => '회사 이름'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => '세무서'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => '세금 번호'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => '내 프로필',
+ 'edit_profile' => '프로필 편집',
+ 'edit_details' => '세부 정보 편집',
+ 'update' => '최신 정보',
+ 'change_password' => '비밀번호 변경',
];
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 b622f598e..118e4327d 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ko/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ko/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => '계정을 폐쇄 하시겠습니까? 이 작업은 취소 할 수 없습니다.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => '이메일이 업데이트되었습니다!',
+ 'update_email_mail_message' => '귀하의 이메일이 업데이트되었습니다!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/ko/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ko/setting.php
index 17f6a0c13..e35bafbab 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ko/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ko/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => '세무서 필드 표시',
],
];
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 c42fb01fc..ef45ba19e 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/nl/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/nl/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'Bewerk',
'go_profile' => 'Ga naar Profieldetail',
'go_user' => 'Ga naar Gebruikersdetails',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'Persoonlijk',
+ 'corporate' => 'Zakelijk',
+ 'export' => 'Exporteren',
];
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 94d9498de..10d14ac4b 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/nl/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/nl/field.php
@@ -430,19 +430,19 @@ return [
'my_address' => 'Mijn adres',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Bedrijfsnaam'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Belastingkantoor'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Btw nummer'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Mijn profiel',
+ 'edit_profile' => 'Bewerk profiel',
+ 'edit_details' => 'Details bewerken',
+ 'update' => 'Bijwerken',
+ 'change_password' => 'Wachtwoord wijzigen',
];
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 2d5b9f69a..906ed3b30 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/nl/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/nl/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'Wil je je account sluiten? Deze bewerking kan niet ongedaan worden gemaakt.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'E-mail bijgewerkt!',
+ 'update_email_mail_message' => 'Uw e-mail is bijgewerkt!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/nl/setting.php b/addons/default/visiosoft/profile-module/resources/lang/nl/setting.php
index fbee6602a..494ec759c 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/nl/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/nl/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Toon belastingkantoor veld',
],
];
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 505400c7e..72797b1c5 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/pl/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/pl/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'Edytować',
'go_profile' => 'Przejdź do szczegółów profilu',
'go_user' => 'Przejdź do szczegółów użytkownika',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'Osobisty',
+ 'corporate' => 'Zbiorowy',
+ 'export' => 'Eksport',
];
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 809f46442..29b51337c 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/pl/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/pl/field.php
@@ -428,19 +428,19 @@ return [
'my_address' => 'Mój adres',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Nazwa firmy'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Urząd podatkowy'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Numer identyfikacji podatkowej'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Mój profil',
+ 'edit_profile' => 'Edytuj profil',
+ 'edit_details' => 'Edytuj szczegóły',
+ 'update' => 'Aktualizacja',
+ 'change_password' => 'Zmień hasło',
];
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 edb46f8c3..ee42e0a49 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/pl/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/pl/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'Czy chcesz zamknąć swoje konto? Tej operacji nie można cofnąć.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'Email zaktualizowany!',
+ 'update_email_mail_message' => 'Twój e-mail został zaktualizowany!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/pl/setting.php b/addons/default/visiosoft/profile-module/resources/lang/pl/setting.php
index 7226df2eb..ddaca1d8c 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/pl/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/pl/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Pokaż pole Urzędu Skarbowego',
],
];
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 e1ce7d66e..6875db1e0 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/pt/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/pt/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'Editar',
'go_profile' => 'Ir para o detalhe do perfil',
'go_user' => 'Ir para Detalhes do Usuário',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'Pessoal',
+ 'corporate' => 'Corporativo',
+ 'export' => 'Exportar',
];
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 04461e299..670041b11 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/pt/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/pt/field.php
@@ -430,19 +430,19 @@ return [
'my_address' => 'Meu endereço',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Nome da empresa'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Repartição de Finanças'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Número de identificação fiscal'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Meu perfil',
+ 'edit_profile' => 'Editar Perfil',
+ 'edit_details' => 'Editar Detalhes',
+ 'update' => 'Atualizar',
+ 'change_password' => 'Mudar senha',
];
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 ff7b03d88..3d2f57b67 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/pt/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/pt/message.php
@@ -38,6 +38,6 @@ return [
'disable_account' => 'Deseja fechar sua conta? Esta operação não pode ser desfeita.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'Email atualizado!',
+ 'update_email_mail_message' => 'Seu e-mail foi atualizado!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/pt/setting.php b/addons/default/visiosoft/profile-module/resources/lang/pt/setting.php
index 6290c41a3..51b2d7f31 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/pt/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/pt/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Mostrar campo fiscal',
],
];
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 38a93fa95..eb429f7bc 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ro/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ro/button.php
@@ -13,5 +13,6 @@ return [
'go_profile' => 'Accesați Detaliile profilului',
'go_user' => 'Accesați Detaliile utilizatorului',
'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'corporate' => 'corporativ',
+ 'export' => 'Export',
];
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 dae21423f..e37ca927d 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ro/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ro/field.php
@@ -428,19 +428,19 @@ return [
'my_address' => 'Adresa mea',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Numele Companiei'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Oficiu fiscal'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Cod fiscal'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Profilul meu',
+ 'edit_profile' => 'Editează profilul',
+ 'edit_details' => 'Editează detaliile',
+ 'update' => 'Actualizați',
+ 'change_password' => 'Schimbați parola',
];
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 3661705d2..83347bf85 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ro/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ro/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'Doriți să vă închideți contul? Această operație nu poate fi anulată.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'E-mail actualizat!',
+ 'update_email_mail_message' => 'E-mailul dvs. a fost actualizat!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/ro/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ro/setting.php
index cffab1e34..54bc1312e 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ro/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ro/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Arată câmpul Oficiului Fiscal',
],
];
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 5dc104814..8f0e1a92e 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ru/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ru/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'редактировать',
'go_profile' => 'Перейти к профилю',
'go_user' => 'Перейти к информации о пользователе',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'личный',
+ 'corporate' => 'Корпоративный',
+ 'export' => 'Экспорт',
];
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 6144b8b4f..14810a8c9 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ru/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ru/field.php
@@ -429,19 +429,19 @@ return [
'my_address' => 'Мой адрес',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'название компании'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Налоговая служба'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Налоговый номер'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Мой профайл',
+ 'edit_profile' => 'Редактировать профиль',
+ 'edit_details' => 'Редактировать детали',
+ 'update' => 'Обновить',
+ 'change_password' => 'Сменить пароль',
];
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 743ebc23a..3ce635297 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ru/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ru/message.php
@@ -38,6 +38,6 @@ return [
'disable_account' => 'Вы хотите закрыть свой аккаунт? Эта операция не может быть отменена.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'Электронная почта обновлена!',
+ 'update_email_mail_message' => 'Ваш адрес электронной почты обновлен!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/ru/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ru/setting.php
index c60a79676..dd21e46c8 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/ru/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/ru/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ '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 698f5c7df..652ca64fd 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/sq/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/sq/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'Redakto',
'go_profile' => 'Shkoni në Detajin e Profilit',
'go_user' => 'Shkoni te Detajet e përdoruesit',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'personal',
+ 'corporate' => 'i korporatës',
+ 'export' => 'Eksporto',
];
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 2a7f53b39..f0c632930 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/sq/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/sq/field.php
@@ -428,19 +428,19 @@ return [
'my_address' => 'Adresa ime',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Emri i Kompanise'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Zyra e Taksave'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Numri i takses'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
+ 'my_profile' => 'Profili im',
+ 'edit_profile' => 'Ndrysho Profilin',
+ 'edit_details' => 'Ndryshoni Detajet',
'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'change_password' => 'Ndrysho fjalekalimin',
];
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 39ee1ba52..16dc3cee2 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/sq/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/sq/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'Dëshiron të mbyllësh llogarinë tënde? Ky operacion nuk mund të zhbëhet.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'Email Azhurnohet!',
+ 'update_email_mail_message' => 'Emaili juaj është azhurnuar!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/sq/setting.php b/addons/default/visiosoft/profile-module/resources/lang/sq/setting.php
index 9984d569e..3ed6cd6e5 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/sq/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/sq/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Trego Fushën e Zyrës së Taksave',
],
];
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 90978fe7e..3d76a7eb6 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/sv/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/sv/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'Redigera',
'go_profile' => 'Gå till profildetalj',
'go_user' => 'Gå till användarinformation',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'Personlig',
+ 'corporate' => 'Företags',
+ 'export' => 'Exportera',
];
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 7e09680b4..28bfa9638 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/sv/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/sv/field.php
@@ -428,19 +428,19 @@ return [
'my_address' => 'Min adress',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Företagsnamn'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Skattekontor'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Skattenummer'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Min profil',
+ 'edit_profile' => 'Redigera profil',
+ 'edit_details' => 'Redigera detaljer',
+ 'update' => 'Uppdatering',
+ 'change_password' => 'Ändra lösenord',
];
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 fc637ecf7..c20f75d1a 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/sv/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/sv/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'Vill du stänga ditt konto? Denna åtgärd kan inte ångras.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'E-post uppdaterad!',
+ 'update_email_mail_message' => 'Din e-postadress har uppdaterats!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/sv/setting.php b/addons/default/visiosoft/profile-module/resources/lang/sv/setting.php
index f1b95b12b..a874e9ab5 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/sv/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/sv/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Visa fält för skattekontor',
],
];
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 188a7ac75..40f7c7034 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/tr/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/tr/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'Düzenle',
'go_profile' => 'Profil Detayları',
'go_user' => 'Kullanıcı Detayları',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'Kişisel',
+ 'corporate' => 'Kurumsal',
+ 'export' => 'İhracat',
];
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 ad2a056f9..fd2610675 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/tr/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/tr/field.php
@@ -427,19 +427,19 @@ return [
'my_address' => 'Benim adresim',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Şirket Adı'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Vergi Dairesi'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Vergi numarası'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Benim profilim',
+ 'edit_profile' => 'Profili Düzenle',
+ 'edit_details' => 'Detayları düzenle',
+ 'update' => 'Güncelleme',
+ 'change_password' => 'Şifre değiştir',
];
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 e766a1280..68aed29b7 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/tr/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/tr/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'Hesabınızı kapatmak istiyor musunuz? Bu işlem geri alınamaz.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'E-posta Güncellendi!',
+ 'update_email_mail_message' => 'E-postanız Güncellendi!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/tr/setting.php b/addons/default/visiosoft/profile-module/resources/lang/tr/setting.php
index 5a3eedc2b..78bd2cd3a 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/tr/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/tr/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Vergi Dairesi Alanını Göster',
],
];
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 a3515a677..2a3ca2293 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/uk/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/uk/button.php
@@ -12,6 +12,7 @@ return [
'edit' => 'Редагувати',
'go_profile' => 'Перейдіть до детальної інформації про профіль',
'go_user' => 'Перейдіть до детальної інформації про користувача',
- 'personal' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'Особисті',
+ 'corporate' => 'Корпоративний',
+ 'export' => 'Експорт',
];
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 3af8e2d90..d81046cbf 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/uk/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/uk/field.php
@@ -428,19 +428,19 @@ return [
'my_address' => 'Моя адреса',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Назва компанії'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Податкова'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Податковий номер'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Мій профіль',
+ 'edit_profile' => 'Редагувати профіль',
+ 'edit_details' => 'Редагувати деталі',
+ 'update' => 'Оновлення',
+ 'change_password' => 'Змінити пароль',
];
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 647b4aee7..61a7c1b44 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/uk/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/uk/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'Ви хочете закрити свій рахунок? Цю операцію не можна скасувати.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'Оновлено електронний лист!',
+ 'update_email_mail_message' => 'Ваш електронний лист оновлено!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/uk/setting.php b/addons/default/visiosoft/profile-module/resources/lang/uk/setting.php
index 915cf8b03..f7e935220 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/uk/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/uk/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Показати поле податкової служби',
],
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/addon.php b/addons/default/visiosoft/profile-module/resources/lang/ur/addon.php
new file mode 100644
index 000000000..6609060da
--- /dev/null
+++ b/addons/default/visiosoft/profile-module/resources/lang/ur/addon.php
@@ -0,0 +1,7 @@
+ 'پروفائل',
+ 'name' => 'پروفائل ماڈیول',
+ 'description' => ''
+];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/button.php b/addons/default/visiosoft/profile-module/resources/lang/ur/button.php
new file mode 100644
index 000000000..af9e418b5
--- /dev/null
+++ b/addons/default/visiosoft/profile-module/resources/lang/ur/button.php
@@ -0,0 +1,18 @@
+ 'نئ پروفائل',
+ 'new_adress' => 'نیا ایڈریس',
+ 'show' => 'ایڈریس دکھائیں',
+ 'update_password' => 'پاس ورڈ کو اپ ڈیٹ کریں',
+ 'update_profile' => 'پروفائل کو اپ ڈیٹ کریں',
+ 'delete' => 'حذف کریں',
+ 'extend' => 'بڑھائیں',
+ 'extend_all' => 'سب کو بڑھاؤ',
+ 'edit' => 'ترمیم',
+ 'go_profile' => 'پروفائل کی تفصیل پر جائیں',
+ 'go_user' => 'صارف کی تفصیل پر جائیں',
+ 'personal' => 'ذاتی',
+ 'corporate' => 'کارپوریٹ',
+ 'export' => 'برآمد کریں',
+];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/field.php b/addons/default/visiosoft/profile-module/resources/lang/ur/field.php
new file mode 100644
index 000000000..31f5216b5
--- /dev/null
+++ b/addons/default/visiosoft/profile-module/resources/lang/ur/field.php
@@ -0,0 +1,446 @@
+ [
+ 'name' => 'فوٹو'
+ ],
+ 'first_name' => [
+ 'name' => 'پہلا نام'
+ ],
+ 'last_name' => [
+ 'name' => 'آخری نام'
+ ],
+ 'username' => [
+ 'name' => 'صارف نام'
+ ],
+ 'display_name' => [
+ 'name' => 'نام دکھائیں'
+ ],
+ 'email' => [
+ 'name' => 'ای میل ایڈریس'
+ ],
+ 'sitename' => [
+ 'name' => 'جگہ کا نام'
+ ],
+ 'activated' => [
+ 'name' => 'صارف متحرک'
+ ],
+ 'enabled' => [
+ 'name' => 'صارف کے قابل بنائیں'
+ ],
+ 'country' => [
+ 'name' => 'ملک'
+ ],
+ 'city' => [
+ 'name' => 'شہر'
+ ],
+ 'district' => [
+ 'name' => 'ضلع'
+ ],
+ 'neighborhood' => [
+ 'name' => 'ہمسایہ'
+ ],
+ 'village' => [
+ 'name' => 'گاؤں'
+ ],
+ 'gsm_phone' => [
+ 'name' => 'جی ایس ایم فون'
+ ],
+ 'land_phone' => [
+ 'name' => 'لینڈ فون'
+ ],
+ 'office_phone' => [
+ 'name' => 'دفتر فون'
+ ],
+ 'register_type' => [
+ 'name' => 'رجسٹر کی قسم'
+ ],
+ 'identification_number' => [
+ 'name' => 'شناختی نمبر'
+ ],
+ 'adress_name' => [
+ 'name' => 'ایڈریس کا نام'
+ ],
+ 'adress_first_name' => [
+ 'name' => 'پہلا نام'
+ ],
+ 'adress_last_name' => [
+ 'name' => 'آخری نام'
+ ],
+ 'actions' => [
+ 'name' => 'عمل'
+ ],
+ 'adress_content' => [
+ 'name' => 'ایڈریس مشمولات'
+ ],
+ 'adress_post_code' => [
+ 'name' => 'پوسٹ کوڈ'
+ ],
+ 'adress_gsm_phone' => [
+ 'name' => 'جی ایس ایم فون'
+ ],
+ 'adress_land_phone' => [
+ 'name' => 'لینڈ فون'
+ ],
+ 'adress_country' => [
+ 'name' => 'ملک'
+ ],
+ 'adress_city' => [
+ 'name' => 'شہر'
+ ],
+ 'adress_district' => [
+ 'name' => 'ضلع'
+ ],
+ 'adress_neighborhood' => [
+ 'name' => 'ہمسایہ'
+ ],
+ 'adress_village' => [
+ 'name' => 'گاؤں'
+ ],
+ 'messages' => [
+ 'name' => 'پیغامات'
+ ],
+ 'user' => [
+ 'name' => 'صارف'
+ ],
+
+ /*Menu Button*/
+ 'profile' => [
+ 'name' => 'پروفائل'
+ ],
+
+ 'create' => [
+ 'name' => 'بنانا'
+ ],
+ 'edit' => [
+ 'name' => 'ترمیم'
+ ],
+ 'delete' => [
+ 'name' => 'حذف کریں'
+ ],
+ 'list' => [
+ 'name' => 'فہرست'
+ ],
+ 'menu_address' => [
+ 'name' => 'پتہ'
+ ],
+ 'menu_orders' => [
+ 'name' => 'احکامات'
+ ],
+ 'menu_favorites' => [
+ 'name' => 'پسندیدہ'
+ ],
+ 'menu_archived_ads' => [
+ 'name' => 'محفوظ شدہ اشتہارات'
+ ],
+ 'menu_pending_ads' => [
+ 'name' => 'زیر التواء منظوری'
+ ],
+ 'menu_delete_account' => [
+ 'name' => 'بند اکاونٹ'
+ ],
+ 'menu_my_ads' => [
+ 'name' => 'میرے اشتہارات'
+ ],
+ 'menu_fav_ads' => [
+ 'name' => 'پسندیدہ اشتہارات'
+ ],
+ 'menu_hello_msg' => [
+ 'name' => 'ہیلو'
+ ],
+ 'menu_last_msg' => [
+ 'name' => 'آپ نے آخری بار لاگ ان کیا تھا'
+ ],
+ 'menu_packages' => [
+ 'name' => 'میرے پیکیج'
+ ],
+ 'menu_adv_packages' => [
+ 'name' => 'اشتہارات کے پیکیجز'
+ ],
+ 'menu_time_packages' => [
+ 'name' => 'ٹائم پیکیجز'
+ ],
+ 'profile_details' => [
+ 'name' => 'پروفائل کی تفصیلات'
+ ],
+ 'profile_photo' => [
+ 'name' => 'پروفائل فوٹو'
+ ],
+ 'adv_listing_banner' => [
+ 'name' => 'اشتہارات کی فہرست کا صفحہ بینر'
+ ],
+ 'approve' => [
+ 'name' => 'منظور کریں'
+ ],
+ 'approved' => [
+ 'name' => 'منظورشدہ'
+ ],
+ 'pending' => [
+ 'name' => 'زیر التواء'
+ ],
+ 'passive' => [
+ 'name' => 'غیر فعال'
+ ],
+ 'pending_admin' => [
+ 'name' => 'زیر التواء'
+ ],
+ 'menu_messages' => [
+ 'name' => 'پیغامات'
+ ],
+ 'menu_my_purchase' => [
+ 'name' => 'میری خریداری'
+ ],
+ 'menu_my_sales' => [
+ 'name' => 'میری فروخت'
+ ],
+
+ /* Right Dock*/
+ 'right_secure_trading_subject' => [
+ 'name' => 'محفوظ تجارت'
+ ],
+ 'right_secure_trading_msg' => [
+ 'name' => 'آپ کے تعاون کا حق نہیں ہے'
+ ],
+ 'right_support_subject' => [
+ 'name' => '24/7 سپورٹ'
+ ],
+ 'right_support_msg' => [
+ 'name' => 'آپ کے تعاون کا حق نہیں ہے'
+ ],
+ 'right_easy_trading_subject' => [
+ 'name' => 'آسان تجارت'
+ ],
+ 'right_easy_trading_msg' => [
+ 'name' => 'آپ کے تعاون کا حق نہیں ہے'
+ ],
+ 'right_need_help_subject' => [
+ 'name' => 'مدد چاہیے؟'
+ ],
+ 'right_need_help_msg' => [
+ 'name' => 'کال کرو'
+ ],
+ 'disable_account' => [
+ 'name' => 'اکاؤنٹ غیر فعال کریں'
+ ],
+ 'disable_account_msg' => [
+ 'name' => 'آپ کا اکاؤنٹ غیر فعال ہوجائے گا۔
+ اس کارروائی کو کالعدم نہیں کیا جاسکتا'
+ ],
+
+ 'message_title' => 'پیغام کا عنوان',
+ 'owner_name' => 'پیغام',
+
+ 'favorites' => "پسندیدہ",
+ 'fav_advs' => 'پسندیدہ اشتہارات',
+ 'fav_sellers' => "Fav بیچنے والے",
+ 'fav_searches' => "Fav تلاش",
+ 'posted_on' => "پوسٹ کیا گیا",
+ 'message_details' => "پیغام کی تفصیلات",
+ 'adv_no' => 'اشتہار نمبر',
+ 'bill_address' => [
+ 'name' => 'بل ایڈریس',
+ ],
+ 'delivery_address' => [
+ 'name' => 'ترسیل کا پتہ',
+ ],
+ 'order_total' => [
+ 'name' => 'کل',
+ ],
+ 'order_date' => [
+ 'name' => 'آرڈر کی تاریخ',
+ ],
+ 'order_no' => [
+ 'name' => 'آرڈر کی شناخت',
+ ],
+ 'order_detail' => [
+ 'name' => 'تفصیل دکھائیں',
+ ],
+ /*Detail Page Order*/
+ 'detail' => [
+ 'name' => 'تفصیل',
+ ],
+ 'back' => [
+ 'name' => 'پیچھے',
+ ],
+ 'image' => [
+ 'name' => 'تصویر',
+ ],
+ 'subject' => [
+ 'name' => 'مضمون',
+ ],
+ 'price' => [
+ 'name' => 'قیمت',
+ ],
+ 'piece' => [
+ 'name' => 'ٹکڑا',
+ ],
+ 'commission' => [
+ 'name' => 'کمیشن',
+ ],
+ 'total' => [
+ 'name' => 'کل',
+ ],
+ 'sub_total' => [
+ 'name' => 'سب ٹوٹل',
+ ],
+ 'sale' => [
+ 'name' => 'فروخت',
+ ],
+ 'awaiting_tracking_number' => [
+ 'name' => 'ٹریکنگ نمبر کے منتظر ہیں',
+ ],
+ 'awaiting_payment_approval' => [
+ 'name' => 'ادائیگی کی منظوری کے منتظر',
+ ],
+ 'paid' => [
+ 'name' => 'ادا کیا',
+ ],
+ 'cancelled' => [
+ 'name' => 'منسوخ',
+ ],
+ 'waiting' => [
+ 'name' => 'انتظار کر رہا ہے',
+ ],
+ 'awaiting_dispatch' => [
+ 'name' => 'بھیجنے کے منتظر ہیں',
+ ],
+ 'shipped' => [
+ 'name' => 'بھیج دیا گیا',
+ ],
+ 'delivered' => [
+ 'name' => 'نجات',
+ ],
+ 'tracking_number' => [
+ 'name' => 'ٹریکنگ نمبر',
+ ],
+ 'was_delivered' => [
+ 'name' => 'پہنچ گیا',
+ ],
+ 'not_delivered' => [
+ 'name' => 'حوالے نہیں ہوسکی',
+ ],
+ 'show_order_msg1' => [
+ 'name' => 'لین دین کے نتیجہ کو میل کے ذریعہ مطلع کیا جائے گا۔',
+ ],
+ 'show_order_msg2' => [
+ 'name' => 'اگر ایک ہفتے کے اندر اندر مصنوع کی فراہمی نہیں ہوئی تو رقم کی واپسی کی جاسکے گی۔',
+ ],
+ 'show_order_msg3' => [
+ 'name' => 'لین دین کا نتیجہ آپ کے رجسٹرڈ ای میل پتے پر بھیج دیا گیا ہے۔',
+ ],
+
+ 'awaiting_payment' => [
+ 'name' => 'ادائیگی کے منتظر',
+ ],
+ 'please_entered_tracking_number' => [
+ 'name' => 'برائےکرم درج کردہ ٹریکنگ نمبر',
+ ],
+ 'transport_days' => [
+ 'name' => 'آمدورفت کے دن',
+ ],
+ 'product_not_delivered' => [
+ 'name' => 'مصنوع کی فراہمی نہیں ہوئی',
+ ],
+ 'status' => [
+ 'name' => 'حالت',
+ ],
+ 'cancel_sale' => [
+ 'name' => 'منسوخ کریں',
+ ],
+ 'send_again' => [
+ 'name' => 'میں پھر بھیج دوں گا',
+ ],
+ 'content' => [
+ 'name' => 'مواد',
+ ],
+ 'preferences_settings' => [
+ 'name' => 'ترجیحات کی ترتیبات',
+ ],
+
+ 'corporate_settings' => [
+ 'name' => 'کارپوریٹ کی ترتیبات',
+ ],
+ 'password' => [
+ 'name' => 'پاس ورڈ',
+ ],
+ 'new_password' => [
+ 'name' => 'نیا پاس ورڈ',
+ ],
+ 're_new_password' => [
+ 'name' => 'پاس ورڈ کی تصدیق کریں',
+ ],
+ 'confirm_password_input' => [
+ 'name' => 'میں اپنے پاس ورڈ کی تبدیلی کی تصدیق کرتا ہوں',
+ ],
+ 'create_address' => [
+ 'name' => 'ایڈریس بنائیں',
+ ],
+ 'edit_address' => [
+ 'name' => 'ایڈریس میں ترمیم کریں',
+ ],
+ 'balance_limit' => [
+ 'name' => 'بیلنس کی حد',
+ ],
+ 'active_ads' => [
+ 'name' => 'فعال اشتہارات',
+ ],
+ 'subscriptions' => [
+ 'name' => 'سبسکرپشنز',
+ ],
+ 'go_subscriptions_page' => [
+ 'name' => 'خریداری والے صفحے پر جائیں',
+ ],
+ 'buy_package' => [
+ 'name' => 'پیکیج خریدیں',
+ ],
+ 'expired_date' => [
+ 'name' => 'ختم تاریخ',
+ ],
+ 'category' => [
+ 'name' => 'قسم',
+ ],
+ 'ad_limit' => [
+ 'name' => 'اشتہار کی حد',
+ ],
+ 'publish_time' => [
+ 'name' => 'اشاعت کا وقت',
+ ],
+ 'all_categories' => [
+ 'name' => 'تمام زمرے',
+ ],
+ 'day' => [
+ 'name' => 'دن',
+ ],
+
+ 'individual' => [
+ 'name' => 'انفرادی',
+ ],
+ 'corporate' => [
+ 'name' => 'کارپوریٹ',
+ ],
+
+ 'details' => [
+ 'name' => 'تفصیلات'
+ ],
+ 'choose' => [
+ 'name' => 'منتخب کریں'
+ ],
+ 'my_address' => 'میرا پتہ',
+
+ 'company' => [
+ 'name' => 'کمپنی کا نام'
+ ],
+ 'tax_office' => [
+ 'name' => 'ٹیکس آفس'
+ ],
+ 'tax_number' => [
+ 'name' => 'ٹیکس نمبر'
+ ],
+
+ // Profile page
+ 'my_profile' => 'میری پروفائل',
+ 'edit_profile' => 'پروفائل میں ترمیم کریں',
+ 'edit_details' => 'تفصیلات میں ترمیم کریں',
+ 'update' => 'اپ ڈیٹ',
+ 'change_password' => 'پاس ورڈ تبدیل کریں',
+];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/message.php b/addons/default/visiosoft/profile-module/resources/lang/ur/message.php
new file mode 100644
index 000000000..79fdc2703
--- /dev/null
+++ b/addons/default/visiosoft/profile-module/resources/lang/ur/message.php
@@ -0,0 +1,40 @@
+ "ای میل فیلڈ کی ضرورت ہے!",
+ "username" => "صارف نام کا فیلڈ ضروری ہے!",
+ "success_update" => "پروفائل اپ ڈیٹ کامیابی کے ساتھ!",
+ "adress_success_update" => "ایڈریس اپ ڈیٹ کامیابی کے ساتھ!",
+ "adress_success_create" => "ایڈریس کامیابی کے ساتھ بنائیں!",
+ "login_error" => "غلط لاگ ان یا پاس ورڈ.",
+ "login_noMail_old_user" => "آپ کا درج کردہ ای میل پتہ نہیں مل سکا۔",
+ "login_noMail_old_user2" => "براہ کرم ای میل پتہ چیک کریں اور دوبارہ کوشش کریں۔",
+ "login_noMail_old_user3" => "اگر مسئلہ بدستور جاری ہے تو ، براہ کرم 'info@openclassify.com' پر رابطہ کریں۔",
+ "login_info_old_user" => "آپ کے ای میل پتے پر ایک نیا پاس ورڈ بھیجا گیا ہے۔",
+ "success" => "کامیابی",
+ "notified_new_updates" => "میں نئی تازہ کاریوں سے مطلع ہونا چاہتا ہوں",
+ "notified_about_ads" => "میرے اشتہاروں کے بارے میں اطلاعات کی اجازت دیں",
+ "receive_messages_email" => "میں پیغامات بطور ای میل وصول کرنا چاہتا ہوں",
+ "no_packages_module" => "کوئی پیکیج ماڈیول نہیں!",
+ "required_add"=> "براہ کرم تمام مطلوبہ لائنیں پُر کریں۔",
+ "no_extend_package" => "اشتھاراتی پیکیج میں توسیع نہیں ہے",
+ "saved" => "محفوظ کیا گیا!",
+ 'please_confirm_transaction' => 'برائے کرم لین دین کی تصدیق کریں',
+ 'password_do_not_match' => 'پاس ورڈ میچ نہیں کرتے',
+ 'your_password_changed' => 'آپ کا پاس ورڈ کامیابی کے ساتھ اپ ڈیٹ ہوگیا',
+ 'error_valid_email_or_phone' => 'فون نمبر یا ای میل ایڈریس کی شکل درست نہیں ہے۔',
+ 'error_valid_phone' => 'فون نمبر کی شکل درست نہیں ہے۔',
+ 'registered_phone' => 'یہ فون نمبر پہلے ہی رجسٹرڈ ہوچکا ہے۔',
+ 'ajax_address_error' => 'کوئی پتہ اور نہ ہی دیکھنے کا اختیار ہے۔',
+ 'empty_password_sms_message' => 'سیکیورٹی کے مسائل کی وجہ سے ، ہم نے آپ کا پاس ورڈ تبدیل کردیا! آپ کا نیا پاس ورڈ یہ ہے:',
+ 'required_all' => "تمام فیلڈ کی ضرورت ہے!",
+
+ // Forgot Password
+ 'email_phone_not_found' => 'ای میل ، فون نمبر درست نہیں ہے!',
+
+ 'disable_account' => 'کیا آپ اپنا اکاؤنٹ بند کرنا چاہتے ہیں؟ اس کارروائی کو کالعدم نہیں کیا جاسکتا۔',
+
+ // Mail
+ 'update_email_mail_subject' => 'ای میل کی تازہ کاری!',
+ 'update_email_mail_message' => 'آپ کا ای میل تازہ ترین ہوگیا ہے!',
+];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php b/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php
new file mode 100644
index 000000000..9071aab84
--- /dev/null
+++ b/addons/default/visiosoft/profile-module/resources/lang/ur/permission.php
@@ -0,0 +1,20 @@
+ [
+ 'name' => 'پروفائل',
+ 'option' => [
+ 'read' => 'کیا پروفائل پڑھ سکتے ہیں؟',
+ 'write' => 'کیا پروفائل تشکیل / ترمیم کرسکتے ہیں؟',
+ 'delete' => 'پروفائل کو حذف کرسکتے ہیں؟',
+ ],
+ ],
+ 'adress' => [
+ 'name' => 'ایڈریس',
+ 'option' => [
+ '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
new file mode 100644
index 000000000..7ea35f791
--- /dev/null
+++ b/addons/default/visiosoft/profile-module/resources/lang/ur/section.php
@@ -0,0 +1,11 @@
+ [
+ 'title' => 'پروفائل',
+ ],
+ 'adress' => [
+ 'title' => 'ایڈریس',
+ ],
+ 'general_setting' => 'عام ترتیبات',
+];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/setting.php b/addons/default/visiosoft/profile-module/resources/lang/ur/setting.php
new file mode 100644
index 000000000..7f6601033
--- /dev/null
+++ b/addons/default/visiosoft/profile-module/resources/lang/ur/setting.php
@@ -0,0 +1,14 @@
+ [
+ 'name' => 'میرے اشتہارات کا ٹیب دکھائیں',
+ ],
+ 'upload_avatar' => [
+ 'name' => 'اوتار اپ لوڈ',
+ ],
+
+ 'show_tax_office' => [
+ 'name' => 'ٹیکس آفس فیلڈ دکھائیں',
+ ],
+];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php b/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php
new file mode 100644
index 000000000..d95d65b5a
--- /dev/null
+++ b/addons/default/visiosoft/profile-module/resources/lang/ur/stream.php
@@ -0,0 +1,10 @@
+ [
+ 'name' => 'پروفائل',
+ ],
+ 'adress' => [
+ '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 897d05062..ce6aacf5c 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/vi/button.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/vi/button.php
@@ -12,6 +12,7 @@ return [
'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' => 'Personal',
- 'corporate' => 'Corporate',
+ 'personal' => 'Cá nhân',
+ 'corporate' => 'Công ty',
+ 'export' => 'Xuất khẩu',
];
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 aa43d9f73..ed2e4c01a 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/vi/field.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/vi/field.php
@@ -428,19 +428,19 @@ return [
'my_address' => 'Địa chỉ của tôi',
'company' => [
- 'name' => 'Company Name'
+ 'name' => 'Tên công ty'
],
'tax_office' => [
- 'name' => 'Tax Office'
+ 'name' => 'Phòng thuế'
],
'tax_number' => [
- 'name' => 'Tax Number'
+ 'name' => 'Số thuế'
],
// Profile page
- 'my_profile' => 'My Profile',
- 'edit_profile' => 'Edit Profile',
- 'edit_details' => 'Edit Details',
- 'update' => 'Update',
- 'change_password' => 'Change Password',
+ 'my_profile' => 'Thông tin của tôi',
+ 'edit_profile' => 'Chỉnh sửa hồ sơ',
+ 'edit_details' => 'Chỉnh sửa chi tiết',
+ 'update' => 'Cập nhật',
+ 'change_password' => 'Đổi mật khẩu',
];
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 81e68ade5..34e932c10 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/vi/message.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/vi/message.php
@@ -35,6 +35,6 @@ return [
'disable_account' => 'Bạn có muốn đóng tài khoản của bạn? Hoạt động này không thể được hoàn tác.',
// Mail
- 'update_email_mail_subject' => 'Email Updated!',
- 'update_email_mail_message' => 'Your Email Has Been Updated!',
+ 'update_email_mail_subject' => 'Đã cập nhật email!',
+ 'update_email_mail_message' => 'Email của bạn đã được cập nhật!',
];
diff --git a/addons/default/visiosoft/profile-module/resources/lang/vi/setting.php b/addons/default/visiosoft/profile-module/resources/lang/vi/setting.php
index 9b6714077..1b866a28a 100644
--- a/addons/default/visiosoft/profile-module/resources/lang/vi/setting.php
+++ b/addons/default/visiosoft/profile-module/resources/lang/vi/setting.php
@@ -9,6 +9,6 @@ return [
],
'show_tax_office' => [
- 'name' => 'Show Tax Office Field',
+ 'name' => 'Hiển thị Trường Văn phòng Thuế',
],
];
diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/addon.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/addon.php
new file mode 100644
index 000000000..67bf1fcf4
--- /dev/null
+++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/addon.php
@@ -0,0 +1,7 @@
+ 'ایک فائل',
+ 'name' => 'فیلڈ کی قسم',
+ 'description' => 'فائل اپلوڈ فیلڈ کی قسم۔',
+];
diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/button.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/button.php
new file mode 100644
index 000000000..649132eb3
--- /dev/null
+++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/button.php
@@ -0,0 +1,8 @@
+ 'فائل منتخب کریں',
+ 'upload' => 'اپ لوڈ کریں',
+ 'remove' => 'دور',
+ 'change' => 'بدلیں',
+];
diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/config.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/config.php
new file mode 100644
index 000000000..30b3310b7
--- /dev/null
+++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/config.php
@@ -0,0 +1,23 @@
+ [
+ 'name' => 'فولڈرز',
+ 'instructions' => 'بتائیں کہ اس فیلڈ کے لئے کون سے فولڈر دستیاب ہیں۔ تمام فولڈرز کو ظاہر کرنے کے لئے خالی چھوڑیں۔',
+ 'warning' => 'موجودہ فولڈروں میں فولڈر کی موجودہ اجازتوں کو فوقیت دیتی ہے۔',
+ ],
+ 'max' => [
+ 'name' => 'زیادہ سے زیادہ اپ لوڈ سائز',
+ 'instructions' => 'زیادہ سے زیادہ اپلوڈ سائز میگا بائٹمیں بتائیں۔',
+ 'warning' => 'اگر فولڈر میں زیادہ سے زیادہ کی وضاحت نہیں کی گئی ہے اور پھر اس کے بجائے سرور میکس استعمال ہوگا۔',
+ ],
+ 'mode' => [
+ 'name' => 'ان پٹ وضع',
+ 'instructions' => 'صارفین کو فائل ان پٹ کس طرح فراہم کرنا چاہئے؟',
+ 'option' => [
+ 'default' => 'فائلیں اپ لوڈ اور / یا منتخب کریں۔',
+ 'select' => 'صرف فائلیں منتخب کریں۔',
+ 'upload' => 'صرف فائلیں اپ لوڈ کریں۔',
+ ],
+ ],
+];
diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/message.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/message.php
new file mode 100644
index 000000000..be023ed6a
--- /dev/null
+++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/message.php
@@ -0,0 +1,12 @@
+ 'آپ کون سی فائل استعمال کرنا چاہیں گے؟',
+ 'choose_folder' => 'آپ کس فولڈر میں اپ لوڈ کرنا چاہیں گے؟',
+ 'upload' => 'فائلوں کو اپ لوڈ کرنے کے لئے یہاں دبائیں یا چھوڑیں۔',
+ 'no_file_selected' => 'کوئی فائل منتخب نہیں کی گئی.',
+ 'no_uploads' => 'کوئی فائلیں اپ لوڈ نہیں کی گئیں۔',
+ 'overwrite' => 'پہلے ہی اپ لوڈ ہوچکا ہے۔ کیا آپ اسے ادلیکھت کرنا چاہیں گے؟',
+ 'uploading' => 'اپ لوڈ ہو رہا ہے',
+ 'loading' => 'لوڈ ہو رہا ہے',
+];
diff --git a/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/validation.php b/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/validation.php
new file mode 100644
index 000000000..10b4a0b7d
--- /dev/null
+++ b/addons/default/visiosoft/singlefile-field_type/resources/lang/ur/validation.php
@@ -0,0 +1,5 @@
+ 'کے لئے تشکیل شدہ اپ لوڈ ڈسک: وصف موجود نہیں ہے۔',
+];