Merge pull request #5866 from Sanjaybhattwebkul/translation-issues
issue #5865 fixed
This commit is contained in:
commit
4037c71cd1
|
|
@ -515,6 +515,16 @@ return [
|
|||
'save-btn-title' => 'احفظ المنتج',
|
||||
'general' => 'ألف-لمحة عامة',
|
||||
'product-type' => 'نوع المنتج',
|
||||
'type' => [
|
||||
'simple' => 'بسيط',
|
||||
'booking' => 'الحجز',
|
||||
'bundle' => 'حزمة',
|
||||
'downloadable' => 'للتحميل',
|
||||
'grouped' => 'مجمعة',
|
||||
'virtual' => 'افتراضية',
|
||||
'configurable' => 'شكلي',
|
||||
|
||||
],
|
||||
'simple' => 'بسيط',
|
||||
'configurable' => 'مهيء',
|
||||
'familiy' => 'الصفة الأسرة',
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -57,9 +57,10 @@
|
|||
<select class="control" v-validate="'required'" id="type" name="type" {{ $familyId ? 'disabled' : '' }} data-vv-as=""{{ __('admin::app.catalog.products.product-type') }}"">
|
||||
@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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue