Merge pull request #3071 from rahulcs0082/development
change translation for #2794
This commit is contained in:
commit
2deb7aaf77
|
|
@ -412,7 +412,7 @@ return [
|
|||
'your-customization' => 'التخصيص الخاص بك',
|
||||
'total-amount' => 'المبلغ الإجمالي',
|
||||
'none' => 'لا شيء',
|
||||
'available' => 'Available',
|
||||
'available-for-order' => 'متوفر لطلب الشراء',
|
||||
],
|
||||
|
||||
// 'reviews' => [
|
||||
|
|
|
|||
|
|
@ -413,7 +413,7 @@ return [
|
|||
'your-customization' => 'Your Customization',
|
||||
'total-amount' => 'Total Amount',
|
||||
'none' => 'None',
|
||||
'available' => 'Available'
|
||||
'available-for-order' => 'Available for Order'
|
||||
],
|
||||
|
||||
// 'reviews' => [
|
||||
|
|
|
|||
|
|
@ -383,7 +383,7 @@ return [
|
|||
'view-all' => 'Ver todo',
|
||||
'select-above-options' => 'Primero selecciona las opciones de arriba.',
|
||||
'less-quantity' => 'La cantidad no debe ser inferior a uno.',
|
||||
'available' => 'Available'
|
||||
'available-for-order' => 'Disponible para ordenar',
|
||||
],
|
||||
|
||||
// 'reviews' => [
|
||||
|
|
|
|||
|
|
@ -412,7 +412,7 @@ return [
|
|||
'your-customization' => 'شخصی سازی شما',
|
||||
'total-amount' => 'مقدار کل',
|
||||
'none' => 'هیچ یک',
|
||||
'available' => 'Available'
|
||||
'available-for-order' => 'Available for Order',
|
||||
],
|
||||
|
||||
// 'reviews' => [
|
||||
|
|
|
|||
|
|
@ -412,7 +412,7 @@ return [
|
|||
'your-customization' => 'La tua Personalizzazione',
|
||||
'total-amount' => 'Totale',
|
||||
'none' => 'Nessuno',
|
||||
'available' => 'Disponibile'
|
||||
'available-for-order' => 'Disponibile per lordine'
|
||||
],
|
||||
|
||||
// 'reviews' => [
|
||||
|
|
|
|||
|
|
@ -378,7 +378,8 @@ return [
|
|||
'out-of-stock' => '在庫なし',
|
||||
'view-all' => '全て見る',
|
||||
'select-above-options' => '最初に上記のオプションを選択してください.',
|
||||
'less-quantity' => '数量1未満は選択できません.'
|
||||
'less-quantity' => '数量1未満は選択できません.',
|
||||
'available-for-order' => '注文可能',
|
||||
],
|
||||
|
||||
'buynow' => [
|
||||
|
|
|
|||
|
|
@ -417,7 +417,7 @@ return [
|
|||
'your-customization' => 'Uw maatwerk',
|
||||
'total-amount' => 'Totale hoeveelheid',
|
||||
'none' => 'Geen',
|
||||
'available' => 'Available'
|
||||
'available-for-order' => 'Beschikbaar voor bestelling'
|
||||
],
|
||||
|
||||
// 'reviews' => [
|
||||
|
|
|
|||
|
|
@ -411,7 +411,7 @@ return [
|
|||
'your-customization' => 'Twoja personalizacja',
|
||||
'total-amount' => 'Całkowita kwota',
|
||||
'none' => 'Żaden',
|
||||
'available' => 'Dostępny'
|
||||
'available-for-order' => 'Dostępne na zamówienie'
|
||||
],
|
||||
|
||||
// 'reviews' => [
|
||||
|
|
|
|||
|
|
@ -400,7 +400,7 @@ return [
|
|||
'your-customization' => 'Sua personalização',
|
||||
'total-amount' => 'Valor total',
|
||||
'none' => 'Nenhum',
|
||||
'available' => 'Available'
|
||||
'available-for-order' => 'Disponível para encomenda'
|
||||
],
|
||||
|
||||
// 'reviews' => [
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
@if ( $product->haveSufficientQuantity(1) === true )
|
||||
{{ __('shop::app.products.in-stock') }}
|
||||
@elseif ( $product->haveSufficientQuantity(1) > 0 )
|
||||
{{ __('shop::app.products.available') }}
|
||||
{{ __('shop::app.products.available-for-order') }}
|
||||
@else
|
||||
{{ __('shop::app.products.out-of-stock') }}
|
||||
@endif
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
@if ( $product->haveSufficientQuantity(1) === true )
|
||||
{{ __('shop::app.products.in-stock') }}
|
||||
@elseif ( $product->haveSufficientQuantity(1) > 0 )
|
||||
{{ __('shop::app.products.available') }}
|
||||
{{ __('shop::app.products.available-for-order') }}
|
||||
@else
|
||||
{{ __('shop::app.products.out-of-stock') }}
|
||||
@endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue