Merge pull request #5866 from Sanjaybhattwebkul/translation-issues

issue #5865 fixed
This commit is contained in:
Glenn Hermans 2022-02-23 11:15:14 +01:00 committed by GitHub
commit 4037c71cd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 64 additions and 5 deletions

View File

@ -515,6 +515,16 @@ return [
'save-btn-title' => 'احفظ المنتج',
'general' => 'ألف-لمحة عامة',
'product-type' => 'نوع المنتج',
'type' => [
'simple' => 'بسيط',
'booking' => 'الحجز',
'bundle' => 'حزمة',
'downloadable' => 'للتحميل',
'grouped' => 'مجمعة',
'virtual' => 'افتراضية',
'configurable' => 'شكلي',
],
'simple' => 'بسيط',
'configurable' => 'مهيء',
'familiy' => 'الصفة الأسرة',

View File

@ -509,6 +509,16 @@ return [
'save-btn-title' => 'Produkt speichern',
'general' => 'Allgemein',
'product-type' => 'Produkttyp',
'type' => [
'simple' => 'eenvoudig',
'booking' => 'boeken',
'bundle' => 'bundel',
'downloadable' => 'downloadbaar',
'grouped' => 'gegroepeerd',
'virtual' => 'virtueel',
'configurable' => 'configureerbaar',
],
'simple' => 'Einfach',
'configurable' => 'Konfigurierbar',
'familiy' => 'Attributgruppe',

View File

@ -527,8 +527,16 @@ return [
'save-btn-title' => 'Save Product',
'general' => 'General',
'product-type' => 'Product Type',
'simple' => 'Simple',
'configurable' => 'Configurable',
'type' => [
'simple' => 'Simple',
'booking' => 'Booking',
'bundle' => 'Bundle',
'downloadable' => 'Downloadable',
'grouped' => 'Grouped',
'virtual' => 'Virtual',
'configurable' => 'Configurable',
],
'familiy' => 'Attribute Family',
'sku' => 'SKU',
'configurable-attributes' => 'Configurable Attributes',

View File

@ -525,6 +525,16 @@ return [
'save-btn-title' => 'Guardar producto',
'general' => 'General',
'product-type' => 'Tipo de producto',
'type' => [
'simple' => 'simpla',
'booking' => 'mendo',
'bundle' => 'pakaĵo',
'downloadable' => 'elŝutebla',
'grouped' => 'grupigitaj',
'virtual' => 'virtuala',
'configurable' => 'agordebla',
],
'simple' => 'Simple',
'configurable' => 'Configurable',
'familiy' => 'Familia de atributos',

View File

@ -524,6 +524,16 @@ return [
'save-btn-title' => 'Enregistrer le produit',
'general' => 'Général',
'product-type' => 'type de produit',
'type' => [
'simple' => 'Facile',
'booking' => 'réservation',
'bundle' => 'empaqueter',
'downloadable' => 'téléchargeable',
'grouped' => 'groupé',
'virtual' => 'virtuelle',
'configurable' => 'configurable',
],
'simple' => 'Simple',
'configurable' => 'Configurable',
'familiy' => 'Famille d\'attributs',

View File

@ -512,6 +512,16 @@ return [
'save-btn-title' => 'Ürün Kaydet',
'general' => 'Geneş',
'product-type' => 'Ürün Tipi',
'type' => [
'simple' => 'basit',
'booking' => 'rezervasyon',
'bundle' => 'demet',
'downloadable' => 'indirilebilir',
'grouped' => 'gruplandırılmış',
'virtual' => 'gerçek',
'configurable' => 'yapılandırılabilir',
],
'simple' => 'Basit',
'configurable' => 'Ayarlanabilir',
'familiy' => 'Nitelik Grubu',

View File

@ -57,9 +57,10 @@
<select class="control" v-validate="'required'" id="type" name="type" {{ $familyId ? 'disabled' : '' }} data-vv-as="&quot;{{ __('admin::app.catalog.products.product-type') }}&quot;">
@foreach($productTypes as $key => $productType)
<option value="{{ $key }}" {{ request()->input('type') == $productType['key'] ? 'selected' : '' }}>
{{ $productType['name'] }}
</option>
@endforeach
{{ __('admin::app.catalog.products.type.'.strtolower($productType['name'])) }}
</option>
@endforeach
</select>
@if ($familyId)