mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 09:51:10 -06:00
move from Gitlab without history - v 0.9
This commit is contained in:
commit
1bb9072fa1
59
.env_demo
Normal file
59
.env_demo
Normal file
@ -0,0 +1,59 @@
|
||||
|
||||
|
||||
APP_NAME="OpenClassify"
|
||||
FORCE_SSL=0
|
||||
APP_TIMEZONE="UTC"
|
||||
DATE_FORMAT="j F, Y"
|
||||
TIME_FORMAT="H:i"
|
||||
UNIT_SYSTEM="imperial"
|
||||
STANDARD_THEME="visiosoft.theme.default"
|
||||
ADMIN_THEME="visiosoft.theme.defaultadmin"
|
||||
RESULTS_PER_PAGE=15
|
||||
DEFAULT_LOCALE="en"
|
||||
ENABLED_LOCALES='a:1:{i:0;s:2:"en";}'
|
||||
MAINTENANCE_MODE=0
|
||||
MAINTENANCE_AUTH=0
|
||||
FROM_ADDRESS="support@demo.openclassify.com"
|
||||
FROM_NAME="OpenClassify"
|
||||
MAIL_DRIVER="smtp"
|
||||
MAIL_HOST=smtp.mailtrap.io
|
||||
MAIL_PORT=2525
|
||||
MAIL_USERNAME="029f2d0c9099d9"
|
||||
MAIL_PASSWORD="8252f6d1c2ca42"
|
||||
HTTP_CACHE=0
|
||||
HTTP_CACHE_TTL=3600
|
||||
HTTP_CACHE_ALLOW_BOTS=0
|
||||
HTTP_CACHE_EXCLUDED="NULL"
|
||||
HTTP_CACHE_RULES="NULL"
|
||||
DB_CACHE=0
|
||||
DB_CACHE_TTL=3600
|
||||
|
||||
|
||||
|
||||
ADV_COUNTRY=212
|
||||
ADV_LOGO="NULL"
|
||||
ADV_SITE_ADDRESS="visiosoft.com.tr"
|
||||
ADV_AUTO_APPROVE=1
|
||||
ADV_PUBLISH_TIME=10
|
||||
ADV_GET=0
|
||||
ADV_LIMIT=15
|
||||
ADV_PHONE="212 555 55 55"
|
||||
ADV_ADDRESS="Basaksehir Istanbul"
|
||||
ADV_CITY=34
|
||||
ADV_DISTRICT=1091
|
||||
ADV_MAIL="support"
|
||||
ADV_MAP_KEY="AIzaSyCAGc0z8kg9rKGVy2FizFKoz0FoWWWzoGQ"
|
||||
ADV_MAP_LONG="28.74558607285155"
|
||||
ADV_MAP_LAT="40.97817786299617"
|
||||
ADV_CURRENCIES='a:1:{i:0;s:1:"0";}'
|
||||
ADV_CURRENCY_CONVERT_API_KEY="1eea72940f3868c77420"
|
||||
ADV_CURRENCY="USD"
|
||||
ADV_TWITTER="/twitter.com/visiosoft"
|
||||
ADV_FACEBOOK="/facebook.com/visiosoft"
|
||||
ADV_YOUTUBE="/youtube.com/visiosoft"
|
||||
ADV_GOOGLE="/plus.google.com/visiosoft"
|
||||
ADV_WATERMARK_TYPE="text"
|
||||
ADV_WATERMARK_TEXT="openclassify.com"
|
||||
ADV_WATERMARK_POSITION="top-right"
|
||||
ADV_WATERMARK_OPACITY=80
|
||||
ADV_ENABLED_CURRENCIES='a:1:{i:0;s:3:"USD";}'
|
||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.idea
|
||||
62
Envoy.blade.php
Normal file
62
Envoy.blade.php
Normal file
@ -0,0 +1,62 @@
|
||||
@servers(['web' => 'yoursite@50.59.80.150 -p 22400'])
|
||||
|
||||
@task('update', ['on' => 'web'])
|
||||
cd /home/yoursite
|
||||
php /usr/bin/composer update -o --no-dev
|
||||
php artisan migrate --all-addons --force
|
||||
php artisan migrate --force
|
||||
@endtask
|
||||
|
||||
@task('pull', ['on' => 'web'])
|
||||
cd /home/yoursite
|
||||
git pull
|
||||
@endtask
|
||||
|
||||
@task('migrate', ['on' => 'web'])
|
||||
cd /home/yoursite
|
||||
php artisan migrate --all-addons --force
|
||||
php artisan migrate --force
|
||||
@endtask
|
||||
|
||||
@task('compile', ['on' => 'web'])
|
||||
cd /home/yoursite
|
||||
php artisan streams:compile
|
||||
@endtask
|
||||
|
||||
@task('clear', ['on' => 'web'])
|
||||
cd /home/yoursite
|
||||
php artisan httpcache:clear
|
||||
php artisan assets:clear
|
||||
php artisan cache:clear
|
||||
php artisan route:clear
|
||||
php artisan view:clear
|
||||
php artisan twig:clear
|
||||
@endtask
|
||||
|
||||
@task('install', ['on' => 'web'])
|
||||
cd /home/yoursite
|
||||
php artisan addon:install {{$addon}}
|
||||
@endtask
|
||||
|
||||
@task('uninstall', ['on' => 'web'])
|
||||
cd /home/yoursite
|
||||
php artisan addon:uninstall {{$addon}}
|
||||
@endtask
|
||||
|
||||
@task('reinstall', ['on' => 'web'])
|
||||
cd /home/yoursite
|
||||
php artisan addon:reinstall {{$addon}}
|
||||
@endtask
|
||||
|
||||
@macro('push')
|
||||
pull
|
||||
clear
|
||||
migrate
|
||||
@endmacro
|
||||
|
||||
@macro('deploy')
|
||||
push
|
||||
update
|
||||
compile
|
||||
clear
|
||||
@endmacro
|
||||
20
LICENSE.md
Normal file
20
LICENSE.md
Normal file
@ -0,0 +1,20 @@
|
||||
# The MIT License (MIT)
|
||||
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
1
Procfile
Normal file
1
Procfile
Normal file
@ -0,0 +1 @@
|
||||
web: INSTALLED=false php artisan streams:compile && INSTALLED=true bin/heroku-php-apache2 public/
|
||||
298
README.md
Normal file
298
README.md
Normal file
@ -0,0 +1,298 @@
|
||||
# OpenClassify
|
||||
|
||||
OpenClassify is the extensible and most advanced open source classified app build with Laravel.
|
||||
|
||||
# Core Modules
|
||||
|
||||
advs-module
|
||||
cats-module
|
||||
default-theme
|
||||
defaultadmin-theme
|
||||
json-field_type
|
||||
location-module
|
||||
media-field_type
|
||||
profile-module
|
||||
single-file_type
|
||||
|
||||
|
||||
### Extensions used by OpenClassify to install to ubuntu php 7.2
|
||||
```
|
||||
sudo apt-get install php7.2-sqlite
|
||||
```
|
||||
|
||||
```
|
||||
sudo apt-get install php7.2-bcmath
|
||||
```
|
||||
## Docker Enviroment
|
||||
|
||||
|
||||
Requirements
|
||||
|
||||
* [Git](https://git-scm.com/downloads)
|
||||
* [Docker](https://docs.docker.com/engine/installation/)
|
||||
* [Docker Compose](https://docs.docker.com/compose/install/)
|
||||
|
||||
Check if `docker-compose` is already installed by entering the following command :
|
||||
|
||||
```sh
|
||||
which docker-compose
|
||||
```
|
||||
|
||||
Check Docker Compose compatibility :
|
||||
|
||||
* [Compose file version 3 reference](https://docs.docker.com/compose/compose-file/)
|
||||
|
||||
The following is optional but makes life more enjoyable :
|
||||
|
||||
```sh
|
||||
which make
|
||||
```
|
||||
|
||||
On Ubuntu and Debian these are available in the meta-package build-essential. On other distributions, you may need to install the GNU C++ compiler separately.
|
||||
|
||||
```sh
|
||||
sudo apt install build-essential
|
||||
```
|
||||
## Running The application
|
||||
|
||||
1. Start the application :
|
||||
|
||||
```sh
|
||||
sudo docker-compose up -d
|
||||
```
|
||||
|
||||
**Please wait this might take a several minutes...**
|
||||
|
||||
```sh
|
||||
sudo docker-compose logs -f # Follow log output
|
||||
```
|
||||
**Add these line in your .env file ...**
|
||||
|
||||
```sh
|
||||
# Nginx
|
||||
NGINX_HOST=localhost
|
||||
|
||||
# PHP
|
||||
|
||||
# See https://hub.docker.com/r/nanoninja/php-fpm/tags/
|
||||
PHP_VERSION=latest
|
||||
|
||||
# MySQL
|
||||
MYSQL_VERSION=5.7.22 //Keep this up as your requirements
|
||||
MYSQL_HOST=mysql
|
||||
MYSQL_DATABASE=your_db_name
|
||||
MYSQL_ROOT_USER=root
|
||||
MYSQL_ROOT_PASSWORD=root
|
||||
MYSQL_USER=dev
|
||||
MYSQL_PASSWORD=dev
|
||||
```
|
||||
|
||||
**Replace these line in your .env file ...**
|
||||
|
||||
```sh
|
||||
DB_HOST=mysql
|
||||
DB_PORT=3306
|
||||
DB_DATABASE=your_db_name
|
||||
DB_USERNAME=root
|
||||
DB_PASSWORD=root
|
||||
```
|
||||
|
||||
3. Open your favorite browser :
|
||||
|
||||
* [http://localhost:8000](http://localhost:8000/)
|
||||
* [http://localhost:8080](http://localhost:8080/) PHPMyAdmin (username: dev, password: dev)
|
||||
|
||||
4. Stop and clear services
|
||||
|
||||
```sh
|
||||
sudo docker-compose down -v
|
||||
```
|
||||
___
|
||||
|
||||
|
||||
|
||||
## Module ekleme
|
||||
|
||||
Visiosoft -> bulunduğu klasör adı. Herhangi bir şey olabilir
|
||||
Advs -> modülün adı
|
||||
|
||||
— php artisan make:addon visiosoft.module.advs
|
||||
|
||||
Bundan sonra
|
||||
|
||||
Addons/default/visiosoft/advs-module klasörü oluşacaktır.
|
||||
|
||||
yukarıdaki dosya yolunda migration klasörünün içerisinde otomatik oluşan bir migration dosyası olacak.
|
||||
|
||||
Bu örnek için
|
||||
tarih__visiosoft.module.advs__create_advs_fields.php
|
||||
|
||||
Bunun içine tüm modülde kullanacak fieldları girilmeli
|
||||
|
||||
Örnek olarak
|
||||
|
||||
|
||||
protected $fields = [
|
||||
'name' => 'anomaly.field_type.text',
|
||||
'category' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'config' => [
|
||||
'related' => CategoryModel::class
|
||||
]
|
||||
]
|
||||
]
|
||||
|
||||
Daha sonra önce ana tablo ve sonrasında diğer tablolar eklenmeli. Sıra önemli yanlış sırada route sapıtıyor.
|
||||
|
||||
php artisan make:stream advs advs
|
||||
|
||||
İle ana kategori dosyaları ve migration ı yaratılıyor daha sonra
|
||||
|
||||
php artisan make:stream categories advs
|
||||
|
||||
İle bağlı olan diğer kısım
|
||||
|
||||
Oluşan migrationlar içerisine field özellikleri giriliyor.
|
||||
|
||||
Örn:
|
||||
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
'title_column' => 'name',
|
||||
'translatable' => true,
|
||||
'trashable' => false,
|
||||
'searchable' => false,
|
||||
'sortable' => false,
|
||||
];
|
||||
|
||||
/**
|
||||
* The stream assignments.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $assignments = [
|
||||
'name' => [
|
||||
'translatable' => true,
|
||||
'required' => true,
|
||||
],
|
||||
'slug' => [
|
||||
'unique' => true,
|
||||
'required' => true,
|
||||
],
|
||||
'advs_desc',
|
||||
'category',
|
||||
'price',
|
||||
'currency',
|
||||
'online_payment',
|
||||
'stock',
|
||||
'files'
|
||||
];
|
||||
|
||||
Bu bölümler hazır olduktan sonra
|
||||
|
||||
Php artisan addon:install advs
|
||||
|
||||
İle module sisteme yükleniyor.
|
||||
|
||||
Modülde değişiklik yapılacaksa eğer
|
||||
|
||||
Öncelikle php artisan addonn:uninstall advs
|
||||
|
||||
Yazılarak modül silinip değişiklikten sonra tekrar yüklenmeli
|
||||
|
||||
Multilanguage için öncelikle sitenin settings->system bölümünden istenilen diller aktif edilmeli.
|
||||
|
||||
static bölümlerin translate (laravel gibi) her modülün içinde olan resources/lang/ içinden yapılıyor.
|
||||
|
||||
Dinamik alanlar ise ayarlardan multilanguage aktifleştirilince her inputun labelinde bulunan dropdown ile yapılıyor
|
||||
|
||||
## Proje kurulurken dikkat edilmesi gereken husus
|
||||
|
||||
Gelistirme sureci icin proje kurulurken, application name in default olarak ayarlanmasi gerekiyor, bu sekilde ayarlanmadigi takdirde addonlar gozukmeyecektir.
|
||||
|
||||
## Custom view lar ile ilgili...
|
||||
Custom view tanimlayip modulun icinden ulasilmak istenildiginde yapilmasi gerekenler:
|
||||
1) addons/default/visiosoft/modulename/resources/views altina custom bir view dosyasi aciyoruz
|
||||
2) controllerdan bu view a ulasmak icin $this->view->make('visiosoft.module.modulename::modulename/list'); komutunu kullanabiliriz, hata vermemesi icin
|
||||
kullanilan controller'in PublicController class ina extends edilmesi gerekebilir.
|
||||
3) kodun visiosoft.module.modulename kismi, alinda addons/default/visiosoft/modulename/resources/views kismini isaret etmektedir.
|
||||
|
||||
## manuel addon ekleme
|
||||
|
||||
klasör addon altına kopyalanır ve mutlaka composer dump-autoload yapılmalıdır.
|
||||
|
||||
## modül seed yüklemek için
|
||||
|
||||
php artisan db:seed --addon=modül_adi
|
||||
|
||||
## modül ve seed yüklemek için
|
||||
|
||||
php artisan addon:install modül_adi --seed
|
||||
|
||||
OR
|
||||
|
||||
php artisan addon:reinstall modül_adi --seed
|
||||
|
||||
## Ajax Loader Eklemek
|
||||
|
||||
İşlem süresinde kullancıyı loader eklentisi göstererek hem şık bir görüntü hemde boş veri göstermemiş oluruz.
|
||||
Loader Ajax Global Fonksiyonu Aşağıdaki örnekte verilmiştir.
|
||||
|
||||
Örn:
|
||||
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: '/class/getcats/'+ divId,
|
||||
success: function (response) {
|
||||
hideLoader() // işlem bşarılı olursa loader gizle
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader() // işlem süresince loader göster
|
||||
}
|
||||
})
|
||||
|
||||
protected $options = [
|
||||
'redirect' => '/admin/cloudsite',
|
||||
'success_message' => 'visiosoft.module.cloudsite::message.created_site.message',
|
||||
];
|
||||
|
||||
|
||||
|
||||
## Önyüzde Uyarılar
|
||||
|
||||
İşlem sonucunda uyarı göstermek istenebilir.Uyarılar builder'da veya Redirect olarak 2 farklı şekilde gönderilebilir.
|
||||
|
||||
FormBuilder Örn:
|
||||
|
||||
protected $options = [
|
||||
'redirect' => '/admin/cloudsite',
|
||||
'success_message' => 'visiosoft.module.cloudsite::message.created_site.message',
|
||||
];
|
||||
Controller/Redirect Veya Controller/Return Örn:
|
||||
|
||||
return redirect('admin/cats')->with('success', ['Message1.','Message2',...]);
|
||||
|
||||
//OR
|
||||
->with('error', ['Message1.','Message2',...]);
|
||||
//OR
|
||||
->with('warning', ['Message1.','Message2',...]);
|
||||
//OR
|
||||
->with('info', ['Message1.','Message2',...]);
|
||||
|
||||
## Önyüzde Form Builder ileOluşturulan bir form elemanına required özelliği atama
|
||||
|
||||
|
||||
currency Örn:
|
||||
|
||||
<div class="col-sm-3 col-xs-6">
|
||||
{{ form.fields.currency.setAttributes({'required' :true,}).input|raw }}
|
||||
</div>
|
||||
|
||||
|
||||
## Table Builder query kullanımı
|
||||
|
||||
//AdvsTableBuilder.php
|
||||
public function onQuerying(Builder $query)
|
||||
{
|
||||
$query->where('slug', "!=", NULL);
|
||||
}
|
||||
1
addons/.gitkeep
Normal file
1
addons/.gitkeep
Normal file
@ -0,0 +1 @@
|
||||
|
||||
6
addons/default/visiosoft/advs-module/.gitignore
vendored
Normal file
6
addons/default/visiosoft/advs-module/.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
.coverage
|
||||
composer.lock
|
||||
/bin
|
||||
/build
|
||||
/vendor
|
||||
/coverage
|
||||
12
addons/default/visiosoft/advs-module/composer.json
Normal file
12
addons/default/visiosoft/advs-module/composer.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "visiosoft/advs-module",
|
||||
"type": "streams-addon",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Visiosoft\\AdvsModule\\": "src/"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"wirelab/language_switcher-plugin": "^1.3"
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
$factory->define(
|
||||
Visiosoft\AdvsModule\Adv\AdvModel::class,
|
||||
function (Faker\Generator $faker) {
|
||||
return [
|
||||
//'title' => $faker->words(2),
|
||||
];
|
||||
}
|
||||
);
|
||||
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
$factory->define(
|
||||
Visiosoft\AdvsModule\Category\CategoryModel::class,
|
||||
function (Faker\Generator $faker) {
|
||||
return [
|
||||
//'title' => $faker->words(2),
|
||||
];
|
||||
}
|
||||
);
|
||||
@ -0,0 +1,223 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
use Visiosoft\AdvsModule\Adv\AdvModel;
|
||||
use Visiosoft\CatsModule\Category\CategoryModel;
|
||||
use Visiosoft\LocationModule\Country\CountryModel;
|
||||
use Visiosoft\AdvsModule\City\CityModel;
|
||||
use Visiosoft\AdvsModule\CustomField\CustomFieldModel;
|
||||
use Visiosoft\AdvsModule\District\DistrictModel;
|
||||
use Visiosoft\AdvsModule\Neighborhood\NeighborhoodModel;
|
||||
use Anomaly\Streams\Platform\Model\Blocks\BlocksAreasEntryModel;
|
||||
use Anomaly\Streams\Platform\Model\Blocks\BlocksBlocksEntryModel;
|
||||
use Anomaly\Streams\Platform\Model\HtmlBlock\HtmlBlockBlocksEntryModel;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class VisiosoftModuleAdvsCreateAdvsFields extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* The addon fields.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fields = [
|
||||
'name' => 'anomaly.field_type.text',
|
||||
'slug' => [
|
||||
'type' => 'anomaly.field_type.slug',
|
||||
'config' => [
|
||||
'slugify' => 'name',
|
||||
'type' => '_'
|
||||
],
|
||||
],
|
||||
'description' => 'anomaly.field_type.textarea',
|
||||
'advs_desc' => [
|
||||
'type' => 'anomaly.field_type.wysiwyg',
|
||||
'config' => [
|
||||
'height' => 500,
|
||||
],
|
||||
],
|
||||
'cat1' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => 0,
|
||||
]
|
||||
],
|
||||
'cat2' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat3' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat4' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat5' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat6' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'cat7' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
"default_value" => NULL,
|
||||
]
|
||||
],
|
||||
'parent_category' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'config' => [
|
||||
'related' => CategoryModel::class,
|
||||
"default_value" => 0,
|
||||
]
|
||||
],
|
||||
'status' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'config' => [
|
||||
'type' => 'text',
|
||||
'default_value' => 'pending_user'
|
||||
]
|
||||
],
|
||||
'order' => 'anomaly.field_type.integer',
|
||||
'price' => 'anomaly.field_type.decimal',
|
||||
'currency' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
'handler' => 'currencies',
|
||||
],
|
||||
],
|
||||
'stock' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
]
|
||||
],
|
||||
'online_payment' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
'min' => 0,
|
||||
'max' => 9,
|
||||
]
|
||||
],
|
||||
'is_get_adv' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
]
|
||||
],
|
||||
'files' => [
|
||||
'type' => 'visiosoft.field_type.media',
|
||||
'config' => [
|
||||
'folders' => ["images"],
|
||||
'mode' => 'upload',
|
||||
]
|
||||
],
|
||||
'country' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'config' => [
|
||||
'related' => CountryModel::class,
|
||||
"default_value" => 0,
|
||||
]
|
||||
],
|
||||
'city' => [
|
||||
"type" => "anomaly.field_type.select",
|
||||
"config" => [
|
||||
"options" => [],
|
||||
]
|
||||
],
|
||||
'district' => [
|
||||
"type" => "anomaly.field_type.select",
|
||||
"config" => [
|
||||
"options" => [],
|
||||
]
|
||||
],
|
||||
'neighborhood' => [
|
||||
"type" => "anomaly.field_type.select",
|
||||
"config" => [
|
||||
"options" => [],
|
||||
]
|
||||
],
|
||||
'village' => [
|
||||
"type" => "anomaly.field_type.select",
|
||||
"config" => [
|
||||
"options" => [],
|
||||
]
|
||||
],
|
||||
'map_Val' => "anomaly.field_type.text",
|
||||
'parent_country_id' => 'anomaly.field_type.integer',
|
||||
'parent_city_id' => 'anomaly.field_type.integer',
|
||||
'parent_district_id' => 'anomaly.field_type.integer',
|
||||
'parent_neighborhood_id' => 'anomaly.field_type.integer',
|
||||
'publish_at' => 'anomaly.field_type.datetime',
|
||||
'finish_at' => 'anomaly.field_type.datetime',
|
||||
'custom_field_category' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'config' => [
|
||||
'related' => CustomFieldModel::class,
|
||||
],
|
||||
],
|
||||
'parent_adv' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'config' => [
|
||||
'related' => AdvModel::class,
|
||||
],
|
||||
],
|
||||
'custom_field_value' => 'anomaly.field_type.text',
|
||||
'type' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'config' => [
|
||||
'options' => ['text' => 'Text Box', 'select' => 'Secim Alani(Select Box)', 'checkboxes' => 'Coklu Secim(Check Box)', 'multiple' => 'Cok Satirli Alan(Multi Line Box)', 'integer' => 'Tam Sayi', 'colorpicker' => 'Color Picker'],
|
||||
'separator' => ':',
|
||||
]
|
||||
],
|
||||
'custom_field_select_options' => 'anomaly.field_type.text',
|
||||
'popular_adv' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
]
|
||||
],
|
||||
'adv_day' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
]
|
||||
],
|
||||
'custom_field_type' => "anomaly.field_type.text",
|
||||
'cf_json' => "visiosoft.field_type.json",
|
||||
'foreign_currencies' => 'visiosoft.field_type.json',
|
||||
'deleted_at' => "anomaly.field_type.datetime",
|
||||
'value' => 'anomaly.field_type.text',
|
||||
'cover_photo' => 'anomaly.field_type.text',
|
||||
'category_id' => 'anomaly.field_type.integer',
|
||||
'field_id' => 'anomaly.field_type.integer',
|
||||
'custom_field' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'config' => [
|
||||
'related' => CustomFieldModel::class,
|
||||
],
|
||||
],
|
||||
'count_show_phone' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
]
|
||||
],
|
||||
];
|
||||
}
|
||||
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateAdvsStream extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* The stream definition.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
'title_column' => 'name',
|
||||
'translatable' => true,
|
||||
'trashable' => true,
|
||||
'searchable' => false,
|
||||
'sortable' => false,
|
||||
];
|
||||
|
||||
/**
|
||||
* The stream assignments.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $assignments = [
|
||||
'name' => [
|
||||
'translatable' => true,
|
||||
'required' => true,
|
||||
],
|
||||
'slug' => [
|
||||
'required' => true,
|
||||
],
|
||||
'advs_desc',
|
||||
'cat1',
|
||||
'cat2',
|
||||
'cat3',
|
||||
'cat4',
|
||||
'cat5',
|
||||
'cat6',
|
||||
'cat7',
|
||||
'price' => [
|
||||
'required' => true
|
||||
],
|
||||
'currency' => [
|
||||
'required' => true
|
||||
],
|
||||
'foreign_currencies',
|
||||
'online_payment',
|
||||
'is_get_adv',
|
||||
'stock',
|
||||
'country' => [
|
||||
'required' => true
|
||||
],
|
||||
'city' => [
|
||||
'required' => true
|
||||
],
|
||||
'district',
|
||||
'neighborhood',
|
||||
'village',
|
||||
'map_Val',
|
||||
'files',
|
||||
'publish_at',
|
||||
'finish_at',
|
||||
'status',
|
||||
'popular_adv',
|
||||
'adv_day',
|
||||
'cf_json',
|
||||
'cover_photo',
|
||||
'count_show_phone'
|
||||
];
|
||||
|
||||
}
|
||||
@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateCustomFieldsStream extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* The stream definition.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $stream = [
|
||||
'slug' => 'custom_fields',
|
||||
'title_column' => 'name',
|
||||
'translatable' => true,
|
||||
'trashable' => false,
|
||||
'searchable' => false,
|
||||
'sortable' => false,
|
||||
];
|
||||
|
||||
/**
|
||||
* The stream assignments.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $assignments = [
|
||||
'parent_category',
|
||||
'type',
|
||||
'name' => [
|
||||
'translatable' => true,
|
||||
'required' => true,
|
||||
],
|
||||
'slug' => [
|
||||
'unique' => true,
|
||||
'required' => true,
|
||||
],
|
||||
'custom_field_select_options',
|
||||
'description',
|
||||
];
|
||||
|
||||
}
|
||||
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateCustomFieldAdvsStream extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* The stream definition.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $stream = [
|
||||
'slug' => 'custom_field_advs',
|
||||
'translatable' => true,
|
||||
'trashable' => false,
|
||||
'searchable' => false,
|
||||
'sortable' => false,
|
||||
];
|
||||
|
||||
/**
|
||||
* The stream assignments.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $assignments = [
|
||||
'parent_adv',
|
||||
'custom_field_category',
|
||||
'custom_field_value',
|
||||
'custom_field_type'
|
||||
];
|
||||
|
||||
}
|
||||
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateCfValuesStream extends Migration
|
||||
{
|
||||
|
||||
/**
|
||||
* The stream definition.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $stream = [
|
||||
'slug' => 'cf_values',
|
||||
'title_column' => 'value',
|
||||
'translatable' => true,
|
||||
'versionable' => false,
|
||||
'trashable' => false,
|
||||
'searchable' => false,
|
||||
'sortable' => false,
|
||||
];
|
||||
|
||||
/**
|
||||
* The stream assignments.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $assignments = [
|
||||
'custom_field',
|
||||
'value' => [
|
||||
'translatable' => true
|
||||
]
|
||||
];
|
||||
}
|
||||
27
addons/default/visiosoft/advs-module/phpunit.xml
Normal file
27
addons/default/visiosoft/advs-module/phpunit.xml
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit backupGlobals="false"
|
||||
backupStaticAttributes="false"
|
||||
bootstrap="../../../../bootstrap/autoload.php"
|
||||
colors="true"
|
||||
convertErrorsToExceptions="true"
|
||||
convertNoticesToExceptions="true"
|
||||
convertWarningsToExceptions="true"
|
||||
processIsolation="false"
|
||||
stopOnFailure="false">
|
||||
<testsuites>
|
||||
<testsuite name="Addon Test Suite">
|
||||
<directory suffix="Test.php">./tests</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<filter>
|
||||
<whitelist processUncoveredFilesFromWhitelist="true">
|
||||
<directory suffix=".php">./src</directory>
|
||||
</whitelist>
|
||||
</filter>
|
||||
<php>
|
||||
<env name="APP_ENV" value="testing"/>
|
||||
<env name="CACHE_DRIVER" value="array"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
<env name="QUEUE_DRIVER" value="sync"/>
|
||||
</php>
|
||||
</phpunit>
|
||||
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'advs' => [
|
||||
'read',
|
||||
'write',
|
||||
'delete',
|
||||
],
|
||||
'categories' => [
|
||||
'read',
|
||||
'write',
|
||||
'delete',
|
||||
],
|
||||
'village' => [
|
||||
'read',
|
||||
'write',
|
||||
'delete',
|
||||
],
|
||||
];
|
||||
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
];
|
||||
@ -0,0 +1,298 @@
|
||||
<?php
|
||||
|
||||
|
||||
use Anomaly\Streams\Platform\Model\Location\LocationCitiesEntryModel;
|
||||
use Anomaly\Streams\Platform\Model\Location\LocationDistrictsEntryModel;
|
||||
use Visiosoft\LocationModule\Country\CountryModel;
|
||||
|
||||
return [
|
||||
'site_address' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.site_address',
|
||||
'env' => 'ADV_SITE_ADDRESS',
|
||||
'config' => [
|
||||
'default_value' => 'visiosoft.com.tr',
|
||||
'disabled' => true,
|
||||
],
|
||||
],
|
||||
'auto_approve' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'bind' => 'adv.auto_approve',
|
||||
'env' => 'ADV_AUTO_APPROVE',
|
||||
'config' => [
|
||||
'default_value' => true,
|
||||
],
|
||||
],
|
||||
'default_published_time' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'bind' => 'adv.default_published_time',
|
||||
'env' => 'ADV_PUBLISH_TIME',
|
||||
'required' => true,
|
||||
'config' => [
|
||||
'default_value' => 10,
|
||||
],
|
||||
],
|
||||
'default_adv_limit' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'bind' => 'adv.default_adv_limit',
|
||||
'env' => 'ADV_LIMIT',
|
||||
'required' => true,
|
||||
'config' => [
|
||||
'default_value' => 15,
|
||||
],
|
||||
],
|
||||
'address' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.address',
|
||||
'env' => 'ADV_ADDRESS',
|
||||
'config' => [
|
||||
'default_value' => 'Basaksehir Istanbul',
|
||||
],
|
||||
],
|
||||
'phone' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.phone',
|
||||
'env' => 'ADV_PHONE',
|
||||
'config' => [
|
||||
'default_value' => '212 555 55 55',
|
||||
],
|
||||
],
|
||||
|
||||
'default_country' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'bind' => 'adv.default_country',
|
||||
'env' => 'ADV_COUNTRY',
|
||||
'config' => [
|
||||
'related' => CountryModel::class,
|
||||
"default_value" => 212,
|
||||
]
|
||||
],
|
||||
'default_city' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'bind' => 'adv.default_city',
|
||||
'env' => 'ADV_CITY',
|
||||
'config' => [
|
||||
'related' => LocationCitiesEntryModel::class,
|
||||
"default_value" => 34,
|
||||
]
|
||||
],
|
||||
'default_district' => [
|
||||
'type' => 'anomaly.field_type.relationship',
|
||||
'bind' => 'adv.default_district',
|
||||
'env' => 'ADV_DISTRICT',
|
||||
'config' => [
|
||||
'related' => LocationDistrictsEntryModel::class,
|
||||
"default_value" => 1091,
|
||||
]
|
||||
],
|
||||
|
||||
|
||||
'contact_mail' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.contact_mail',
|
||||
'env' => 'ADV_MAIL',
|
||||
'config' => [
|
||||
'default_value' => 'support',
|
||||
],
|
||||
],
|
||||
'google_map_key' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.google_map_key',
|
||||
'env' => 'ADV_MAP_KEY',
|
||||
'config' => [
|
||||
'default_value' => 'AIzaSyCAGc0z8kg9rKGVy2FizFKoz0FoWWWzoGQ',
|
||||
],
|
||||
],
|
||||
'google_statistic_code' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.google_statistic_code',
|
||||
'env' => 'ADV_GOOGLE_STATISTIC_CODE',
|
||||
'config' => [
|
||||
'default_value' => '',
|
||||
],
|
||||
],
|
||||
'map_coordinates_long' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.map_coordinates_long',
|
||||
'env' => 'ADV_MAP_LONG',
|
||||
'config' => [
|
||||
'default_value' => '28.74558607285155',
|
||||
],
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.map_coordinates_lat',
|
||||
'env' => 'ADV_MAP_LAT',
|
||||
'config' => [
|
||||
'default_value' => '40.97817786299617',
|
||||
],
|
||||
],
|
||||
'logo' => [
|
||||
'type' => 'anomaly.field_type.file',
|
||||
'bind' => 'adv.logo',
|
||||
'env' => 'ADV_LOGO',
|
||||
'config' => [
|
||||
'folders' => ["images"],
|
||||
'mode' => 'upload',
|
||||
]
|
||||
],
|
||||
'ogImage' => [
|
||||
'type' => 'anomaly.field_type.file',
|
||||
'bind' => 'adv.ogImage',
|
||||
'env' => 'ADV_OG_IMAGE',
|
||||
'config' => [
|
||||
'folders' => ["images"],
|
||||
'mode' => 'upload',
|
||||
]
|
||||
],
|
||||
'currencies' => [
|
||||
"type" => "anomaly.field_type.checkboxes",
|
||||
'bind' => 'adv.currencies',
|
||||
'env' => 'ADV_CURRENCIES',
|
||||
'config' => [
|
||||
"default_value" => 'a:1:{i:0;s:1:"0";}',
|
||||
'options' => Config::get('streams::currencies.enabled')
|
||||
]
|
||||
],
|
||||
'free_currencyconverterapi_key' => [
|
||||
"type" => "anomaly.field_type.text",
|
||||
'bind' => 'adv.free_currencyconverterapi_key',
|
||||
'env' => 'ADV_CURRENCY_CONVERT_API_KEY',
|
||||
'config' => [
|
||||
"default_value" => "1eea72940f3868c77420"
|
||||
]
|
||||
],
|
||||
'default_currency' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'bind' => 'adv.default_currency',
|
||||
'env' => 'ADV_CURRENCY',
|
||||
'config' => [
|
||||
'handler' => 'currencies',
|
||||
"default_value" => 'USD',
|
||||
],
|
||||
],
|
||||
'default_GET' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'bind' => 'adv.default_GET',
|
||||
'env' => 'ADV_GET',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
'options' => [
|
||||
0 => 'False',
|
||||
1 => 'True',
|
||||
],
|
||||
],
|
||||
],
|
||||
'twitter' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.twitter',
|
||||
'env' => 'ADV_TWITTER',
|
||||
'config' => [
|
||||
'default_value' => '/twitter.com/visiosoft'
|
||||
]
|
||||
],
|
||||
'facebook' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.facebook',
|
||||
'env' => 'ADV_FACEBOOK',
|
||||
'config' => [
|
||||
'default_value' => '/facebook.com/visiosoft'
|
||||
]
|
||||
],
|
||||
'youtube' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.youtube',
|
||||
'env' => 'ADV_YOUTUBE',
|
||||
'config' => [
|
||||
'default_value' => '/youtube.com/visiosoft'
|
||||
]
|
||||
],
|
||||
'google' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.google',
|
||||
'env' => 'ADV_GOOGLE',
|
||||
'config' => [
|
||||
'default_value' => '/plus.google.com/visiosoft'
|
||||
]
|
||||
],
|
||||
'watermark_type' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'bind' => 'adv.watermark_type',
|
||||
'env' => 'ADV_WATERMARK_TYPE',
|
||||
'required' => true,
|
||||
'config' => [
|
||||
'options' => ['image' => 'Image', 'text' => 'Text'],
|
||||
'default_value' => 'text',
|
||||
]
|
||||
],
|
||||
'watermark_text' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.watermark_text',
|
||||
'env' => 'ADV_WATERMARK_TEXT',
|
||||
],
|
||||
'watermark_image' => [
|
||||
'type' => 'anomaly.field_type.file',
|
||||
'bind' => 'adv.watermark_image',
|
||||
'env' => 'ADV_WATERMARK_IMAGE',
|
||||
'config' => [
|
||||
'default_value' => '',
|
||||
],
|
||||
],
|
||||
'watermark_position' => [
|
||||
'type' => 'anomaly.field_type.select',
|
||||
'bind' => 'adv.watermark_position',
|
||||
'env' => 'ADV_WATERMARK_POSITION',
|
||||
'required' => true,
|
||||
'config' => [
|
||||
'options' => ['top-right' => 'Top Right', 'top-left' => 'Top Left', 'bottom-right' => 'Bottom Right', 'bottom-left' => 'Bottom Left', 'center' => 'Middle'],
|
||||
'default_value' => 'top-right',
|
||||
]
|
||||
],
|
||||
'watermark_opacity' => [
|
||||
'type' => 'anomaly.field_type.text',
|
||||
'bind' => 'adv.watermark_opacity',
|
||||
'env' => 'ADV_WATERMARK_OPACITY',
|
||||
'config' => [
|
||||
'default_value' => '80',
|
||||
],
|
||||
],
|
||||
|
||||
'listing_page_image' => [
|
||||
'type' => 'anomaly.field_type.file',
|
||||
'bind' => 'adv.listing_page_image',
|
||||
'env' => 'ADV_LISTING_PAGE_IMAGE',
|
||||
'config' => [
|
||||
'folders' => ["adv_listing_page"],
|
||||
'mode' => 'upload',
|
||||
]
|
||||
],
|
||||
|
||||
'enabled_currencies' => [
|
||||
'bind' => 'streams::currencies.enabled',
|
||||
'env' => 'ADV_ENABLED_CURRENCIES',
|
||||
'type' => 'anomaly.field_type.checkboxes',
|
||||
'required' => true,
|
||||
'config' => [
|
||||
'default_value' => function () {
|
||||
return [config('streams::currencies.default')];
|
||||
},
|
||||
'options' => function () {
|
||||
$json = file_get_contents("https://openexchangerates.org/api/currencies.json");
|
||||
$cur = array();
|
||||
foreach(json_decode($json, true) as $key => $value){
|
||||
$cur[$key] = $value;
|
||||
}
|
||||
return $cur;
|
||||
// return array_combine(
|
||||
// $keys = array_keys($config->get('streams::locales.supported')),
|
||||
// array_map(
|
||||
// function ($locale) {
|
||||
// return trans('streams::locale.' . $locale . '.name') . ' (' . $locale . ')';
|
||||
// },
|
||||
// $keys
|
||||
// )
|
||||
// );
|
||||
},
|
||||
],
|
||||
],
|
||||
];
|
||||
@ -0,0 +1,30 @@
|
||||
@media only screen and (min-width: 1004px) and (max-width: 1366px) {
|
||||
.advs-desc {
|
||||
width: 200px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 1367px) {
|
||||
.advs-desc {
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
-webkit-line-clamp: 1;
|
||||
white-space: nowrap;
|
||||
width: 300px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
.advs-name {
|
||||
width: 20%;
|
||||
overflow: hidden;
|
||||
word-wrap: break-word;
|
||||
white-space: pre-line;
|
||||
text-overflow: ellipsis;
|
||||
-webkit-line-clamp: 1;
|
||||
}
|
||||
.advs-status {
|
||||
width: 5%;
|
||||
}
|
||||
.advs-cat1 , advs-country , .advs-currency , .advs-price {
|
||||
width: 5%;
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,31 @@
|
||||
$(document).ready(function () {
|
||||
const query = {};
|
||||
query.getParentCats = (id) => {
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: '/categories/checkparent/' + id,
|
||||
success: function (response) {
|
||||
hideLoader()
|
||||
var array = response.reverse();
|
||||
for(var i=0;i<array.length;i++){
|
||||
if (i != 0) {
|
||||
array[i]=" > " + array[i];
|
||||
}
|
||||
}
|
||||
$('[name="parent_category"] option[value="'+ id + '"]').html(array);
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader()
|
||||
},
|
||||
error:function (err) {
|
||||
return 'it broke';
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
$('[name="parent_category"] option').each(function (value) {
|
||||
if (value != 0) {
|
||||
query.getParentCats(value);
|
||||
}
|
||||
});
|
||||
});
|
||||
167
addons/default/visiosoft/advs-module/resources/js/admin-list.js
Normal file
167
addons/default/visiosoft/advs-module/resources/js/admin-list.js
Normal file
@ -0,0 +1,167 @@
|
||||
const filter = {};
|
||||
|
||||
filter.checkUser = () => {
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: '/check_user',
|
||||
success: function (response) {
|
||||
if (response.success == true) {
|
||||
$('#search-fav-modal').modal('toggle');
|
||||
} else {
|
||||
window.location.replace("/login");
|
||||
}
|
||||
},
|
||||
error: function (err) {
|
||||
reject(Error("It broke"));
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
$('.sort-by-item').on('click', function () {
|
||||
let searchParams = new URLSearchParams(window.location.search);
|
||||
var sort_by = searchParams.get('sort_by');
|
||||
var url = window.location.href;
|
||||
var goURL = "";
|
||||
var value = $(this).attr('data-value');
|
||||
if (window.location.search == "") {
|
||||
goURL = url + "?sort_by=" + value;
|
||||
} else if (searchParams.has('sort_by')) {
|
||||
var parameters = "";
|
||||
if (value != 'all') {
|
||||
parameters = "&sort_by=" + value;
|
||||
}
|
||||
goURL = location.href.replace("&sort_by=" + sort_by, parameters);
|
||||
} else {
|
||||
goURL = url + "&sort_by=" + value;
|
||||
}
|
||||
window.location.replace(goURL);
|
||||
})
|
||||
|
||||
|
||||
$('.ad-info-right-bar-video').on('click', function () {
|
||||
$(".video-ad-tooltip-" + $(this).attr('data-id'))[0].play();
|
||||
$(".video-ad-tooltip-" + $(this).attr('data-id'))[0].controls = false;
|
||||
})
|
||||
|
||||
|
||||
$(document).ready(function () {
|
||||
let searchParams = new URLSearchParams(window.location.search);
|
||||
|
||||
var checked = $('.cf-li-item input:checked');
|
||||
checked.each(function (index, option) {
|
||||
var elementName = ".span" + option.value;
|
||||
var name = $(elementName).html();
|
||||
$('.category-tabs').append('<button value="' + elementName + '" class="btn btn-success cat-tab">' + name + '</button>\n')
|
||||
});
|
||||
|
||||
$("#min-price").val(searchParams.get('min-price'));
|
||||
$("#max-price").val(searchParams.get('max-price'));
|
||||
|
||||
|
||||
var sort_by = searchParams.get('sort_by');
|
||||
|
||||
if (sort_by != null) {
|
||||
$('.sort-by-selected-text').html($('.sort-by-item[data-value=' + sort_by + ']').html());
|
||||
}
|
||||
|
||||
|
||||
$('#approved').on('click', function () {
|
||||
var id = $(this).val();
|
||||
var type = $(this).attr('id');
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: '/admin/class/actions/' + id + "," + type,
|
||||
success: function (response) {
|
||||
hideLoader()
|
||||
$('#approved').html("Onaylandi");
|
||||
$('#declined').html('Reddet');
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader()
|
||||
},
|
||||
error: function (err) {
|
||||
reject(Error("It broke"));
|
||||
}
|
||||
});
|
||||
});
|
||||
$('#declined').on('click', function () {
|
||||
var id = $(this).val();
|
||||
var type = $(this).attr('id');
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: '/admin/class/actions/' + id + "," + type,
|
||||
success: function (response) {
|
||||
hideLoader()
|
||||
$('#declined').html('Reddedildi');
|
||||
$('#approved').html('Onayla');
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader()
|
||||
},
|
||||
error: function (err) {
|
||||
reject(Error("It broke"));
|
||||
}
|
||||
});
|
||||
});
|
||||
$('#passive').on('click', function () {
|
||||
var id = $(this).val();
|
||||
var type = $(this).attr('id');
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: '/admin/class/actions/' + id + "," + type,
|
||||
success: function (response) {
|
||||
hideLoader()
|
||||
$('#declined').html('Reddet');
|
||||
$('#approved').html('Onayla');
|
||||
$('#passive').html('Aktif Et').attr('id', 'pending_admin');
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader()
|
||||
},
|
||||
error: function (err) {
|
||||
reject(Error("It broke"));
|
||||
}
|
||||
});
|
||||
});
|
||||
$('#pending_admin').on('click', function () {
|
||||
var id = $(this).val();
|
||||
var type = $(this).attr('id');
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: '/admin/class/actions/' + id + "," + type,
|
||||
success: function (response) {
|
||||
hideLoader()
|
||||
$('#declined').html('Reddet');
|
||||
$('#approved').html('Onayla');
|
||||
$('#pending_admin').html('Pasif Et').attr('id', 'passive');
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader()
|
||||
},
|
||||
error: function (err) {
|
||||
reject(Error("It broke"));
|
||||
}
|
||||
});
|
||||
});
|
||||
$('.cat-tab').on('click', function () {
|
||||
var value = $(this).val();
|
||||
$(value).prev('input').prop('checked', false);
|
||||
$(this).hide();
|
||||
});
|
||||
|
||||
$('#save-search').on('click', function () {
|
||||
filter.checkUser();
|
||||
});
|
||||
});
|
||||
|
||||
$('.ad-info-right-bar-video').tooltip({
|
||||
animated: 'fade',
|
||||
placement: 'bottom',
|
||||
html: true
|
||||
});
|
||||
|
||||
|
||||
|
||||
70
addons/default/visiosoft/advs-module/resources/js/cats.js
Normal file
70
addons/default/visiosoft/advs-module/resources/js/cats.js
Normal file
@ -0,0 +1,70 @@
|
||||
$(document).ready(function () {
|
||||
$('select[name="cat1"], select[name="cat2"], select[name="cat3"], ' +
|
||||
'select[name="cat4"], select[name="cat5"], select[name="cat6"], select[name="cat7"]').on('change', function () {
|
||||
var all = $(this).val();
|
||||
$(this).val(all[all.length-1])
|
||||
})
|
||||
|
||||
const filter = {};
|
||||
filter.getCats = (catId, divId) => {
|
||||
console.log(catId,divId)
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: '/class/getcats/'+ divId,
|
||||
success: function (response) {
|
||||
hideLoader()
|
||||
if(response['title'] != undefined){
|
||||
var btn = '<button type="submit" class="btn-1">'+response['nextBtn']+'</button>'
|
||||
if(response['link'] != "")
|
||||
{
|
||||
btn = "<a class='btn btn-primary' href='"+response['link']+"' role='button'>"+response['nextBtn']+"</a>";
|
||||
}
|
||||
$('.cat-item-3').html(
|
||||
'<div class="section next-stap post-option">' +
|
||||
'<h2>'+response['title']+'</h2>' +
|
||||
'<p>'+response['msg']+'</p>' +
|
||||
'<div class="btn-section btn-next">' +
|
||||
btn +
|
||||
'<a href="/" class="btn-info">'+response['cancelBtn']+'</a></div></div>'
|
||||
);
|
||||
$('.cat-item-3').show();
|
||||
stop();
|
||||
}
|
||||
else {
|
||||
response.forEach(function(options){
|
||||
$(catId).append("<option value="+options.id+">"+options.name+"</option>").closest('.cat-item-2').show();
|
||||
});
|
||||
}
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader()
|
||||
}
|
||||
})
|
||||
};
|
||||
|
||||
filter.hideCats = (num) => {
|
||||
var startNo = num;
|
||||
var endNo = 6;
|
||||
|
||||
while (startNo <= endNo) {
|
||||
$('#cat'+ startNo).html("").closest('.cat-item-2').hide();
|
||||
$('.cat-item-3').hide();
|
||||
startNo++;
|
||||
}
|
||||
};
|
||||
|
||||
for (var i = 1; i <= 6; i++) {
|
||||
(function(){
|
||||
var ii = i;
|
||||
$('#cat'+i).on('change', function (i,e) {
|
||||
divId = $(this).find('option:selected').val();
|
||||
if (divId == 0) {
|
||||
filter.hideCats(ii+1);
|
||||
}
|
||||
filter.hideCats(ii+1);
|
||||
filter.getCats("#cat"+(ii+1), divId);
|
||||
});
|
||||
})();
|
||||
}
|
||||
|
||||
});
|
||||
@ -0,0 +1,10 @@
|
||||
var catId;
|
||||
$('.add_custom_field').on('click', function () {
|
||||
catId = $(this).attr('data-content');
|
||||
});
|
||||
|
||||
function custom_field (attr) {
|
||||
var link = attr + "&id=" + catId;
|
||||
window.location.href = link;
|
||||
}
|
||||
|
||||
26
addons/default/visiosoft/advs-module/resources/js/favs.js
Normal file
26
addons/default/visiosoft/advs-module/resources/js/favs.js
Normal file
@ -0,0 +1,26 @@
|
||||
const fav = {};
|
||||
|
||||
fav.checkFav = (id, type, divId, iconId) => {
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: '/favs/check_favorites/'+ id+"/" +type,
|
||||
success: function (response) {
|
||||
if(response.length == 0) {
|
||||
$(divId).attr("href", "/favs/add_fav/" + id+ "/"+type);
|
||||
$(iconId).attr("class", "fa fa-heart-o");
|
||||
} else {
|
||||
$(divId).attr("href", "/favs/delete_fav/" + id + "/" + "adv");
|
||||
$(iconId).attr("class", "fa fa-heart");
|
||||
}
|
||||
},
|
||||
error:function (err) {
|
||||
// reject(Error("It broke"));
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
var id = $('#adv_id').val();
|
||||
var owner = $('#owner').data('content');
|
||||
|
||||
fav.checkFav(id,'adv', '.favorites', '#heart-icon-adv');
|
||||
fav.checkFav(owner,'seller', '#owner-fav', '#heart-icon-seller');
|
||||
@ -0,0 +1,155 @@
|
||||
let searchParams = new URLSearchParams(window.location.search);
|
||||
|
||||
//Set Select2 Type for Location Fields
|
||||
$('#cities, #countries, #districts, #neighborhoods, #village').select2({
|
||||
placeholder: select_trans
|
||||
});
|
||||
|
||||
|
||||
FindLocations = (id, table, typeDb, divId, paramName = null) => {
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: '/getlocations',
|
||||
data: {
|
||||
id: id,
|
||||
table: table,
|
||||
typeDb: typeDb,
|
||||
},
|
||||
success: function (response) {
|
||||
setLocations(response, id, table, typeDb, divId, paramName);
|
||||
return response;
|
||||
},
|
||||
error: function (err) {
|
||||
reject(Error("It broke"));
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
setLocations = (response, id, table, typeDb, divId, paramName) => {
|
||||
|
||||
//Add Options
|
||||
if(divId != "#cities")
|
||||
{
|
||||
$(divId).append("<option value></option>")
|
||||
}
|
||||
response.forEach(function (options) {
|
||||
$(divId).append("<option value=" + options.id + ">" + options.name + "</option>")
|
||||
});
|
||||
|
||||
//Set Selected Option
|
||||
if (paramName != null) {
|
||||
if (divId == "#cities") {
|
||||
$('#countries').val(searchParams.get('country'));
|
||||
$('#countries').select2();
|
||||
$('#cities').val(findParam("city[]"));
|
||||
} else {
|
||||
$(divId).val(searchParams.get(paramName));
|
||||
}
|
||||
$(divId).select2();
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
//Category Change
|
||||
$('#countries').on('change', function () {
|
||||
$('#cities').empty();
|
||||
var table = "cities";
|
||||
var typeDb = 'parent_country_id';
|
||||
var id = $('#countries').val();
|
||||
var divId = "#cities";
|
||||
|
||||
FindLocations(id, table, typeDb, divId);
|
||||
});
|
||||
|
||||
//City Change
|
||||
$('#cities, .select2-selection__choice__remove').on('change', function () {
|
||||
$('#districts').empty();
|
||||
var table = "districts";
|
||||
var typeDb = 'parent_city_id';
|
||||
var id = $('#cities').val();
|
||||
var divId = "#districts";
|
||||
|
||||
FindLocations(id, table, typeDb, divId);
|
||||
});
|
||||
|
||||
//Districts Change
|
||||
$('#districts').on('change', function () {
|
||||
var table = "neighborhoods";
|
||||
var typeDb = 'parent_district_id';
|
||||
var id = $('#districts').val();
|
||||
var divId = "#neighborhoods";
|
||||
|
||||
FindLocations(id, table, typeDb, divId);
|
||||
});
|
||||
|
||||
//Neighborhoods Change
|
||||
$('#neighborhoods').on('change', function () {
|
||||
var table = "village";
|
||||
var typeDb = 'parent_neighborhood_id';
|
||||
var id = $('#neighborhoods').val();
|
||||
var divId = "#village";
|
||||
|
||||
FindLocations(id, table, typeDb, divId);
|
||||
});
|
||||
|
||||
|
||||
jQuery(document).ready(function ($) {
|
||||
|
||||
}).promise().done(function () {
|
||||
|
||||
//Get City && Set Country
|
||||
if (searchParams.get('country') != '') {
|
||||
$('#cities').empty();
|
||||
var table = "cities";
|
||||
var typeDb = 'parent_country_id';
|
||||
var id = searchParams.get('country');
|
||||
var divId = "#cities";
|
||||
var paramName = 'city';
|
||||
|
||||
FindLocations(id, table, typeDb, divId, paramName);
|
||||
}
|
||||
|
||||
}).promise().done(function () {
|
||||
|
||||
//get District && set city
|
||||
if (findParam('city[]').length) {
|
||||
$('#districts').empty();
|
||||
var table = "districts";
|
||||
var typeDb = 'parent_city_id';
|
||||
var id = findParam('city[]');
|
||||
var divId = "#districts";
|
||||
var paramName = 'district';
|
||||
|
||||
FindLocations(id, table, typeDb, divId, paramName);
|
||||
}
|
||||
|
||||
}).promise().done(function () {
|
||||
|
||||
//get neighborhood && set districts
|
||||
if (searchParams.get('district') != '') {
|
||||
$('#neighborhoods').empty();
|
||||
var table = "neighborhoods";
|
||||
var typeDb = 'parent_district_id';
|
||||
var id = searchParams.get('district');
|
||||
var divId = "#neighborhoods";
|
||||
var paramName = 'neighborhood';
|
||||
|
||||
FindLocations(id, table, typeDb, divId, paramName);
|
||||
}
|
||||
|
||||
}).promise().done(function () {
|
||||
|
||||
//get village && set neighborhoods
|
||||
if (searchParams.get('neighborhood') != '') {
|
||||
$('#village').empty();
|
||||
var table = "village";
|
||||
var typeDb = 'parent_neighborhood_id';
|
||||
var id = searchParams.get('neighborhood');
|
||||
var divId = "#village";
|
||||
var paramName = 'village';
|
||||
|
||||
FindLocations(id, table, typeDb, divId, paramName);
|
||||
}
|
||||
|
||||
});
|
||||
@ -0,0 +1,42 @@
|
||||
|
||||
|
||||
$('#complaints').on('click', function () {
|
||||
$('#complaints_modal').modal('toggle');
|
||||
});
|
||||
|
||||
$('#message').on('click', function () {
|
||||
if ($('#adv_id').data('content') == $('#message').data('content')) {
|
||||
alert("You can't send messages to your own ad.")
|
||||
} else {
|
||||
$('#messages_modal').modal('toggle');
|
||||
}
|
||||
});
|
||||
|
||||
$('#message-button').on('click', function () {
|
||||
var id = $('#adv-id').val();
|
||||
var detail = $('#message-detail').val();
|
||||
var token = $('#message-token').val();
|
||||
$.post('/api/message/'+id+'/save',
|
||||
{
|
||||
detail: detail,
|
||||
_token: token,
|
||||
},
|
||||
function(data, status){
|
||||
if (status == "success") {
|
||||
$('#messages_modal').modal('toggle');
|
||||
$('#message-sent-modal').modal('toggle');
|
||||
} else {
|
||||
$('#messages_modal').modal('toggle');
|
||||
alert('Failed');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
$('#complaint-radio').on('click', function () {
|
||||
$(this).closest("textarea").toggle();
|
||||
});
|
||||
|
||||
|
||||
function openVideo(){
|
||||
$("#adv-video").modal("show");
|
||||
}
|
||||
@ -0,0 +1,3 @@
|
||||
$(".clickable-row").click(function () {
|
||||
window.location = $(this).data("href");
|
||||
});
|
||||
199
addons/default/visiosoft/advs-module/resources/js/location.js
Normal file
199
addons/default/visiosoft/advs-module/resources/js/location.js
Normal file
@ -0,0 +1,199 @@
|
||||
/* Location Data */
|
||||
var getCountry = $('.country-data').data('content');
|
||||
if(getCountry == ""){getCountry = default_country;}
|
||||
var getCity = $('.city-data').data('content');
|
||||
if(getCity == ""){getCity = default_city;}
|
||||
var getDistrict = $('.district-data').data('content');
|
||||
if(getDistrict == ""){getDistrict = default_district;}
|
||||
var getNeighborhood = $('.neighborhood-data').data('content');
|
||||
if(getNeighborhood == ""){getNeighborhood = default_neighborhood;}
|
||||
var getVillage = $('.village-data').data('content');
|
||||
var citySelectName = "city";
|
||||
var districtSelectName = "district";
|
||||
var neighborhoodSelectName = "neighborhood";
|
||||
var villageSelectName = "village";
|
||||
var countrySelectName = "country";
|
||||
jQuery( document ).ready(function( $ ) {
|
||||
|
||||
}).promise().done(function() {
|
||||
$('select[name="country"]').val(getCountry);
|
||||
}).promise().done(function() {
|
||||
var cat = getCountry;
|
||||
var level = 1;
|
||||
var name = citySelectName;
|
||||
Locations(cat, level, name);
|
||||
}).promise().done(function() {
|
||||
var cat = getCity;
|
||||
var level = 2;
|
||||
var name = districtSelectName;
|
||||
Locations(cat, level, name);
|
||||
}).promise().done(function() {
|
||||
var cat = getDistrict;
|
||||
var level = 3;
|
||||
var name = neighborhoodSelectName;
|
||||
Locations(cat, level, name);
|
||||
}).promise().done(function() {
|
||||
var cat = getNeighborhood;
|
||||
var level = 4;
|
||||
var name = villageSelectName;
|
||||
Locations(cat, level, name);
|
||||
});
|
||||
|
||||
$(document).on('change', 'select[name="'+countrySelectName+'"]', function(){
|
||||
var cat = $(this).val();
|
||||
var level = 1;
|
||||
var name = citySelectName;
|
||||
Locations(cat, level, name);
|
||||
});
|
||||
$(document).on('change', 'select[name="'+citySelectName+'"]', function(){
|
||||
var cat = $(this).val();
|
||||
var level = 2;
|
||||
var name = districtSelectName;
|
||||
Locations(cat, level, name)
|
||||
});
|
||||
$(document).on('change', 'select[name="'+districtSelectName+'"]', function(){
|
||||
var cat = $(this).val();
|
||||
var level = 3;
|
||||
var name = neighborhoodSelectName;
|
||||
Locations(cat, level, name)
|
||||
});
|
||||
$(document).on('change', 'select[name="'+neighborhoodSelectName+'"]', function(){
|
||||
var cat = $(this).val();
|
||||
var level = 4;
|
||||
var name = villageSelectName;
|
||||
Locations(cat, level, name)
|
||||
});
|
||||
function Locations(cat, level, name){
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
data: "cat=" + cat + "&level=" + level,
|
||||
url: "/class/ajax",
|
||||
success: function(msg){
|
||||
hideLoader()
|
||||
$('select[name="'+name+'"]').find('option').remove();
|
||||
$('select[name="'+name+'"]').append('<option value="">Choose an option...</option>');
|
||||
$.each(msg, function(key, value){
|
||||
$('select[name="'+name+'"]').append('<option value="'+value.id+'">'+value.name+'</option>');
|
||||
});
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader()
|
||||
}
|
||||
}).promise().done(function() {
|
||||
setLocation(level)
|
||||
if(level==3){
|
||||
console.log(level);
|
||||
haritaIslem(0);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function setLocation(level){
|
||||
if(level == 1){
|
||||
$('select[name="'+citySelectName+'"]').val(getCity);
|
||||
}else if(level == 2){
|
||||
$('select[name="'+districtSelectName+'"]').val(getDistrict);
|
||||
}else if(level == 3){
|
||||
$('select[name="'+neighborhoodSelectName+'"]').val(getNeighborhood);
|
||||
}else if(level == 4){
|
||||
$('select[name="'+villageSelectName+'"]').val(getVillage);
|
||||
}
|
||||
}
|
||||
|
||||
var locationedit = $('input[name="map_Val"]').val();
|
||||
if(locationedit){
|
||||
var coordcenter = new google.maps.LatLng(locationedit);
|
||||
}else{
|
||||
var coordcenter = new google.maps.LatLng(38.9573415, 35.2415759);
|
||||
}
|
||||
console.log(locationedit);
|
||||
var mapOptions = {
|
||||
|
||||
center: coordcenter,
|
||||
zoom: 6,
|
||||
mapTypeId: google.maps.MapTypeId.STREET
|
||||
};
|
||||
var secildi = 0;
|
||||
var marker;
|
||||
var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
|
||||
|
||||
function haritaIslem() {
|
||||
var str = '';
|
||||
if ($('select[name="'+countrySelectName+'"]').val() != "") {
|
||||
str += $('select[name="'+countrySelectName+'"] :selected').text() + ' ';
|
||||
}
|
||||
if ($('select[name="'+citySelectName+'"]').val() != "") {
|
||||
str += $('select[name="'+citySelectName+'"] :selected').text() + ' ';
|
||||
}
|
||||
if ($('select[name="'+districtSelectName+'"]').val() != "") {
|
||||
str += $('select[name="'+districtSelectName+'"] :selected').text() + ' ';
|
||||
}
|
||||
if ($('select[name="'+neighborhoodSelectName+'"]').val() != "") {
|
||||
str += $('select[name="'+neighborhoodSelectName+'"] :selected').text() + ' ';
|
||||
}
|
||||
|
||||
if (!str) {
|
||||
return true;
|
||||
}
|
||||
str = str.replace(/\(.+\)/g, "").replace(' ', ' ');
|
||||
|
||||
var geocoder = new google.maps.Geocoder();
|
||||
geocoder.geocode({'address': str}, function (results, status) {
|
||||
if (status == google.maps.GeocoderStatus.OK) {
|
||||
var searchLoc = results[0].geometry.location;
|
||||
var lat = results[0].geometry.location.lat();
|
||||
var lng = results[0].geometry.location.lng();
|
||||
var latlng = new google.maps.LatLng(lat, lng);
|
||||
var bounds = results[0].geometry.bounds;
|
||||
|
||||
if (bounds != undefined) {
|
||||
map.fitBounds(bounds);
|
||||
}
|
||||
}
|
||||
if ($('select[name="'+neighborhoodSelectName+'"]').val() != "" && $('select[name="'+neighborhoodSelectName+'"]').val() != 0 && secildi == 0) {
|
||||
secildi = 1;
|
||||
google.maps.event.addListener(map, 'click', function (event) {
|
||||
placeMarker(event.latLng);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function placeMarker(location) {
|
||||
console.log(location);
|
||||
var lat = location.lat();
|
||||
var lng = location.lng();
|
||||
$(".mapVal").val(lat + "," + lng);
|
||||
if (marker) {
|
||||
marker.setPosition(location);
|
||||
$("#map").data(lat+","+lng);
|
||||
} else {
|
||||
marker = new google.maps.Marker({
|
||||
position: location,
|
||||
map: map
|
||||
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
editMarket();
|
||||
function editMarket() {
|
||||
console.log($('input[name="map_Val"]'));
|
||||
var locationedit = $('input[name="map_Val"]').val();
|
||||
if($('input[name="map_Val"]')){
|
||||
var lat = locationedit.split(",")[0];
|
||||
var lng = locationedit.split(",")[1];
|
||||
var location = new google.maps.LatLng(lat, lng);
|
||||
$(".mapVal").val($('input[name="map_Val"]'));
|
||||
if (marker) {
|
||||
marker.setPosition(location);
|
||||
$("#map").data(lat+","+lng);
|
||||
} else {
|
||||
marker = new google.maps.Marker({
|
||||
position: location,
|
||||
map: map
|
||||
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
26
addons/default/visiosoft/advs-module/resources/js/map.js
Normal file
26
addons/default/visiosoft/advs-module/resources/js/map.js
Normal file
@ -0,0 +1,26 @@
|
||||
// Initialize and add the map
|
||||
function loadScript(src,callback){
|
||||
var script = document.createElement("script");
|
||||
script.type = "text/javascript";
|
||||
if(callback)script.onload=callback;
|
||||
document.getElementsByTagName("head")[0].appendChild(script);
|
||||
script.src = src;
|
||||
}
|
||||
|
||||
loadScript('https://maps.googleapis.com/maps/api/js?key=AIzaSyCAGc0z8kg9rKGVy2FizFKoz0FoWWWzoGQ&callback=initMap');
|
||||
|
||||
function initMap() {
|
||||
// The location of Uluru
|
||||
|
||||
var lat = $('#lat').data();
|
||||
var long = $('#long').data();
|
||||
|
||||
console.log(lat);
|
||||
|
||||
var uluru = {lat: Number(lat['content']), lng: Number(long['content'])};
|
||||
// The map, centered at Uluru
|
||||
var map = new google.maps.Map(
|
||||
document.getElementById('page-map'), {zoom: 10, center: uluru});
|
||||
// The marker, positioned at Uluru
|
||||
var marker = new google.maps.Marker({position: uluru, map: map});
|
||||
}
|
||||
@ -0,0 +1,65 @@
|
||||
const filter = {};
|
||||
|
||||
// TODO will be unified
|
||||
|
||||
|
||||
filter.getCats = (catId, divId) => {
|
||||
$.ajax({
|
||||
type: 'get',
|
||||
url: '/class/getcats/'+ divId,
|
||||
success: function (response) {
|
||||
hideLoader()
|
||||
if(response == 0){
|
||||
stop();
|
||||
}
|
||||
else {
|
||||
response.forEach(function(options){
|
||||
$(catId).append("<option value="+options.id+">"+options.name+"</option>");
|
||||
$(catId).closest('li').show();
|
||||
});
|
||||
}
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader()
|
||||
}
|
||||
})
|
||||
};
|
||||
|
||||
$(document).ready(function () {
|
||||
$("select[name='currency']").val(default_currency);
|
||||
if(default_GET == 1)
|
||||
{
|
||||
$('#is_get_adv').prop('checked', true);
|
||||
}
|
||||
});
|
||||
|
||||
$(document).on('change', '.sub_cats', function(){
|
||||
divId = $(this).find('option:selected').val();
|
||||
if (divId == 0) {
|
||||
$(this).parent().nextAll().remove();
|
||||
} else
|
||||
filter.callCats(divId);
|
||||
});
|
||||
function getAdv(){
|
||||
if (document.getElementById('getMethod').checked){
|
||||
var val = $('input[name=price]').val();
|
||||
val = val*90/100;
|
||||
$("#priceLi").append('<input type="number" class="form-control" disabled id="getprice" value="'+val+'">');
|
||||
} else {
|
||||
$("#getprice").remove();
|
||||
}
|
||||
}
|
||||
$('input[name=price]').bind('keyup change', function () {
|
||||
var val = $('input[name=price]').val();
|
||||
val = val*90/100;
|
||||
$("#getprice").val(val);
|
||||
});
|
||||
|
||||
|
||||
|
||||
$('input[name="price"]').on('click', function () {
|
||||
if($(this).val() == "0.00")
|
||||
{
|
||||
$(this).val("");
|
||||
}
|
||||
})
|
||||
@ -0,0 +1,37 @@
|
||||
function sendCount() {
|
||||
var id = $('.show-number').attr('data-id');
|
||||
if (id != "") {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: '/ajax/countPhone',
|
||||
data: 'id=' + id,
|
||||
success: function (data) {
|
||||
hideLoader()
|
||||
$('.show-number').removeAttr('data-function');
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader()
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------
|
||||
// Show Mobile Number
|
||||
// -------------------------------------------------------------
|
||||
|
||||
(function () {
|
||||
$('.show-number').on('click', function () {
|
||||
this.addEventListener('click', sendCount());
|
||||
$('.hide-text').fadeIn(500, function () {
|
||||
$(this).addClass('hide');
|
||||
});
|
||||
$('.hide-number').fadeIn(500, function () {
|
||||
$(this).addClass('show');
|
||||
});
|
||||
});
|
||||
}());
|
||||
|
||||
|
||||
// script end
|
||||
@ -0,0 +1,91 @@
|
||||
function getInput(field) {
|
||||
var row = field.parent().parent();
|
||||
return $(row).find('.add-cart-quantity-input');
|
||||
}
|
||||
|
||||
//plus
|
||||
$('.add-cart-upgrade button').on('click', function () {
|
||||
var input = getInput($(this));
|
||||
updatePrice(input, 'plus')
|
||||
})
|
||||
|
||||
//minus
|
||||
$('.add-cart-reduce button').on('click', function () {
|
||||
var input = getInput($(this));
|
||||
updatePrice(input, 'minus')
|
||||
})
|
||||
|
||||
//change
|
||||
$('.add-cart-quantity-input').on('change', function () {
|
||||
var input = getInput($(this));
|
||||
updatePrice(input, 'change')
|
||||
})
|
||||
|
||||
function updatePrice(input, type) {
|
||||
var ad_id = $(input).attr('data-id');
|
||||
var current_quantity = $(input).val();
|
||||
|
||||
productDetail(ad_id, current_quantity, type, function (data) {
|
||||
ChangeFieldForResponse(type, data.newPrice, data.newQuantity, data.maxQuantity)
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function productDetail(id, quantity, type, returnData) {
|
||||
if (quantity == 0) {
|
||||
quantity = 1;
|
||||
}
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: '/ajax/StockControl',
|
||||
data: 'id=' + id + '&quantity=' + quantity + '&type=' + type,
|
||||
success: function (data) {
|
||||
hideLoader()
|
||||
returnData(data);
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader()
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function ChangeFieldForResponse(type, price, quantity, maxQuantity) {
|
||||
if (parseInt(quantity) == 1) {
|
||||
$('.add-cart-reduce button').attr('disabled', true);
|
||||
} else {
|
||||
$('.add-cart-reduce button').attr('disabled', false);
|
||||
}
|
||||
if (quantity == maxQuantity) {
|
||||
$('.add-cart-upgrade button').attr('disabled', true);
|
||||
} else {
|
||||
$('.add-cart-upgrade button').attr('disabled', false);
|
||||
}
|
||||
$('.add-cart-quantity-input').val(parseInt(quantity));
|
||||
$('.ad-price b').html(parseInt(price))
|
||||
}
|
||||
|
||||
$('.add-cart-button').on('click', function () {
|
||||
var quantity = $('.add-cart-quantity-input').val();
|
||||
var id = $('.add-cart-quantity-input').attr('data-id');
|
||||
return addCart(id, quantity)
|
||||
})
|
||||
|
||||
function addCart(id, quantity) {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: '/ajax/addCart',
|
||||
data: 'id=' + id + '&quantity=' + quantity,
|
||||
success: function (data) {
|
||||
hideLoader()
|
||||
if (data.status == "success") {
|
||||
var url = window.location.origin;
|
||||
window.location.replace(url + "/cart");
|
||||
} else {
|
||||
alert(data.msg);
|
||||
}
|
||||
},
|
||||
beforeSend: function () {
|
||||
showLoader()
|
||||
}
|
||||
});
|
||||
}
|
||||
12
addons/default/visiosoft/advs-module/resources/js/slider.js
Normal file
12
addons/default/visiosoft/advs-module/resources/js/slider.js
Normal file
@ -0,0 +1,12 @@
|
||||
|
||||
(function(c,K,C){c.fn.responsiveSlides=function(m){var a=c.extend({auto:!0,speed:500,timeout:4E3,pager:!1,nav:!1,random:!1,pause:!1,pauseControls:!0,prevText:"Previous",nextText:"Next",maxwidth:"",navContainer:"",manualControls:"",namespace:"rslides",before:c.noop,after:c.noop},m);return this.each(function(){C++;var f=c(this),u,t,v,n,q,r,p=0,e=f.children(),D=e.length,h=parseFloat(a.speed),E=parseFloat(a.timeout),w=parseFloat(a.maxwidth),g=a.namespace,d=g+C,F=g+"_nav "+d+"_nav",x=g+"_here",k=d+"_on",
|
||||
y=d+"_s",l=c("<ul class='"+g+"_tabs "+d+"_tabs' />"),z={"float":"left",position:"relative",opacity:1,zIndex:2},A={"float":"none",position:"absolute",opacity:0,zIndex:1},G=function(){var b=(document.body||document.documentElement).style,a="transition";if("string"===typeof b[a])return!0;u=["Moz","Webkit","Khtml","O","ms"];var a=a.charAt(0).toUpperCase()+a.substr(1),c;for(c=0;c<u.length;c++)if("string"===typeof b[u[c]+a])return!0;return!1}(),B=function(b){a.before(b);G?(e.removeClass(k).css(A).eq(b).addClass(k).css(z),
|
||||
p=b,setTimeout(function(){a.after(b)},h)):e.stop().fadeOut(h,function(){c(this).removeClass(k).css(A).css("opacity",1)}).eq(b).fadeIn(h,function(){c(this).addClass(k).css(z);a.after(b);p=b})};a.random&&(e.sort(function(){return Math.round(Math.random())-.5}),f.empty().append(e));e.each(function(a){this.id=y+a});f.addClass(g+" "+d);m&&m.maxwidth&&f.css("max-width",w);e.hide().css(A).eq(0).addClass(k).css(z).show();G&&e.show().css({"-webkit-transition":"opacity "+h+"ms ease-in-out","-moz-transition":"opacity "+
|
||||
h+"ms ease-in-out","-o-transition":"opacity "+h+"ms ease-in-out",transition:"opacity "+h+"ms ease-in-out"});if(1<e.length){if(E<h+100)return;if(a.pager&&!a.manualControls){var H=[];e.each(function(a){a+=1;H+="<li><a href='#' class='"+y+a+"'>"+a+"</a></li>"});l.append(H);m.navContainer?c(a.navContainer).append(l):f.after(l)}a.manualControls&&(l=c(a.manualControls),l.addClass(g+"_tabs "+d+"_tabs"));(a.pager||a.manualControls)&&l.find("li").each(function(a){c(this).addClass(y+(a+1))});if(a.pager||a.manualControls)r=
|
||||
l.find("a"),t=function(a){r.closest("li").removeClass(x).eq(a).addClass(x)};a.auto&&(v=function(){q=setInterval(function(){e.stop(!0,!0);var b=p+1<D?p+1:0;(a.pager||a.manualControls)&&t(b);B(b)},E)},v());n=function(){a.auto&&(clearInterval(q),v())};a.pause&&f.hover(function(){clearInterval(q)},function(){n()});if(a.pager||a.manualControls)r.bind("click",function(b){b.preventDefault();a.pauseControls||n();b=r.index(this);p===b||c("."+k).queue("fx").length||(t(b),B(b))}).eq(0).closest("li").addClass(x),
|
||||
a.pauseControls&&r.hover(function(){clearInterval(q)},function(){n()});if(a.nav){g="<a href='#' class='"+F+" prev'>"+a.prevText+"</a><a href='#' class='"+F+" next'>"+a.nextText+"</a>";m.navContainer?c(a.navContainer).append(g):f.after(g);var d=c("."+d+"_nav"),I=d.filter(".prev");d.bind("click",function(b){b.preventDefault();b=c("."+k);if(!b.queue("fx").length){var d=e.index(b);b=d-1;d=d+1<D?p+1:0;B(c(this)[0]===I[0]?b:d);(a.pager||a.manualControls)&&t(c(this)[0]===I[0]?b:d);a.pauseControls||n()}});
|
||||
a.pauseControls&&d.hover(function(){clearInterval(q)},function(){n()})}}if("undefined"===typeof document.body.style.maxWidth&&m.maxwidth){var J=function(){f.css("width","100%");f.width()>w&&f.css("width",w)};J();c(K).bind("resize",function(){J()})}})}})(jQuery,this,0);
|
||||
|
||||
$(".rslides").responsiveSlides({
|
||||
nav: true
|
||||
});
|
||||
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"title" =>"Advs",
|
||||
"name" =>"Advs Module",
|
||||
"description" =>"وصف"
|
||||
];
|
||||
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"new_adv" =>"اعلان جديد",
|
||||
"new_category" =>"فئة جديدة",
|
||||
"new_country" =>"بلد جديد",
|
||||
"new_city" =>"مدينة جديدة",
|
||||
"new_district" =>"حي جديد",
|
||||
"new_neighborhood" =>"حي جديد",
|
||||
"new_village" =>"قرية جديدة",
|
||||
"approve" =>"يوافق",
|
||||
"decline" =>"انخفاض",
|
||||
"sub_category" =>"الفئات الفرعية",
|
||||
"add_sub_category" =>"إضافة فئة فرعية",
|
||||
"sub_cities" =>"مدن فرعية",
|
||||
"add_sub_cities" =>"إضافة مدينة فرعية",
|
||||
"add_sub_districts" =>"إضافة منطقة فرعية",
|
||||
"add_sub_neighborhoods" =>"إضافة الحي الفرعي",
|
||||
"add_sub_village" =>"أضف قرية فرعية",
|
||||
"sub_districts" =>"المناطق الفرعية",
|
||||
"sub_neighborhoods" =>"الأحياء الفرعية",
|
||||
"sub_village" =>"قرية فرعية",
|
||||
"general_settings" =>"الاعدادات العامة"
|
||||
];
|
||||
247
addons/default/visiosoft/advs-module/resources/lang/ar/field.php
Normal file
247
addons/default/visiosoft/advs-module/resources/lang/ar/field.php
Normal file
@ -0,0 +1,247 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"name" => [
|
||||
"name" =>"عنوان",
|
||||
|
||||
],
|
||||
"order" => [
|
||||
"name" =>"طلب",
|
||||
|
||||
],
|
||||
"slug" => [
|
||||
"name" =>"سبيكة",
|
||||
|
||||
],
|
||||
"parent_category" => [
|
||||
"name" =>"الأبوين",
|
||||
|
||||
],
|
||||
"category" => [
|
||||
"name" =>"عنوان الفئة",
|
||||
|
||||
],
|
||||
"price" => [
|
||||
"name" =>"السعر",
|
||||
|
||||
],
|
||||
"stock" => [
|
||||
"name" =>"مخزون",
|
||||
|
||||
],
|
||||
"advs_desc" => [
|
||||
"name" =>"وصف",
|
||||
|
||||
],
|
||||
"online_payment" => [
|
||||
"name" =>"الدفع الالكتروني",
|
||||
|
||||
],
|
||||
"city" => [
|
||||
"name" =>"مدينة",
|
||||
|
||||
],
|
||||
"country" => [
|
||||
"name" =>"بلد",
|
||||
|
||||
],
|
||||
"district" => [
|
||||
"name" =>"منطقة",
|
||||
|
||||
],
|
||||
"neighborhood" => [
|
||||
"name" =>"حي",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"قرية",
|
||||
|
||||
],
|
||||
"files" => [
|
||||
"name" =>"صور",
|
||||
|
||||
],
|
||||
"cat1" => [
|
||||
"name" =>"الفئة الرئيسية",
|
||||
|
||||
],
|
||||
"cat2" => [
|
||||
"name" =>"الفئة الفرعية 1",
|
||||
|
||||
],
|
||||
"cat3" => [
|
||||
"name" =>"الفئة الفرعية 2",
|
||||
|
||||
],
|
||||
"cat4" => [
|
||||
"name" =>"الفئة الفرعية 3",
|
||||
|
||||
],
|
||||
"cat5" => [
|
||||
"name" =>"الفئة الفرعية 4",
|
||||
|
||||
],
|
||||
"cat6" => [
|
||||
"name" =>"الفئة الفرعية 5",
|
||||
|
||||
],
|
||||
"cat7" => [
|
||||
"name" =>"الفئة الفرعية 6",
|
||||
|
||||
],
|
||||
"currency" => [
|
||||
"name" =>"دقة",
|
||||
|
||||
],
|
||||
"status" => [
|
||||
"name" =>"الحالة",
|
||||
|
||||
],
|
||||
"next_add_advs_title" => [
|
||||
"name" =>"نشر إعلان في 30 ثانية فقط",
|
||||
|
||||
],
|
||||
"next_add_advs_msg" => [
|
||||
"name" =>"يرجى عدم نشر إعلانات متعددة لنفس العناصر أو الخدمة. سيتم حذف جميع الإعلانات المكررة والبريد العشوائي والمصنفة بشكل خاطئ.",
|
||||
|
||||
],
|
||||
"next_add_advs_btn" => [
|
||||
"name" =>"التالى",
|
||||
|
||||
],
|
||||
"cancel_add_advs_btn" => [
|
||||
"name" =>"أو إلغاء",
|
||||
|
||||
],
|
||||
"pending_adv" => [
|
||||
"name" =>"في انتظار Advs",
|
||||
|
||||
],
|
||||
"archived_adv" => [
|
||||
"name" =>"المؤرشفة المحفوظة",
|
||||
|
||||
],
|
||||
"favs_adv" => [
|
||||
"name" =>"الصوتيات المفضلة",
|
||||
|
||||
],
|
||||
"my_adv" => [
|
||||
"name" =>"ADVS",
|
||||
|
||||
],
|
||||
"description" => [
|
||||
"name" =>"وصف",
|
||||
|
||||
],
|
||||
"type" => [
|
||||
"name" =>"نوع",
|
||||
|
||||
],
|
||||
"parent_adv" => [
|
||||
"name" =>"إعلان ذو صلة",
|
||||
|
||||
],
|
||||
"value" => [
|
||||
"name" =>"القيمة",
|
||||
|
||||
],
|
||||
"home" =>"الصفحة الرئيسية",
|
||||
"list-page" =>"قائمة الصفحة",
|
||||
"search" =>"بحث",
|
||||
"recommended" =>"الإعلانات الموصى بها لك",
|
||||
"sort_by" =>"ترتيب حسب",
|
||||
"pick_option" =>"اختيار خيار",
|
||||
"price_high" =>"السعر الاعلى الى الادنى",
|
||||
"price-low" =>"السعر من الارخص للاعلى",
|
||||
"newest" =>"الأحدث",
|
||||
"categories" =>"الاقسام",
|
||||
"all_categories" =>"جميع الفئات",
|
||||
"location" =>"موقعك",
|
||||
"send_message" =>"إرسال رسالة",
|
||||
"phone_gsm" =>"جي إس إم الهاتف",
|
||||
"phone_office" =>"هاتف المكتب",
|
||||
"add_to_favorites" =>"اضافة الى المفضلة",
|
||||
"send" =>"إرسال",
|
||||
"search_name" =>"اسم البحث",
|
||||
"my_favorite_searches" =>"عمليات البحث المفضلة",
|
||||
"search_desc" =>"يمكنك إضافة وإدارة اختيارات البحث المفضلة لديك هنا.",
|
||||
"complaint_placeholder" =>"اكتب تفاصيل شكواك هنا.",
|
||||
"show_details" =>"اظهر التفاصيل",
|
||||
"edit" =>"تصحيح",
|
||||
"approve" =>"يوافق",
|
||||
"passive" =>"مبني للمجهول",
|
||||
"offered_by" =>"مقدم بواسطة",
|
||||
"more_ads_by" =>"المزيد من الإعلانات بواسطة",
|
||||
"click_phone" =>"عرض رقم الهاتف",
|
||||
"share" =>"شارك هذا الإعلان",
|
||||
"report" =>"الإبلاغ عن هذا الإعلان",
|
||||
"features" =>"المميزات",
|
||||
"recommended_ads" =>"الإعلانات الموصى بها لك",
|
||||
"new" =>"الجديد",
|
||||
"short_info" =>"معلومات قصيرة",
|
||||
"secure_trading" =>"تجارة آمنة",
|
||||
"24/7" =>"24/7 الدعم",
|
||||
"easy_trading" =>"سهل التداول",
|
||||
"need_help" =>"تحتاج مساعدة؟",
|
||||
"give_a_call" =>"إعطاء دعوة على",
|
||||
"message_sent" =>"تم الارسال!",
|
||||
"asap" =>"الرسالة المرسلة ، سوف البائع الاتصال بك في اسرع وقت ممكن",
|
||||
"ad_id" =>"معرف الإعلان",
|
||||
"contact_with" =>"تواصل مع",
|
||||
"create_adv" =>"إنشاء Adv",
|
||||
"edit_adv" =>"تحرير Adv",
|
||||
"mandatory_fields" =>"الحقول الإلزامية",
|
||||
"ad_post" =>"مشاركة الإعلان",
|
||||
"sell_item" =>"بيع عنصر أو خدمة",
|
||||
"search_save" =>"تم حفظ البحث المفضل بنجاح",
|
||||
"address" =>"عنوان",
|
||||
"email" =>"البريد الإلكتروني",
|
||||
"phone" =>"هاتف",
|
||||
"send_us_your_feedback" =>"أرسل لنا ملاحظاتك",
|
||||
"online_shopping" =>"احصل على",
|
||||
"approved" =>"تمت الموافقة بنجاح",
|
||||
"declined" =>"رفض بنجاح",
|
||||
"search_on_map" =>"البحث على الخريطة",
|
||||
"post_free_ad" =>"نشر إعلان مجاني",
|
||||
"select_a_category" =>"اختر تصنيف",
|
||||
"select_a_sub_category" =>"حدد فئة فرعية",
|
||||
"all_dopings_added" =>"تتم إضافة جميع أنواع المنشطات لهذا الإعلان.",
|
||||
"is_get_adv" => [
|
||||
"name" =>"احصل على",
|
||||
|
||||
],
|
||||
"corporate_info" =>"معلومات الشركة",
|
||||
"featured_ads" =>"إعلانات مميزة",
|
||||
"trending_ads" =>"إعلانات Trendind",
|
||||
"search_ads_result_message" => [
|
||||
"name" =>": عدد الإعلانات التي تم العثور عليها لـ:search name",
|
||||
|
||||
],
|
||||
"total" =>"مجموع",
|
||||
"quantity" =>"كمية",
|
||||
"view_cart" =>"عرض العربة",
|
||||
"no_ads" =>"لا اعلانات!",
|
||||
"show_display_mode" => [
|
||||
"map" =>"خريطة",
|
||||
"list" =>"قائمة",
|
||||
|
||||
],
|
||||
"streetview" =>"منظر الشارع",
|
||||
"advs_list_table_thead" => [
|
||||
"name" =>"اسم الإعلان",
|
||||
"price" =>"السعر",
|
||||
"publish_at" =>"تاريخ الإعلان",
|
||||
"location_city" =>"مدينة",
|
||||
"location_country" =>"بلد",
|
||||
|
||||
],
|
||||
"show_list_view" => [
|
||||
"name" =>"قائمة",
|
||||
|
||||
],
|
||||
"show_table_view" => [
|
||||
"name" =>"الطاولة",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"error_added_cart" =>"المنتج المطلوب مفقود أو غير نشط حاليًا",
|
||||
"please_buy_package" =>"يرجى شراء الحزمة"
|
||||
];
|
||||
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"Advs",
|
||||
"option" => [
|
||||
"read" =>"يمكن قراءة advs؟ ",
|
||||
"write" =>"يمكن إنشاء / تحرير advs؟ ",
|
||||
"delete" =>"يمكن حذف advs؟"
|
||||
],
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"الاقسام",
|
||||
"option" => [
|
||||
"read" =>"يمكن قراءة الفئات؟ ",
|
||||
"write" =>"يمكن إنشاء / تحرير الفئات؟ ",
|
||||
"delete" =>"يمكن حذف الفئات؟"
|
||||
],
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"قرية",
|
||||
"option" => [
|
||||
"read" =>"يمكن قراءة القرية؟ ",
|
||||
"write" =>"يمكن إنشاء / تحرير القرية؟ ",
|
||||
"delete" =>"يمكن حذف القرية؟"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"الحقول المخصصة",
|
||||
"option" => [
|
||||
"read" =>"يمكن قراءة الحقول المخصصة؟ ",
|
||||
"write" =>"يمكن إنشاء / تحرير الحقول المخصصة؟ ",
|
||||
"delete" =>"يمكن حذف الحقول المخصصة؟"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"advs حقل مخصص",
|
||||
"option" => [
|
||||
"read" =>"يمكن قراءة advs مجال مخصص؟ ",
|
||||
"write" =>"يمكن إنشاء / تحرير advs الحقل المخصص؟ ",
|
||||
"delete" =>"يمكن حذف advs مجال مخصص؟"
|
||||
],
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"قيم cf",
|
||||
"option" => [
|
||||
"read" =>"يمكن قراءة قيم CF؟ ",
|
||||
"write" =>"يمكن إنشاء / تحرير قيم cf؟ ",
|
||||
"delete" =>"يمكن حذف القيم CF؟",
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"title" =>"Advs",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"title" =>"الاقسام",
|
||||
|
||||
],
|
||||
"countries" => [
|
||||
"title" =>"بلدان",
|
||||
|
||||
],
|
||||
"cities" => [
|
||||
"title" =>"مدن",
|
||||
|
||||
],
|
||||
"districts" => [
|
||||
"title" =>"المناطق",
|
||||
|
||||
],
|
||||
"neighborhoods" => [
|
||||
"title" =>"أحياء",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"title" =>"قرية",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"title" =>"الحقول المخصصة",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"title" =>"advs حقل مخصص",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"title" =>"قيم cf",
|
||||
|
||||
],
|
||||
"fields" => [
|
||||
"title" =>"الحقول المخصصة",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,132 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"auto_approve" => [
|
||||
"name" =>"الموافقة التلقائية",
|
||||
|
||||
],
|
||||
"default_published_time" => [
|
||||
"name" =>"وقت النشر الافتراضي",
|
||||
|
||||
],
|
||||
"default_adv_limit" => [
|
||||
"name" =>"الحد الافتراضي للإعلانات",
|
||||
|
||||
],
|
||||
"address" => [
|
||||
"name" =>"الاتصال العنوان",
|
||||
|
||||
],
|
||||
"phone" => [
|
||||
"name" =>"الاتصال الهاتف",
|
||||
|
||||
],
|
||||
"contact_mail" => [
|
||||
"name" =>"بريد الاتصال",
|
||||
"warning" =>"تمت إضافة <strong>معلومات</strong> sitename تلقائيًاsitename",
|
||||
|
||||
],
|
||||
"map_coordinates_long" => [
|
||||
"name" =>"خريطة تنسيق طويل",
|
||||
|
||||
],
|
||||
"map_coordinates_lat" => [
|
||||
"name" =>"خريطة اللات تنسيق",
|
||||
|
||||
],
|
||||
"logo" => [
|
||||
"name" =>"شعار",
|
||||
|
||||
],
|
||||
"ogImage" => [
|
||||
"name" =>"شعار المشاركة الاجتماعية",
|
||||
"warning" =>"يجب أن يكون بدقة 1200 × 630.",
|
||||
|
||||
],
|
||||
"currencies" => [
|
||||
"name" =>"العملات النشطة",
|
||||
|
||||
],
|
||||
"site_address" => [
|
||||
"name" =>"عنوان الموقع",
|
||||
"warning" =>"تمت إضافة www. شبكة الاتصالات العالمية. <strong>sitename.com</strong>",
|
||||
|
||||
],
|
||||
"google_map_key" => [
|
||||
"name" =>"خريطة جوجل ابي كي",
|
||||
|
||||
],
|
||||
"default_country" => [
|
||||
"name" =>"بلد الإعلان الافتراضي",
|
||||
|
||||
],
|
||||
"default_city" => [
|
||||
"name" =>"المدينة الإعلانية الافتراضية",
|
||||
|
||||
],
|
||||
"default_district" => [
|
||||
"name" =>"منطقة الإعلان الافتراضية",
|
||||
|
||||
],
|
||||
"default_neighborhood" => [
|
||||
"name" =>"حي الإعلانات الافتراضي",
|
||||
|
||||
],
|
||||
"default_currency" => [
|
||||
"name" =>"عملة الإعلان الافتراضية",
|
||||
|
||||
],
|
||||
"default_GET" => [
|
||||
"name" =>"الإعلان الافتراضي",
|
||||
|
||||
],
|
||||
"twitter" => [
|
||||
"name" =>"تغريد",
|
||||
|
||||
],
|
||||
"facebook" => [
|
||||
"name" =>"فيس بوك",
|
||||
|
||||
],
|
||||
"youtube" => [
|
||||
"name" =>"موقع YouTube",
|
||||
|
||||
],
|
||||
"google" => [
|
||||
"name" =>"جوجل",
|
||||
|
||||
],
|
||||
"watermark_type" => [
|
||||
"name" =>"نوع العلامة المائية",
|
||||
|
||||
],
|
||||
"watermark_text" => [
|
||||
"name" =>"نص العلامة المائية",
|
||||
|
||||
],
|
||||
"watermark_image" => [
|
||||
"name" =>"صورة العلامة المائية",
|
||||
|
||||
],
|
||||
"watermark_position" => [
|
||||
"name" =>"موقف العلامة المائية",
|
||||
|
||||
],
|
||||
"watermark_opacity" => [
|
||||
"name" =>"عتامة العلامة المائية",
|
||||
|
||||
],
|
||||
"listing_page_image" => [
|
||||
"name" =>"سرد صورة الصفحة",
|
||||
|
||||
],
|
||||
"enabled_currencies" => [
|
||||
"name" =>"العملات الممكّنة",
|
||||
|
||||
],
|
||||
"google_statistic_code" => [
|
||||
"name" =>"Google Statistic Code",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"Advs",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"الاقسام",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"قرية",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"الحقول المخصصة",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"advs حقل مخصص",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"قيم cf",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"title" =>"Advs",
|
||||
"name" =>"Advs Modul",
|
||||
"description" =>"Beschreibung"
|
||||
];
|
||||
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"new_adv" =>"Neue Adv",
|
||||
"new_category" =>"Neue Kategorie",
|
||||
"new_country" =>"Neues Land",
|
||||
"new_city" =>"Neue Stadt",
|
||||
"new_district" =>"Neuer Bezirk",
|
||||
"new_neighborhood" =>"Neue Nachbarschaft",
|
||||
"new_village" =>"Neues Dorf",
|
||||
"approve" =>"Genehmigen",
|
||||
"decline" =>"Ablehnen",
|
||||
"sub_category" =>"Unterkategorien",
|
||||
"add_sub_category" =>"Unterkategorie hinzufügen",
|
||||
"sub_cities" =>"Sub Cities",
|
||||
"add_sub_cities" =>"Sub City hinzufügen",
|
||||
"add_sub_districts" =>"Unterbezirk hinzufügen",
|
||||
"add_sub_neighborhoods" =>"Sub Neighborhood hinzufügen",
|
||||
"add_sub_village" =>"Sub Village hinzufügen",
|
||||
"sub_districts" =>"Unterbezirke",
|
||||
"sub_neighborhoods" =>"Sub-Nachbarschaften",
|
||||
"sub_village" =>"Sub Village",
|
||||
"general_settings" =>"Allgemeine Einstellungen"
|
||||
];
|
||||
249
addons/default/visiosoft/advs-module/resources/lang/de/field.php
Normal file
249
addons/default/visiosoft/advs-module/resources/lang/de/field.php
Normal file
@ -0,0 +1,249 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"name" => [
|
||||
"name" =>"Titel",
|
||||
|
||||
],
|
||||
"order" => [
|
||||
"name" =>"Auftrag",
|
||||
|
||||
],
|
||||
"slug" => [
|
||||
"name" =>"Schnecke",
|
||||
|
||||
],
|
||||
"parent_category" => [
|
||||
"name" =>"Elternteil",
|
||||
|
||||
],
|
||||
"category" => [
|
||||
"name" =>"Kategorietitel",
|
||||
|
||||
],
|
||||
"price" => [
|
||||
"name" =>"Preis",
|
||||
|
||||
],
|
||||
"stock" => [
|
||||
"name" =>"Stock",
|
||||
|
||||
],
|
||||
"advs_desc" => [
|
||||
"name" =>"Beschreibung",
|
||||
|
||||
],
|
||||
"online_payment" => [
|
||||
"name" =>"Onlinebezahlung",
|
||||
|
||||
],
|
||||
"city" => [
|
||||
"name" =>"Stadt",
|
||||
|
||||
],
|
||||
"country" => [
|
||||
"name" =>"Land",
|
||||
|
||||
],
|
||||
"district" => [
|
||||
"name" =>"Kreis",
|
||||
|
||||
],
|
||||
"neighborhood" => [
|
||||
"name" =>"Nachbarschaft",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Dorf",
|
||||
|
||||
],
|
||||
"files" => [
|
||||
"name" =>"Bilder",
|
||||
|
||||
],
|
||||
"cat1" => [
|
||||
"name" =>"Hauptkategorie",
|
||||
|
||||
],
|
||||
"cat2" => [
|
||||
"name" =>"Unterkategorie 1",
|
||||
|
||||
],
|
||||
"cat3" => [
|
||||
"name" =>"Unterkategorie 2",
|
||||
|
||||
],
|
||||
"cat4" => [
|
||||
"name" =>"Unterkategorie 3",
|
||||
|
||||
],
|
||||
"cat5" => [
|
||||
"name" =>"Unterkategorie 4",
|
||||
|
||||
],
|
||||
"cat6" => [
|
||||
"name" =>"Unterkategorie 5",
|
||||
|
||||
],
|
||||
"cat7" => [
|
||||
"name" =>"Unterkategorie 6",
|
||||
|
||||
],
|
||||
"currency" => [
|
||||
"name" =>"Währung",
|
||||
|
||||
],
|
||||
"status" => [
|
||||
"name" =>"Status",
|
||||
|
||||
],
|
||||
"next_add_advs_title" => [
|
||||
"name" =>"Veröffentlichen Sie eine Anzeige in nur 30 Sekunden",
|
||||
|
||||
],
|
||||
"next_add_advs_msg" => [
|
||||
"name" =>"Bitte posten Sie NICHT mehrere Anzeigen für den gleichen Artikel oder die gleiche Dienstleistung. Alle doppelten,
|
||||
Spam- und falsch kategorisierten Anzeigen werden gelöscht.",
|
||||
|
||||
],
|
||||
"next_add_advs_btn" => [
|
||||
"name" =>"Nächster",
|
||||
|
||||
],
|
||||
"cancel_add_advs_btn" => [
|
||||
"name" =>"Oder Abbrechen",
|
||||
|
||||
],
|
||||
"pending_adv" => [
|
||||
"name" =>"Ausstehende Advs",
|
||||
|
||||
],
|
||||
"archived_adv" => [
|
||||
"name" =>"Archivierte Advs",
|
||||
|
||||
],
|
||||
"favs_adv" => [
|
||||
"name" =>"Fav Advs",
|
||||
|
||||
],
|
||||
"my_adv" => [
|
||||
"name" =>"ADVS",
|
||||
|
||||
],
|
||||
"description" => [
|
||||
"name" =>"Beschreibung",
|
||||
|
||||
],
|
||||
"type" => [
|
||||
"name" =>"Art",
|
||||
|
||||
],
|
||||
"parent_adv" => [
|
||||
"name" =>"Verwandte Anzeige",
|
||||
|
||||
],
|
||||
"value" => [
|
||||
"name" =>"Wert",
|
||||
|
||||
],
|
||||
"home" =>"Zuhause",
|
||||
"list-page" =>"Listenseite",
|
||||
"search" =>"Suche",
|
||||
"recommended" =>"Empfohlene Anzeigen für Sie",
|
||||
"sort_by" =>"Sortiere nach",
|
||||
"pick_option" =>"Wähle eine Option",
|
||||
"price_high" =>"Preis hoch zu niedrig",
|
||||
"price-low" =>"Preis niedrig bis hoch",
|
||||
"newest" =>"Neueste",
|
||||
"categories" =>"Kategorien",
|
||||
"all_categories" =>"Alle Kategorien",
|
||||
"location" =>"Ort",
|
||||
"send_message" =>"Nachricht senden",
|
||||
"phone_gsm" =>"GSM-Telefon",
|
||||
"phone_office" =>"Bürotelefon",
|
||||
"add_to_favorites" =>"Zu den Favoriten hinzufügen",
|
||||
"send" =>"Senden",
|
||||
"search_name" =>"Name suchen",
|
||||
"my_favorite_searches" =>"Lieblingssuchen",
|
||||
"search_desc" =>"Hier können Sie Ihre bevorzugten Suchoptionen hinzufügen und verwalten.",
|
||||
"complaint_placeholder" =>"Geben Sie hier Ihre Beschwerdedetails ein.",
|
||||
"show_details" =>"Zeige Details",
|
||||
"edit" =>"Bearbeiten",
|
||||
"approve" =>"Genehmigen",
|
||||
"passive" =>"Passiv",
|
||||
"offered_by" =>"Angeboten von",
|
||||
"more_ads_by" =>"Mehr Anzeigen von",
|
||||
"click_phone" =>"Telefonnummer anzeigen",
|
||||
"share" =>"Teile diese Anzeige",
|
||||
"report" =>"Diese Anzeige melden",
|
||||
"features" =>"Eigenschaften",
|
||||
"recommended_ads" =>"Empfohlene Anzeigen für Sie",
|
||||
"new" =>"Neu",
|
||||
"short_info" =>"Kurzinfo",
|
||||
"secure_trading" =>"Sicherer Handel",
|
||||
"24/7" =>"24/7 Support",
|
||||
"easy_trading" =>"Einfacher Handel",
|
||||
"need_help" =>"Brauche Hilfe?",
|
||||
"give_a_call" =>"Rufen Sie an",
|
||||
"message_sent" =>"Nachricht gesendet!",
|
||||
"asap" =>"Nachricht gesendet,
|
||||
Verkäufer wird Sie so schnell wie möglich kontaktieren.",
|
||||
"ad_id" =>"Anzeigen-ID",
|
||||
"contact_with" =>"Kontakt mit",
|
||||
"create_adv" =>"Erstelle Adv",
|
||||
"edit_adv" =>"Bearbeiten Adv",
|
||||
"mandatory_fields" =>"Pflichtfelder",
|
||||
"ad_post" =>"Ad Post",
|
||||
"sell_item" =>"Verkaufe einen Gegenstand oder eine Dienstleistung",
|
||||
"search_save" =>"Lieblingssuche erfolgreich gespeichert",
|
||||
"address" =>"Adresse",
|
||||
"email" =>"Email",
|
||||
"phone" =>"Telefon",
|
||||
"send_us_your_feedback" =>"Senden Sie uns Ihr Feedback",
|
||||
"online_shopping" =>"ERHALTEN",
|
||||
"approved" =>"Erfolgreich genehmigt",
|
||||
"declined" =>"Erfolgreich abgelehnt",
|
||||
"search_on_map" =>"Suche auf der Karte",
|
||||
"post_free_ad" =>"Geben Sie freie Anzeige bekannt",
|
||||
"select_a_category" =>"Wählen Sie eine Kategorie",
|
||||
"select_a_sub_category" =>"Wähle eine Unterkategorie",
|
||||
"all_dopings_added" =>"Alle Doping-Typen werden für diese Anzeige hinzugefügt.",
|
||||
"is_get_adv" => [
|
||||
"name" =>"ERHALTEN",
|
||||
|
||||
],
|
||||
"corporate_info" =>"Unternehmensinfo",
|
||||
"featured_ads" =>"Empfohlene Anzeigen",
|
||||
"trending_ads" =>"Trendind Ads",
|
||||
"search_ads_result_message" => [
|
||||
"name" =>": Anzahl der gefundenen Anzeigen für:Namenssuche",
|
||||
|
||||
],
|
||||
"total" =>"Gesamt",
|
||||
"quantity" =>"Menge",
|
||||
"view_cart" =>"Warenkorb ansehen",
|
||||
"no_ads" =>"Keine Werbung!",
|
||||
"show_display_mode" => [
|
||||
"map" =>"Karte",
|
||||
"list" =>"Liste",
|
||||
|
||||
],
|
||||
"streetview" =>"Straßenansicht",
|
||||
"advs_list_table_thead" => [
|
||||
"name" =>"Adv Name",
|
||||
"price" =>"Preis",
|
||||
"publish_at" =>"Anzeigedatum",
|
||||
"location_city" =>"Stadt",
|
||||
"location_country" =>"Land",
|
||||
|
||||
],
|
||||
"show_list_view" => [
|
||||
"name" =>"Liste",
|
||||
|
||||
],
|
||||
"show_table_view" => [
|
||||
"name" =>"Tabelle",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"error_added_cart" =>"Angefordertes Produkt fehlt derzeit oder ist inaktiv",
|
||||
"please_buy_package" =>"Bitte Paket kaufen"
|
||||
];
|
||||
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"Advs",
|
||||
"option" => [
|
||||
"read" =>"Kann advs lesen? ",
|
||||
"write" =>"Kann advs erstellen / bearbeiten? ",
|
||||
"delete" =>"Kann advs löschen?"
|
||||
],
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"Kategorien",
|
||||
"option" => [
|
||||
"read" =>"Kann Kategorien lesen? ",
|
||||
"write" =>"Kann Kategorien erstellen / bearbeiten? ",
|
||||
"delete" =>"Kann Kategorien löschen?"
|
||||
],
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Dorf",
|
||||
"option" => [
|
||||
"read" =>"Kann Dorf lesen? ",
|
||||
"write" =>"Kann ein Dorf erstellen / bearbeiten? ",
|
||||
"delete" =>"Kann Dorf löschen?"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"Benutzerdefinierte Felder",
|
||||
"option" => [
|
||||
"read" =>"Kann benutzerdefinierte Felder lesen? ",
|
||||
"write" =>"Kann benutzerdefinierte Felder erstellen / bearbeiten? ",
|
||||
"delete" =>"Kann benutzerdefinierte Felder löschen?"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"Benutzerdefiniertes Feld",
|
||||
"option" => [
|
||||
"read" =>"Kann benutzerdefinierte Field Advs lesen? ",
|
||||
"write" =>"Kann benutzerdefinierte Field Advs erstellen / bearbeiten? ",
|
||||
"delete" =>"Kann benutzerdefinierte Feld-Advs löschen?"
|
||||
],
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"Vgl. Werte",
|
||||
"option" => [
|
||||
"read" =>"Kann cf Werte lesen? ",
|
||||
"write" =>"Kann cf-Werte erstellen / bearbeiten? ",
|
||||
"delete" =>"Kann cf Werte löschen?",
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"title" =>"Advs",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"title" =>"Kategorien",
|
||||
|
||||
],
|
||||
"countries" => [
|
||||
"title" =>"Länder",
|
||||
|
||||
],
|
||||
"cities" => [
|
||||
"title" =>"Städte",
|
||||
|
||||
],
|
||||
"districts" => [
|
||||
"title" =>"Bezirke",
|
||||
|
||||
],
|
||||
"neighborhoods" => [
|
||||
"title" =>"Nachbarschaften",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"title" =>"Dorf",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"title" =>"Benutzerdefinierte Felder",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"title" =>"Benutzerdefiniertes Feld",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"title" =>"Vgl. Werte",
|
||||
|
||||
],
|
||||
"fields" => [
|
||||
"title" =>"Benutzerdefinierte Felder",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,132 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"auto_approve" => [
|
||||
"name" =>"Automatisch genehmigen",
|
||||
|
||||
],
|
||||
"default_published_time" => [
|
||||
"name" =>"Standardveröffentlichungszeit",
|
||||
|
||||
],
|
||||
"default_adv_limit" => [
|
||||
"name" =>"Standard-Anzeigenlimit",
|
||||
|
||||
],
|
||||
"address" => [
|
||||
"name" =>"Kontaktadresse",
|
||||
|
||||
],
|
||||
"phone" => [
|
||||
"name" =>"Kontakt-Telefon",
|
||||
|
||||
],
|
||||
"contact_mail" => [
|
||||
"name" =>"Mail kontaktieren",
|
||||
"warning" =>"Automatisch hinzugefügter Site-Name <strong>info</strong> @sitename",
|
||||
|
||||
],
|
||||
"map_coordinates_long" => [
|
||||
"name" =>"Lange Koordinate abbilden",
|
||||
|
||||
],
|
||||
"map_coordinates_lat" => [
|
||||
"name" =>"Karte Lat-Koordinate",
|
||||
|
||||
],
|
||||
"logo" => [
|
||||
"name" =>"Logo",
|
||||
|
||||
],
|
||||
"ogImage" => [
|
||||
"name" =>"Social Share Logo",
|
||||
"warning" =>"Die Auflösung sollte 1200 x 630 betragen.",
|
||||
|
||||
],
|
||||
"currencies" => [
|
||||
"name" =>"Aktive Währungen",
|
||||
|
||||
],
|
||||
"site_address" => [
|
||||
"name" =>"Website-Adresse",
|
||||
"warning" =>"Automatisch hinzugefügt www. www. <strong>sitename.com</strong>",
|
||||
|
||||
],
|
||||
"google_map_key" => [
|
||||
"name" =>"Google Map-API-Schlüssel",
|
||||
|
||||
],
|
||||
"default_country" => [
|
||||
"name" =>"Land der Standardanzeige",
|
||||
|
||||
],
|
||||
"default_city" => [
|
||||
"name" =>"Standard-Anzeigenstadt",
|
||||
|
||||
],
|
||||
"default_district" => [
|
||||
"name" =>"Default Ad District",
|
||||
|
||||
],
|
||||
"default_neighborhood" => [
|
||||
"name" =>"Standard-Anzeigenumgebung",
|
||||
|
||||
],
|
||||
"default_currency" => [
|
||||
"name" =>"Standardwährung der Anzeige",
|
||||
|
||||
],
|
||||
"default_GET" => [
|
||||
"name" =>"Default Ad GET",
|
||||
|
||||
],
|
||||
"twitter" => [
|
||||
"name" =>"Twitter",
|
||||
|
||||
],
|
||||
"facebook" => [
|
||||
"name" =>"Facebook",
|
||||
|
||||
],
|
||||
"youtube" => [
|
||||
"name" =>"Youtube",
|
||||
|
||||
],
|
||||
"google" => [
|
||||
"name" =>"Google",
|
||||
|
||||
],
|
||||
"watermark_type" => [
|
||||
"name" =>"Wasserzeichentyp",
|
||||
|
||||
],
|
||||
"watermark_text" => [
|
||||
"name" =>"Wasserzeichentext",
|
||||
|
||||
],
|
||||
"watermark_image" => [
|
||||
"name" =>"Wasserzeichen Bild",
|
||||
|
||||
],
|
||||
"watermark_position" => [
|
||||
"name" =>"Wasserzeichen Position",
|
||||
|
||||
],
|
||||
"watermark_opacity" => [
|
||||
"name" =>"Wasserzeichen Deckkraft",
|
||||
|
||||
],
|
||||
"listing_page_image" => [
|
||||
"name" =>"Listing Page Image",
|
||||
|
||||
],
|
||||
"enabled_currencies" => [
|
||||
"name" =>"Aktivierte Währungen",
|
||||
|
||||
],
|
||||
"google_statistic_code" => [
|
||||
"name" =>"Google Statistic Code",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"Advs",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"Kategorien",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Dorf",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"Benutzerdefinierte Felder",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"Benutzerdefiniertes Feld",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"Vgl. Werte",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"title" =>"Advs",
|
||||
"name" =>"Advs Module",
|
||||
"description" =>"Περιγραφή"
|
||||
];
|
||||
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"new_adv" =>"Νέο Adv",
|
||||
"new_category" =>"Νέα κατηγορία",
|
||||
"new_country" =>"Νέα χώρα",
|
||||
"new_city" =>"Νέα πόλη",
|
||||
"new_district" =>"Νέα Επαρχία",
|
||||
"new_neighborhood" =>"Νέα γειτονιά",
|
||||
"new_village" =>"Νέο χωριό",
|
||||
"approve" =>"Εγκρίνω",
|
||||
"decline" =>"Πτώση",
|
||||
"sub_category" =>"Υποκατηγορίες",
|
||||
"add_sub_category" =>"Προσθήκη υπο-κατηγορίας",
|
||||
"sub_cities" =>"Υπο-πόλεις",
|
||||
"add_sub_cities" =>"Προσθέστε Sub City",
|
||||
"add_sub_districts" =>"Προσθέστε την υποδιαίρεση",
|
||||
"add_sub_neighborhoods" =>"Προσθήκη δευτερεύουσας γειτονιάς",
|
||||
"add_sub_village" =>"Προσθήκη δευτερεύοντος χωριού",
|
||||
"sub_districts" =>"Υποτομείς",
|
||||
"sub_neighborhoods" =>"Υπο-γειτονικές περιοχές",
|
||||
"sub_village" =>"Κάτω χωριό",
|
||||
"general_settings" =>"Γενικές Ρυθμίσεις"
|
||||
];
|
||||
249
addons/default/visiosoft/advs-module/resources/lang/el/field.php
Normal file
249
addons/default/visiosoft/advs-module/resources/lang/el/field.php
Normal file
@ -0,0 +1,249 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"name" => [
|
||||
"name" =>"Τίτλος",
|
||||
|
||||
],
|
||||
"order" => [
|
||||
"name" =>"Σειρά",
|
||||
|
||||
],
|
||||
"slug" => [
|
||||
"name" =>"Γυμνοσάλιαγκας",
|
||||
|
||||
],
|
||||
"parent_category" => [
|
||||
"name" =>"Μητρική εταιρεία",
|
||||
|
||||
],
|
||||
"category" => [
|
||||
"name" =>"Τίτλος κατηγορίας",
|
||||
|
||||
],
|
||||
"price" => [
|
||||
"name" =>"Τιμή",
|
||||
|
||||
],
|
||||
"stock" => [
|
||||
"name" =>"Στοκ",
|
||||
|
||||
],
|
||||
"advs_desc" => [
|
||||
"name" =>"Περιγραφή",
|
||||
|
||||
],
|
||||
"online_payment" => [
|
||||
"name" =>"Διαδικτυακή πληρωμή",
|
||||
|
||||
],
|
||||
"city" => [
|
||||
"name" =>"Πόλη",
|
||||
|
||||
],
|
||||
"country" => [
|
||||
"name" =>"Χώρα",
|
||||
|
||||
],
|
||||
"district" => [
|
||||
"name" =>"Περιοχή",
|
||||
|
||||
],
|
||||
"neighborhood" => [
|
||||
"name" =>"Γειτονιά",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Χωριό",
|
||||
|
||||
],
|
||||
"files" => [
|
||||
"name" =>"Εικόνες",
|
||||
|
||||
],
|
||||
"cat1" => [
|
||||
"name" =>"Κύρια κατηγορία",
|
||||
|
||||
],
|
||||
"cat2" => [
|
||||
"name" =>"Υποκατηγορία 1",
|
||||
|
||||
],
|
||||
"cat3" => [
|
||||
"name" =>"Υποκατηγορία 2",
|
||||
|
||||
],
|
||||
"cat4" => [
|
||||
"name" =>"Υποκατηγορία 3",
|
||||
|
||||
],
|
||||
"cat5" => [
|
||||
"name" =>"Υποκατηγορία 4",
|
||||
|
||||
],
|
||||
"cat6" => [
|
||||
"name" =>"Υποκατηγορία 5",
|
||||
|
||||
],
|
||||
"cat7" => [
|
||||
"name" =>"Υποκατηγορία 6",
|
||||
|
||||
],
|
||||
"currency" => [
|
||||
"name" =>"Νόμισμα",
|
||||
|
||||
],
|
||||
"status" => [
|
||||
"name" =>"Κατάσταση",
|
||||
|
||||
],
|
||||
"next_add_advs_title" => [
|
||||
"name" =>"Δημοσίευση μιας διαφήμισης σε μόλις 30 δευτερόλεπτα",
|
||||
|
||||
],
|
||||
"next_add_advs_msg" => [
|
||||
"name" =>"Μην δημοσιεύετε πολλές διαφημίσεις για τα ίδια στοιχεία ή υπηρεσία. Όλες οι διπλές,
|
||||
ανεπιθύμητες και εσφαλμένα κατηγοριοποιημένες διαφημίσεις θα διαγραφούν.",
|
||||
|
||||
],
|
||||
"next_add_advs_btn" => [
|
||||
"name" =>"Επόμενο",
|
||||
|
||||
],
|
||||
"cancel_add_advs_btn" => [
|
||||
"name" =>"ή Ακύρωση",
|
||||
|
||||
],
|
||||
"pending_adv" => [
|
||||
"name" =>"Εκκρεμείς διαφημίσεις",
|
||||
|
||||
],
|
||||
"archived_adv" => [
|
||||
"name" =>"Αρχειοθετημένες διαφημίσεις",
|
||||
|
||||
],
|
||||
"favs_adv" => [
|
||||
"name" =>"Fav Advs",
|
||||
|
||||
],
|
||||
"my_adv" => [
|
||||
"name" =>"ADVS",
|
||||
|
||||
],
|
||||
"description" => [
|
||||
"name" =>"Περιγραφή",
|
||||
|
||||
],
|
||||
"type" => [
|
||||
"name" =>"Τύπος",
|
||||
|
||||
],
|
||||
"parent_adv" => [
|
||||
"name" =>"Σχετική διαφήμιση",
|
||||
|
||||
],
|
||||
"value" => [
|
||||
"name" =>"αξία",
|
||||
|
||||
],
|
||||
"home" =>"Σπίτι",
|
||||
"list-page" =>"Λίστα σελίδας",
|
||||
"search" =>"Ψάξιμο",
|
||||
"recommended" =>"Προτεινόμενες διαφημίσεις για εσάς",
|
||||
"sort_by" =>"Ταξινόμηση κατά",
|
||||
"pick_option" =>"Επιλέξτε μια επιλογή",
|
||||
"price_high" =>"Τιμή υψηλή προς χαμηλή",
|
||||
"price-low" =>"Τιμή χαμηλή έως υψηλή",
|
||||
"newest" =>"Νεότερο",
|
||||
"categories" =>"Κατηγορίες",
|
||||
"all_categories" =>"Όλες οι κατηγορίες",
|
||||
"location" =>"Τοποθεσία",
|
||||
"send_message" =>"Να στείλετε μήνυμα",
|
||||
"phone_gsm" =>"Τηλέφωνο Gsm",
|
||||
"phone_office" =>"Τηλέφωνο γραφείου",
|
||||
"add_to_favorites" =>"Προσθήκη στα αγαπημένα",
|
||||
"send" =>"Στείλετε",
|
||||
"search_name" =>"Όνομα αναζήτησης",
|
||||
"my_favorite_searches" =>"Αγαπημένες αναζητήσεις",
|
||||
"search_desc" =>"Μπορείτε να προσθέσετε και να διαχειριστείτε τις αγαπημένες σας επιλογές αναζήτησης εδώ.",
|
||||
"complaint_placeholder" =>"Πληκτρολογήστε τα στοιχεία της καταγγελίας σας εδώ.",
|
||||
"show_details" =>"Δείξε λεπτομέρειες",
|
||||
"edit" =>"Επεξεργασία",
|
||||
"approve" =>"Εγκρίνω",
|
||||
"passive" =>"Παθητικός",
|
||||
"offered_by" =>"Προσφέρεται από",
|
||||
"more_ads_by" =>"Περισσότερες διαφημίσεις από",
|
||||
"click_phone" =>"Εμφάνιση αριθμού τηλεφώνου",
|
||||
"share" =>"Κοινή χρήση αυτής της διαφήμισης",
|
||||
"report" =>"Αναφορά αυτής της διαφήμισης",
|
||||
"features" =>"Χαρακτηριστικά",
|
||||
"recommended_ads" =>"Προτεινόμενες διαφημίσεις για εσάς",
|
||||
"new" =>"Νέος",
|
||||
"short_info" =>"Σύντομες πληροφορίες",
|
||||
"secure_trading" =>"Ασφαλής εμπορία",
|
||||
"24/7" =>"Υποστήριξη 24/7",
|
||||
"easy_trading" =>"Εύκολη συναλλαγή",
|
||||
"need_help" =>"Χρειάζεστε βοήθεια?",
|
||||
"give_a_call" =>"Δώστε μια κλήση",
|
||||
"message_sent" =>"Το μήνυμα στάλθηκε!",
|
||||
"asap" =>"Μήνυμα αποστέλλεται,
|
||||
ο πωλητής θα επικοινωνήσει μαζί σας σύντομα.",
|
||||
"ad_id" =>"Αναγνωριστικό διαφήμισης",
|
||||
"contact_with" =>"Επικοινωνήστε με",
|
||||
"create_adv" =>"Δημιουργία διαφήμισης",
|
||||
"edit_adv" =>"Επεξεργασία διαφήμισης",
|
||||
"mandatory_fields" =>"Υποχρεωτικά πεδία",
|
||||
"ad_post" =>"Δημοσίευση διαφημίσεων",
|
||||
"sell_item" =>"Πουλήστε ένα στοιχείο ή μια υπηρεσία",
|
||||
"search_save" =>"Η αγαπημένη αναζήτηση αποθηκεύτηκε με επιτυχία",
|
||||
"address" =>"Διεύθυνση",
|
||||
"email" =>"ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ",
|
||||
"phone" =>"Τηλέφωνο",
|
||||
"send_us_your_feedback" =>"Στείλτε μας τα σχόλιά σας",
|
||||
"online_shopping" =>"ΠΑΙΡΝΩ",
|
||||
"approved" =>"",
|
||||
"declined" =>"Απορρίφθηκε με επιτυχία",
|
||||
"search_on_map" =>"Αναζήτηση στο χάρτη",
|
||||
"post_free_ad" =>"Δημοσίευση δωρεάν διαφήμισης",
|
||||
"select_a_category" =>"Επιλέξτε μία κατηγορία",
|
||||
"select_a_sub_category" =>"Επιλέξτε μία υπο-κατηγορία",
|
||||
"all_dopings_added" =>"Όλοι οι τύποι ντόπινγκ προστίθενται για αυτήν τη διαφήμιση.",
|
||||
"is_get_adv" => [
|
||||
"name" =>"ΠΑΙΡΝΩ",
|
||||
|
||||
],
|
||||
"corporate_info" =>"Εταιρικές πληροφορίες",
|
||||
"featured_ads" =>"Προτεινόμενες διαφημίσεις",
|
||||
"trending_ads" =>"Αλλαγή διαφημίσεων",
|
||||
"search_ads_result_message" => [
|
||||
"name" =>": βρέθηκαν οι αγγελίες που βρέθηκαν για:αναζήτηση ονόματος",
|
||||
|
||||
],
|
||||
"total" =>"Σύνολο",
|
||||
"quantity" =>"Ποσότητα",
|
||||
"view_cart" =>"Δείτε το καλάθι",
|
||||
"no_ads" =>"Χωρίς διαφημίσεις!",
|
||||
"show_display_mode" => [
|
||||
"map" =>"Χάρτης",
|
||||
"list" =>"Λίστα",
|
||||
|
||||
],
|
||||
"streetview" =>"θέα στο δρόμο",
|
||||
"advs_list_table_thead" => [
|
||||
"name" =>"Adv Name",
|
||||
"price" =>"Τιμή",
|
||||
"publish_at" =>"Ημερομηνία διαφήμισης",
|
||||
"location_city" =>"Πόλη",
|
||||
"location_country" =>"Χώρα",
|
||||
|
||||
],
|
||||
"show_list_view" => [
|
||||
"name" =>"",
|
||||
|
||||
],
|
||||
"show_table_view" => [
|
||||
"name" =>"Τραπέζι",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"error_added_cart" =>"Το προϊόν που ζητήσατε λείπει ή είναι ανενεργό",
|
||||
"please_buy_package" =>"Αγοράστε πακέτο"
|
||||
];
|
||||
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"Advs",
|
||||
"option" => [
|
||||
"read" =>"Μπορεί να διαβάσει τις συμβουλές; ",
|
||||
"write" =>"Μπορεί να δημιουργήσει / να επεξεργαστεί διαφημίσεις; ",
|
||||
"delete" =>"Μπορεί να διαγράψει διαφημίσεις;"
|
||||
],
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"Κατηγορίες",
|
||||
"option" => [
|
||||
"read" =>"Μπορεί να διαβάσει κατηγορίες; ",
|
||||
"write" =>"Μπορεί να δημιουργήσει / να επεξεργαστεί κατηγορίες; ",
|
||||
"delete" =>"Μπορούν να διαγραφούν κατηγορίες;"
|
||||
],
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Χωριό",
|
||||
"option" => [
|
||||
"read" =>"Μπορεί να διαβάσει χωριό; ",
|
||||
"write" =>"Μπορεί να δημιουργήσει / επεξεργαστεί το χωριό; ",
|
||||
"delete" =>"Μπορεί να διαγράψει χωριό;"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"Προσαρμοσμένα πεδία",
|
||||
"option" => [
|
||||
"read" =>"Μπορεί να διαβάσει προσαρμοσμένα πεδία; ",
|
||||
"write" =>"Μπορεί να δημιουργήσει / να επεξεργαστεί προσαρμοσμένα πεδία; ",
|
||||
"delete" =>"Μπορούν να διαγραφούν προσαρμοσμένα πεδία;"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"Προσαρμοσμένο τομέα συμβουλές",
|
||||
"option" => [
|
||||
"read" =>"Μπορεί να διαβάσει τις συμβουλές προσαρμοσμένου πεδίου; ",
|
||||
"write" =>"Μπορεί να δημιουργήσει / να επεξεργαστεί προσαρμοσμένες συμβουλές πεδίου; ",
|
||||
"delete" =>"Μπορούν να διαγραφούν οι συμβουλές προσαρμοσμένου πεδίου;"
|
||||
],
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"Cf τιμές",
|
||||
"option" => [
|
||||
"read" =>"Μπορεί να διαβάσει τιμές cf; ",
|
||||
"write" =>"Μπορεί να δημιουργήσει / να επεξεργαστεί τιμές cf; ",
|
||||
"delete" =>"Μπορεί να διαγράψει τιμές cf;",
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"title" =>"Advs",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"title" =>"Κατηγορίες",
|
||||
|
||||
],
|
||||
"countries" => [
|
||||
"title" =>"Χώρες",
|
||||
|
||||
],
|
||||
"cities" => [
|
||||
"title" =>"Πόλεις",
|
||||
|
||||
],
|
||||
"districts" => [
|
||||
"title" =>"Περιοχές",
|
||||
|
||||
],
|
||||
"neighborhoods" => [
|
||||
"title" =>"Γειτονιές",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"title" =>"Χωριό",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"title" =>"Προσαρμοσμένα πεδία",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"title" =>"Προσαρμοσμένο τομέα συμβουλές",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"title" =>"Cf τιμές",
|
||||
|
||||
],
|
||||
"fields" => [
|
||||
"title" =>"Προσαρμοσμένα πεδία",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,132 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"auto_approve" => [
|
||||
"name" =>"Αυτόματη έγκριση",
|
||||
|
||||
],
|
||||
"default_published_time" => [
|
||||
"name" =>"Προεπιλεγμένος χρόνος δημοσίευσης",
|
||||
|
||||
],
|
||||
"default_adv_limit" => [
|
||||
"name" =>"Προεπιλεγμένο όριο διαφημίσεων",
|
||||
|
||||
],
|
||||
"address" => [
|
||||
"name" =>"Επικοινωνία με τη διεύθυνση",
|
||||
|
||||
],
|
||||
"phone" => [
|
||||
"name" =>"τηλέφωνο επικοινωνίας",
|
||||
|
||||
],
|
||||
"contact_mail" => [
|
||||
"name" =>"Επικοινωνήστε με το ταχυδρομείο",
|
||||
"warning" =>"Αυτόματη προσθήκη ονόματος ιστότοπου <strong>info</strong> @sitename",
|
||||
|
||||
],
|
||||
"map_coordinates_long" => [
|
||||
"name" =>"Χάρτης Μεγάλος Συντονισμός",
|
||||
|
||||
],
|
||||
"map_coordinates_lat" => [
|
||||
"name" =>"Χάρτης συντεταγμένων",
|
||||
|
||||
],
|
||||
"logo" => [
|
||||
"name" =>"Λογότυπο",
|
||||
|
||||
],
|
||||
"ogImage" => [
|
||||
"name" =>"Κοινωνικό Λογότυπο Share",
|
||||
"warning" =>"Θα πρέπει να έχει ανάλυση 1200 x 630.",
|
||||
|
||||
],
|
||||
"currencies" => [
|
||||
"name" =>"Ενεργά νομίσματα",
|
||||
|
||||
],
|
||||
"site_address" => [
|
||||
"name" =>"Διεύθυνση ιστοτόπου",
|
||||
"warning" =>"Αυτόματη προσθήκη www. www. <strong>sitename.com</strong>",
|
||||
|
||||
],
|
||||
"google_map_key" => [
|
||||
"name" =>"Το Google Map Api Key",
|
||||
|
||||
],
|
||||
"default_country" => [
|
||||
"name" =>"Προεπιλεγμένη χώρα διαφήμισης",
|
||||
|
||||
],
|
||||
"default_city" => [
|
||||
"name" =>"Προεπιλεγμένη πόλη διαφήμισης",
|
||||
|
||||
],
|
||||
"default_district" => [
|
||||
"name" =>"Προεπιλεγμένη περιοχή διαφήμισης",
|
||||
|
||||
],
|
||||
"default_neighborhood" => [
|
||||
"name" =>"Προεπιλεγμένη γειτονιά διαφήμισης",
|
||||
|
||||
],
|
||||
"default_currency" => [
|
||||
"name" =>"Βασικό νόμισμα διαφήμισης",
|
||||
|
||||
],
|
||||
"default_GET" => [
|
||||
"name" =>"Προεπιλεγμένη διαφήμιση GET",
|
||||
|
||||
],
|
||||
"twitter" => [
|
||||
"name" =>"Κελάδημα",
|
||||
|
||||
],
|
||||
"facebook" => [
|
||||
"name" =>"Facebook",
|
||||
|
||||
],
|
||||
"youtube" => [
|
||||
"name" =>"Youtube",
|
||||
|
||||
],
|
||||
"google" => [
|
||||
"name" =>"Google",
|
||||
|
||||
],
|
||||
"watermark_type" => [
|
||||
"name" =>"Τύπος υδατογραφήματος",
|
||||
|
||||
],
|
||||
"watermark_text" => [
|
||||
"name" =>"Κείμενο υδατογράφημα",
|
||||
|
||||
],
|
||||
"watermark_image" => [
|
||||
"name" =>"Εικόνα υδατογράφημα",
|
||||
|
||||
],
|
||||
"watermark_position" => [
|
||||
"name" =>"Θέση υδατοσήματος",
|
||||
|
||||
],
|
||||
"watermark_opacity" => [
|
||||
"name" =>"Αδιαφάνεια του υδατογραφήματος",
|
||||
|
||||
],
|
||||
"listing_page_image" => [
|
||||
"name" =>"Λίστα εικόνων σελίδας",
|
||||
|
||||
],
|
||||
"enabled_currencies" => [
|
||||
"name" =>"Ενεργοποιημένα νομίσματα",
|
||||
|
||||
],
|
||||
"google_statistic_code" => [
|
||||
"name" =>"Στατιστικό κώδικα Google",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"Advs",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"Κατηγορίες",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Χωριό",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"Προσαρμοσμένα πεδία",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"Προσαρμοσμένο τομέα συμβουλές",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"Cf τιμές",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'title' => 'Advs',
|
||||
'name' => 'Advs Module',
|
||||
'description' => 'Description',
|
||||
];
|
||||
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'new_adv' => 'New Adv',
|
||||
'new_category' => 'New Category',
|
||||
'new_country' => 'New Country',
|
||||
'new_city' => 'New City',
|
||||
'new_district' => 'New District',
|
||||
'new_neighborhood' => 'New Neighborhood',
|
||||
'new_village' => 'New Village',
|
||||
'approve' => "Approve",
|
||||
'decline' => 'Decline',
|
||||
'sub_category' => 'Sub Categories',
|
||||
'add_sub_category' => 'Add Sub Category',
|
||||
'sub_cities' => 'Sub Cities',
|
||||
'add_sub_cities' => 'Add Sub City',
|
||||
'add_sub_districts' => 'Add Sub District',
|
||||
'add_sub_neighborhoods' => 'Add Sub Neighborhood',
|
||||
'add_sub_village' => 'Add Sub Village',
|
||||
'sub_districts' => 'Sub Districts',
|
||||
'sub_neighborhoods' => 'Sub Neighborhoods',
|
||||
'sub_village' => 'Sub Village',
|
||||
'general_settings' => 'General Settings',
|
||||
];
|
||||
204
addons/default/visiosoft/advs-module/resources/lang/en/field.php
Normal file
204
addons/default/visiosoft/advs-module/resources/lang/en/field.php
Normal file
@ -0,0 +1,204 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'name' => [
|
||||
'name' => 'Title'
|
||||
],
|
||||
'order' => [
|
||||
'name' => 'Order'
|
||||
],
|
||||
'slug' => [
|
||||
'name' => 'Slug'
|
||||
],
|
||||
'parent_category' => [
|
||||
'name' => 'Parent'
|
||||
],
|
||||
'category' => [
|
||||
'name' => 'Category Title'
|
||||
],
|
||||
'price' => [
|
||||
'name' => 'Price'
|
||||
],
|
||||
'stock' => [
|
||||
'name' => 'Stock'
|
||||
],
|
||||
'advs_desc' => [
|
||||
'name' => 'Description'
|
||||
],
|
||||
'online_payment' => [
|
||||
'name' => 'Online Payment'
|
||||
],
|
||||
'city' => [
|
||||
'name' => 'City'
|
||||
],
|
||||
'country' => [
|
||||
'name' => 'Country'
|
||||
],
|
||||
'district' => [
|
||||
'name' => 'District'
|
||||
],
|
||||
'neighborhood' => [
|
||||
'name' => 'Neighborhood'
|
||||
],
|
||||
'village' => [
|
||||
'name' => 'Village'
|
||||
],
|
||||
'files' => [
|
||||
'name' => 'Images'
|
||||
],
|
||||
'cat1' => [
|
||||
'name' => 'Main Category'
|
||||
],
|
||||
'cat2' => [
|
||||
'name' => 'Sub Category 1'
|
||||
],
|
||||
'cat3' => [
|
||||
'name' => 'Sub Category 2'
|
||||
],
|
||||
'cat4' => [
|
||||
'name' => 'Sub Category 3'
|
||||
],
|
||||
'cat5' => [
|
||||
'name' => 'Sub Category 4'
|
||||
],
|
||||
'cat6' => [
|
||||
'name' => 'Sub Category 5'
|
||||
],
|
||||
'cat7' => [
|
||||
'name' => 'Sub Category 6'
|
||||
],
|
||||
'currency' => [
|
||||
'name' => 'Currency'
|
||||
],
|
||||
'status' => [
|
||||
'name' => 'Status'
|
||||
],
|
||||
'next_add_advs_title' => [
|
||||
'name' => 'Post an Ad in just 30 seconds'
|
||||
],
|
||||
'next_add_advs_msg' => [
|
||||
'name' => 'Please DO NOT post multiple ads for the same items or service. All duplicate, spam and wrongly categorized ads will be deleted.'
|
||||
],
|
||||
'next_add_advs_btn' => [
|
||||
'name' => 'Next'
|
||||
],
|
||||
'cancel_add_advs_btn' => [
|
||||
'name' => 'or Cancel'
|
||||
],
|
||||
'pending_adv' => [
|
||||
'name' => 'Pending Advs'
|
||||
],
|
||||
'archived_adv' => [
|
||||
'name' => 'Archived Advs'
|
||||
],
|
||||
'favs_adv' => [
|
||||
'name' => 'Fav Advs'
|
||||
],
|
||||
'my_adv' => [
|
||||
'name' => 'ADVS'
|
||||
],
|
||||
'description' => [
|
||||
'name' => 'Description'
|
||||
],
|
||||
'type' => [
|
||||
'name' => 'Type'
|
||||
],
|
||||
'parent_adv' => [
|
||||
'name' => 'Related Ad'
|
||||
],
|
||||
'value' => [
|
||||
'name' => 'Value'
|
||||
],
|
||||
'home' => 'Home',
|
||||
'list-page' => 'List Page',
|
||||
'search' => 'Search',
|
||||
'recommended' => 'Recommended Ads for You',
|
||||
'sort_by' => 'Sort By',
|
||||
'pick_option' => 'Pick an option',
|
||||
'price_high' => 'Price High to Low',
|
||||
'price-low' => 'Price Low to High',
|
||||
'newest' => 'Newest',
|
||||
'categories' => 'Categories',
|
||||
'all_categories' => 'All Categories',
|
||||
'location' => 'Location',
|
||||
'send_message' => 'Send Message',
|
||||
'phone_gsm' => 'Gsm Phone',
|
||||
'phone_office' => 'Office Phone',
|
||||
'add_to_favorites' => "Add to Favorites",
|
||||
'send' => 'Send',
|
||||
'search_name' => 'Search Name',
|
||||
'my_favorite_searches' => 'Favorite Searches',
|
||||
'search_desc' => 'You can add and manage your favorite search selections here.',
|
||||
'complaint_placeholder' => 'Type your complaint details here.',
|
||||
'show_details' => 'Show Details',
|
||||
'edit' => 'Edit',
|
||||
'approve' => 'Approve',
|
||||
'passive' => "Passive",
|
||||
'offered_by' => 'Offered By',
|
||||
'more_ads_by' => 'More Ads By',
|
||||
'click_phone' => 'Show phone number',
|
||||
'share' => 'Share this ad',
|
||||
'report' => 'Report this ad',
|
||||
'features' => 'Features',
|
||||
'recommended_ads' => 'Recommended Ads for You',
|
||||
'new' => 'New',
|
||||
'short_info' => 'Short Info',
|
||||
'secure_trading' => 'Secure Trading',
|
||||
'24/7' => '24/7 Support',
|
||||
'easy_trading' => 'Easy Trading',
|
||||
'need_help' => 'Need help?',
|
||||
'give_a_call' => 'Give a call on',
|
||||
'message_sent' => 'Message Sent!',
|
||||
'asap' => 'Message sent, seller will contact you asap.',
|
||||
'ad_id' => 'Ad Id',
|
||||
'contact_with' => 'Contact With',
|
||||
'create_adv' => 'Create Adv',
|
||||
'edit_adv' => 'Edit Adv',
|
||||
'mandatory_fields' => 'Mandatory Fields',
|
||||
'ad_post' => 'Ad Post',
|
||||
'sell_item' => 'Sell an item or service',
|
||||
'search_save' => 'Favorite search saved successfully',
|
||||
'address' => 'Address',
|
||||
'email' => 'E-Mail',
|
||||
'phone' => 'Phone',
|
||||
'send_us_your_feedback' => 'Send Us Your Feedback',
|
||||
'online_shopping' => 'GET',
|
||||
'approved' => 'Approved Successfully',
|
||||
'declined' => 'Declined Successfully',
|
||||
'search_on_map' => 'Search on Map',
|
||||
'post_free_ad' => 'Post Free Ad',
|
||||
'select_a_category' => 'Select a Category',
|
||||
'select_a_sub_category' => 'Select a Sub Category',
|
||||
'all_dopings_added' => 'All doping types are added for this ad.',
|
||||
'is_get_adv' => [
|
||||
'name' => 'GET'
|
||||
],
|
||||
'corporate_info' => 'Corporate Info',
|
||||
'featured_ads' => "Featured Ads",
|
||||
'trending_ads' => 'Trendind Ads',
|
||||
'search_ads_result_message' => [
|
||||
'name' => ':count ads found for :name search',
|
||||
],
|
||||
'total' => 'Total',
|
||||
'quantity' => 'Quantity',
|
||||
'view_cart' => 'View Cart',
|
||||
'no_ads' => 'No Ads!',
|
||||
'show_display_mode' => [
|
||||
'map' => 'Map',
|
||||
'list' => 'List',
|
||||
],
|
||||
'streetview' => 'Street View',
|
||||
'advs_list_table_thead' => [
|
||||
'name' => 'Adv Name',
|
||||
'price' => 'Price',
|
||||
'publish_at' => 'Ad Date',
|
||||
'location_city' => 'City',
|
||||
'location_country' => 'Country',
|
||||
],
|
||||
'show_list_view' => [
|
||||
'name' => 'List',
|
||||
],
|
||||
'show_table_view' => [
|
||||
'name' => 'Table',
|
||||
]
|
||||
];
|
||||
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'error_added_cart' => 'Requested product is currently missing or inactive',
|
||||
'please_buy_package' => 'Please buy package',
|
||||
];
|
||||
@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'advs' => [
|
||||
'name' => 'Advs',
|
||||
'option' => [
|
||||
'read' => 'Can read advs?',
|
||||
'write' => 'Can create/edit advs?',
|
||||
'delete' => 'Can delete advs?',
|
||||
],
|
||||
],
|
||||
'categories' => [
|
||||
'name' => 'Categories',
|
||||
'option' => [
|
||||
'read' => 'Can read categories?',
|
||||
'write' => 'Can create/edit categories?',
|
||||
'delete' => 'Can delete categories?',
|
||||
],
|
||||
],
|
||||
'village' => [
|
||||
'name' => 'Village',
|
||||
'option' => [
|
||||
'read' => 'Can read village?',
|
||||
'write' => 'Can create/edit village?',
|
||||
'delete' => 'Can delete village?',
|
||||
],
|
||||
],
|
||||
'custom_fields' => [
|
||||
'name' => 'Custom fields',
|
||||
'option' => [
|
||||
'read' => 'Can read custom fields?',
|
||||
'write' => 'Can create/edit custom fields?',
|
||||
'delete' => 'Can delete custom fields?',
|
||||
],
|
||||
],
|
||||
'custom_field_advs' => [
|
||||
'name' => 'Custom field advs',
|
||||
'option' => [
|
||||
'read' => 'Can read custom field advs?',
|
||||
'write' => 'Can create/edit custom field advs?',
|
||||
'delete' => 'Can delete custom field advs?',
|
||||
],
|
||||
],
|
||||
'cf_values' => [
|
||||
'name' => 'Cf values',
|
||||
'option' => [
|
||||
'read' => 'Can read cf values?',
|
||||
'write' => 'Can create/edit cf values?',
|
||||
'delete' => 'Can delete cf values?',
|
||||
],
|
||||
],
|
||||
];
|
||||
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'advs' => [
|
||||
'title' => 'Advs',
|
||||
],
|
||||
'categories' => [
|
||||
'title' => 'Categories',
|
||||
],
|
||||
'countries' => [
|
||||
'title' => 'Countries',
|
||||
],
|
||||
'cities' => [
|
||||
'title' => 'Cities',
|
||||
],
|
||||
'districts' => [
|
||||
'title' => 'Districts',
|
||||
],
|
||||
'neighborhoods' => [
|
||||
'title' => 'Neighborhoods',
|
||||
],
|
||||
'village' => [
|
||||
'title' => 'Village',
|
||||
],
|
||||
'custom_fields' => [
|
||||
'title' => 'Custom fields',
|
||||
],
|
||||
'custom_field_advs' => [
|
||||
'title' => 'Custom field advs',
|
||||
],
|
||||
'cf_values' => [
|
||||
'title' => 'Cf values',
|
||||
],
|
||||
'fields' => [
|
||||
'title' => 'Custom Fields'
|
||||
]
|
||||
];
|
||||
@ -0,0 +1,102 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'auto_approve' => [
|
||||
'name' => 'Auto Approve',
|
||||
],
|
||||
'default_published_time' => [
|
||||
'name' => 'Default Publish Time',
|
||||
],
|
||||
'default_adv_limit' => [
|
||||
'name' => 'Default Ads Limit',
|
||||
],
|
||||
'address' => [
|
||||
'name' => 'Contact Adress',
|
||||
],
|
||||
'phone' => [
|
||||
'name' => 'Contact Phone',
|
||||
],
|
||||
'contact_mail' => [
|
||||
'name' => 'Contact Mail',
|
||||
'warning' => 'Auto added sitename <strong>info</strong>@sitename ',
|
||||
],'map_coordinates_long' => [
|
||||
'name' => 'Map Long Coordinate',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
'name' => 'Map Lat Coordinate',
|
||||
],
|
||||
'logo' => [
|
||||
'name' => 'Logo',
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Social Share Logo',
|
||||
'warning' => 'It should be at a resolution of 1200 x 630. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
'name' => 'Active Currencies',
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Site address',
|
||||
'warning' => 'Auto added www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api Key',
|
||||
],
|
||||
|
||||
'default_country' => [
|
||||
'name' => 'Default Ad Country',
|
||||
],
|
||||
'default_city' => [
|
||||
'name' => 'Default Ad City',
|
||||
],
|
||||
'default_district' => [
|
||||
'name' => 'Default Ad District',
|
||||
],
|
||||
'default_neighborhood' => [
|
||||
'name' => 'Default Ad Neighborhood',
|
||||
],
|
||||
'default_currency' => [
|
||||
'name' => 'Default Ad Currency',
|
||||
],
|
||||
'default_GET' => [
|
||||
'name' => 'Default Ad GET',
|
||||
],
|
||||
'twitter' => [
|
||||
'name' => 'Twitter',
|
||||
],
|
||||
'facebook' => [
|
||||
'name' => 'Facebook',
|
||||
],
|
||||
'youtube' => [
|
||||
'name' => 'Youtube',
|
||||
],
|
||||
'google' => [
|
||||
'name' => 'Google',
|
||||
],
|
||||
'watermark_type' => [
|
||||
'name' => 'Watermark Type',
|
||||
],
|
||||
'watermark_text' => [
|
||||
'name' => 'Watermark Text',
|
||||
],
|
||||
'watermark_image' => [
|
||||
'name' => 'Watermark Image',
|
||||
],
|
||||
'watermark_position' => [
|
||||
'name' => 'Watermark Position',
|
||||
],
|
||||
'watermark_opacity' => [
|
||||
'name' => 'Watermark Opacity',
|
||||
],
|
||||
'listing_page_image' => [
|
||||
'name' => 'Listing Page Image',
|
||||
],
|
||||
'enabled_currencies' => [
|
||||
'name' => 'Enabled Currencies',
|
||||
],
|
||||
'google_statistic_code' => [
|
||||
'name' => 'Google Statistic Code',
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'advs' => [
|
||||
'name' => 'Advs',
|
||||
],
|
||||
'categories' => [
|
||||
'name' => 'Categories',
|
||||
],
|
||||
'village' => [
|
||||
'name' => 'Village',
|
||||
],
|
||||
'custom_fields' => [
|
||||
'name' => 'Custom fields',
|
||||
],
|
||||
'custom_field_advs' => [
|
||||
'name' => 'Custom field advs',
|
||||
],
|
||||
'cf_values' => [
|
||||
'name' => 'Cf values',
|
||||
],
|
||||
];
|
||||
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"title" =>"Advs",
|
||||
"name" =>"Módulo Advs",
|
||||
"description" =>"Descripción"
|
||||
];
|
||||
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"new_adv" =>"Nuevo Adv",
|
||||
"new_category" =>"Nueva categoría",
|
||||
"new_country" =>"Nuevo país",
|
||||
"new_city" =>"Ciudad Nueva",
|
||||
"new_district" =>"Nuevo distrito",
|
||||
"new_neighborhood" =>"Nuevo barrio",
|
||||
"new_village" =>"Pueblo Nuevo",
|
||||
"approve" =>"Aprobar",
|
||||
"decline" =>"Disminución",
|
||||
"sub_category" =>"Subcategorias",
|
||||
"add_sub_category" =>"Añadir subcategoría",
|
||||
"sub_cities" =>"Ciudades secundarias",
|
||||
"add_sub_cities" =>"Añadir Sub City",
|
||||
"add_sub_districts" =>"Añadir Sub Distrito",
|
||||
"add_sub_neighborhoods" =>"Añadir sub barrio",
|
||||
"add_sub_village" =>"Añadir Sub Village",
|
||||
"sub_districts" =>"Subdistritos",
|
||||
"sub_neighborhoods" =>"Sub Barrios",
|
||||
"sub_village" =>"Sub aldea",
|
||||
"general_settings" =>"Configuración general"
|
||||
];
|
||||
249
addons/default/visiosoft/advs-module/resources/lang/es/field.php
Normal file
249
addons/default/visiosoft/advs-module/resources/lang/es/field.php
Normal file
@ -0,0 +1,249 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"name" => [
|
||||
"name" =>"Título",
|
||||
|
||||
],
|
||||
"order" => [
|
||||
"name" =>"Orden",
|
||||
|
||||
],
|
||||
"slug" => [
|
||||
"name" =>"Babosa",
|
||||
|
||||
],
|
||||
"parent_category" => [
|
||||
"name" =>"Padre",
|
||||
|
||||
],
|
||||
"category" => [
|
||||
"name" =>"Título de la categoría",
|
||||
|
||||
],
|
||||
"price" => [
|
||||
"name" =>"Precio",
|
||||
|
||||
],
|
||||
"stock" => [
|
||||
"name" =>"Valores",
|
||||
|
||||
],
|
||||
"advs_desc" => [
|
||||
"name" =>"Descripción",
|
||||
|
||||
],
|
||||
"online_payment" => [
|
||||
"name" =>"Pago en línea",
|
||||
|
||||
],
|
||||
"city" => [
|
||||
"name" =>"Ciudad",
|
||||
|
||||
],
|
||||
"country" => [
|
||||
"name" =>"País",
|
||||
|
||||
],
|
||||
"district" => [
|
||||
"name" =>"Distrito",
|
||||
|
||||
],
|
||||
"neighborhood" => [
|
||||
"name" =>"Barrio",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Pueblo",
|
||||
|
||||
],
|
||||
"files" => [
|
||||
"name" =>"Imágenes",
|
||||
|
||||
],
|
||||
"cat1" => [
|
||||
"name" =>"categoria principal",
|
||||
|
||||
],
|
||||
"cat2" => [
|
||||
"name" =>"Subcategoría 1",
|
||||
|
||||
],
|
||||
"cat3" => [
|
||||
"name" =>"Subcategoría 2",
|
||||
|
||||
],
|
||||
"cat4" => [
|
||||
"name" =>"Subcategoría 3",
|
||||
|
||||
],
|
||||
"cat5" => [
|
||||
"name" =>"Subcategoría 4",
|
||||
|
||||
],
|
||||
"cat6" => [
|
||||
"name" =>"Subcategoría 5",
|
||||
|
||||
],
|
||||
"cat7" => [
|
||||
"name" =>"Subcategoría 6",
|
||||
|
||||
],
|
||||
"currency" => [
|
||||
"name" =>"Moneda",
|
||||
|
||||
],
|
||||
"status" => [
|
||||
"name" =>"Estado",
|
||||
|
||||
],
|
||||
"next_add_advs_title" => [
|
||||
"name" =>"Publica un anuncio en solo 30 segundos.",
|
||||
|
||||
],
|
||||
"next_add_advs_msg" => [
|
||||
"name" =>"Por favor NO publique varios anuncios para los mismos artículos o servicios. Todos los anuncios duplicados,
|
||||
spam y categorizados erróneamente serán eliminados.",
|
||||
|
||||
],
|
||||
"next_add_advs_btn" => [
|
||||
"name" =>"Siguiente",
|
||||
|
||||
],
|
||||
"cancel_add_advs_btn" => [
|
||||
"name" =>"O cancelar",
|
||||
|
||||
],
|
||||
"pending_adv" => [
|
||||
"name" =>"Avances pendientes",
|
||||
|
||||
],
|
||||
"archived_adv" => [
|
||||
"name" =>"Advs Archivados",
|
||||
|
||||
],
|
||||
"favs_adv" => [
|
||||
"name" =>"Fav Advs",
|
||||
|
||||
],
|
||||
"my_adv" => [
|
||||
"name" =>"ADVS",
|
||||
|
||||
],
|
||||
"description" => [
|
||||
"name" =>"Descripción",
|
||||
|
||||
],
|
||||
"type" => [
|
||||
"name" =>"Tipo",
|
||||
|
||||
],
|
||||
"parent_adv" => [
|
||||
"name" =>"Anuncio relacionado",
|
||||
|
||||
],
|
||||
"value" => [
|
||||
"name" =>"Valor",
|
||||
|
||||
],
|
||||
"home" =>"Casa",
|
||||
"list-page" =>"Página de lista",
|
||||
"search" =>"Buscar",
|
||||
"recommended" =>"Anuncios recomendados para usted",
|
||||
"sort_by" =>"Ordenar por",
|
||||
"pick_option" =>"Elige una opción",
|
||||
"price_high" =>"Precio alto a bajo",
|
||||
"price-low" =>"Precios de barato a caro",
|
||||
"newest" =>"El más nuevo",
|
||||
"categories" =>"Las categorías",
|
||||
"all_categories" =>"todas las categorias",
|
||||
"location" =>"Ubicación",
|
||||
"send_message" =>"Enviar mensaje",
|
||||
"phone_gsm" =>"Teléfono gsm",
|
||||
"phone_office" =>"Telefono de oficina",
|
||||
"add_to_favorites" =>"Agregar a los favoritos",
|
||||
"send" =>"Enviar",
|
||||
"search_name" =>"Nombre de búsqueda",
|
||||
"my_favorite_searches" =>"Búsquedas favoritas",
|
||||
"search_desc" =>"Puede agregar y administrar sus selecciones de búsqueda favoritas aquí.",
|
||||
"complaint_placeholder" =>"Escriba los detalles de su queja aquí.",
|
||||
"show_details" =>"Mostrar detalles",
|
||||
"edit" =>"Editar",
|
||||
"approve" =>"Aprobar",
|
||||
"passive" =>"Pasivo",
|
||||
"offered_by" =>"Ofrecido por",
|
||||
"more_ads_by" =>"Más anuncios por",
|
||||
"click_phone" =>"Mostrar número de teléfono",
|
||||
"share" =>"Comparte este anuncio",
|
||||
"report" =>"Reportar este anuncio",
|
||||
"features" =>"Caracteristicas",
|
||||
"recommended_ads" =>"Anuncios recomendados para usted",
|
||||
"new" =>"Nuevo",
|
||||
"short_info" =>"Información Corta",
|
||||
"secure_trading" =>"Comercio seguro",
|
||||
"24/7" =>"Soporte 24/7",
|
||||
"easy_trading" =>"Comercio fácil",
|
||||
"need_help" =>"¿Necesitas ayuda?",
|
||||
"give_a_call" =>"Dar una llamada en",
|
||||
"message_sent" =>"¡Mensaje enviado!",
|
||||
"asap" =>"Mensaje enviado,
|
||||
el vendedor lo contactará lo antes posible.",
|
||||
"ad_id" =>"ID de anuncio",
|
||||
"contact_with" =>"Contactar con",
|
||||
"create_adv" =>"Crear Adv",
|
||||
"edit_adv" =>"Editar Adv",
|
||||
"mandatory_fields" =>"Campos obligatorios",
|
||||
"ad_post" =>"Anuncio publicitario",
|
||||
"sell_item" =>"Vender un artículo o servicio",
|
||||
"search_save" =>"Búsqueda favorita guardada exitosamente",
|
||||
"address" =>"Dirección",
|
||||
"email" =>"Correo electrónico",
|
||||
"phone" =>"Teléfono",
|
||||
"send_us_your_feedback" =>"Envíenos sus comentarios",
|
||||
"online_shopping" =>"OBTENER",
|
||||
"approved" =>"Aprobado con éxito",
|
||||
"declined" =>"Declinado exitosamente",
|
||||
"search_on_map" =>"Buscar en el mapa",
|
||||
"post_free_ad" =>"Publicar anuncio gratis",
|
||||
"select_a_category" =>"Seleccione una categoría",
|
||||
"select_a_sub_category" =>"Selecciona una sub-categoría",
|
||||
"all_dopings_added" =>"Todos los tipos de dopaje se añaden para este anuncio.",
|
||||
"is_get_adv" => [
|
||||
"name" =>"OBTENER",
|
||||
|
||||
],
|
||||
"corporate_info" =>"Información Corporativa",
|
||||
"featured_ads" =>"Anuncios destacados",
|
||||
"trending_ads" =>"Trendind Ads",
|
||||
"search_ads_result_message" => [
|
||||
"name" =>": se han encontrado anuncios de:búsqueda de nombres",
|
||||
|
||||
],
|
||||
"total" =>"Total",
|
||||
"quantity" =>"Cantidad",
|
||||
"view_cart" =>"Ver carrito",
|
||||
"no_ads" =>"¡Sin anuncios!",
|
||||
"show_display_mode" => [
|
||||
"map" =>"Mapa",
|
||||
"list" =>"Lista",
|
||||
|
||||
],
|
||||
"streetview" =>"vista de calle",
|
||||
"advs_list_table_thead" => [
|
||||
"name" =>"Nombre Adv",
|
||||
"price" =>"Precio",
|
||||
"publish_at" =>"Fecha del anuncio",
|
||||
"location_city" =>"Ciudad",
|
||||
"location_country" =>"País",
|
||||
|
||||
],
|
||||
"show_list_view" => [
|
||||
"name" =>"Lista",
|
||||
|
||||
],
|
||||
"show_table_view" => [
|
||||
"name" =>"Mesa",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"error_added_cart" =>"El producto solicitado está actualmente perdido o inactivo",
|
||||
"please_buy_package" =>"Por favor compre paquete"
|
||||
];
|
||||
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"Advs",
|
||||
"option" => [
|
||||
"read" =>"¿Se pueden leer advs? ",
|
||||
"write" =>"¿Se pueden crear / editar advs? ",
|
||||
"delete" =>"¿Se pueden eliminar advs?"
|
||||
],
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"Las categorías",
|
||||
"option" => [
|
||||
"read" =>"¿Se pueden leer categorías? ",
|
||||
"write" =>"¿Se pueden crear / editar categorías? ",
|
||||
"delete" =>"¿Se pueden eliminar categorías?"
|
||||
],
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Pueblo",
|
||||
"option" => [
|
||||
"read" =>"¿Se puede leer el pueblo? ",
|
||||
"write" =>"¿Se puede crear / editar aldea? ",
|
||||
"delete" =>"¿Se puede borrar el pueblo?"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"Campos Personalizados",
|
||||
"option" => [
|
||||
"read" =>"¿Se pueden leer campos personalizados? ",
|
||||
"write" =>"¿Se pueden crear / editar campos personalizados? ",
|
||||
"delete" =>"¿Se pueden eliminar campos personalizados?"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"Campo personalizado advs",
|
||||
"option" => [
|
||||
"read" =>"¿Se pueden leer advs de campos personalizados? ",
|
||||
"write" =>"¿Se pueden crear / editar advs de campos personalizados? ",
|
||||
"delete" =>"¿Se pueden eliminar advs de campos personalizados?"
|
||||
],
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"Valores cf",
|
||||
"option" => [
|
||||
"read" =>"¿Se pueden leer valores de cf? ",
|
||||
"write" =>"¿Se puede crear / editar valores cf? ",
|
||||
"delete" =>"¿Se pueden borrar los valores de cf?",
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"title" =>"Advs",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"title" =>"Las categorías",
|
||||
|
||||
],
|
||||
"countries" => [
|
||||
"title" =>"Países",
|
||||
|
||||
],
|
||||
"cities" => [
|
||||
"title" =>"Ciudades",
|
||||
|
||||
],
|
||||
"districts" => [
|
||||
"title" =>"Distritos",
|
||||
|
||||
],
|
||||
"neighborhoods" => [
|
||||
"title" =>"Barrios",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"title" =>"Pueblo",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"title" =>"Campos Personalizados",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"title" =>"Campo personalizado advs",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"title" =>"Valores cf",
|
||||
|
||||
],
|
||||
"fields" => [
|
||||
"title" =>"Campos Personalizados",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,132 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"auto_approve" => [
|
||||
"name" =>"Aprobación automática",
|
||||
|
||||
],
|
||||
"default_published_time" => [
|
||||
"name" =>"Tiempo de publicación predeterminado",
|
||||
|
||||
],
|
||||
"default_adv_limit" => [
|
||||
"name" =>"Límite de anuncios predeterminado",
|
||||
|
||||
],
|
||||
"address" => [
|
||||
"name" =>"Contacto direccion",
|
||||
|
||||
],
|
||||
"phone" => [
|
||||
"name" =>"teléfono de contacto",
|
||||
|
||||
],
|
||||
"contact_mail" => [
|
||||
"name" =>"Correo de contacto",
|
||||
"warning" =>"Auto añadido <strong>info nombre de sitio</strong> @sitename",
|
||||
|
||||
],
|
||||
"map_coordinates_long" => [
|
||||
"name" =>"Mapa de coordenadas largas",
|
||||
|
||||
],
|
||||
"map_coordinates_lat" => [
|
||||
"name" =>"Mapa de coordenadas latinas",
|
||||
|
||||
],
|
||||
"logo" => [
|
||||
"name" =>"Logo",
|
||||
|
||||
],
|
||||
"ogImage" => [
|
||||
"name" =>"Logotipo de Social Share",
|
||||
"warning" =>"Debe estar en una resolución de 1200 x 630.",
|
||||
|
||||
],
|
||||
"currencies" => [
|
||||
"name" =>"Monedas activas",
|
||||
|
||||
],
|
||||
"site_address" => [
|
||||
"name" =>"Dirección del sitio",
|
||||
"warning" =>"Auto añadido www. www. <strong>sitename.com</strong>",
|
||||
|
||||
],
|
||||
"google_map_key" => [
|
||||
"name" =>"Google Map Api Key",
|
||||
|
||||
],
|
||||
"default_country" => [
|
||||
"name" =>"País predeterminado del anuncio",
|
||||
|
||||
],
|
||||
"default_city" => [
|
||||
"name" =>"Ciudad de anuncios predeterminada",
|
||||
|
||||
],
|
||||
"default_district" => [
|
||||
"name" =>"Distrito de anuncios predeterminado",
|
||||
|
||||
],
|
||||
"default_neighborhood" => [
|
||||
"name" =>"Barrio de anuncios predeterminado",
|
||||
|
||||
],
|
||||
"default_currency" => [
|
||||
"name" =>"Moneda de anuncio predeterminada",
|
||||
|
||||
],
|
||||
"default_GET" => [
|
||||
"name" =>"Anuncio predeterminado GET",
|
||||
|
||||
],
|
||||
"twitter" => [
|
||||
"name" =>"Gorjeo",
|
||||
|
||||
],
|
||||
"facebook" => [
|
||||
"name" =>"Facebook",
|
||||
|
||||
],
|
||||
"youtube" => [
|
||||
"name" =>"Youtube",
|
||||
|
||||
],
|
||||
"google" => [
|
||||
"name" =>"Google",
|
||||
|
||||
],
|
||||
"watermark_type" => [
|
||||
"name" =>"Tipo de marca de agua",
|
||||
|
||||
],
|
||||
"watermark_text" => [
|
||||
"name" =>"Texto de marca de agua",
|
||||
|
||||
],
|
||||
"watermark_image" => [
|
||||
"name" =>"Imagen de marca de agua",
|
||||
|
||||
],
|
||||
"watermark_position" => [
|
||||
"name" =>"Posición de marca de agua",
|
||||
|
||||
],
|
||||
"watermark_opacity" => [
|
||||
"name" =>"Opacidad de la marca de agua",
|
||||
|
||||
],
|
||||
"listing_page_image" => [
|
||||
"name" =>"Imagen de la página de listado",
|
||||
|
||||
],
|
||||
"enabled_currencies" => [
|
||||
"name" =>"Monedas habilitadas",
|
||||
|
||||
],
|
||||
"google_statistic_code" => [
|
||||
"name" =>"Código estadístico de Google",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"Advs",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"Las categorías",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Pueblo",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"Campos Personalizados",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"Campo personalizado advs",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"Valores cf",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"title" =>"مشاوره",
|
||||
"name" =>"ماژول Advs",
|
||||
"description" =>"شرح"
|
||||
];
|
||||
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"new_adv" =>"مشاور جدید",
|
||||
"new_category" =>"دسته بندی جدید",
|
||||
"new_country" =>"کشور جدید",
|
||||
"new_city" =>"شهر جدید",
|
||||
"new_district" =>"منطقه جدید",
|
||||
"new_neighborhood" =>"محله جدید",
|
||||
"new_village" =>"روستای جدید",
|
||||
"approve" =>"تایید",
|
||||
"decline" =>"کاهش می یابد",
|
||||
"sub_category" =>"زیر شاخه ها",
|
||||
"add_sub_category" =>"اضافه کردن زیر شاخه",
|
||||
"sub_cities" =>"شهرهای زیر",
|
||||
"add_sub_cities" =>"اضافه کردن شهر زیر",
|
||||
"add_sub_districts" =>"اضافه کردن منطقه",
|
||||
"add_sub_neighborhoods" =>"اضافه کردن محله محله",
|
||||
"add_sub_village" =>"اضافه کردن روستای زیر",
|
||||
"sub_districts" =>"حوزه های فرعی",
|
||||
"sub_neighborhoods" =>"محله های زیر",
|
||||
"sub_village" =>"زیر روستا",
|
||||
"general_settings" =>"تنظیمات عمومی"
|
||||
];
|
||||
247
addons/default/visiosoft/advs-module/resources/lang/fa/field.php
Normal file
247
addons/default/visiosoft/advs-module/resources/lang/fa/field.php
Normal file
@ -0,0 +1,247 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"name" => [
|
||||
"name" =>"عنوان",
|
||||
|
||||
],
|
||||
"order" => [
|
||||
"name" =>"سفارش",
|
||||
|
||||
],
|
||||
"slug" => [
|
||||
"name" =>"لاغر",
|
||||
|
||||
],
|
||||
"parent_category" => [
|
||||
"name" =>"والدین",
|
||||
|
||||
],
|
||||
"category" => [
|
||||
"name" =>"عنوان رده",
|
||||
|
||||
],
|
||||
"price" => [
|
||||
"name" =>"قیمت",
|
||||
|
||||
],
|
||||
"stock" => [
|
||||
"name" =>"موجودی",
|
||||
|
||||
],
|
||||
"advs_desc" => [
|
||||
"name" =>"شرح",
|
||||
|
||||
],
|
||||
"online_payment" => [
|
||||
"name" =>"پرداخت آنلاین",
|
||||
|
||||
],
|
||||
"city" => [
|
||||
"name" =>"شهر",
|
||||
|
||||
],
|
||||
"country" => [
|
||||
"name" =>"کشور",
|
||||
|
||||
],
|
||||
"district" => [
|
||||
"name" =>"ناحیه",
|
||||
|
||||
],
|
||||
"neighborhood" => [
|
||||
"name" =>"محله",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"روستا",
|
||||
|
||||
],
|
||||
"files" => [
|
||||
"name" =>"تصاویر",
|
||||
|
||||
],
|
||||
"cat1" => [
|
||||
"name" =>"طبقه اصلی",
|
||||
|
||||
],
|
||||
"cat2" => [
|
||||
"name" =>"زیر رده 1",
|
||||
|
||||
],
|
||||
"cat3" => [
|
||||
"name" =>"زیر رده 2",
|
||||
|
||||
],
|
||||
"cat4" => [
|
||||
"name" =>"زیر رده 3",
|
||||
|
||||
],
|
||||
"cat5" => [
|
||||
"name" =>"زیر رده 4",
|
||||
|
||||
],
|
||||
"cat6" => [
|
||||
"name" =>"زیر رده 5",
|
||||
|
||||
],
|
||||
"cat7" => [
|
||||
"name" =>"زیر رده 6",
|
||||
|
||||
],
|
||||
"currency" => [
|
||||
"name" =>"واحد پول",
|
||||
|
||||
],
|
||||
"status" => [
|
||||
"name" =>"وضعیت",
|
||||
|
||||
],
|
||||
"next_add_advs_title" => [
|
||||
"name" =>"ارسال یک آگهی به مدت 30 ثانیه",
|
||||
|
||||
],
|
||||
"next_add_advs_msg" => [
|
||||
"name" =>"لطفا تبلیغات چندگانه را برای موارد مشابه یا خدمات ارسال نکنید. همه تکراری، هرزنامه و تبلیغات غلط طبقهبندی حذف خواهند شد.",
|
||||
|
||||
],
|
||||
"next_add_advs_btn" => [
|
||||
"name" =>"بعد",
|
||||
|
||||
],
|
||||
"cancel_add_advs_btn" => [
|
||||
"name" =>"یا لغو",
|
||||
|
||||
],
|
||||
"pending_adv" => [
|
||||
"name" =>"انتظار می رود",
|
||||
|
||||
],
|
||||
"archived_adv" => [
|
||||
"name" =>"بایگانی شده",
|
||||
|
||||
],
|
||||
"favs_adv" => [
|
||||
"name" =>"مشاوره Fav",
|
||||
|
||||
],
|
||||
"my_adv" => [
|
||||
"name" =>"ADVS",
|
||||
|
||||
],
|
||||
"description" => [
|
||||
"name" =>"شرح",
|
||||
|
||||
],
|
||||
"type" => [
|
||||
"name" =>"تایپ کنید",
|
||||
|
||||
],
|
||||
"parent_adv" => [
|
||||
"name" =>"آگهی مرتبط",
|
||||
|
||||
],
|
||||
"value" => [
|
||||
"name" =>"ارزش",
|
||||
|
||||
],
|
||||
"home" =>"خانه",
|
||||
"list-page" =>"صفحه فهرست",
|
||||
"search" =>"جستجو کردن",
|
||||
"recommended" =>"تبلیغات توصیه شده برای شما",
|
||||
"sort_by" =>"مرتب سازی بر اساس",
|
||||
"pick_option" =>"یک گزینه را انتخاب کنید",
|
||||
"price_high" =>"قیمت بالا به پایین",
|
||||
"price-low" =>"قیمت پایین به بالا",
|
||||
"newest" =>"جدیدترین",
|
||||
"categories" =>"دسته بندی ها",
|
||||
"all_categories" =>"همه دسته بندی ها",
|
||||
"location" =>"محل",
|
||||
"send_message" =>"پیام فرستادن",
|
||||
"phone_gsm" =>"گوشی Gsm",
|
||||
"phone_office" =>"تلفن دفتر",
|
||||
"add_to_favorites" =>"اضافه کردن به علاقه مندی ها",
|
||||
"send" =>"ارسال",
|
||||
"search_name" =>"نام جستجو",
|
||||
"my_favorite_searches" =>"جستجوهای مورد علاقه",
|
||||
"search_desc" =>"شما می توانید انتخاب های مورد علاقه خود را در اینجا اضافه کنید و مدیریت کنید.",
|
||||
"complaint_placeholder" =>"جزئیات شکایت خود را در اینجا بنویسید",
|
||||
"show_details" =>"نمایش جزئیات",
|
||||
"edit" =>"ویرایش کنید",
|
||||
"approve" =>"تایید",
|
||||
"passive" =>"منفعل",
|
||||
"offered_by" =>"پیشنهاد شده توسط",
|
||||
"more_ads_by" =>"تبلیغات بیشتر توسط",
|
||||
"click_phone" =>"شماره تلفن را نشان دهید",
|
||||
"share" =>"به اشتراک گذاشتن این آگهی",
|
||||
"report" =>"گزارش این تبلیغ",
|
||||
"features" =>"امکانات",
|
||||
"recommended_ads" =>"تبلیغات توصیه شده برای شما",
|
||||
"new" =>"جدید",
|
||||
"short_info" =>"اطلاعات کوتاه",
|
||||
"secure_trading" =>"بازرگانی امن",
|
||||
"24/7" =>"پشتیبانی 24/7",
|
||||
"easy_trading" =>"تجارت آسان",
|
||||
"need_help" =>"کمک خواستن؟",
|
||||
"give_a_call" =>"تماس بگیرید",
|
||||
"message_sent" =>"پیغام فرستاده شد!",
|
||||
"asap" =>"پیام فرستاده شده، فروشنده با شما تماس خواهد گرفت.",
|
||||
"ad_id" =>"شناسه تبلیغ",
|
||||
"contact_with" =>"ارتباط با",
|
||||
"create_adv" =>"ایجاد مشاوره",
|
||||
"edit_adv" =>"ویرایش اطلاعات",
|
||||
"mandatory_fields" =>"فیلد های اجباری",
|
||||
"ad_post" =>"آگهی پست",
|
||||
"sell_item" =>"فروش یک محصول یا خدمات",
|
||||
"search_save" =>"جستجوی مورد علاقه با موفقیت ذخیره شد",
|
||||
"address" =>"نشانی",
|
||||
"email" =>"پست الکترونیک",
|
||||
"phone" =>"تلفن",
|
||||
"send_us_your_feedback" =>"انتقادات و پیشنهادات خود را برای ما ارسال کنید",
|
||||
"online_shopping" =>"گرفتن",
|
||||
"approved" =>"تأیید شدم",
|
||||
"declined" =>"لغو موفقیت آمیز",
|
||||
"search_on_map" =>"جستجو در نقشه",
|
||||
"post_free_ad" =>"ارسال آگهی رایگان",
|
||||
"select_a_category" =>"یک دسته را انتخاب کنید",
|
||||
"select_a_sub_category" =>"یک زیر شاخه را انتخاب کنید",
|
||||
"all_dopings_added" =>"تمام انواع دوپینگ برای این تبلیغ اضافه شده است.",
|
||||
"is_get_adv" => [
|
||||
"name" =>"گرفتن",
|
||||
|
||||
],
|
||||
"corporate_info" =>"اطلاعات شرکت",
|
||||
"featured_ads" =>"آگهی های ویژه",
|
||||
"trending_ads" =>"تبلیغات Trendind",
|
||||
"search_ads_result_message" => [
|
||||
"name" =>": تعداد تبلیغات پیدا شده برای:جستجوی نام",
|
||||
|
||||
],
|
||||
"total" =>"جمع",
|
||||
"quantity" =>"تعداد",
|
||||
"view_cart" =>"مشاهده سبد خرید",
|
||||
"no_ads" =>"بدون تبلیغات!",
|
||||
"show_display_mode" => [
|
||||
"map" =>"نقشه",
|
||||
"list" =>"فهرست",
|
||||
|
||||
],
|
||||
"streetview" =>"نمای خیابان",
|
||||
"advs_list_table_thead" => [
|
||||
"name" =>"نام راهنما",
|
||||
"price" =>"قیمت",
|
||||
"publish_at" =>"تاریخ آگهی",
|
||||
"location_city" =>"شهر",
|
||||
"location_country" =>"کشور",
|
||||
|
||||
],
|
||||
"show_list_view" => [
|
||||
"name" =>"فهرست",
|
||||
|
||||
],
|
||||
"show_table_view" => [
|
||||
"name" =>"جدول",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"error_added_cart" =>"محصول مورد نظر در حال حاضر از دست رفته یا غیرفعال است",
|
||||
"please_buy_package" =>"لطفا بسته را بخرید"
|
||||
];
|
||||
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"مشاوره",
|
||||
"option" => [
|
||||
"read" =>"آیا خواندن توصیه می شود؟ ",
|
||||
"write" =>"می توانید مشاوره را ایجاد / ویرایش کنید؟ ",
|
||||
"delete" =>"می توانید مشاوره را حذف کنید؟"
|
||||
],
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"دسته بندی ها",
|
||||
"option" => [
|
||||
"read" =>"می توانید مقوله ها را بخوانید؟ ",
|
||||
"write" =>"می توانید مقوله های ایجاد / ویرایش کنید؟ ",
|
||||
"delete" =>"می توانید دسته ها را حذف کنید؟"
|
||||
],
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"روستا",
|
||||
"option" => [
|
||||
"read" =>"می توانید روستا را بخوانید؟ ",
|
||||
"write" =>"می توانید روستا را ایجاد / ویرایش کنید؟ ",
|
||||
"delete" =>"آیا روستا را می توان حذف کرد؟"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"موضوعات سفارشی",
|
||||
"option" => [
|
||||
"read" =>"می توانید زمینه های سفارشی را بخوانید؟ ",
|
||||
"write" =>"می توانید زمینه های سفارشی ایجاد / ویرایش کنید؟ ",
|
||||
"delete" =>"می توانید زمینه های سفارشی را حذف کنید؟"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"پیشنهادات زمینه سفارشی",
|
||||
"option" => [
|
||||
"read" =>"می توانید مطالعات زمینه سفارشی را بخوانید؟ ",
|
||||
"write" =>"آیا می توانید ایجاد / ویرایش زمینه های سفارشی ایجاد کنید؟ ",
|
||||
"delete" =>"آیا می توانم مطالعات زمینه سفارشی را حذف کنم؟"
|
||||
],
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"مقادیر Cf",
|
||||
"option" => [
|
||||
"read" =>"می توانید مقادیر cf را بخوانید؟ ",
|
||||
"write" =>"می توانید مقادیر cf را ایجاد / ویرایش کنید؟ ",
|
||||
"delete" =>"می توانید مقادیر cf را حذف کنید؟",
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"title" =>"مشاوره",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"title" =>"دسته بندی ها",
|
||||
|
||||
],
|
||||
"countries" => [
|
||||
"title" =>"کشورها",
|
||||
|
||||
],
|
||||
"cities" => [
|
||||
"title" =>"شهرها",
|
||||
|
||||
],
|
||||
"districts" => [
|
||||
"title" =>"ولسوالی ها",
|
||||
|
||||
],
|
||||
"neighborhoods" => [
|
||||
"title" =>"محله ها",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"title" =>"روستا",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"title" =>"موضوعات سفارشی",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"title" =>"پیشنهادات زمینه سفارشی",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"title" =>"مقادیر Cf",
|
||||
|
||||
],
|
||||
"fields" => [
|
||||
"title" =>"موضوعات سفارشی",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,132 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"auto_approve" => [
|
||||
"name" =>"تصدیق خودکار",
|
||||
|
||||
],
|
||||
"default_published_time" => [
|
||||
"name" =>"زمان انتشار پیش فرض",
|
||||
|
||||
],
|
||||
"default_adv_limit" => [
|
||||
"name" =>"محدودیت پیش فرض آگهی",
|
||||
|
||||
],
|
||||
"address" => [
|
||||
"name" =>"تماس با آدرس",
|
||||
|
||||
],
|
||||
"phone" => [
|
||||
"name" =>"تماس با تلفن",
|
||||
|
||||
],
|
||||
"contact_mail" => [
|
||||
"name" =>"با ایمیل تماس بگیرید",
|
||||
"warning" =>"خودکار <strong>اطلاعات</strong> sitenamesitename اضافه شد",
|
||||
|
||||
],
|
||||
"map_coordinates_long" => [
|
||||
"name" =>"نقشه مختصات طولانی",
|
||||
|
||||
],
|
||||
"map_coordinates_lat" => [
|
||||
"name" =>"نقشه مختصات لات",
|
||||
|
||||
],
|
||||
"logo" => [
|
||||
"name" =>"لوگو",
|
||||
|
||||
],
|
||||
"ogImage" => [
|
||||
"name" =>"لوگو اشتراک اجتماعی",
|
||||
"warning" =>"این باید با وضوح 1200 × 630 باشد.",
|
||||
|
||||
],
|
||||
"currencies" => [
|
||||
"name" =>"ارزهای فعال",
|
||||
|
||||
],
|
||||
"site_address" => [
|
||||
"name" =>"آدرس سایت",
|
||||
"warning" =>"خودکار اضافه شده www. www <strong>sitename.com</strong>",
|
||||
|
||||
],
|
||||
"google_map_key" => [
|
||||
"name" =>"Google Map Api Key",
|
||||
|
||||
],
|
||||
"default_country" => [
|
||||
"name" =>"پیشفرض کشور تبلیغی",
|
||||
|
||||
],
|
||||
"default_city" => [
|
||||
"name" =>"پیشفرض شهر تبلیغاتی",
|
||||
|
||||
],
|
||||
"default_district" => [
|
||||
"name" =>"منطقه پیش فرض آگهی",
|
||||
|
||||
],
|
||||
"default_neighborhood" => [
|
||||
"name" =>"محدوده تبلیغ پیش فرض",
|
||||
|
||||
],
|
||||
"default_currency" => [
|
||||
"name" =>"مقدار پیش فرض آگهی",
|
||||
|
||||
],
|
||||
"default_GET" => [
|
||||
"name" =>"پیش فرض تبلیغ GET",
|
||||
|
||||
],
|
||||
"twitter" => [
|
||||
"name" =>"توییتر",
|
||||
|
||||
],
|
||||
"facebook" => [
|
||||
"name" =>"فیس بوک",
|
||||
|
||||
],
|
||||
"youtube" => [
|
||||
"name" =>"یوتیوب",
|
||||
|
||||
],
|
||||
"google" => [
|
||||
"name" =>"گوگل",
|
||||
|
||||
],
|
||||
"watermark_type" => [
|
||||
"name" =>"نوع آبرسانی",
|
||||
|
||||
],
|
||||
"watermark_text" => [
|
||||
"name" =>"متنی متنی",
|
||||
|
||||
],
|
||||
"watermark_image" => [
|
||||
"name" =>"تصویر هدر",
|
||||
|
||||
],
|
||||
"watermark_position" => [
|
||||
"name" =>"موقعیت آبرسانی",
|
||||
|
||||
],
|
||||
"watermark_opacity" => [
|
||||
"name" =>"Opacity ابعاد",
|
||||
|
||||
],
|
||||
"listing_page_image" => [
|
||||
"name" =>"فهرست صفحه تصویر",
|
||||
|
||||
],
|
||||
"enabled_currencies" => [
|
||||
"name" =>"ارزهای فعال شده",
|
||||
|
||||
],
|
||||
"google_statistic_code" => [
|
||||
"name" =>"گوگل آمار کد",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"مشاوره",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"دسته بندی ها",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"روستا",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"موضوعات سفارشی",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"پیشنهادات زمینه سفارشی",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"مقادیر Cf",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"title" =>"Advs",
|
||||
"name" =>"Module Advs",
|
||||
"description" =>"La description"
|
||||
];
|
||||
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"new_adv" =>"Nouveau Adv",
|
||||
"new_category" =>"Nouvelle catégorie",
|
||||
"new_country" =>"Nouveau pays",
|
||||
"new_city" =>"Nouvelle ville",
|
||||
"new_district" =>"Nouveau district",
|
||||
"new_neighborhood" =>"Nouveau quartier",
|
||||
"new_village" =>"Nouveau village",
|
||||
"approve" =>"Approuver",
|
||||
"decline" =>"Déclin",
|
||||
"sub_category" =>"Sous catégories",
|
||||
"add_sub_category" =>"Ajouter une sous catégorie",
|
||||
"sub_cities" =>"Sous-villes",
|
||||
"add_sub_cities" =>"Ajouter une ville secondaire",
|
||||
"add_sub_districts" =>"Ajouter un sous-district",
|
||||
"add_sub_neighborhoods" =>"Ajouter un sous-quartier",
|
||||
"add_sub_village" =>"Ajouter un sous-village",
|
||||
"sub_districts" =>"Sous-districts",
|
||||
"sub_neighborhoods" =>"Sous-quartiers",
|
||||
"sub_village" =>"Sous-village",
|
||||
"general_settings" =>"réglages généraux"
|
||||
];
|
||||
175
addons/default/visiosoft/advs-module/resources/lang/fr/field.php
Normal file
175
addons/default/visiosoft/advs-module/resources/lang/fr/field.php
Normal file
@ -0,0 +1,175 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"name" => [
|
||||
"name" =>"Titre",
|
||||
|
||||
],
|
||||
"order" => [
|
||||
"name" =>"Ordre",
|
||||
|
||||
],
|
||||
"slug" => [
|
||||
"name" =>"Limace",
|
||||
|
||||
],
|
||||
"parent_category" => [
|
||||
"name" =>"Parent",
|
||||
|
||||
],
|
||||
"category" => [
|
||||
"name" =>"Titre de la catégorie",
|
||||
|
||||
],
|
||||
"price" => [
|
||||
"name" =>"Prix",
|
||||
|
||||
],
|
||||
"stock" => [
|
||||
"name" =>"Stock",
|
||||
|
||||
],
|
||||
"advs_desc" => [
|
||||
"name" =>"La description",
|
||||
|
||||
],
|
||||
"online_payment" => [
|
||||
"name" =>"Paiement en ligne",
|
||||
|
||||
],
|
||||
"city" => [
|
||||
"name" =>"Ville",
|
||||
|
||||
],
|
||||
"country" => [
|
||||
"name" =>"Pays",
|
||||
|
||||
],
|
||||
"district" => [
|
||||
"name" =>"District",
|
||||
|
||||
],
|
||||
"neighborhood" => [
|
||||
"name" =>"quartier",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Village",
|
||||
|
||||
],
|
||||
"files" => [
|
||||
"name" =>"Images",
|
||||
|
||||
],
|
||||
"cat1" => [
|
||||
"name" =>"catégorie principale",
|
||||
|
||||
],
|
||||
"cat2" => [
|
||||
"name" =>"Sous catégorie 1",
|
||||
|
||||
],
|
||||
"cat3" => [
|
||||
"name" =>"Sous catégorie 2",
|
||||
|
||||
],
|
||||
"cat4" => [
|
||||
"name" =>"Sous catégorie 3",
|
||||
|
||||
],
|
||||
"cat5" => [
|
||||
"name" =>"Sous catégorie 4",
|
||||
|
||||
],
|
||||
"cat6" => [
|
||||
"name" =>"Sous catégorie 5",
|
||||
|
||||
],
|
||||
"cat7" => [
|
||||
"name" =>"Sous catégorie 6",
|
||||
|
||||
],
|
||||
"currency" => [
|
||||
"name" =>"Devise",
|
||||
|
||||
],
|
||||
"status" => [
|
||||
"name" =>"Statut",
|
||||
|
||||
],
|
||||
"next_add_advs_title" => [
|
||||
"name" =>"Publier une annonce en seulement 30 secondes",
|
||||
|
||||
],
|
||||
"next_add_advs_msg" => [
|
||||
"name" =>"Veuillez NE PAS publier plusieurs annonces pour les mêmes articles ou services. Toutes les publicités en double,
|
||||
spam et mal catégorisées seront supprimées.",
|
||||
|
||||
],
|
||||
"next_add_advs_btn" => [
|
||||
"name" =>"Suivant",
|
||||
|
||||
],
|
||||
"cancel_add_advs_btn" => [
|
||||
"name" =>"ou annuler",
|
||||
|
||||
],
|
||||
"pending_adv" => [
|
||||
"name" =>"Advs en attente",
|
||||
|
||||
],
|
||||
"archived_adv" => [
|
||||
"name" =>"Archivées Advs",
|
||||
|
||||
],
|
||||
"favs_adv" => [
|
||||
"name" =>"Fav Advs",
|
||||
|
||||
],
|
||||
"my_adv" => [
|
||||
"name" =>"ADVS",
|
||||
|
||||
],
|
||||
"description" => [
|
||||
"name" =>"La description",
|
||||
|
||||
],
|
||||
"type" => [
|
||||
"name" =>"Type",
|
||||
|
||||
],
|
||||
"parent_adv" => [
|
||||
"name" =>"Annonce associée",
|
||||
|
||||
],
|
||||
"value" => [
|
||||
"name" =>"Valeur",
|
||||
|
||||
],
|
||||
"home" =>"Accueil",
|
||||
"list-page" =>"Page de liste",
|
||||
"search" =>"Chercher",
|
||||
"recommended" =>"Annonces recommandées pour vous",
|
||||
"sort_by" =>"Trier par",
|
||||
"pick_option" =>"Choisissez une option",
|
||||
"price_high" =>"Prix décroissant",
|
||||
"price-low" =>"Prix croissant",
|
||||
"newest" =>"Plus récent",
|
||||
"categories" =>"Les catégories",
|
||||
"all_categories" =>"toutes catégories",
|
||||
"location" =>"Emplacement",
|
||||
"send_message" =>"Envoyer le message",
|
||||
"phone_gsm" =>"Téléphone GSM",
|
||||
"phone_office" =>"Téléphone de bureau",
|
||||
"add_to_favorites" =>"Ajouter aux Favoris",
|
||||
"send" =>"Envoyer",
|
||||
"search_name" =>"Nom de la recherche",
|
||||
"my_favorite_searches" =>"Recherches préférées",
|
||||
"search_desc" =>"Vous pouvez ajouter et gérer vos sélections de recherche favorites ici.",
|
||||
"complaint_placeholder" =>"Tapez les détails de votre plainte ici.",
|
||||
"show_details" =>"Afficher les détails",
|
||||
"edit" =>"modifier",
|
||||
"approve" =>"Approuver",
|
||||
"passive" =>"Passif",
|
||||
"offered_by" =>"Offert par",
|
||||
"more_ads_by" =>"Plus d
|
||||
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"error_added_cart" =>"Le produit demandé est actuellement manquant ou inactif",
|
||||
"please_buy_package" =>"S
|
||||
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"Advs",
|
||||
"option" => [
|
||||
"read" =>"Peut lire les advs? ",
|
||||
"write" =>"Peut créer / éditer des advs? ",
|
||||
"delete" =>"Peut supprimer les advs?"
|
||||
],
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"Les catégories",
|
||||
"option" => [
|
||||
"read" =>"Peut lire des catégories? ",
|
||||
"write" =>"Peut créer / éditer des catégories? ",
|
||||
"delete" =>"Peut supprimer des catégories?"
|
||||
],
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Village",
|
||||
"option" => [
|
||||
"read" =>"Peut lire le village? ",
|
||||
"write" =>"Peut créer / éditer un village? ",
|
||||
"delete" =>"Peut supprimer le village?"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"Les champs personnalisés",
|
||||
"option" => [
|
||||
"read" =>"Peut lire les champs personnalisés? ",
|
||||
"write" =>"Peut créer / éditer des champs personnalisés? ",
|
||||
"delete" =>"Peut supprimer des champs personnalisés?"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"Advs personnalisé",
|
||||
"option" => [
|
||||
"read" =>"Peut-on lire les advs personnalisés? ",
|
||||
"write" =>"Peut-on créer / éditer des advs de terrain personnalisés? ",
|
||||
"delete" =>"Peut-on supprimer des advs de champ personnalisés?"
|
||||
],
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"Cf valeurs",
|
||||
"option" => [
|
||||
"read" =>"Peut lire les valeurs cf? ",
|
||||
"write" =>"Peut créer / éditer des valeurs cf? ",
|
||||
"delete" =>"Peut-on supprimer les valeurs cf?",
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"title" =>"Advs",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"title" =>"Les catégories",
|
||||
|
||||
],
|
||||
"countries" => [
|
||||
"title" =>"Des pays",
|
||||
|
||||
],
|
||||
"cities" => [
|
||||
"title" =>"Villes",
|
||||
|
||||
],
|
||||
"districts" => [
|
||||
"title" =>"Les quartiers",
|
||||
|
||||
],
|
||||
"neighborhoods" => [
|
||||
"title" =>"Quartiers",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"title" =>"Village",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"title" =>"Les champs personnalisés",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"title" =>"Advs personnalisé",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"title" =>"Cf valeurs",
|
||||
|
||||
],
|
||||
"fields" => [
|
||||
"title" =>"Les champs personnalisés",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"auto_approve" => [
|
||||
"name" =>"Approuver automatiquement",
|
||||
|
||||
],
|
||||
"default_published_time" => [
|
||||
"name" =>"Heure de publication par défaut",
|
||||
|
||||
],
|
||||
"default_adv_limit" => [
|
||||
"name" =>"Limite des annonces par défaut",
|
||||
|
||||
],
|
||||
"address" => [
|
||||
"name" =>"Adresse de contact",
|
||||
|
||||
],
|
||||
"phone" => [
|
||||
"name" =>"Numéro du contact",
|
||||
|
||||
],
|
||||
"contact_mail" => [
|
||||
"name" =>"Contact mail",
|
||||
"warning" =>"Ajout automatique du nom de site <strong>info</strong> @sitename",
|
||||
|
||||
],
|
||||
"map_coordinates_long" => [
|
||||
"name" =>"Carte Longue Coordonnée",
|
||||
|
||||
],
|
||||
"map_coordinates_lat" => [
|
||||
"name" =>"Carte Lat Coordonnée",
|
||||
|
||||
],
|
||||
"logo" => [
|
||||
"name" =>"Logo",
|
||||
|
||||
],
|
||||
"ogImage" => [
|
||||
"name" =>"Logo de partage social",
|
||||
"warning" =>"Il devrait être à une résolution de 1200 x 630.",
|
||||
|
||||
],
|
||||
"currencies" => [
|
||||
"name" =>"Devises Actives",
|
||||
|
||||
],
|
||||
"site_address" => [
|
||||
"name" =>"Adresse du site",
|
||||
"warning" =>"Auto ajouté www. www. <strong>sitename.com</strong>",
|
||||
|
||||
],
|
||||
"google_map_key" => [
|
||||
"name" =>"Clé Api Google Map",
|
||||
|
||||
],
|
||||
"default_country" => [
|
||||
"name" =>"Pays d
|
||||
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"Advs",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"Les catégories",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Village",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"Les champs personnalisés",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"Advs personnalisé",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"Cf valeurs",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"title" =>"Advs",
|
||||
"name" =>"Modulo Advs",
|
||||
"description" =>"Descrizione"
|
||||
];
|
||||
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"new_adv" =>"Nuovo Adv",
|
||||
"new_category" =>"Nuova categoria",
|
||||
"new_country" =>"Nuovo Paese",
|
||||
"new_city" =>"Nuova città",
|
||||
"new_district" =>"New District",
|
||||
"new_neighborhood" =>"Nuovo quartiere",
|
||||
"new_village" =>"Nuovo villaggio",
|
||||
"approve" =>"Approvare",
|
||||
"decline" =>"Declino",
|
||||
"sub_category" =>"Sottocategorie",
|
||||
"add_sub_category" =>"Aggiungi sottocategoria",
|
||||
"sub_cities" =>"Città secondarie",
|
||||
"add_sub_cities" =>"Aggiungi città secondaria",
|
||||
"add_sub_districts" =>"Aggiungi sottodistretto",
|
||||
"add_sub_neighborhoods" =>"Aggiungi sottolivello",
|
||||
"add_sub_village" =>"Aggiungi villaggio secondario",
|
||||
"sub_districts" =>"Sottodistretti",
|
||||
"sub_neighborhoods" =>"Quartieri secondari",
|
||||
"sub_village" =>"Sub Village",
|
||||
"general_settings" =>"impostazioni generali"
|
||||
];
|
||||
154
addons/default/visiosoft/advs-module/resources/lang/it/field.php
Normal file
154
addons/default/visiosoft/advs-module/resources/lang/it/field.php
Normal file
@ -0,0 +1,154 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"name" => [
|
||||
"name" =>"Titolo",
|
||||
|
||||
],
|
||||
"order" => [
|
||||
"name" =>"Ordine",
|
||||
|
||||
],
|
||||
"slug" => [
|
||||
"name" =>"lumaca",
|
||||
|
||||
],
|
||||
"parent_category" => [
|
||||
"name" =>"Genitore",
|
||||
|
||||
],
|
||||
"category" => [
|
||||
"name" =>"Titolo della categoria",
|
||||
|
||||
],
|
||||
"price" => [
|
||||
"name" =>"Prezzo",
|
||||
|
||||
],
|
||||
"stock" => [
|
||||
"name" =>"Azione",
|
||||
|
||||
],
|
||||
"advs_desc" => [
|
||||
"name" =>"Descrizione",
|
||||
|
||||
],
|
||||
"online_payment" => [
|
||||
"name" =>"Pagamento online",
|
||||
|
||||
],
|
||||
"city" => [
|
||||
"name" =>"Città",
|
||||
|
||||
],
|
||||
"country" => [
|
||||
"name" =>"Nazione",
|
||||
|
||||
],
|
||||
"district" => [
|
||||
"name" =>"Quartiere",
|
||||
|
||||
],
|
||||
"neighborhood" => [
|
||||
"name" =>"Quartiere",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Villaggio",
|
||||
|
||||
],
|
||||
"files" => [
|
||||
"name" =>"immagini",
|
||||
|
||||
],
|
||||
"cat1" => [
|
||||
"name" =>"Categoria Principale",
|
||||
|
||||
],
|
||||
"cat2" => [
|
||||
"name" =>"Sottocategoria 1",
|
||||
|
||||
],
|
||||
"cat3" => [
|
||||
"name" =>"Sottocategoria 2",
|
||||
|
||||
],
|
||||
"cat4" => [
|
||||
"name" =>"Sottocategoria 3",
|
||||
|
||||
],
|
||||
"cat5" => [
|
||||
"name" =>"Sottocategoria 4",
|
||||
|
||||
],
|
||||
"cat6" => [
|
||||
"name" =>"Sottocategoria 5",
|
||||
|
||||
],
|
||||
"cat7" => [
|
||||
"name" =>"Sottocategoria 6",
|
||||
|
||||
],
|
||||
"currency" => [
|
||||
"name" =>"Moneta",
|
||||
|
||||
],
|
||||
"status" => [
|
||||
"name" =>"Stato",
|
||||
|
||||
],
|
||||
"next_add_advs_title" => [
|
||||
"name" =>"Pubblica un annuncio in soli 30 secondi",
|
||||
|
||||
],
|
||||
"next_add_advs_msg" => [
|
||||
"name" =>"Si prega di NON pubblicare più annunci per gli stessi articoli o servizi. Tutti gli annunci duplicati,
|
||||
spam e classificati in modo errato verranno eliminati.",
|
||||
|
||||
],
|
||||
"next_add_advs_btn" => [
|
||||
"name" =>"Il prossimo",
|
||||
|
||||
],
|
||||
"cancel_add_advs_btn" => [
|
||||
"name" =>"o Annulla",
|
||||
|
||||
],
|
||||
"pending_adv" => [
|
||||
"name" =>"In attesa di annunci",
|
||||
|
||||
],
|
||||
"archived_adv" => [
|
||||
"name" =>"Archiviato Adv",
|
||||
|
||||
],
|
||||
"favs_adv" => [
|
||||
"name" =>"Fav Advs",
|
||||
|
||||
],
|
||||
"my_adv" => [
|
||||
"name" =>"ADVS",
|
||||
|
||||
],
|
||||
"description" => [
|
||||
"name" =>"Descrizione",
|
||||
|
||||
],
|
||||
"type" => [
|
||||
"name" =>"genere",
|
||||
|
||||
],
|
||||
"parent_adv" => [
|
||||
"name" =>"Annuncio correlato",
|
||||
|
||||
],
|
||||
"value" => [
|
||||
"name" =>"Valore",
|
||||
|
||||
],
|
||||
"home" =>"Casa",
|
||||
"list-page" =>"Pagina elenco",
|
||||
"search" =>"Ricerca",
|
||||
"recommended" =>"Annunci consigliati per te",
|
||||
"sort_by" =>"Ordina per",
|
||||
"pick_option" =>"Scegli un
|
||||
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"error_added_cart" =>"Il prodotto richiesto è attualmente mancante o inattivo",
|
||||
"please_buy_package" =>"Si prega di acquistare il pacchetto"
|
||||
];
|
||||
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"Advs",
|
||||
"option" => [
|
||||
"read" =>"Puoi leggere gli annunci? ",
|
||||
"write" =>"Puoi creare / modificare gli adv? ",
|
||||
"delete" =>"Posso eliminare gli adv?"
|
||||
],
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"categorie",
|
||||
"option" => [
|
||||
"read" =>"Può leggere le categorie? ",
|
||||
"write" =>"Puoi creare / modificare categorie? ",
|
||||
"delete" =>"Posso cancellare le categorie?"
|
||||
],
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Villaggio",
|
||||
"option" => [
|
||||
"read" =>"Puoi leggere il villaggio? ",
|
||||
"write" =>"Puoi creare / modificare un villaggio? ",
|
||||
"delete" =>"Posso cancellare il villaggio?"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"Campi personalizzati",
|
||||
"option" => [
|
||||
"read" =>"Posso leggere i campi personalizzati? ",
|
||||
"write" =>"Puoi creare / modificare campi personalizzati? ",
|
||||
"delete" =>"Può cancellare campi personalizzati?"
|
||||
],
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"Adv in campo personalizzato",
|
||||
"option" => [
|
||||
"read" =>"Puoi leggere gli adv in campo personalizzati? ",
|
||||
"write" =>"È possibile creare / modificare gli adv personalizzati? ",
|
||||
"delete" =>"È possibile eliminare i feed di campo personalizzati?"
|
||||
],
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"Valori Cf",
|
||||
"option" => [
|
||||
"read" =>"Puoi leggere i valori cf? ",
|
||||
"write" =>"Puoi creare / modificare valori cf? ",
|
||||
"delete" =>"Può cancellare i valori cf?",
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"title" =>"Advs",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"title" =>"categorie",
|
||||
|
||||
],
|
||||
"countries" => [
|
||||
"title" =>"paesi",
|
||||
|
||||
],
|
||||
"cities" => [
|
||||
"title" =>"Città",
|
||||
|
||||
],
|
||||
"districts" => [
|
||||
"title" =>"Quartieri",
|
||||
|
||||
],
|
||||
"neighborhoods" => [
|
||||
"title" =>"quartieri",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"title" =>"Villaggio",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"title" =>"Campi personalizzati",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"title" =>"Adv in campo personalizzato",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"title" =>"Valori Cf",
|
||||
|
||||
],
|
||||
"fields" => [
|
||||
"title" =>"Campi personalizzati",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"auto_approve" => [
|
||||
"name" =>"Approvazione automatica",
|
||||
|
||||
],
|
||||
"default_published_time" => [
|
||||
"name" =>"Ora di pubblicazione predefinita",
|
||||
|
||||
],
|
||||
"default_adv_limit" => [
|
||||
"name" =>"Limite annunci predefiniti",
|
||||
|
||||
],
|
||||
"address" => [
|
||||
"name" =>"Indirizzo di contatto",
|
||||
|
||||
],
|
||||
"phone" => [
|
||||
"name" =>"Contatto telefonico",
|
||||
|
||||
],
|
||||
"contact_mail" => [
|
||||
"name" =>"Contatta Mail",
|
||||
"warning" =>"<strong>Nome del</strong> sitename aggiunto automaticamente @sitename",
|
||||
|
||||
],
|
||||
"map_coordinates_long" => [
|
||||
"name" =>"Mappa lungo Coordinate",
|
||||
|
||||
],
|
||||
"map_coordinates_lat" => [
|
||||
"name" =>"Mappa Coordinata Lat",
|
||||
|
||||
],
|
||||
"logo" => [
|
||||
"name" =>"Logo",
|
||||
|
||||
],
|
||||
"ogImage" => [
|
||||
"name" =>"Social Share Logo",
|
||||
"warning" =>"Dovrebbe essere a una risoluzione di 1200 x 630.",
|
||||
|
||||
],
|
||||
"currencies" => [
|
||||
"name" =>"Valute attive",
|
||||
|
||||
],
|
||||
"site_address" => [
|
||||
"name" =>"Indirizzo del sito",
|
||||
"warning" =>"Aggiunto automaticamente www. www. <strong>sitename.com</strong>",
|
||||
|
||||
],
|
||||
"google_map_key" => [
|
||||
"name" =>"Chiave di Google Map Api",
|
||||
|
||||
],
|
||||
"default_country" => [
|
||||
"name" =>"Paese dell
|
||||
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"advs" => [
|
||||
"name" =>"Advs",
|
||||
|
||||
],
|
||||
"categories" => [
|
||||
"name" =>"categorie",
|
||||
|
||||
],
|
||||
"village" => [
|
||||
"name" =>"Villaggio",
|
||||
|
||||
],
|
||||
"custom_fields" => [
|
||||
"name" =>"Campi personalizzati",
|
||||
|
||||
],
|
||||
"custom_field_advs" => [
|
||||
"name" =>"Adv in campo personalizzato",
|
||||
|
||||
],
|
||||
"cf_values" => [
|
||||
"name" =>"Valori Cf",
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return[
|
||||
"title" =>"ADVS",
|
||||
"name" =>"Advs Module",
|
||||
"description" =>"Omschrijving"
|
||||
];
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user