mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-15 03:32:09 -05:00
Merge remote-tracking branch 'origin/master' into master
This commit is contained in:
commit
8ab0a36b4b
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateTaxField extends Migration
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
//Maria DB will be removed when the version is updated.
|
||||
\Illuminate\Support\Facades\DB::getDoctrineSchemaManager()
|
||||
->getDatabasePlatform()->registerDoctrineTypeMapping('point', 'string');
|
||||
}
|
||||
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
];
|
||||
|
||||
protected $fields = [
|
||||
'tax' => [
|
||||
'type' => 'anomaly.field_type.integer',
|
||||
'config' => [
|
||||
'default_value' => 0,
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
protected $assignments = [
|
||||
'tax'
|
||||
];
|
||||
}
|
||||
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
use Anomaly\Streams\Platform\Database\Migration\Migration;
|
||||
|
||||
class VisiosoftModuleAdvsCreateConfigFields extends Migration
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
//Maria DB will be removed when the version is updated.
|
||||
\Illuminate\Support\Facades\DB::getDoctrineSchemaManager()
|
||||
->getDatabasePlatform()->registerDoctrineTypeMapping('point', 'string');
|
||||
}
|
||||
|
||||
protected $stream = [
|
||||
'slug' => 'advs',
|
||||
];
|
||||
|
||||
protected $fields = [
|
||||
'config' => 'visiosoft.field_type.json',
|
||||
];
|
||||
|
||||
protected $assignments = [
|
||||
'config'
|
||||
];
|
||||
}
|
||||
@ -53,6 +53,7 @@ return [
|
||||
'create_ad' => [
|
||||
'title' => 'visiosoft.module.advs::section.create_ad',
|
||||
'fields' => [
|
||||
'show_tax_field',
|
||||
'detailed_product_options',
|
||||
'steps_color',
|
||||
'create_ad_button_color',
|
||||
|
||||
@ -180,7 +180,7 @@ return [
|
||||
'type' => 'anomaly.field_type.checkboxes',
|
||||
'required' => true,
|
||||
'config' => [
|
||||
'mode' => 'tags',
|
||||
'mode' => 'tags',
|
||||
'default_value' => function () {
|
||||
return [config('streams::currencies.default')];
|
||||
},
|
||||
@ -403,34 +403,34 @@ return [
|
||||
},
|
||||
],
|
||||
],
|
||||
'favicon' => [
|
||||
'type' => 'anomaly.field_type.file',
|
||||
],
|
||||
'ads_date_hidden' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'disable_sentry' => 'anomaly.field_type.boolean',
|
||||
'favicon' => [
|
||||
'type' => 'anomaly.field_type.file',
|
||||
],
|
||||
'ads_date_hidden' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'disable_sentry' => 'anomaly.field_type.boolean',
|
||||
'detailed_product_options' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
@ -443,18 +443,18 @@ return [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
]
|
||||
],
|
||||
|
||||
'show_finish_and_publish_date' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
@ -462,4 +462,11 @@ return [
|
||||
'default_value' => false,
|
||||
],
|
||||
],
|
||||
|
||||
'show_tax_field' => [
|
||||
'type' => 'anomaly.field_type.boolean',
|
||||
'config' => [
|
||||
'default_value' => false,
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@ -238,7 +238,7 @@ ul {
|
||||
/* End Keyword */
|
||||
|
||||
/* Filter submit */
|
||||
#filterSubmit {
|
||||
#filterSubmit, #filterReset {
|
||||
button {
|
||||
background-color: #52C946;
|
||||
font-size: calc(12rem / 16);
|
||||
|
||||
@ -207,6 +207,7 @@ label {
|
||||
}
|
||||
|
||||
&:first-child {
|
||||
width: 100%;
|
||||
@media only screen and (min-width: 576px) {
|
||||
width: 47.5%;
|
||||
}
|
||||
@ -219,6 +220,7 @@ label {
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
width: 100%;
|
||||
@media only screen and (min-width: 576px) {
|
||||
width: 50.75%;
|
||||
}
|
||||
|
||||
@ -46,9 +46,13 @@ $('.editInformationUser').on('click', function () {
|
||||
var profile = response.data;
|
||||
$('input[name="first_name"]').val(profile.first_name);
|
||||
$('input[name="last_name"]').val(profile.last_name);
|
||||
intlTelInput(document.querySelector("input[name='gsm_phone']")).setNumber(profile.gsm_phone);
|
||||
intlTelInput(document.querySelector("input[name='office_phone']")).setNumber(profile.office_phone);
|
||||
intlTelInput(document.querySelector("input[name='land_phone']")).setNumber(profile.land_phone);
|
||||
const numbers = ['gsm_phone', 'office_phone', 'land_phone'];
|
||||
for (let i = 0; i < numbers.length; i++) {
|
||||
const number = numbers[i];
|
||||
if (profile[number]) {
|
||||
intlTelInput(document.querySelector(`input[name=${number}]`)).setNumber(profile[number]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
@ -160,6 +160,13 @@ $(document).ready(function () {
|
||||
$("select[name=filter_City]").select2({
|
||||
placeholder: $('select[name=filter_City] option:first-child').text()
|
||||
});
|
||||
|
||||
$('.filter-form-reset').on('click', function () {
|
||||
let form = $("#listFilterForm");
|
||||
form.find('input:text, input:password, input:file, input[type="number"], select, textarea').val('');
|
||||
form.find('input:radio, input:checkbox').removeAttr('checked').removeAttr('selected');
|
||||
form.submit();
|
||||
});
|
||||
});
|
||||
|
||||
function getCities(country) {
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Advertensies',
|
||||
'name' => 'Advertensie-module',
|
||||
'description' => 'Advertensie-module',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'Advertensie-ligging',
|
||||
'owner' => 'Eienaar',
|
||||
'default_owner_instruction' => 'Die eienaar is die huidige gebruiker as geen gebruiker gekies word nie',
|
||||
'create_page_subtitle' => 'Skep die advertensie foutloos deur gedetailleerde inligting oor u advertensie in te voer.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Advertensietitel',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'Beskou',
|
||||
'ads_with_map' => 'Advertensies Met Kaart',
|
||||
'advanced_sorting' => 'Gevorderde sortering',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filtreer volgens woord',
|
||||
'filter_by' => 'Filtreer volgens: naam',
|
||||
|
||||
'free' => 'Vry',
|
||||
'ad_date' => 'Advertensiedatum',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Ou prys'
|
||||
],
|
||||
'save_search' => 'Stoor soektog',
|
||||
'publish_at' => [
|
||||
'name' => 'Publiseer datum'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Kaart lang koördinaat',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Sosiale Deel-logo',
|
||||
'warning' => 'Dit moet \'n resolusie van 1200 x 630 hê. ',
|
||||
'warning' => 'Dit moet \'n resolusie van 1200 x 630 hê. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Werfadres',
|
||||
'warning' => 'Auto bygevoeg www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'Auto bygevoeg www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api-sleutel',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Markplein',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Prysarea versteek',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Prysarea versteek',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Versteek prysfilter',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Versteek geskep datum',
|
||||
'instructions' => 'Versteek die geskepde datum in die besonderhede-bladsy',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Versteek koplys van lys',
|
||||
'instructions' => 'Versteek na bestelling en besigtigingstipes',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Versteek die filterafdeling',
|
||||
'instructions' => 'Versteek na die linker filterarea op die lys bladsy',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Versteek verkoperinligting',
|
||||
'instructions' => 'Versteek inligting aan die verkoper op die besonderhede bladsy',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Versteek koplys van lys',
|
||||
'instructions' => 'Versteek na bestelling en besigtigingstipes',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Versteek die filterafdeling',
|
||||
'instructions' => 'Versteek na die linker filterarea op die lys bladsy',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Versteek verkoperinligting',
|
||||
'instructions' => 'Versteek inligting aan die verkoper op die besonderhede bladsy',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Toon advertensie-ooreenkoms',
|
||||
'instructions' => 'Skakel dit aan as u \'n privaatheidsbeleidsooreenkoms op die advertensie-bladsy wil vertoon',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'KRY Kategorieë',
|
||||
'instructions' => 'Dit verteenwoordig die kategorieë waarin die GET-eiendom geldig sal wees.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Skakel wagwag uit'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Skakel wagwag uit'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Watermerk',
|
||||
'instructions' => 'Is watermerk aktief?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Wys subkategorieë op mobiele aansig',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Wys prys slegs vir lede',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Versteek kategorieë',
|
||||
'instructions' => 'Versteek kategorieë in advertensielys'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Toon einddatum en publiseer datum vir skep',
|
||||
'instructions' => 'Vertoon die velde publish_at en finish_at op die bladsy vir die skep van advertensies.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'إعلانات',
|
||||
'name' => 'وحدة الإعلانات',
|
||||
'description' => 'وحدة الإعلانات',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -337,6 +337,9 @@ return [
|
||||
'owner' => 'صاحب',
|
||||
'default_owner_instruction' => 'سيتحول المالك إلى المستخدم الحالي افتراضيًا إذا لم يتم تحديد أي مستخدم',
|
||||
'create_page_subtitle' => 'قم بإنشاء الإعلان بشكل لا تشوبه شائبة عن طريق إدخال معلومات مفصلة حول إعلانك.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'عنوان الاعلان',
|
||||
@ -345,6 +348,7 @@ return [
|
||||
'ads_with_map' => 'الإعلانات مع الخريطة',
|
||||
'advanced_sorting' => 'الفرز المتقدم',
|
||||
'filter_by_word' => 'تصفية بالكلمة',
|
||||
'filter_by' => 'التصفية حسب: الاسم',
|
||||
|
||||
'free' => 'مجانا',
|
||||
'ad_date' => 'تاريخ الإعلان',
|
||||
@ -369,4 +373,10 @@ return [
|
||||
'name' => 'سعر قديم'
|
||||
],
|
||||
'save_search' => 'حفظ البحث',
|
||||
'publish_at' => [
|
||||
'name' => 'تاريخ النشر'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'فافيكون',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'خريطة تنسيق طويل',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'شعار المشاركة الاجتماعية',
|
||||
'warning' => 'يجب أن يكون بدقة 1200 × 630.',
|
||||
'warning' => 'يجب أن يكون بدقة 1200 × 630.',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'عنوان الموقع',
|
||||
'warning' => 'تمت إضافة www. شبكة الاتصالات العالمية. <strong>sitename.com</strong>',
|
||||
'warning' => 'تمت إضافة www. شبكة الاتصالات العالمية. <strong>sitename.com</strong>',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'خريطة جوجل ابي كي',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'المتجر',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'منطقة السعر مخفية',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'منطقة السعر مخفية',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'إخفاء عامل تصفية السعر',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'إخفاء تاريخ الإنشاء',
|
||||
'instructions' => 'إخفاء تاريخ الإنشاء في صفحة تفاصيل الإعلانات',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'إخفاء رأس القائمة',
|
||||
'instructions' => 'الاختباء لطلب وعرض الأنواع',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'إخفاء قسم التصفية',
|
||||
'instructions' => 'يختبئ إلى اليسار منطقة التصفية في قائمة الصفحة',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'إخفاء معلومات البائع',
|
||||
'instructions' => 'إخفاء معلومات البائع في صفحة تفاصيل الإعلانات',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'إخفاء رأس القائمة',
|
||||
'instructions' => 'الاختباء لطلب وعرض الأنواع',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'إخفاء قسم التصفية',
|
||||
'instructions' => 'يختبئ إلى اليسار منطقة التصفية في قائمة الصفحة',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'إخفاء معلومات البائع',
|
||||
'instructions' => 'إخفاء معلومات البائع في صفحة تفاصيل الإعلانات',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'إظهار اتفاقية ما بعد الإعلان',
|
||||
'instructions' => 'قم بتشغيل هذا إذا كنت تريد عرض اتفاقية سياسة الخصوصية على صفحة إنشاء الإعلان',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'فئات GET',
|
||||
'instructions' => 'إنه يمثل الفئات التي ستكون فيها خاصية GET صالحة.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'تعطيل الحارس'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'تعطيل الحارس'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'علامة مائية',
|
||||
'instructions' => 'هل العلامة المائية نشطة؟'
|
||||
@ -265,11 +265,19 @@ return [
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'إظهار الفئات الفرعية على طريقة عرض الجوال',
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'عرض السعر للأعضاء فقط',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'إخفاء الفئات',
|
||||
'instructions' => 'إخفاء الفئات في قائمة الإعلانات'
|
||||
]
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'عرض السعر للأعضاء فقط',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'إخفاء الفئات',
|
||||
'instructions' => 'إخفاء الفئات في قائمة الإعلانات'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'إظهار تاريخ الانتهاء وتاريخ النشر للإنشاء',
|
||||
'instructions' => 'يعرض حقلي publish_at و finish_at في صفحة إنشاء الإعلان.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Elanlar',
|
||||
'name' => 'Elanlar Modulu',
|
||||
'description' => 'Elan Modulu',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -337,6 +337,10 @@ return [
|
||||
'ad_location' => 'Ünvan əlavə et',
|
||||
'owner' => 'Sahib',
|
||||
'default_owner_instruction' => 'Heç bir istifadəçi seçilmədiyi təqdirdə sahib cari istifadəçiyə borcludur',
|
||||
'create_page_subtitle' => 'Reklamınız haqqında ətraflı məlumat daxil edərək reklamı qüsursuz bir şəkildə yaradın.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Reklam adı',
|
||||
@ -344,7 +348,8 @@ return [
|
||||
'view' => 'Bax',
|
||||
'ads_with_map' => 'Xəritə ilə elanlar',
|
||||
'advanced_sorting' => 'Qabaqcıl çeşidləmə',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Sözə görə süzün',
|
||||
'filter_by' => 'Adı ilə süzün',
|
||||
|
||||
'free' => 'Pulsuz',
|
||||
'ad_date' => 'Elan Tarixi',
|
||||
@ -368,4 +373,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Köhnə Qiymət'
|
||||
],
|
||||
'save_search' => 'Axtarışı saxla',
|
||||
'publish_at' => [
|
||||
'name' => 'Tarixi dərc edin'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Xəritə Uzun Koordinat',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Sosial paylaşma loqosu',
|
||||
'warning' => '1200 x 630 qətnamə ilə olmalıdır. ',
|
||||
'warning' => '1200 x 630 qətnamə ilə olmalıdır. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Sayt ünvanı',
|
||||
'warning' => 'Avtomatik olaraq www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'Avtomatik olaraq www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api Açarı',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Bazar yeri',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Qiymət sahəsi gizlidir',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Qiymət sahəsi gizlidir',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Qiymət filtrini gizlət',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Yaranmış Tarixi Gizlət',
|
||||
'instructions' => 'Reklamların ətraflı səhifəsində yaradılan tarixi gizlədin',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Listing Header gizlədin',
|
||||
'instructions' => 'Sifariş və görünüş növlərinə gizlənmək',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Filtr Bölməsini gizlədin',
|
||||
'instructions' => 'Siyahı səhifəsində sol filtr sahəsinə gizlənir',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Satıcı haqqında məlumatları gizlədin',
|
||||
'instructions' => 'Reklam detalları səhifəsində satıcı məlumatlarına gizlənmək',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Listing Header gizlədin',
|
||||
'instructions' => 'Sifariş və görünüş növlərinə gizlənmək',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Filtr Bölməsini gizlədin',
|
||||
'instructions' => 'Siyahı səhifəsində sol filtr sahəsinə gizlənir',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Satıcı haqqında məlumatları gizlədin',
|
||||
'instructions' => 'Reklam detalları səhifəsində satıcı məlumatlarına gizlənmək',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Post Elan Müqaviləsini Göstərin',
|
||||
'instructions' => 'Reklam yaratma səhifəsində bir məxfilik siyasəti müqaviləsini göstərmək istəyirsinizsə, bunu aktivləşdirin',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'Kateqoriyalar alın',
|
||||
'instructions' => 'GET mülkiyyətinin etibarlı olacağı kateqoriyanı təmsil edir.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Nöqtəni deaktiv edin'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Nöqtəni deaktiv edin'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Filigran',
|
||||
'instructions' => 'Filigran aktivdir?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Mobil görünüşdə alt kateqoriyalar göstərin',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Qiyməti yalnız üzvlərə göstərin',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Kateqoriyalarları gizlədin',
|
||||
'instructions' => 'Reklam siyahısında kateqoriyalar gizlədin'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Bitmə tarixini göstərin və Yaratma Tarixini Yayınlayın',
|
||||
'instructions' => 'Reklam yaratma səhifəsindəki dərc_at və bitir_at sahələrini göstərir.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Реклами',
|
||||
'name' => 'Модул за реклами',
|
||||
'description' => 'Модул за реклами',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'Местоположение на рекламата',
|
||||
'owner' => 'Собственик',
|
||||
'default_owner_instruction' => 'Собственикът ще използва по подразбиране текущия потребител, ако не е избран потребител',
|
||||
'create_page_subtitle' => 'Създайте рекламата безупречно, като въведете подробна информация за нея.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Заглавие на рекламата',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'Изглед',
|
||||
'ads_with_map' => 'Реклами с карта',
|
||||
'advanced_sorting' => 'Разширено сортиране',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Филтрирайте по дума',
|
||||
'filter_by' => 'Филтрирайте по: име',
|
||||
|
||||
'free' => 'Безплатно',
|
||||
'ad_date' => 'Дата на рекламата',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Стара цена'
|
||||
],
|
||||
'save_search' => 'Запазване на търсенето',
|
||||
'publish_at' => [
|
||||
'name' => 'Дата на публикуване'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Карта Дълги координати',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Лого на Social Share',
|
||||
'warning' => 'Трябва да е с разделителна способност 1200 x 630. ',
|
||||
'warning' => 'Трябва да е с разделителна способност 1200 x 630. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Адрес на сайта',
|
||||
'warning' => 'Автоматично добавено www. www.<strong>сайта.com</strong> ',
|
||||
'warning' => 'Автоматично добавено www. www.<strong>сайта.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api Key',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Пазар',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Скрита цена',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Скрита цена',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Скриване на ценовия филтър',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Скриване на създадената дата',
|
||||
'instructions' => 'Скриване на създадената дата в страницата с подробности за рекламите',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Скриване на заглавката на списъка',
|
||||
'instructions' => 'Скриване за подреждане и преглед на типове',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Скриване на раздела за филтри',
|
||||
'instructions' => 'Скриване в лявата зона на филтъра в страницата с обяви',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Скриване на информацията за продавача',
|
||||
'instructions' => 'Скриване на информация за продавача в страницата с подробности за рекламите',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Скриване на заглавката на списъка',
|
||||
'instructions' => 'Скриване за подреждане и преглед на типове',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Скриване на раздела за филтри',
|
||||
'instructions' => 'Скриване в лявата зона на филтъра в страницата с обяви',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Скриване на информацията за продавача',
|
||||
'instructions' => 'Скриване на информация за продавача в страницата с подробности за рекламите',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Показване на споразумението за публикуване на реклами',
|
||||
'instructions' => 'Включете това, ако искате да покажете споразумение за политика за поверителност на страницата за създаване на реклама',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'ВЗЕМЕТЕ Категории',
|
||||
'instructions' => 'Той представлява категориите, в които свойството GET ще бъде валидно.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Деактивирайте Sentry'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Деактивирайте Sentry'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Воден знак',
|
||||
'instructions' => 'Активен ли е водният знак?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Показване на подкатегории в мобилен изглед',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Покажи цена само за членовете',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Скриване на категории',
|
||||
'instructions' => 'Скриване на категориите в списъка с реклами'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Показване на крайната дата и датата на публикуване за създаване',
|
||||
'instructions' => 'Показва полетата objav_at и finish_at на страницата за създаване на реклама.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'বিজ্ঞাপন',
|
||||
'name' => 'বিজ্ঞাপন মডিউল',
|
||||
'description' => 'বিজ্ঞাপন মডিউল',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'বিজ্ঞাপনের অবস্থান',
|
||||
'owner' => 'মালিক',
|
||||
'default_owner_instruction' => 'কোনও ব্যবহারকারী নির্বাচিত না হলে মালিক বর্তমান ব্যবহারকারীর কাছে ডিফল্ট হবে',
|
||||
'create_page_subtitle' => 'আপনার বিজ্ঞাপন সম্পর্কে বিস্তারিত তথ্য প্রবেশ করে নির্বিঘ্নে বিজ্ঞাপনটি তৈরি করুন।',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'বিজ্ঞাপনের শিরোনাম',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'দেখুন',
|
||||
'ads_with_map' => 'মানচিত্র সহ বিজ্ঞাপন',
|
||||
'advanced_sorting' => 'উন্নত বাছাই',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'কথায় কথায় ফিল্টার করুন',
|
||||
'filter_by' => 'ফিল্টার করুন: নাম',
|
||||
|
||||
'free' => 'ফ্রি',
|
||||
'ad_date' => 'বিজ্ঞাপন তারিখ',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'পুরাতন মূল্য'
|
||||
],
|
||||
'save_search' => 'অনুসন্ধান সংরক্ষণ করুন',
|
||||
'publish_at' => [
|
||||
'name' => 'প্রকাশের তারিখ'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'ফেভিকন',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'মানচিত্র দীর্ঘ সমন্বয়',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'সামাজিক ভাগ লোগো',
|
||||
'warning' => 'এটি 1200 x 630 এর রেজোলিউশনে হওয়া উচিত। ',
|
||||
'warning' => 'এটি 1200 x 630 এর রেজোলিউশনে হওয়া উচিত। ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'সাইটের ঠিকানা',
|
||||
'warning' => 'অটো যুক্ত www। WWW।<strong>sitename.com</strong> ',
|
||||
'warning' => 'অটো যুক্ত www। WWW।<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'গুগল ম্যাপ এপি কী',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'মার্কেট প্লেস',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'মূল্য অঞ্চল লুকানো',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'মূল্য অঞ্চল লুকানো',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'দাম ফিল্টার লুকান',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'তৈরি তারিখ লুকান',
|
||||
'instructions' => 'বিজ্ঞাপনের বিশদ পৃষ্ঠাতে তৈরি তারিখটি লুকান',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'তালিকা শিরোনাম লুকান',
|
||||
'instructions' => 'অর্ডার করা এবং প্রকার দেখার জন্য আড়াল করা',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'ফিল্টার বিভাগটি লুকান',
|
||||
'instructions' => 'তালিকা পৃষ্ঠায় বাম ফিল্টার অঞ্চল থেকে লুকানো',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'বিক্রেতার তথ্য লুকান',
|
||||
'instructions' => 'বিজ্ঞাপনের বিশদ পৃষ্ঠাতে বিক্রেতা ইনফোদের কাছে লুকানো',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'তালিকা শিরোনাম লুকান',
|
||||
'instructions' => 'অর্ডার করা এবং প্রকার দেখার জন্য আড়াল করা',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'ফিল্টার বিভাগটি লুকান',
|
||||
'instructions' => 'তালিকা পৃষ্ঠায় বাম ফিল্টার অঞ্চল থেকে লুকানো',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'বিক্রেতার তথ্য লুকান',
|
||||
'instructions' => 'বিজ্ঞাপনের বিশদ পৃষ্ঠাতে বিক্রেতা ইনফোদের কাছে লুকানো',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'পোস্ট বিজ্ঞাপন চুক্তি প্রদর্শন করুন',
|
||||
'instructions' => 'আপনি বিজ্ঞাপন তৈরি পৃষ্ঠায় কোনও গোপনীয়তা নীতি চুক্তি প্রদর্শন করতে চাইলে এটি চালু করুন',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'GET বিভাগসমূহ',
|
||||
'instructions' => 'এটি এমন বিভাগগুলিতে প্রতিনিধিত্ব করে যেখানে জিইটি সম্পত্তি বৈধ হবে।'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'সেন্ট্রি অক্ষম করুন'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'সেন্ট্রি অক্ষম করুন'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'ওয়াটারমার্ক',
|
||||
'instructions' => 'জলছবি সক্রিয়?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'মোবাইল ভিউতে উপশ্রেণীগুলি দেখান',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'মূল্য শুধুমাত্র সদস্যদের দেখান',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'বিভাগগুলি লুকান',
|
||||
'instructions' => 'বিজ্ঞাপনের তালিকায় বিভাগগুলি লুকান'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'তৈরির জন্য শেষ তারিখ এবং প্রকাশের তারিখ দেখান',
|
||||
'instructions' => 'বিজ্ঞাপন তৈরি পৃষ্ঠায় প্রকাশ_আট এবং সমাপ্তি_এ ক্ষেত্রগুলি প্রদর্শন করে।'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Anuncis',
|
||||
'name' => 'Mòdul d’anuncis',
|
||||
'description' => 'Mòdul d’anuncis',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'Ubicació de l’anunci',
|
||||
'owner' => 'Propietari',
|
||||
'default_owner_instruction' => 'El propietari passarà per defecte a l\'usuari actual si no se selecciona cap usuari',
|
||||
'create_page_subtitle' => 'Creeu l’anunci perfectament introduint informació detallada sobre el vostre anunci.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Títol de l\'anunci',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'Veure',
|
||||
'ads_with_map' => 'Anuncis amb mapa',
|
||||
'advanced_sorting' => 'Ordenació avançada',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filtra per paraula',
|
||||
'filter_by' => 'Filtra per: nom',
|
||||
|
||||
'free' => 'Gratuït',
|
||||
'ad_date' => 'Data de l\'anunci',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Preu antic'
|
||||
],
|
||||
'save_search' => 'Desa la cerca',
|
||||
'publish_at' => [
|
||||
'name' => 'Data de publicació'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Mapa de coordenades llargues',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Logotip de Compartir social',
|
||||
'warning' => 'Hauria de tenir una resolució de 1200 x 630. ',
|
||||
'warning' => 'Hauria de tenir una resolució de 1200 x 630. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Adreça del lloc',
|
||||
'warning' => 'S\'ha afegit automàticament www. www.<strong>nom</strong> ',
|
||||
'warning' => 'S\'ha afegit automàticament www. www.<strong>nom</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Clau API de Google Map',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Mercat',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Zona de preus oculta',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Zona de preus oculta',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Amaga el filtre de preus',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Amaga la data de creació',
|
||||
'instructions' => 'Amaga la data de creació a la pàgina de detalls dels anuncis',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Amaga la capçalera del llistat',
|
||||
'instructions' => 'Ocultant els tipus d\'ordres i visualitzacions',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Amaga la secció del filtre',
|
||||
'instructions' => 'S’amaga a l’àrea de filtre esquerra a la pàgina de la llista',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Amaga la informació del venedor',
|
||||
'instructions' => 'Ocultació de la informació del venedor a la pàgina de detalls dels anuncis',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Amaga la capçalera del llistat',
|
||||
'instructions' => 'Ocultant els tipus d\'ordres i visualitzacions',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Amaga la secció del filtre',
|
||||
'instructions' => 'S’amaga a l’àrea de filtre esquerra a la pàgina de la llista',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Amaga la informació del venedor',
|
||||
'instructions' => 'Ocultació de la informació del venedor a la pàgina de detalls dels anuncis',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Mostra l\'acord per publicar publicacions',
|
||||
'instructions' => 'Activeu aquesta opció si voleu mostrar un acord de política de privadesa a la pàgina de creació d\'anuncis',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'GET Categories',
|
||||
'instructions' => 'Representa les categories en què la propietat GET serà vàlida.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Desactiva Sentry'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Desactiva Sentry'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Filigrana',
|
||||
'instructions' => 'La filigrana està activa?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Mostra subcategories a la visualització per a mòbils',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Mostrar preu només per a membres',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Amaga les categories',
|
||||
'instructions' => 'Amaga les categories a la llista d\'anuncis'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Mostra la data de finalització i la data de publicació per crear',
|
||||
'instructions' => 'Mostra els camps publish_at i finish_at de la pàgina de creació d\'anuncis.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Reklamy',
|
||||
'name' => 'Modul reklam',
|
||||
'description' => 'Modul reklam',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'Umístění reklamy',
|
||||
'owner' => 'Majitel',
|
||||
'default_owner_instruction' => 'Vlastník bude výchozí pro aktuálního uživatele, pokud není vybrán žádný uživatel',
|
||||
'create_page_subtitle' => 'Vytvořte reklamu bezchybně zadáním podrobných informací o reklamě.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Název reklamy',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'Pohled',
|
||||
'ads_with_map' => 'Reklamy s mapou',
|
||||
'advanced_sorting' => 'Pokročilé třídění',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filtrovat podle slova',
|
||||
'filter_by' => 'Filtrovat podle: názvu',
|
||||
|
||||
'free' => 'Volný, uvolnit',
|
||||
'ad_date' => 'Datum inzerátu',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Stará cena'
|
||||
],
|
||||
'save_search' => 'Uložit hledání',
|
||||
'publish_at' => [
|
||||
'name' => 'Datum zveřejnění'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Namapujte dlouhou souřadnici',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Logo sociální sdílení',
|
||||
'warning' => 'Mělo by to být v rozlišení 1200 x 630. ',
|
||||
'warning' => 'Mělo by to být v rozlišení 1200 x 630. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Adresa webu',
|
||||
'warning' => 'Automaticky přidáno www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'Automaticky přidáno www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Klíč Google Map Api',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Tržiště',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Cenová oblast skrytá',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Cenová oblast skrytá',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Skrýt cenový filtr',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Skrýt datum vytvoření',
|
||||
'instructions' => 'Skrýt datum vytvoření na stránce podrobností reklam',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Skrýt záhlaví záznamu',
|
||||
'instructions' => 'Schovává se při objednávání a prohlížení typů',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Skrýt sekci filtru',
|
||||
'instructions' => 'Schovává se na levé straně oblasti filtru na stránce výpisu',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Skrýt informace o prodejci',
|
||||
'instructions' => 'Skrytí informací o prodejci na stránce s podrobnostmi o reklamách',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Skrýt záhlaví záznamu',
|
||||
'instructions' => 'Schovává se při objednávání a prohlížení typů',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Skrýt sekci filtru',
|
||||
'instructions' => 'Schovává se na levé straně oblasti filtru na stránce výpisu',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Skrýt informace o prodejci',
|
||||
'instructions' => 'Skrytí informací o prodejci na stránce s podrobnostmi o reklamách',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Zobrazit smlouvu o příspěvku',
|
||||
'instructions' => 'Tuto možnost zapněte, pokud chcete na stránce vytváření reklam zobrazit dohodu o zásadách ochrany osobních údajů',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'ZÍSKEJTE kategorie',
|
||||
'instructions' => 'Představuje kategorie, ve kterých bude vlastnost GET platná.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Zakázat Sentry'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Zakázat Sentry'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Vodoznak',
|
||||
'instructions' => 'Je vodoznak aktivní?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Zobrazit podkategorie v mobilním zobrazení',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Zobrazit cenu pouze pro členy',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Skrýt kategorie',
|
||||
'instructions' => 'Skrýt kategorie v seznamu reklam'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Zobrazit datum dokončení a datum publikování pro vytvoření',
|
||||
'instructions' => 'Zobrazí pole publish_at a finish_at na stránce pro vytvoření reklamy.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Annoncer',
|
||||
'name' => 'Annoncemodul',
|
||||
'description' => 'Annoncemodul',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'Annonceplacering',
|
||||
'owner' => 'Ejer',
|
||||
'default_owner_instruction' => 'Ejeren vil som standard være den nuværende bruger, hvis ingen bruger er valgt',
|
||||
'create_page_subtitle' => 'Opret annoncen fejlfrit ved at indtaste detaljerede oplysninger om din annonce.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Annoncetitel',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'Udsigt',
|
||||
'ads_with_map' => 'Annoncer med kort',
|
||||
'advanced_sorting' => 'Avanceret sortering',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filtrer efter ord',
|
||||
'filter_by' => 'Filtrer efter: navn',
|
||||
|
||||
'free' => 'Gratis',
|
||||
'ad_date' => 'Annoncedato',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Gammel pris'
|
||||
],
|
||||
'save_search' => 'Gem søgning',
|
||||
'publish_at' => [
|
||||
'name' => 'Udgivelsesdato'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Kort Long Coordinate',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Social Share Logo',
|
||||
'warning' => 'Det skal have en opløsning på 1200 x 630. ',
|
||||
'warning' => 'Det skal have en opløsning på 1200 x 630. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Webstedsadresse',
|
||||
'warning' => 'Automatisk tilføjet www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'Automatisk tilføjet www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api-nøgle',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Markedsplads',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Prisområde skjult',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Prisområde skjult',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Skjul prisfilter',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Skjul oprettet dato',
|
||||
'instructions' => 'Skjul oprettet dato på siden med annoncedetaljer',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Skjul listeoverskrift',
|
||||
'instructions' => 'Skjuler sig for bestilling og visningstyper',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Skjul filtersektion',
|
||||
'instructions' => 'Skjuler sig til venstre filterområde på oversigtssiden',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Skjul sælgeroplysninger',
|
||||
'instructions' => 'Skjuler sig for sælgerinfo på siden med annoncer',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Skjul listeoverskrift',
|
||||
'instructions' => 'Skjuler sig for bestilling og visningstyper',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Skjul filtersektion',
|
||||
'instructions' => 'Skjuler sig til venstre filterområde på oversigtssiden',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Skjul sælgeroplysninger',
|
||||
'instructions' => 'Skjuler sig for sælgerinfo på siden med annoncer',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Vis indlægsaftale',
|
||||
'instructions' => 'Slå dette til, hvis du vil vise en aftale om fortrolighedspolitik på siden til oprettelse af annoncer',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'FÅ kategorier',
|
||||
'instructions' => 'Det repræsenterer de kategorier, hvor GET-ejendommen er gyldig.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Deaktiver vagtpost'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Deaktiver vagtpost'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Vandmærke',
|
||||
'instructions' => 'Er vandmærke aktivt?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Vis underkategorier i mobilvisning',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Vis pris kun til medlemmer',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Skjul kategorier',
|
||||
'instructions' => 'Skjul kategorier i annoncelisten'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Vis slutdato og offentliggør dato for oprettelse',
|
||||
'instructions' => 'Viser felterne publish_at og finish_at på siden til annonceoprettelse.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Anzeigen',
|
||||
'name' => 'Anzeigenmodul',
|
||||
'description' => 'Anzeigenmodul',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -338,6 +338,9 @@ return [
|
||||
'owner' => 'Inhaber',
|
||||
'default_owner_instruction' => 'Der Eigentümer verwendet standardmäßig den aktuellen Benutzer, wenn kein Benutzer ausgewählt ist',
|
||||
'create_page_subtitle' => 'Erstellen Sie die Anzeige fehlerfrei, indem Sie detaillierte Informationen zu Ihrer Anzeige eingeben.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Anzeigentitel',
|
||||
@ -346,6 +349,7 @@ return [
|
||||
'ads_with_map' => 'Anzeigen mit Karte',
|
||||
'advanced_sorting' => 'Erweiterte Sortierung',
|
||||
'filter_by_word' => 'Nach Wort filtern',
|
||||
'filter_by' => 'Filtern nach: Name',
|
||||
|
||||
'free' => 'Frei',
|
||||
'ad_date' => 'Anzeigedatum',
|
||||
@ -370,4 +374,10 @@ return [
|
||||
'name' => 'Alter Preis'
|
||||
],
|
||||
'save_search' => 'Sichere Suche',
|
||||
'publish_at' => [
|
||||
'name' => 'Erscheinungsdatum'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Lange Koordinate abbilden',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Social Share Logo',
|
||||
'warning' => 'Die Auflösung sollte 1200 x 630 betragen.',
|
||||
'warning' => 'Die Auflösung sollte 1200 x 630 betragen.',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Website-Adresse',
|
||||
'warning' => 'Automatisch hinzugefügt www. www. <strong>sitename.com</strong>',
|
||||
'warning' => 'Automatisch hinzugefügt www. www. <strong>sitename.com</strong>',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map-API-Schlüssel',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Marktplatz',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Preisbereich versteckt',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Preisbereich versteckt',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Preisfilter ausblenden',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Erstellungsdatum ausblenden',
|
||||
'instructions' => 'Erstellungsdatum auf der Anzeigen-Detailseite ausblenden',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Listenkopf ausblenden',
|
||||
'instructions' => 'Verstecken, um Typen zu bestellen und anzuzeigen',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Filterbereich ausblenden',
|
||||
'instructions' => 'Versteckt den linken Filterbereich auf der Listenseite',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Verkäuferinformationen ausblenden',
|
||||
'instructions' => 'Ausblenden von Verkäuferinformationen auf der Anzeigen-Detailseite',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Listenkopf ausblenden',
|
||||
'instructions' => 'Verstecken, um Typen zu bestellen und anzuzeigen',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Filterbereich ausblenden',
|
||||
'instructions' => 'Versteckt den linken Filterbereich auf der Listenseite',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Verkäuferinformationen ausblenden',
|
||||
'instructions' => 'Ausblenden von Verkäuferinformationen auf der Anzeigen-Detailseite',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Show Post Ad Agreement anzeigen',
|
||||
'instructions' => 'Aktivieren Sie diese Option, wenn Sie auf der Seite zur Anzeigenerstellung eine Datenschutzrichtlinie anzeigen möchten',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'Kategorien abrufen',
|
||||
'instructions' => 'Es stellt die Kategorien dar, in denen die GET-Eigenschaft gültig ist.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Sentry deaktivieren'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Sentry deaktivieren'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Wasserzeichen',
|
||||
'instructions' => 'Ist das Wasserzeichen aktiv?'
|
||||
@ -265,11 +265,19 @@ return [
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Unterkategorien in der mobilen Ansicht anzeigen',
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Preis nur für Mitglieder anzeigen',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Kategorien ausblenden',
|
||||
'instructions' => 'Kategorien in der Anzeigenliste ausblenden'
|
||||
]
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Preis nur für Mitglieder anzeigen',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Kategorien ausblenden',
|
||||
'instructions' => 'Kategorien in der Anzeigenliste ausblenden'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Enddatum anzeigen und Veröffentlichungsdatum für die Erstellung',
|
||||
'instructions' => 'Zeigt die Felder "Publish_at" und "Finish_at" auf der Seite zur Anzeigenerstellung an.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Διαφημίσεις',
|
||||
'name' => 'Ενότητα διαφημίσεων',
|
||||
'description' => 'Ενότητα διαφημίσεων',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -337,6 +337,10 @@ return [
|
||||
'ad_location' => 'Τοποθεσία διαφήμισης',
|
||||
'owner' => 'Ιδιοκτήτης',
|
||||
'default_owner_instruction' => 'Ο κάτοχος θα προεπιλογή στον τρέχοντα χρήστη εάν δεν έχει επιλεγεί κανένας χρήστης',
|
||||
'create_page_subtitle' => 'Δημιουργήστε τη διαφήμιση άψογα εισάγοντας λεπτομερείς πληροφορίες σχετικά με τη διαφήμισή σας.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Τίτλος διαφήμισης',
|
||||
@ -344,7 +348,8 @@ return [
|
||||
'view' => 'Θέα',
|
||||
'ads_with_map' => 'Διαφημίσεις με χάρτη',
|
||||
'advanced_sorting' => 'Προηγμένη ταξινόμηση',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Φιλτράρισμα κατά λέξη',
|
||||
'filter_by' => 'Φιλτράρισμα κατά: όνομα',
|
||||
|
||||
'free' => 'Ελεύθερος',
|
||||
'ad_date' => 'Ημερομηνία διαφήμισης',
|
||||
@ -368,4 +373,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Παλιά τιμή'
|
||||
],
|
||||
'save_search' => 'Αποθήκευση αναζήτησης',
|
||||
'publish_at' => [
|
||||
'name' => 'Ημερομηνία δημοσίευσης'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Χάρτης Μεγάλος Συντονισμός',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Κοινωνικό Λογότυπο Share',
|
||||
'warning' => 'Θα πρέπει να έχει ανάλυση 1200 x 630.',
|
||||
'warning' => 'Θα πρέπει να έχει ανάλυση 1200 x 630.',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Διεύθυνση ιστοτόπου',
|
||||
'warning' => 'Αυτόματη προσθήκη www. www. <strong>sitename.com</strong>',
|
||||
'warning' => 'Αυτόματη προσθήκη www. www. <strong>sitename.com</strong>',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Το Google Map Api Key',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Αγορά',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Κρυφή περιοχή τιμών',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Κρυφή περιοχή τιμών',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Απόκρυψη φίλτρου τιμών',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Απόκρυψη ημερομηνίας δημιουργίας',
|
||||
'instructions' => 'Απόκρυψη ημερομηνίας δημιουργίας στη σελίδα λεπτομερειών διαφημίσεων',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Απόκρυψη κεφαλίδας καταχώρισης',
|
||||
'instructions' => 'Απόκρυψη σε παραγγελίες και προβολή τύπων',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Απόκρυψη ενότητας φίλτρου',
|
||||
'instructions' => 'Απόκρυψη στην αριστερή περιοχή φίλτρου στη σελίδα καταχώρισης',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Απόκρυψη πληροφοριών πωλητή',
|
||||
'instructions' => 'Απόκρυψη στις πληροφορίες πωλητή στη σελίδα λεπτομερειών διαφημίσεων',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Απόκρυψη κεφαλίδας καταχώρισης',
|
||||
'instructions' => 'Απόκρυψη σε παραγγελίες και προβολή τύπων',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Απόκρυψη ενότητας φίλτρου',
|
||||
'instructions' => 'Απόκρυψη στην αριστερή περιοχή φίλτρου στη σελίδα καταχώρισης',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Απόκρυψη πληροφοριών πωλητή',
|
||||
'instructions' => 'Απόκρυψη στις πληροφορίες πωλητή στη σελίδα λεπτομερειών διαφημίσεων',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Εμφάνιση συμφωνίας μετά τη διαφήμιση',
|
||||
'instructions' => 'Ενεργοποιήστε το αν θέλετε να εμφανίσετε μια συμφωνία πολιτικής απορρήτου στη σελίδα δημιουργίας διαφημίσεων',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'GET Κατηγορίες',
|
||||
'instructions' => 'Αντιπροσωπεύει τις κατηγορίες στις οποίες η ιδιότητα GET θα είναι έγκυρη.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Απενεργοποιήστε το Sentry'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Απενεργοποιήστε το Sentry'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Στάθμη ύδατος',
|
||||
'instructions' => 'Είναι ενεργό το υδατογράφημα;'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Εμφάνιση υποκατηγοριών σε προβολή για κινητά',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Εμφάνιση τιμής μόνο στα μέλη',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Απόκρυψη κατηγοριών',
|
||||
'instructions' => 'Απόκρυψη κατηγοριών στη λίστα διαφημίσεων'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Εμφάνιση ημερομηνίας λήξης και ημερομηνίας δημοσίευσης για δημιουργία',
|
||||
'instructions' => 'Εμφανίζει τα πεδία publish_at και finish_at στη σελίδα δημιουργίας διαφημίσεων.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -134,6 +134,7 @@ return [
|
||||
'home' => 'Home',
|
||||
'list-page' => 'List Page',
|
||||
'search' => 'Search',
|
||||
'reset' => 'Reset',
|
||||
'recommended' => 'Recommended Ads for You',
|
||||
'filter' => 'Filter',
|
||||
'sort' => 'Sort',
|
||||
@ -376,4 +377,7 @@ return [
|
||||
'publish_at' => [
|
||||
'name' => 'Publish Date'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -276,4 +276,8 @@ return [
|
||||
'name' => 'Show Finish Date And Publish Date For Create',
|
||||
'instructions' => 'Displays the publish_at and finish_at fields on the ad creation page.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Anuncios',
|
||||
'name' => 'Módulo de anuncios',
|
||||
'description' => 'Módulo de anuncios',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -337,6 +337,10 @@ return [
|
||||
'ad_location' => 'Ubicación del anuncio',
|
||||
'owner' => 'Propietario',
|
||||
'default_owner_instruction' => 'El propietario utilizará de forma predeterminada el usuario actual si no se selecciona ningún usuario',
|
||||
'create_page_subtitle' => 'Cree el anuncio sin problemas ingresando información detallada sobre su anuncio.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Título del anuncio',
|
||||
@ -344,7 +348,8 @@ return [
|
||||
'view' => 'Vista',
|
||||
'ads_with_map' => 'Anuncios con mapa',
|
||||
'advanced_sorting' => 'Clasificación avanzada',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filtrar por palabra',
|
||||
'filter_by' => 'Filtrar por: nombre',
|
||||
|
||||
'free' => 'Gratis',
|
||||
'ad_date' => 'Fecha de anuncio',
|
||||
@ -368,4 +373,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Precio anterior'
|
||||
],
|
||||
'save_search' => 'Guardar búsqueda',
|
||||
'publish_at' => [
|
||||
'name' => 'Fecha de publicación'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Mapa de coordenadas largas',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Logotipo de Social Share',
|
||||
'warning' => 'Debe tener una resolución de 1200 x 630.',
|
||||
'warning' => 'Debe tener una resolución de 1200 x 630.',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Dirección del sitio',
|
||||
'warning' => 'Auto añadido www. www. <strong>sitename.com</strong>',
|
||||
'warning' => 'Auto añadido www. www. <strong>sitename.com</strong>',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api Key',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Market Place',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Zona de precio oculta',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Zona de precio oculta',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Ocultar filtro de precio',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Ocultar fecha de creación',
|
||||
'instructions' => 'Ocultar la fecha de creación en la página de detalles de los anuncios',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Ocultar encabezado de listado',
|
||||
'instructions' => 'Ocultar para ordenar y ver tipos',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Ocultar sección de filtro',
|
||||
'instructions' => 'Ocultar en el área de filtro izquierda en la página de listado',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Ocultar información del vendedor',
|
||||
'instructions' => 'Ocultar información del vendedor en la página de detalles de anuncios',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Ocultar encabezado de listado',
|
||||
'instructions' => 'Ocultar para ordenar y ver tipos',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Ocultar sección de filtro',
|
||||
'instructions' => 'Ocultar en el área de filtro izquierda en la página de listado',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Ocultar información del vendedor',
|
||||
'instructions' => 'Ocultar información del vendedor en la página de detalles de anuncios',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Mostrar acuerdo de publicación',
|
||||
'instructions' => 'Active esta opción si desea mostrar un acuerdo de política de privacidad en la página de creación de anuncios.',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'OBTENER Categorías',
|
||||
'instructions' => 'Representa las categorías en las que será válida la propiedad GET.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Desactivar centinela'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Desactivar centinela'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Filigrana',
|
||||
'instructions' => '¿Está activa la marca de agua?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Mostrar subcategorías en la vista móvil',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Mostrar precio solo para miembros',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Ocultar categorías',
|
||||
'instructions' => 'Ocultar categorías en la lista de anuncios'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Mostrar fecha de finalización y fecha de publicación para crear',
|
||||
'instructions' => 'Muestra los campos publish_at y finish_at en la página de creación de anuncios.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'تبلیغات',
|
||||
'name' => 'ماژول تبلیغات',
|
||||
'description' => 'ماژول تبلیغات',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'مکان تبلیغات',
|
||||
'owner' => 'مالک',
|
||||
'default_owner_instruction' => 'اگر هیچ کاربری انتخاب نشود ، مالک به عنوان کاربر پیش فرض عمل می کند',
|
||||
'create_page_subtitle' => 'با وارد کردن اطلاعات دقیق در مورد تبلیغ خود ، تبلیغ را بدون نقص ایجاد کنید.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'عنوان آگهی',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'چشم انداز',
|
||||
'ads_with_map' => 'تبلیغات با نقشه',
|
||||
'advanced_sorting' => 'مرتب سازی پیشرفته',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'فیلتر با کلمه',
|
||||
'filter_by' => 'فیلتر بر اساس: نام',
|
||||
|
||||
'free' => 'رایگان',
|
||||
'ad_date' => 'تاریخ آگهی',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'قیمت قدیمی'
|
||||
],
|
||||
'save_search' => 'ذخیره جستجو',
|
||||
'publish_at' => [
|
||||
'name' => 'تاریخ انتشار'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'آیکن مورد علاقه',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'نقشه طولانی مربوط',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -42,7 +42,7 @@ return [
|
||||
'ogImage' => [
|
||||
'name' => 'لوگوی اشتراک گذاری شبکه های اجتماعی
|
||||
',
|
||||
'warning' => 'باید دارای کیفیت 1200X 630 باشد.',
|
||||
'warning' => 'باید دارای کیفیت 1200X 630 باشد.',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -53,7 +53,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'آدرس سایت',
|
||||
'warning' => 'خودکار اضافه شد www. www <strong>sitename.com</strong>',
|
||||
'warning' => 'خودکار اضافه شد www. www <strong>sitename.com</strong>',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api Key',
|
||||
@ -135,9 +135,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'محل بازار',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'منطقه پنهان',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'منطقه پنهان',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'فیلتر قیمت مخفی کنید',
|
||||
],
|
||||
@ -216,18 +216,18 @@ return [
|
||||
'name' => 'پنهان کردن تاریخ ایجاد شده',
|
||||
'instructions' => 'تاریخ ایجاد شده را در صفحه جزئیات تبلیغات پنهان کنید',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'پنهان کردن عنوان لیست',
|
||||
'instructions' => 'مخفی شدن در سفارش و مشاهده انواع',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'پنهان کردن بخش فیلتر',
|
||||
'instructions' => 'در صفحه لیست مخفی شدن در سمت چپ فیلتر',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'پنهان کردن اطلاعات فروشنده',
|
||||
'instructions' => 'پنهان شدن در مورد اطلاعات فروشنده در صفحه جزئیات تبلیغات',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'پنهان کردن عنوان لیست',
|
||||
'instructions' => 'مخفی شدن در سفارش و مشاهده انواع',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'پنهان کردن بخش فیلتر',
|
||||
'instructions' => 'در صفحه لیست مخفی شدن در سمت چپ فیلتر',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'پنهان کردن اطلاعات فروشنده',
|
||||
'instructions' => 'پنهان شدن در مورد اطلاعات فروشنده در صفحه جزئیات تبلیغات',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'نمایش قرارداد تبلیغات پست',
|
||||
'instructions' => 'اگر می خواهید توافق نامه سیاست حفظ حریم خصوصی را در صفحه ایجاد آگهی نمایش دهید ، این گزینه را روشن کنید',
|
||||
@ -252,9 +252,9 @@ return [
|
||||
'name' => 'دسته ها را دریافت کنید',
|
||||
'instructions' => 'این نشان دهنده دسته هایی است که ویژگی GET در آنها معتبر خواهد بود.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Sentry را غیرفعال کنید'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Sentry را غیرفعال کنید'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'علامت',
|
||||
'instructions' => 'آیا علامت علامت فعال است؟'
|
||||
@ -265,5 +265,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'زیر مجموعه ها را در نمای موبایل نشان دهید',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'نمایش قیمت فقط به اعضا',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'پنهان کردن دسته ها',
|
||||
'instructions' => 'پنهان کردن دسته ها در لیست تبلیغات'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'تاریخ پایان را نشان دهید و تاریخ ایجاد را ایجاد کنید',
|
||||
'instructions' => 'قسمت های publ_at و finish_at را در صفحه ایجاد تبلیغ نمایش می دهد.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Mainokset',
|
||||
'name' => 'Mainosmoduuli',
|
||||
'description' => 'Mainosmoduuli',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'Mainoksen sijainti',
|
||||
'owner' => 'Omistaja',
|
||||
'default_owner_instruction' => 'Omistaja määrittää oletusasetukset nykyiselle käyttäjälle, jos ketään ei ole valittu',
|
||||
'create_page_subtitle' => 'Luo mainos moitteettomasti syöttämällä yksityiskohtaiset tiedot mainoksestasi.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Mainoksen otsikko',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'Näytä',
|
||||
'ads_with_map' => 'Mainokset kartalla',
|
||||
'advanced_sorting' => 'Edistynyt lajittelu',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Suodata sanan mukaan',
|
||||
'filter_by' => 'Suodata: nimen mukaan',
|
||||
|
||||
'free' => 'Vapaa',
|
||||
'ad_date' => 'Ilmoituksen päivämäärä',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Vanha hinta'
|
||||
],
|
||||
'save_search' => 'Tallenna haku',
|
||||
'publish_at' => [
|
||||
'name' => 'Julkaisupäivä'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Kartta Long Coordinate',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Sosiaalisen osakkeen logo',
|
||||
'warning' => 'Sen tulisi olla resoluutio 1 200 x 630. ',
|
||||
'warning' => 'Sen tulisi olla resoluutio 1 200 x 630. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Sivuston osoite',
|
||||
'warning' => 'Automaattinen lisäys www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'Automaattinen lisäys www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api Key',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Tori',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Hinta-alue piilotettu',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Hinta-alue piilotettu',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Piilota hintasuodatin',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Piilota luontipäivä',
|
||||
'instructions' => 'Piilota luotu päivämäärä mainosten tietosivulla',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Piilota luettelootsikko',
|
||||
'instructions' => 'Piilotus tilaamiseen ja näkymiin',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Piilota suodatinosa',
|
||||
'instructions' => 'Piilotus vasemmalle suodatinalue luettelosivulle',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Piilota myyjän tiedot',
|
||||
'instructions' => 'Piilotus myyjän tietoihin ilmoitusten tietosivulla',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Piilota luettelootsikko',
|
||||
'instructions' => 'Piilotus tilaamiseen ja näkymiin',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Piilota suodatinosa',
|
||||
'instructions' => 'Piilotus vasemmalle suodatinalue luettelosivulle',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Piilota myyjän tiedot',
|
||||
'instructions' => 'Piilotus myyjän tietoihin ilmoitusten tietosivulla',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Näytä postimainossopimus',
|
||||
'instructions' => 'Ota tämä käyttöön, jos haluat näyttää tietosuojakäytännön mainoksen luomissivulla',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'HANKI luokkia',
|
||||
'instructions' => 'Se edustaa luokkia, joissa GET-ominaisuus on voimassa.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Poista Sentry käytöstä'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Poista Sentry käytöstä'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Vesileima',
|
||||
'instructions' => 'Onko vesileima aktiivinen?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Näytä alaluokat mobiilinäkymässä',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Näytä hinta vain jäsenille',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Piilota luokat',
|
||||
'instructions' => 'Piilota luokat mainosluettelossa'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Näytä lopetuspäivä ja julkaisupäivä luomista varten',
|
||||
'instructions' => 'Näyttää julkaisun_at ja viimeistelyn_at-kentät mainoksen luomissivulla.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Les publicités',
|
||||
'name' => 'Module dannonces',
|
||||
'description' => 'Module dannonces',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -338,6 +338,9 @@ return [
|
||||
'owner' => 'Propriétaire',
|
||||
'default_owner_instruction' => 'Le propriétaire utilisera par défaut l\'utilisateur actuel si aucun utilisateur n\'est sélectionné',
|
||||
'create_page_subtitle' => 'Créez parfaitement l\'annonce en saisissant des informations détaillées sur votre annonce.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Ajouter un titre',
|
||||
@ -346,6 +349,7 @@ return [
|
||||
'ads_with_map' => 'Annonces avec carte',
|
||||
'advanced_sorting' => 'Tri avancé',
|
||||
'filter_by_word' => 'Filtrer par mot',
|
||||
'filter_by' => 'Filtrer par: nom',
|
||||
|
||||
'free' => 'Gratuit',
|
||||
'ad_date' => 'Date de l\'annonce',
|
||||
@ -370,4 +374,10 @@ return [
|
||||
'name' => 'Ancien prix'
|
||||
],
|
||||
'save_search' => 'Sauvegarder la recherche',
|
||||
'publish_at' => [
|
||||
'name' => 'Date de publication'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Carte Longue Coordonnée',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Logo de partage social',
|
||||
'warning' => 'Il devrait être à une résolution de 1200 x 630.',
|
||||
'warning' => 'Il devrait être à une résolution de 1200 x 630.',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Adresse du site',
|
||||
'warning' => 'Auto ajouté www. www. <strong>sitename.com</strong>',
|
||||
'warning' => 'Auto ajouté www. www. <strong>sitename.com</strong>',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Clé Api Google Map',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Place du marché',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Zone de prix masquée',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Zone de prix masquée',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Masquer le filtre de prix',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Masquer la date de création',
|
||||
'instructions' => 'Masquer la date de création dans la page de détail des annonces',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Masquer l\'en-tête de l\'annonce',
|
||||
'instructions' => 'Masquage des types de commande et d\'affichage',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Masquer la section de filtre',
|
||||
'instructions' => 'Masquage dans la zone de filtre gauche de la page de liste',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Masquer les informations du vendeur',
|
||||
'instructions' => 'Masquage des informations du vendeur dans la page de détail des annonces',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Masquer l\'en-tête de l\'annonce',
|
||||
'instructions' => 'Masquage des types de commande et d\'affichage',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Masquer la section de filtre',
|
||||
'instructions' => 'Masquage dans la zone de filtre gauche de la page de liste',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Masquer les informations du vendeur',
|
||||
'instructions' => 'Masquage des informations du vendeur dans la page de détail des annonces',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Afficher l\'accord de publication d\'annonce',
|
||||
'instructions' => 'Activez cette option si vous souhaitez afficher un accord de politique de confidentialité sur la page de création d\'annonces',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'OBTENIR Catégories',
|
||||
'instructions' => 'Il représente les catégories dans lesquelles la propriété GET sera valide.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Désactiver Sentry'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Désactiver Sentry'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Filigrane',
|
||||
'instructions' => 'Le filigrane est-il actif?'
|
||||
@ -265,11 +265,19 @@ return [
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Afficher les sous-catégories sur la vue mobile',
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Afficher le prix aux membres seulement',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Masquer les catégories',
|
||||
'instructions' => 'Masquer les catégories dans la liste des annonces'
|
||||
]
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Afficher le prix aux membres seulement',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Masquer les catégories',
|
||||
'instructions' => 'Masquer les catégories dans la liste des annonces'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Afficher la date de fin et la date de publication pour la création',
|
||||
'instructions' => 'Affiche les champs publish_at et finish_at sur la page de création d\'annonce.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'מודעות',
|
||||
'name' => 'מודול מודעות',
|
||||
'description' => 'מודול מודעות',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'מיקום מודעה',
|
||||
'owner' => 'בעלים',
|
||||
'default_owner_instruction' => 'הבעלים יוגדר כברירת מחדל למשתמש הנוכחי אם לא ייבחר משתמש',
|
||||
'create_page_subtitle' => 'צור את המודעה ללא רבב על ידי הזנת מידע מפורט אודות המודעה שלך.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'כותרת המודעה',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'נוף',
|
||||
'ads_with_map' => 'מודעות עם מפה',
|
||||
'advanced_sorting' => 'מיון מתקדם',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'סנן לפי מילה',
|
||||
'filter_by' => 'סנן לפי: שם',
|
||||
|
||||
'free' => 'חינם',
|
||||
'ad_date' => 'תאריך מודעה',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'מחיר ישן'
|
||||
],
|
||||
'save_search' => 'שמור חיפוש',
|
||||
'publish_at' => [
|
||||
'name' => 'פרסם תאריך'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'פייביקון',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'מפה לתיאום ארוך',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'לוגו של שיתוף חברתי',
|
||||
'warning' => 'זה אמור להיות ברזולוציה של 1200 x 630. ',
|
||||
'warning' => 'זה אמור להיות ברזולוציה של 1200 x 630. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'כתובת אתר',
|
||||
'warning' => 'נוסף אוטומטית www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'נוסף אוטומטית www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'מפתח המפתח של גוגל',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'זירת מסחר',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'אזור מחיר מוסתר',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'אזור מחיר מוסתר',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'הסתר מסנן מחירים',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'הסתר תאריך יצירה',
|
||||
'instructions' => 'הסתר את התאריך שנוצר בדף פרטי המודעות',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'הסתר כותרת רישום',
|
||||
'instructions' => 'הסתרה לסוגי הזמנה ותצוגה',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'הסתר את קטע המסנן',
|
||||
'instructions' => 'הסתרת אזור הסינון השמאלי בדף הרישום',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'הסתר מידע על מוכר',
|
||||
'instructions' => 'הסתרה למידע על מוכר בדף פירוט המודעות',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'הסתר כותרת רישום',
|
||||
'instructions' => 'הסתרה לסוגי הזמנה ותצוגה',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'הסתר את קטע המסנן',
|
||||
'instructions' => 'הסתרת אזור הסינון השמאלי בדף הרישום',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'הסתר מידע על מוכר',
|
||||
'instructions' => 'הסתרה למידע על מוכר בדף פירוט המודעות',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'הצג הסכם מודעות לפרסום',
|
||||
'instructions' => 'הפעל זאת אם ברצונך להציג הסכם מדיניות פרטיות בדף יצירת המודעות',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'קבל קטגוריות',
|
||||
'instructions' => 'הוא מייצג את הקטגוריות בהן נכס ה- GET יהיה תקף.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'השבת זקיף'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'השבת זקיף'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'סימן מים',
|
||||
'instructions' => 'האם סימן מים פעיל?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'הצג קטגוריות משנה בתצוגת הנייד',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'הצג מחיר לחברים בלבד',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'הסתר קטגוריות',
|
||||
'instructions' => 'הסתר קטגוריות ברשימת המודעות'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'הצג תאריך סיום ופרסם תאריך ליצירה',
|
||||
'instructions' => 'מציג את השדות publish_at ו- finish_at בדף יצירת המודעות.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'विज्ञापन',
|
||||
'name' => 'विज्ञापन मॉड्यूल',
|
||||
'description' => 'विज्ञापन मॉड्यूल',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'विज्ञापन स्थान',
|
||||
'owner' => 'मालिक',
|
||||
'default_owner_instruction' => 'यदि कोई उपयोगकर्ता चयनित नहीं है, तो स्वामी वर्तमान उपयोगकर्ता को डिफ़ॉल्ट करेगा',
|
||||
'create_page_subtitle' => 'अपने विज्ञापन के बारे में विस्तृत जानकारी दर्ज करके विज्ञापन को त्रुटिपूर्ण बनाएं।',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'विज्ञापन शीर्षक',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'राय',
|
||||
'ads_with_map' => 'मानचित्र के साथ विज्ञापन',
|
||||
'advanced_sorting' => 'उन्नत छँटाई',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'शब्द द्वारा फ़िल्टर करें',
|
||||
'filter_by' => 'फ़िल्टर करके: नाम',
|
||||
|
||||
'free' => 'नि: शुल्क',
|
||||
'ad_date' => 'विज्ञापन तिथि',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'पुरानी कीमत'
|
||||
],
|
||||
'save_search' => 'खोज संग्रहित करें',
|
||||
'publish_at' => [
|
||||
'name' => 'प्रकाशित तिथि'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'फ़ेविकॉन',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'मैप लॉन्ग कोऑर्डिनेट',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'सामाजिक शेयर लोगो',
|
||||
'warning' => 'यह 1200 x 630 के रिज़ॉल्यूशन पर होना चाहिए। ',
|
||||
'warning' => 'यह 1200 x 630 के रिज़ॉल्यूशन पर होना चाहिए। ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'साइट का पता',
|
||||
'warning' => 'ऑटो ने www। www।<strong>sitename.com</strong> ',
|
||||
'warning' => 'ऑटो ने www। www।<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'गूगल मैप एप की',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'मार्केट प्लेस',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'मूल्य क्षेत्र छिपा हुआ',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'मूल्य क्षेत्र छिपा हुआ',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'मूल्य फ़िल्टर छिपाएँ',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'बनाई गई तारीख छिपाएँ',
|
||||
'instructions' => 'विज्ञापन विस्तार पृष्ठ में बनाई गई तिथि छिपाएँ',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'लिस्टिंग हैडर छिपाएं',
|
||||
'instructions' => 'ऑर्डर करने और देखने के प्रकारों के लिए छिपाना',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'फ़िल्टर अनुभाग छिपाएँ',
|
||||
'instructions' => 'लिस्टिंग पृष्ठ में बाएं फिल्टर क्षेत्र में छिपा',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'विक्रेता की जानकारी छिपाएँ',
|
||||
'instructions' => 'विज्ञापन विस्तार पृष्ठ में विक्रेता infos को छुपाता है',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'लिस्टिंग हैडर छिपाएं',
|
||||
'instructions' => 'ऑर्डर करने और देखने के प्रकारों के लिए छिपाना',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'फ़िल्टर अनुभाग छिपाएँ',
|
||||
'instructions' => 'लिस्टिंग पृष्ठ में बाएं फिल्टर क्षेत्र में छिपा',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'विक्रेता की जानकारी छिपाएँ',
|
||||
'instructions' => 'विज्ञापन विस्तार पृष्ठ में विक्रेता infos को छुपाता है',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'विज्ञापन विज्ञापन दिखाएं',
|
||||
'instructions' => 'यदि आप विज्ञापन निर्माण पृष्ठ पर गोपनीयता नीति अनुबंध प्रदर्शित करना चाहते हैं तो इसे चालू करें',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'श्रेणियाँ प्राप्त करें',
|
||||
'instructions' => 'यह उन श्रेणियों का प्रतिनिधित्व करता है जिनमें GET संपत्ति मान्य होगी।'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'संतरी अक्षम करें'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'संतरी अक्षम करें'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'वाटर-मार्क',
|
||||
'instructions' => 'क्या वॉटरमार्क सक्रिय है?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'मोबाइल दृश्य पर उपश्रेणियाँ दिखाएँ',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'केवल सदस्यों को मूल्य दिखाएं',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'श्रेणियाँ छिपाएँ',
|
||||
'instructions' => 'विज्ञापन सूची में श्रेणियां छिपाएं'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'बनाने के लिए समाप्ति तिथि और प्रकाशन तिथि दिखाएं',
|
||||
'instructions' => 'विज्ञापन निर्माण पृष्ठ पर publish_at और finish_at फ़ील्ड प्रदर्शित करता है।'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Hirdetések',
|
||||
'name' => 'Hirdetési modul',
|
||||
'description' => 'Hirdetési modul',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -337,6 +337,9 @@ return [
|
||||
'owner' => 'Tulajdonos',
|
||||
'default_owner_instruction' => 'A tulajdonos alapértelmezés szerint az aktuális felhasználót állítja be, ha nincs kiválasztva felhasználó',
|
||||
'create_page_subtitle' => 'Hozza létre a hirdetést hibátlanul a hirdetésével kapcsolatos részletes információk megadásával.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Hirdetés címe',
|
||||
@ -345,6 +348,7 @@ return [
|
||||
'ads_with_map' => 'Hirdetések térképpel',
|
||||
'advanced_sorting' => 'Haladó rendezés',
|
||||
'filter_by_word' => 'Szűrés szó szerint',
|
||||
'filter_by' => 'Szűrés: név szerint',
|
||||
|
||||
'free' => 'Ingyenes',
|
||||
'ad_date' => 'Hirdetés dátuma',
|
||||
@ -369,4 +373,10 @@ return [
|
||||
'name' => 'Régi ár'
|
||||
],
|
||||
'save_search' => 'Keresés mentése',
|
||||
'publish_at' => [
|
||||
'name' => 'Közzététel dátuma'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Térkép hosszú koordinátája',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Közösségi logó',
|
||||
'warning' => '1200 x 630 felbontásban kell lennie. ',
|
||||
'warning' => '1200 x 630 felbontásban kell lennie. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Hely címe',
|
||||
'warning' => 'Automatikusan hozzáadta a www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'Automatikusan hozzáadta a www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api Key',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Piactér',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Rejtett árterület',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Rejtett árterület',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Árszűrő elrejtése',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'A létrehozás dátumának elrejtése',
|
||||
'instructions' => 'A létrehozás dátumának elrejtése a hirdetések részleteinek oldalán',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'A listafejléc elrejtése',
|
||||
'instructions' => 'Rejtés a sorrend és a nézettípusok felé',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Szűrő szakasz elrejtése',
|
||||
'instructions' => 'Elrejtés a szűrő bal oldalán a listázási oldalon',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Eladó információk elrejtése',
|
||||
'instructions' => 'Az eladó információinak elrejtése a hirdetések részletes oldalán',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'A listafejléc elrejtése',
|
||||
'instructions' => 'Rejtés a sorrend és a nézettípusok felé',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Szűrő szakasz elrejtése',
|
||||
'instructions' => 'Elrejtés a szűrő bal oldalán a listázási oldalon',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Eladó információk elrejtése',
|
||||
'instructions' => 'Az eladó információinak elrejtése a hirdetések részletes oldalán',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'A hirdetés utáni megállapodás megjelenítése',
|
||||
'instructions' => 'Kapcsolja be, ha adatvédelmi irányelveket szeretne megjeleníteni a hirdetés létrehozása oldalon',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'GET Kategóriák',
|
||||
'instructions' => 'Azokat a kategóriákat képviseli, amelyekben a GET tulajdonság érvényes lesz.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Letiltja a Sentry szolgáltatást'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Letiltja a Sentry szolgáltatást'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Vízjel',
|
||||
'instructions' => 'A vízjel aktív?'
|
||||
@ -265,11 +265,19 @@ return [
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Alkategóriák megjelenítése mobil nézetben',
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Árak megjelenítése csak tagoknak',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Kategóriák elrejtése',
|
||||
'instructions' => 'Kategóriák elrejtése a hirdetési listában'
|
||||
]
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Árak megjelenítése csak tagoknak',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Kategóriák elrejtése',
|
||||
'instructions' => 'Kategóriák elrejtése a hirdetési listában'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'A befejezés dátumának és a létrehozás közzétételének dátumának megjelenítése',
|
||||
'instructions' => 'Megjeleníti a public_at és a finish_at mezőket a hirdetés létrehozása oldalon.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Iklan',
|
||||
'name' => 'Modul Iklan',
|
||||
'description' => 'Modul Iklan',
|
||||
'info' => 'Ini adalah layar tempat Anda dapat menambahkan, menghapus, dan menyunting iklan dari halaman Iklan. Pada halaman ini, Anda dapat dengan mudah melakukan operasi seperti mengelola postingan dan konfigurasi iklan.'
|
||||
];
|
||||
|
||||
@ -12,23 +12,23 @@ return [
|
||||
'edit' => "Sunting",
|
||||
'approve' => "Setujui",
|
||||
'decline' => 'Tolak',
|
||||
'extend' => 'Bentangkan',
|
||||
'extend_all' => 'Bentangkan Semua',
|
||||
'extend' => 'Perpanjang',
|
||||
'extend_all' => 'Perpanjang Semua',
|
||||
'convert_currency' => 'Konversi Mata Uang',
|
||||
'categories' => 'Kategori',
|
||||
'sub_category' => 'Sub Kategori',
|
||||
'add_sub_category' => 'Tambahkan Sub Kategori',
|
||||
'sub_cities' => 'Sub Kota',
|
||||
'add_sub_cities' => 'Tambahkan Sub Kota',
|
||||
'add_sub_districts' => 'Tambahkan Kecamatan',
|
||||
'add_sub_districts' => 'Tambahkan Sub Kecamatan',
|
||||
'add_sub_neighborhoods' => 'Tambahkan Sub Lingkungan',
|
||||
'add_sub_village' => 'Tambahkan Sub Desa',
|
||||
'sub_districts' => 'Kecamatan',
|
||||
'sub_districts' => 'Sub Kecamatan',
|
||||
'sub_neighborhoods' => 'Sub Lingkungan',
|
||||
'sub_village' => 'Sub Desa',
|
||||
'general_settings' => 'Pengaturan Umum',
|
||||
'save_category' => 'Simpan Kategori',
|
||||
'change_owner' => 'Ubah Pemilik',
|
||||
'change_owner' => 'Ganti Pemilik',
|
||||
'update_category' => [
|
||||
'name' => 'Perbaharui Kategori'
|
||||
],
|
||||
|
||||
@ -138,8 +138,8 @@ return [
|
||||
'filter' => 'Saring',
|
||||
'sort' => 'Sortir',
|
||||
'sort_by' => 'Sortir berdasarkan',
|
||||
'pick_option' => 'Pilih salah satu opsi',
|
||||
'pick_ordering' => 'Memesan',
|
||||
'pick_option' => 'Pilih sebuah opsi',
|
||||
'pick_ordering' => 'Urutan',
|
||||
'price_high' => 'Harga Tinggi ke Rendah',
|
||||
'price_low' => 'Harga Rendah ke Tinggi',
|
||||
'newest' => 'Terbaru',
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'Lokasi Iklan',
|
||||
'owner' => 'Pemilik',
|
||||
'default_owner_instruction' => 'Pemilik akan menggunakan pengguna saat ini secara bawaan/default jika tidak ada pengguna yang dipilih',
|
||||
'create_page_subtitle' => 'Buat iklan tanpa masalah dengan memasukkan informasi rinci tentang iklan Anda.',
|
||||
'with_my_phone_numbers' => 'Dengan nomor telepon saya',
|
||||
'not_with_my_phone_numbers' => "Saya tidak ingin dihubungi melalui telepon",
|
||||
'how_can_you_be_contacted' => "Bagaimana Anda dapat dihubungi?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Judul Iklan',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'Melihat',
|
||||
'ads_with_map' => 'Iklan Dengan Peta',
|
||||
'advanced_sorting' => 'Penyortiran Lanjutan',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filter menurut kata',
|
||||
'filter_by' => 'Filter berdasarkan: nama',
|
||||
|
||||
'free' => 'Gratis',
|
||||
'ad_date' => 'Tanggal Iklan',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Harga Lama'
|
||||
],
|
||||
'save_search' => 'Simpan pencarian',
|
||||
'publish_at' => [
|
||||
'name' => 'Tanggal Penerbitan'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Pajak'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Ikonfav',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Koordinat Garis Bujur Peta',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Logo Bagikan (media sosial)',
|
||||
'warning' => 'Harus pada resolusi 1200 x 630. ',
|
||||
'warning' => 'Harus pada resolusi 1200 x 630. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Alamat situs',
|
||||
'warning' => 'Otomatis www ditambahkan. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'Otomatis www ditambahkan. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Kunci API Peta Google',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Market Place',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Area Harga Tersembunyi',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Area Harga Tersembunyi',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Sembunyikan Filter Harga',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Sembunyikan Tanggal Dibuat',
|
||||
'instructions' => 'Sembunyikan tanggal pembuatan di halaman detail iklan',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Sembunyikan Judul Cantuman',
|
||||
'instructions' => 'Menyembunyikan jenis pemesanan dan tampilan',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Sembunyikan Bagian Filter',
|
||||
'instructions' => 'Bersembunyi di area filter kiri di halaman daftar',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Sembunyikan Informasi Penjual',
|
||||
'instructions' => 'Menyembunyikan info penjual di halaman detail iklan',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Sembunyikan Judul Cantuman',
|
||||
'instructions' => 'Menyembunyikan jenis pemesanan dan tampilan',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Sembunyikan Bagian Filter',
|
||||
'instructions' => 'Bersembunyi di area filter kiri di halaman daftar',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Sembunyikan Informasi Penjual',
|
||||
'instructions' => 'Menyembunyikan info penjual di halaman detail iklan',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Show Post Ad Agreement',
|
||||
'instructions' => 'Aktifkan ini jika Anda ingin menampilkan perjanjian kebijakan privasi di halaman pembuatan iklan',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'DAPATKAN Kategori',
|
||||
'instructions' => 'Ini mewakili kategori di mana properti GET akan berlaku.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Nonaktifkan Sentry'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Nonaktifkan Sentry'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Tanda air',
|
||||
'instructions' => 'Apakah watermark aktif?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Tampilkan subkategori pada tampilan seluler',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Tunjukkan Harga Hanya Untuk Anggota',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Sembunyikan Kategori',
|
||||
'instructions' => 'Sembunyikan kategori dalam daftar iklan'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Tampilkan Tanggal Selesai Dan Tanggal Publikasi Untuk Membuat',
|
||||
'instructions' => 'Menampilkan bidang publish_at dan finish_at pada halaman pembuatan iklan.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Tampilkan Baris Pajak',
|
||||
'instructions' => 'Ketika opsi ini diaktifkan, Anda dapat mengatur tarif pajak pada halaman pembuatan iklan.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Annunci',
|
||||
'name' => 'Modulo annunci',
|
||||
'description' => 'Modulo annunci',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -337,6 +337,10 @@ return [
|
||||
'ad_location' => 'Posizione dell\'annuncio',
|
||||
'owner' => 'Proprietario',
|
||||
'default_owner_instruction' => 'Se non è selezionato alcun utente, per impostazione predefinita il proprietario sarà l\'utente corrente',
|
||||
'create_page_subtitle' => 'Crea l\'annuncio in modo impeccabile inserendo informazioni dettagliate sul tuo annuncio.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Titolo dell\'annuncio',
|
||||
@ -344,7 +348,8 @@ return [
|
||||
'view' => 'Visualizza',
|
||||
'ads_with_map' => 'Annunci con mappa',
|
||||
'advanced_sorting' => 'Ordinamento avanzato',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filtra per parola',
|
||||
'filter_by' => 'Filtra per: nome',
|
||||
|
||||
'free' => 'Gratuito',
|
||||
'ad_date' => 'Data dell\'annuncio',
|
||||
@ -368,4 +373,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Vecchio prezzo'
|
||||
],
|
||||
'save_search' => 'Salva ricerca',
|
||||
'publish_at' => [
|
||||
'name' => 'Data di pubblicazione'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Mappa lunga coordinata',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Logo di condivisione sociale',
|
||||
'warning' => 'Dovrebbe avere una risoluzione di 1200 x 630.',
|
||||
'warning' => 'Dovrebbe avere una risoluzione di 1200 x 630.',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Indirizzo del sito',
|
||||
'warning' => 'Aggiunta automatica www. www. <strong>sitename.com</strong>',
|
||||
'warning' => 'Aggiunta automatica www. www. <strong>sitename.com</strong>',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api Key',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Piazza del mercato',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Area di Prezzo Nascosta',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Area di Prezzo Nascosta',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Nascondi filtro prezzo',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Nascondi data di creazione',
|
||||
'instructions' => 'Nascondi la data di creazione nella pagina dei dettagli degli annunci',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Nascondi intestazione elenco',
|
||||
'instructions' => 'Nascondersi per ordinare e visualizzare i tipi',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Nascondi sezione filtro',
|
||||
'instructions' => 'Nascondere nell\'area del filtro a sinistra nella pagina dell\'elenco',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Nascondi le informazioni sul venditore',
|
||||
'instructions' => 'Nascondere alle informazioni del venditore nella pagina dei dettagli degli annunci',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Nascondi intestazione elenco',
|
||||
'instructions' => 'Nascondersi per ordinare e visualizzare i tipi',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Nascondi sezione filtro',
|
||||
'instructions' => 'Nascondere nell\'area del filtro a sinistra nella pagina dell\'elenco',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Nascondi le informazioni sul venditore',
|
||||
'instructions' => 'Nascondere alle informazioni del venditore nella pagina dei dettagli degli annunci',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Mostra accordo post annuncio',
|
||||
'instructions' => 'Attiva questa opzione se desideri visualizzare un accordo sulla politica sulla privacy nella pagina di creazione dell\'annuncio',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'OTTIENI Categorie',
|
||||
'instructions' => 'Rappresenta le categorie in cui sarà valida la proprietà GET.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Disabilita Sentry'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Disabilita Sentry'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Filigrana',
|
||||
'instructions' => 'La filigrana è attiva?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Mostra le sottocategorie nella visualizzazione mobile',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Mostra prezzo solo per i membri',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Nascondi categorie',
|
||||
'instructions' => 'Nascondi le categorie nell\'elenco degli annunci'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Mostra data di fine e data di pubblicazione per la creazione',
|
||||
'instructions' => 'Visualizza i campi publish_at e finish_at nella pagina di creazione dell\'annuncio.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => '広告',
|
||||
'name' => '広告モジュール',
|
||||
'description' => '広告モジュール',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => '広告の場所',
|
||||
'owner' => 'オーナー',
|
||||
'default_owner_instruction' => 'ユーザーが選択されていない場合、所有者はデフォルトで現在のユーザーになります',
|
||||
'create_page_subtitle' => '広告に関する詳細情報を入力して、完璧に広告を作成します。',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => '広告タイトル',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => '見る',
|
||||
'ads_with_map' => '地図付きの広告',
|
||||
'advanced_sorting' => '高度な並べ替え',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => '単語でフィルタリング',
|
||||
'filter_by' => ':nameでフィルタリング',
|
||||
|
||||
'free' => '自由',
|
||||
'ad_date' => '広告日',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => '古い価格'
|
||||
],
|
||||
'save_search' => '検索を保存',
|
||||
'publish_at' => [
|
||||
'name' => '公開日'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'ファビコン',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => '長い座標をマップ',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'ソーシャルシェアロゴ',
|
||||
'warning' => '1200 x 630の解像度である必要があります。 ',
|
||||
'warning' => '1200 x 630の解像度である必要があります。 ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'サイトアドレス',
|
||||
'warning' => '自動追加www。 www。<strong>sitename.com</strong> ',
|
||||
'warning' => '自動追加www。 www。<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'GoogleマップAPIキー',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'マーケットプレイス',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => '隠された価格帯',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => '隠された価格帯',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => '価格フィルターを非表示',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => '作成日を非表示',
|
||||
'instructions' => '広告詳細ページで作成日を非表示',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'リストヘッダーを非表示',
|
||||
'instructions' => '注文と表示タイプの非表示',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'フィルタセクションを非表示',
|
||||
'instructions' => 'リストページの左側のフィルター領域に非表示',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => '売り手情報を隠す',
|
||||
'instructions' => '広告の詳細ページで販売者情報を非表示にする',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'リストヘッダーを非表示',
|
||||
'instructions' => '注文と表示タイプの非表示',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'フィルタセクションを非表示',
|
||||
'instructions' => 'リストページの左側のフィルター領域に非表示',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => '売り手情報を隠す',
|
||||
'instructions' => '広告の詳細ページで販売者情報を非表示にする',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'ポスト広告契約を表示する',
|
||||
'instructions' => '広告作成ページにプライバシーポリシー契約を表示する場合は、これをオンにします',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'カテゴリを取得',
|
||||
'instructions' => 'これは、GETプロパティが有効になるカテゴリを表します。'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'セントリーを無効にする'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'セントリーを無効にする'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => '透かし',
|
||||
'instructions' => '透かしはアクティブですか?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'モバイルビューでサブカテゴリを表示する',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'メンバーのみに価格を表示',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'カテゴリを非表示',
|
||||
'instructions' => '広告リストのカテゴリを非表示'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => '作成の終了日と公開日を表示する',
|
||||
'instructions' => '広告作成ページにpublish_atフィールドとfinish_atフィールドを表示します。'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => '광고',
|
||||
'name' => '광고 모듈',
|
||||
'description' => '광고 모듈',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => '광고 위치',
|
||||
'owner' => '소유자',
|
||||
'default_owner_instruction' => '사용자가 선택되지 않은 경우 소유자는 기본적으로 현재 사용자로 설정됩니다.',
|
||||
'create_page_subtitle' => '광고에 대한 자세한 정보를 입력하여 완벽하게 광고를 만드십시오.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => '광고 제목',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => '전망',
|
||||
'ads_with_map' => '지도가있는 광고',
|
||||
'advanced_sorting' => '고급 정렬',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => '단어로 필터링',
|
||||
'filter_by' => ': 이름으로 필터링',
|
||||
|
||||
'free' => '비어 있는',
|
||||
'ad_date' => '광고 날짜',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => '이전 가격'
|
||||
],
|
||||
'save_search' => '검색 저장',
|
||||
'publish_at' => [
|
||||
'name' => '게시 날짜'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => '파비콘',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => '긴 좌표지도',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => '소셜 쉐어 로고',
|
||||
'warning' => '1200 x 630의 해상도 여야합니다. ',
|
||||
'warning' => '1200 x 630의 해상도 여야합니다. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => '사이트 주소',
|
||||
'warning' => '자동 추가 www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => '자동 추가 www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => '구글 맵 API 키',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => '마켓 플레이스',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => '가격 영역 숨김',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => '가격 영역 숨김',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => '가격 필터 숨기기',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => '만든 날짜 숨기기',
|
||||
'instructions' => '광고 세부 정보 페이지에서 만든 날짜 숨기기',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => '목록 헤더 숨기기',
|
||||
'instructions' => '주문 및보기 유형 숨기기',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => '필터 섹션 숨기기',
|
||||
'instructions' => '목록 페이지에서 왼쪽 필터 영역으로 숨기기',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => '판매자 정보 숨기기',
|
||||
'instructions' => '광고 세부 정보 페이지에서 판매자 정보 숨기기',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => '목록 헤더 숨기기',
|
||||
'instructions' => '주문 및보기 유형 숨기기',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => '필터 섹션 숨기기',
|
||||
'instructions' => '목록 페이지에서 왼쪽 필터 영역으로 숨기기',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => '판매자 정보 숨기기',
|
||||
'instructions' => '광고 세부 정보 페이지에서 판매자 정보 숨기기',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => '광고 게시 계약 표시',
|
||||
'instructions' => '광고 작성 페이지에 개인 정보 보호 정책을 표시하려면이 옵션을 켜십시오.',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'GET 카테고리',
|
||||
'instructions' => 'GET 속성이 유효한 범주를 나타냅니다.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => '센트리 비활성화'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => '센트리 비활성화'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => '양수표',
|
||||
'instructions' => '워터 마크가 활성화되어 있습니까?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => '모바일보기에 하위 범주 표시',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => '회원에게만 가격 표시',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => '카테고리 숨기기',
|
||||
'instructions' => '광고 목록에서 카테고리 숨기기'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => '작성을위한 완료 날짜 및 게시 날짜 표시',
|
||||
'instructions' => '광고 작성 페이지에 publish_at 및 finish_at 필드를 표시합니다.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'ڕیکلامەکان',
|
||||
'name' => 'مۆدیلی ڕیکلامەکان',
|
||||
'description' => 'مۆدیلی ڕیکلامەکان',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -432,6 +432,10 @@ return [
|
||||
',
|
||||
'owner' => 'Xwedî',
|
||||
'default_owner_instruction' => 'Ger bikarhêner neyê bijartin dê xwedêgiravî ji bikarhênerê heyî re veqetîne',
|
||||
'create_page_subtitle' => 'Bi ketina agahdariyên berfireh ên der barê reklama xwe de bêkêmasî reklamê biafirînin.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Sernavê reklamê',
|
||||
@ -439,7 +443,8 @@ return [
|
||||
'view' => 'Dîtinî',
|
||||
'ads_with_map' => 'Reklamên Bi Nexşe',
|
||||
'advanced_sorting' => 'Rêzkirina Pêşkeftî',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Bi peyvê parzûn bikin',
|
||||
'filter_by' => 'Fîlterkirin bi: nav',
|
||||
|
||||
'free' => 'بەلاش',
|
||||
'ad_date' => 'بەرواری ڕیکلام
|
||||
@ -469,4 +474,11 @@ return [
|
||||
'name' => 'نرخی کۆن
|
||||
'
|
||||
],
|
||||
'save_search' => 'Lêgerînê Biparêzin',
|
||||
'publish_at' => [
|
||||
'name' => 'Dîroka Weşanê'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Nexşeya Hevrêziya Dirêj',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Logoya Parvekirina Civakî',
|
||||
'warning' => 'Divê ew bi çareseriya 1200 x 630 be. ',
|
||||
'warning' => 'Divê ew bi çareseriya 1200 x 630 be. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Navnîşana malperê',
|
||||
'warning' => 'Auto zêdekirî www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'Auto zêdekirî www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Nexşeya Google Key Api',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Cihê Sûkê',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Qada Bihayê Veşartî',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Qada Bihayê Veşartî',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Parzûna Bihayê Veşêre',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Dîroka Afirandî Veşêre',
|
||||
'instructions' => 'Di rûpela hûrguliyên reklaman de dîroka çêkirî veşêrin',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Serê Navnîşê Veşêre',
|
||||
'instructions' => 'Ji bo rêzkirin û dîtina celeban vedişêrin',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Beşa Parzûnê Veşêre',
|
||||
'instructions' => 'Di rûpelê navnîşkirinê de xwe vedişêrin qada feltera çepê',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Agahdariya Firoterê Veşêre',
|
||||
'instructions' => 'Di rûpelê hûrguliyên reklaman de veşartina agahdariya firotanê',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Serê Navnîşê Veşêre',
|
||||
'instructions' => 'Ji bo rêzkirin û dîtina celeban vedişêrin',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Beşa Parzûnê Veşêre',
|
||||
'instructions' => 'Di rûpelê navnîşkirinê de xwe vedişêrin qada feltera çepê',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Agahdariya Firoterê Veşêre',
|
||||
'instructions' => 'Di rûpelê hûrguliyên reklaman de veşartina agahdariya firotanê',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Peymana Ad Ad-ê nîşan bide',
|
||||
'instructions' => 'Heke hûn dixwazin li ser rûpela afirandina reklamê peymana siyaseta nepenîtiyê nîşan bikin vê yekê vekin',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'Kategoriyan bistînin',
|
||||
'instructions' => 'Ew kategoriyên ku tê de taybetmendiya GET dê derbasdar be temsîl dike.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Sentry Disable'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Sentry Disable'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Watermark',
|
||||
'instructions' => 'Watermark çalak e?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Binkategoriyan li ser dîmendera mobîl nîşan bide',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Nîşan bidin Bihayê Tenê Endaman',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Kategoriyan veşêrin',
|
||||
'instructions' => 'Di lîsteya reklaman de kategoriyan veşêrin'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Ji Bo Afirandinê Dîroka Dawî And Nîşan Bikin',
|
||||
'instructions' => 'Zeviyên publ_at û finish_at li ser rûpela afirandina reklaman nîşan dide.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'advertenties',
|
||||
'name' => 'Advertenties module',
|
||||
'description' => 'Advertenties module',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -337,6 +337,10 @@ return [
|
||||
'ad_location' => 'Advertentielocatie',
|
||||
'owner' => 'Eigenaar',
|
||||
'default_owner_instruction' => 'De eigenaar wordt standaard de huidige gebruiker als er geen gebruiker is geselecteerd',
|
||||
'create_page_subtitle' => 'Maak de advertentie feilloos door gedetailleerde informatie over uw advertentie in te voeren.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Voeg titel toe',
|
||||
@ -344,7 +348,8 @@ return [
|
||||
'view' => 'Visie',
|
||||
'ads_with_map' => 'Advertenties met kaart',
|
||||
'advanced_sorting' => 'Geavanceerd sorteren',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filter op woord',
|
||||
'filter_by' => 'Filteren op: naam',
|
||||
|
||||
'free' => 'Vrij',
|
||||
'ad_date' => 'Advertentiedatum',
|
||||
@ -368,4 +373,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Oude prijs'
|
||||
],
|
||||
'save_search' => 'Zoekopdracht opslaan',
|
||||
'publish_at' => [
|
||||
'name' => 'Publiceer datum'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Lange coördinaten in kaart brengen',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Social Share-logo',
|
||||
'warning' => 'Het moet een resolutie hebben van 1200 x 630.',
|
||||
'warning' => 'Het moet een resolutie hebben van 1200 x 630.',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Siteadres',
|
||||
'warning' => 'Auto toegevoegd www. www. <strong>sitename.com</strong>',
|
||||
'warning' => 'Auto toegevoegd www. www. <strong>sitename.com</strong>',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api Key',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Marktplaats',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Prijsgebied verborgen',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Prijsgebied verborgen',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Prijsfilter verbergen',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Aanmaakdatum verbergen',
|
||||
'instructions' => 'Verberg de aanmaakdatum op de detailpagina van de advertenties',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Verberg koptekst',
|
||||
'instructions' => 'Verbergen om typen te bestellen en te bekijken',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Filtergedeelte verbergen',
|
||||
'instructions' => 'Verbergen naar linker filtergebied op lijstpagina',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Verberg verkopersinformatie',
|
||||
'instructions' => 'Verbergen voor verkopersinformatie op de detailpagina van advertenties',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Verberg koptekst',
|
||||
'instructions' => 'Verbergen om typen te bestellen en te bekijken',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Filtergedeelte verbergen',
|
||||
'instructions' => 'Verbergen naar linker filtergebied op lijstpagina',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Verberg verkopersinformatie',
|
||||
'instructions' => 'Verbergen voor verkopersinformatie op de detailpagina van advertenties',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Toon advertentieovereenkomst',
|
||||
'instructions' => 'Schakel dit in als u een privacybeleidsovereenkomst wilt weergeven op de pagina voor het maken van advertenties',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'GET Categorieën',
|
||||
'instructions' => 'Het vertegenwoordigt de categorieën waarin de eigenschap GET geldig zal zijn.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Schakel Sentry uit'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Schakel Sentry uit'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Watermerk',
|
||||
'instructions' => 'Is watermerk actief?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Toon subcategorieën op mobiele weergave',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Toon prijs alleen aan leden',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Categorieën verbergen',
|
||||
'instructions' => 'Verberg categorieën in de lijst met advertenties'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Toon einddatum en publicatiedatum voor maken',
|
||||
'instructions' => 'Geeft de velden publish_at en finish_at weer op de pagina voor het maken van advertenties.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Annonser',
|
||||
'name' => 'Annonsemodul',
|
||||
'description' => 'Annonsemodul',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'Annonseplassering',
|
||||
'owner' => 'Eieren',
|
||||
'default_owner_instruction' => 'Eieren vil som standard være den nåværende brukeren hvis ingen bruker er valgt',
|
||||
'create_page_subtitle' => 'Opprett annonsen feilfritt ved å legge inn detaljert informasjon om annonsen din.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Annonsetittel',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'Utsikt',
|
||||
'ads_with_map' => 'Annonser med kart',
|
||||
'advanced_sorting' => 'Avansert sortering',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filtrer etter ord',
|
||||
'filter_by' => 'Filtrer etter: navn',
|
||||
|
||||
'free' => 'Gratis',
|
||||
'ad_date' => 'Annonsedato',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Gammel pris'
|
||||
],
|
||||
'save_search' => 'Lagre søk',
|
||||
'publish_at' => [
|
||||
'name' => 'Publiseringsdato'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Kart Long Coordinate',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Social Share-logo',
|
||||
'warning' => 'Den skal ha en oppløsning på 1200 x 630. ',
|
||||
'warning' => 'Den skal ha en oppløsning på 1200 x 630. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Nettstedsadresse',
|
||||
'warning' => 'Automatisk lagt til www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'Automatisk lagt til www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api Key',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Markedsplass',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Prisområde skjult',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Prisområde skjult',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Skjul prisfilter',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Skjul opprettet dato',
|
||||
'instructions' => 'Skjul opprettet dato på siden med annonser',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Skjul oppføringshode',
|
||||
'instructions' => 'Gjemmer seg for bestilling og visningstyper',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Skjul filterseksjonen',
|
||||
'instructions' => 'Gjemmer seg til venstre filterområde på oppføringssiden',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Skjul selgerinformasjon',
|
||||
'instructions' => 'Skjuler seg til selgerinformasjon på siden med annonser',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Skjul oppføringshode',
|
||||
'instructions' => 'Gjemmer seg for bestilling og visningstyper',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Skjul filterseksjonen',
|
||||
'instructions' => 'Gjemmer seg til venstre filterområde på oppføringssiden',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Skjul selgerinformasjon',
|
||||
'instructions' => 'Skjuler seg til selgerinformasjon på siden med annonser',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Vis avtale om innleggsannonser',
|
||||
'instructions' => 'Slå på dette hvis du vil vise en avtale om personvern på siden for annonseoppretting',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'FÅ kategorier',
|
||||
'instructions' => 'Den representerer kategoriene der GET-egenskapen vil være gyldig.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Deaktiver vaktpost'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Deaktiver vaktpost'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Vannmerke',
|
||||
'instructions' => 'Er vannmerke aktivt?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Vis underkategorier på mobilvisning',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Vis pris kun for medlemmer',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Skjul kategorier',
|
||||
'instructions' => 'Skjul kategorier i annonselisten'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Vis sluttdato og publiser dato for oppretting',
|
||||
'instructions' => 'Viser feltene publish_at og finish_at på siden for annonseoppretting.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Reklamy',
|
||||
'name' => 'Moduł reklam',
|
||||
'description' => 'Moduł reklam',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'Lokalizacja reklamy',
|
||||
'owner' => 'Właściciel',
|
||||
'default_owner_instruction' => 'Właścicielem będzie domyślnie bieżący użytkownik, jeśli żaden użytkownik nie zostanie wybrany',
|
||||
'create_page_subtitle' => 'Utwórz reklamę bezbłędnie, wprowadzając szczegółowe informacje o swojej reklamie.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Tytuł ogłoszenia',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'Widok',
|
||||
'ads_with_map' => 'Reklamy z mapą',
|
||||
'advanced_sorting' => 'Zaawansowane sortowanie',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filtruj według słowa',
|
||||
'filter_by' => 'Filtruj według: nazwa',
|
||||
|
||||
'free' => 'Wolny',
|
||||
'ad_date' => 'Data ogłoszenia',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Stara cena'
|
||||
],
|
||||
'save_search' => 'Zapisz wyszukanie',
|
||||
'publish_at' => [
|
||||
'name' => 'Data publikacji'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Współrzędna długa mapy',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Logo akcji społecznościowych',
|
||||
'warning' => 'Powinien mieć rozdzielczość 1200 x 630. ',
|
||||
'warning' => 'Powinien mieć rozdzielczość 1200 x 630. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Adres miejsca',
|
||||
'warning' => 'Dodano auto www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'Dodano auto www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api Key',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Rynek',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Ukryty obszar cen',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Ukryty obszar cen',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Ukryj filtr cen',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Ukryj datę utworzenia',
|
||||
'instructions' => 'Ukryj datę utworzenia na stronie szczegółów reklam',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Ukryj nagłówek aukcji',
|
||||
'instructions' => 'Ukrywanie do porządkowania i przeglądania typów',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Ukryj sekcję filtrów',
|
||||
'instructions' => 'Ukrywanie w lewym obszarze filtra na stronie listy',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Ukryj informacje o sprzedającym',
|
||||
'instructions' => 'Ukrywanie informacji o sprzedawcy na stronie szczegółów ogłoszeń',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Ukryj nagłówek aukcji',
|
||||
'instructions' => 'Ukrywanie do porządkowania i przeglądania typów',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Ukryj sekcję filtrów',
|
||||
'instructions' => 'Ukrywanie w lewym obszarze filtra na stronie listy',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Ukryj informacje o sprzedającym',
|
||||
'instructions' => 'Ukrywanie informacji o sprzedawcy na stronie szczegółów ogłoszeń',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Pokaż umowę opublikowania ogłoszenia',
|
||||
'instructions' => 'Włącz tę opcję, jeśli chcesz wyświetlać umowę o polityce prywatności na stronie tworzenia reklamy',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'POBIERZ kategorie',
|
||||
'instructions' => 'Reprezentuje kategorie, w których właściwość GET będzie ważna.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Wyłącz Sentry'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Wyłącz Sentry'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'znak wodny',
|
||||
'instructions' => 'Czy znak wodny jest aktywny?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Pokaż podkategorie w widoku mobilnym',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Pokaż cenę tylko członkom',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Ukryj kategorie',
|
||||
'instructions' => 'Ukryj kategorie na liście ogłoszeń'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Pokaż datę zakończenia i datę publikacji do utworzenia',
|
||||
'instructions' => 'Wyświetla pola publ_at i finish_at na stronie tworzenia reklamy.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Publicidades',
|
||||
'name' => 'Módulo de anúncios',
|
||||
'description' => 'Módulo de anúncios',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -337,6 +337,10 @@ return [
|
||||
'ad_location' => 'Localização do anúncio',
|
||||
'owner' => 'Proprietário',
|
||||
'default_owner_instruction' => 'O proprietário assumirá como padrão o usuário atual se nenhum usuário for selecionado',
|
||||
'create_page_subtitle' => 'Crie o anúncio perfeitamente inserindo informações detalhadas sobre o seu anúncio.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Título do anúncio',
|
||||
@ -344,7 +348,8 @@ return [
|
||||
'view' => 'Visualizar',
|
||||
'ads_with_map' => 'Anúncios com mapa',
|
||||
'advanced_sorting' => 'Classificação Avançada',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filtrar por palavra',
|
||||
'filter_by' => 'Filtrar por: nome',
|
||||
|
||||
'free' => 'Livre',
|
||||
'ad_date' => 'Data do Anúncio',
|
||||
@ -368,4 +373,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Preço antigo'
|
||||
],
|
||||
'save_search' => 'Salvar busca',
|
||||
'publish_at' => [
|
||||
'name' => 'Data de publicação'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Mapear Coordenadas Longas',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Social Share Logo',
|
||||
'warning' => 'Deve estar em uma resolução de 1200 x 630.',
|
||||
'warning' => 'Deve estar em uma resolução de 1200 x 630.',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Endereço do site',
|
||||
'warning' => 'Auto adicionado www. www. <strong>sitename.com</strong>',
|
||||
'warning' => 'Auto adicionado www. www. <strong>sitename.com</strong>',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Chave da API do Google Map',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Mercado',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Área de preço oculta',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Área de preço oculta',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Ocultar filtro de preço',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Ocultar data de criação',
|
||||
'instructions' => 'Ocultar data de criação na página de detalhes de anúncios',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Ocultar cabeçalho da lista',
|
||||
'instructions' => 'Escondendo os tipos de pedido e visualização',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Ocultar seção de filtro',
|
||||
'instructions' => 'Escondendo a área de filtro à esquerda na página de listagem',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Ocultar informações do vendedor',
|
||||
'instructions' => 'Escondendo as informações do vendedor na página de detalhes dos anúncios',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Ocultar cabeçalho da lista',
|
||||
'instructions' => 'Escondendo os tipos de pedido e visualização',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Ocultar seção de filtro',
|
||||
'instructions' => 'Escondendo a área de filtro à esquerda na página de listagem',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Ocultar informações do vendedor',
|
||||
'instructions' => 'Escondendo as informações do vendedor na página de detalhes dos anúncios',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Mostrar Acordo de Postagem',
|
||||
'instructions' => 'Ative-o se quiser exibir um acordo de política de privacidade na página de criação de anúncios',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'GET Categorias',
|
||||
'instructions' => 'Representa as categorias nas quais a propriedade GET será válida.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Desativar Sentinela'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Desativar Sentinela'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Marca d\'água',
|
||||
'instructions' => 'A marca d\'água está ativa?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Mostrar subcategorias na visualização móvel',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Mostrar preço apenas para membros',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Ocultar categorias',
|
||||
'instructions' => 'Ocultar categorias na lista de anúncios'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Mostrar data de término e data de publicação para criar',
|
||||
'instructions' => 'Exibe os campos publish_at e finish_at na página de criação do anúncio.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Reclame',
|
||||
'name' => 'Modulul de reclame',
|
||||
'description' => 'Modulul de reclame',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'Locația anunțului',
|
||||
'owner' => 'Proprietar',
|
||||
'default_owner_instruction' => 'Proprietarul va folosi implicit utilizatorul curent dacă nu este selectat niciun utilizator',
|
||||
'create_page_subtitle' => 'Creați anunțul impecabil introducând informații detaliate despre anunțul dvs.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Adaugă titlu',
|
||||
@ -343,7 +347,8 @@ return [
|
||||
'view' => 'Vedere',
|
||||
'ads_with_map' => 'Anunțuri cu hartă',
|
||||
'advanced_sorting' => 'Sortare avansată',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filtrează după cuvânt',
|
||||
'filter_by' => 'Filtrează după: nume',
|
||||
|
||||
'free' => 'Gratuit',
|
||||
'ad_date' => 'Data publicității',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Preț vechi'
|
||||
],
|
||||
'save_search' => 'Salvează căutarea',
|
||||
'publish_at' => [
|
||||
'name' => 'Data publicării'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Coordonarea pe hartă lungă',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Logo Social Share',
|
||||
'warning' => 'Ar trebui să fie la o rezoluție de 1200 x 630. ',
|
||||
'warning' => 'Ar trebui să fie la o rezoluție de 1200 x 630. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Adresa site-ului',
|
||||
'warning' => 'Auto adăugat www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'Auto adăugat www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Cheie Api Google Map',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Piata de desfacere',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Zona de preț ascunsă',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Zona de preț ascunsă',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Ascundeți filtrul de preț',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Ascundeți data creată',
|
||||
'instructions' => 'Ascundeți data creată în pagina de detalii a anunțurilor',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Ascundeți antetul listării',
|
||||
'instructions' => 'Ascunderea la comanda și vizualizarea tipurilor',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Ascunde secțiunea de filtrare',
|
||||
'instructions' => 'Se ascunde în zona de filtrare din stânga în pagina listării',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Ascundeți informațiile despre vânzător',
|
||||
'instructions' => 'Ascunderea informațiilor despre vânzător în pagina de detalii a anunțurilor',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Ascundeți antetul listării',
|
||||
'instructions' => 'Ascunderea la comanda și vizualizarea tipurilor',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Ascunde secțiunea de filtrare',
|
||||
'instructions' => 'Se ascunde în zona de filtrare din stânga în pagina listării',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Ascundeți informațiile despre vânzător',
|
||||
'instructions' => 'Ascunderea informațiilor despre vânzător în pagina de detalii a anunțurilor',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Afișați acordul de postare a anunțului',
|
||||
'instructions' => 'Activați acest lucru dacă doriți să afișați un acord privind politica de confidențialitate pe pagina de creare a anunțului',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'GET Categorii',
|
||||
'instructions' => 'Reprezintă categoriile în care proprietatea GET va fi validă.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Dezactivați Sentinela'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Dezactivați Sentinela'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Filigran',
|
||||
'instructions' => 'Filigranul este activ?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Afișați subcategoriile pe ecranul mobil',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Afișați prețul numai membrilor',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Ascundeți categoriile',
|
||||
'instructions' => 'Ascundeți categoriile din lista de anunțuri'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Afișați data de finalizare și data de publicare pentru a crea',
|
||||
'instructions' => 'Afișează câmpurile publish_at și finish_at de pe pagina de creare a anunțului.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Объявления',
|
||||
'name' => 'Рекламный модуль',
|
||||
'description' => 'Рекламный модуль',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -337,6 +337,10 @@ return [
|
||||
'ad_location' => 'Местоположение объявления',
|
||||
'owner' => 'Владелец',
|
||||
'default_owner_instruction' => 'Если пользователь не выбран, владельцем по умолчанию будет текущий пользователь',
|
||||
'create_page_subtitle' => 'Создайте объявление безупречно, введя подробную информацию о нем.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Заголовок объявления',
|
||||
@ -344,7 +348,8 @@ return [
|
||||
'view' => 'Вид',
|
||||
'ads_with_map' => 'Объявления с картой',
|
||||
'advanced_sorting' => 'Расширенная сортировка',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Фильтр по слову',
|
||||
'filter_by' => 'Фильтровать по: названию',
|
||||
|
||||
'free' => 'Бесплатно',
|
||||
'ad_date' => 'Дата объявления',
|
||||
@ -368,4 +373,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Старая цена'
|
||||
],
|
||||
'save_search' => 'Сохранить поиск',
|
||||
'publish_at' => [
|
||||
'name' => 'Дата публикации'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Карта Длинная координата',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Social Share Logo',
|
||||
'warning' => 'Это должно быть с разрешением 1200 х 630.',
|
||||
'warning' => 'Это должно быть с разрешением 1200 х 630.',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Адрес сайта',
|
||||
'warning' => 'Авто добавлено www. WWW. <strong>sitename.com</strong>',
|
||||
'warning' => 'Авто добавлено www. WWW. <strong>sitename.com</strong>',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Map Api Key',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Рыночная площадь',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Цена Площадь Скрыта',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Цена Площадь Скрыта',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Скрыть фильтр цен',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Скрыть дату создания',
|
||||
'instructions' => 'Скрыть дату создания на странице сведений об объявлениях',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Скрыть заголовок объявления',
|
||||
'instructions' => 'Скрытие для заказа и просмотра типов',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Скрыть раздел фильтра',
|
||||
'instructions' => 'Скрытие в левой области фильтра на странице списка',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Скрыть информацию о продавце',
|
||||
'instructions' => 'Скрытие информации о продавце на странице сведений о рекламе',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Скрыть заголовок объявления',
|
||||
'instructions' => 'Скрытие для заказа и просмотра типов',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Скрыть раздел фильтра',
|
||||
'instructions' => 'Скрытие в левой области фильтра на странице списка',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Скрыть информацию о продавце',
|
||||
'instructions' => 'Скрытие информации о продавце на странице сведений о рекламе',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Показать соглашение о публикации рекламы',
|
||||
'instructions' => 'Включите это, если вы хотите отображать соглашение о политике конфиденциальности на странице создания рекламы.',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'Получить Категории',
|
||||
'instructions' => 'Он представляет категории, в которых будет действовать свойство GET.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Отключить Sentry'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Отключить Sentry'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Водяной знак',
|
||||
'instructions' => 'Водяной знак активен?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Показывать подкатегории в мобильном представлении',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Показывать цену только участникам',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Скрыть категории',
|
||||
'instructions' => 'Скрыть категории в списке объявлений'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Показать дату окончания и дату публикации для создания',
|
||||
'instructions' => 'Отображает поля publish_at и finish_at на странице создания объявления.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Njoftime',
|
||||
'name' => 'Moduli i Njoftime',
|
||||
'description' => 'Moduli i Njoftime',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -337,6 +337,10 @@ return [
|
||||
'ad_location' => 'Vendndodhja e reklamës',
|
||||
'owner' => 'Pronar',
|
||||
'default_owner_instruction' => 'Pronari do të zgjedhë përdoruesin aktual nëse nuk zgjidhet asnjë përdorues',
|
||||
'create_page_subtitle' => 'Krijoni reklamën në mënyrë të përsosur duke futur informacione të hollësishme në lidhje me reklamën tuaj.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Titulli i reklamës',
|
||||
@ -344,7 +348,8 @@ return [
|
||||
'view' => 'Pamje',
|
||||
'ads_with_map' => 'Reklama me hartë',
|
||||
'advanced_sorting' => 'Renditja e avancuar',
|
||||
'filter_by_word' => 'Filter by word',
|
||||
'filter_by_word' => 'Filtro me fjalë',
|
||||
'filter_by' => 'Filtro sipas: emrit',
|
||||
|
||||
'free' => 'Falas',
|
||||
'ad_date' => 'Data e shpalljes',
|
||||
@ -368,4 +373,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Çmimi i Vjetër'
|
||||
],
|
||||
'save_search' => 'Ruaj kërkimin',
|
||||
'publish_at' => [
|
||||
'name' => 'Data e Publikimit'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
@ -27,7 +27,7 @@ return [
|
||||
'favicon' => [
|
||||
'name' => 'Favicon',
|
||||
]
|
||||
,'map_coordinates_long' => [
|
||||
, 'map_coordinates_long' => [
|
||||
'name' => 'Koordinata e gjatë e hartës',
|
||||
],
|
||||
'map_coordinates_lat' => [
|
||||
@ -41,7 +41,7 @@ return [
|
||||
],
|
||||
'ogImage' => [
|
||||
'name' => 'Logo e përbashkët sociale',
|
||||
'warning' => 'Ajo duhet të jetë në një rezolutë prej 1200 x 630. ',
|
||||
'warning' => 'Ajo duhet të jetë në një rezolutë prej 1200 x 630. ',
|
||||
|
||||
],
|
||||
'currencies' => [
|
||||
@ -52,7 +52,7 @@ return [
|
||||
],
|
||||
'site_address' => [
|
||||
'name' => 'Adresa e Faqja internet',
|
||||
'warning' => 'Auto shtuar www. www.<strong>sitename.com</strong> ',
|
||||
'warning' => 'Auto shtuar www. www.<strong>sitename.com</strong> ',
|
||||
],
|
||||
'google_map_key' => [
|
||||
'name' => 'Google Key Api Key',
|
||||
@ -134,9 +134,9 @@ return [
|
||||
'market_place' => [
|
||||
'name' => 'Vendi i tregut',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Zona e Çmimit e Fshehur',
|
||||
],
|
||||
'price_area_hidden' => [
|
||||
'name' => 'Zona e Çmimit e Fshehur',
|
||||
],
|
||||
'hide_price_filter' => [
|
||||
'name' => 'Fsheh Filterin e Pricemimeve',
|
||||
],
|
||||
@ -215,18 +215,18 @@ return [
|
||||
'name' => 'Fshih datën e krijuar',
|
||||
'instructions' => 'Fshih datën e krijuar në faqen e detajeve të reklamave',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Fshih titullin e listës',
|
||||
'instructions' => 'Fshehja për renditjen dhe shikimin e llojeve',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Fshih pjesën e filtrit',
|
||||
'instructions' => 'Fshihet në zonën e majtë të filtrit në faqen e listës',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Fshih informacionin e shitësit',
|
||||
'instructions' => 'Fshehja e informacionit të shitësit në faqen e detajeve të reklamave',
|
||||
],
|
||||
'hide_listing_header' => [
|
||||
'name' => 'Fshih titullin e listës',
|
||||
'instructions' => 'Fshehja për renditjen dhe shikimin e llojeve',
|
||||
],
|
||||
'hide_filter_section' => [
|
||||
'name' => 'Fshih pjesën e filtrit',
|
||||
'instructions' => 'Fshihet në zonën e majtë të filtrit në faqen e listës',
|
||||
],
|
||||
'hide_seller_info' => [
|
||||
'name' => 'Fshih informacionin e shitësit',
|
||||
'instructions' => 'Fshehja e informacionit të shitësit në faqen e detajeve të reklamave',
|
||||
],
|
||||
'show_post_ad_agreement' => [
|
||||
'name' => 'Shfaq Marrëveshjen për shpalljen e postimit',
|
||||
'instructions' => 'Aktivizo këtë nëse dëshiron të shfaqësh një marrëveshje të politikës së privatësisë në faqen e krijimit të reklamës',
|
||||
@ -251,9 +251,9 @@ return [
|
||||
'name' => 'GET Kategoritë',
|
||||
'instructions' => 'Ai përfaqëson kategoritë në të cilat prona GET do të jetë e vlefshme.'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Çaktivizo rojet'
|
||||
],
|
||||
'disable_sentry' => [
|
||||
'name' => 'Çaktivizo rojet'
|
||||
],
|
||||
'watermark' => [
|
||||
'name' => 'Filigranë',
|
||||
'instructions' => 'A është ujëra aktive?'
|
||||
@ -264,5 +264,20 @@ return [
|
||||
],
|
||||
'show_subcats_mobile' => [
|
||||
'name' => 'Shfaq nënkategoritë në pamjen e celularëve',
|
||||
]
|
||||
],
|
||||
'show_price_to_members_only' => [
|
||||
'name' => 'Shfaq Çmimin Vetëm Anëtarëve',
|
||||
],
|
||||
'hide_ad_cat' => [
|
||||
'name' => 'Fshih kategoritë',
|
||||
'instructions' => 'Fshih kategoritë në listën e reklamave'
|
||||
],
|
||||
'show_finish_and_publish_date' => [
|
||||
'name' => 'Trego datën e përfundimit dhe datën e publikimit për krijimin',
|
||||
'instructions' => 'Shfaq fushat publ_at dhe finish_at në faqen e krijimit të reklamave.'
|
||||
],
|
||||
'show_tax_field' => [
|
||||
'name' => 'Show Tax Field',
|
||||
'instructions' => 'When this option is enabled, you can set the tax rate on the ad creation page.'
|
||||
],
|
||||
];
|
||||
|
||||
@ -4,4 +4,5 @@ return [
|
||||
'title' => 'Oglasi',
|
||||
'name' => 'Oglasi Modul',
|
||||
'description' => 'Oglasi Modul',
|
||||
'info' => 'This is the screen where you can add, delete and edit ads from the Ads page. On this page, you can simply do the operations such as post management and ad configuration.'
|
||||
];
|
||||
|
||||
@ -336,6 +336,10 @@ return [
|
||||
'ad_location' => 'Lokacija oglasa',
|
||||
'owner' => 'Vlasnik',
|
||||
'default_owner_instruction' => 'Vlasnik će podrazumevano biti trenutni korisnk, ukoliko korisnik nije izabran',
|
||||
'create_page_subtitle' => 'Create the ad flawlessly by entering detailed information about your ad.',
|
||||
'with_my_phone_numbers' => 'With my phone numbers',
|
||||
'not_with_my_phone_numbers' => "I don't want to be reached by phone",
|
||||
'how_can_you_be_contacted' => "How can you be contacted?",
|
||||
|
||||
// Listing page
|
||||
'ad_title' => 'Naslov oglasa',
|
||||
@ -344,6 +348,7 @@ return [
|
||||
'ads_with_map' => 'Oglasi sa mapom',
|
||||
'advanced_sorting' => 'Napredno sortiranje',
|
||||
'filter_by_word' => 'Filter po reči',
|
||||
'filter_by' => 'Filter by :name',
|
||||
|
||||
'free' => 'Besplatno',
|
||||
'ad_date' => 'Datum oglasa',
|
||||
@ -367,4 +372,11 @@ return [
|
||||
'old_price' => [
|
||||
'name' => 'Stare cena'
|
||||
],
|
||||
'save_search' => 'Save Search',
|
||||
'publish_at' => [
|
||||
'name' => 'Publish Date'
|
||||
],
|
||||
'tax' => [
|
||||
'name' => 'Tax'
|
||||
],
|
||||
];
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user