Merge pull request #3071 from rahulcs0082/development

change translation for #2794
This commit is contained in:
Jitendra Singh 2020-05-15 17:02:37 +05:30 committed by GitHub
commit 2deb7aaf77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 12 additions and 11 deletions

View File

@ -412,7 +412,7 @@ return [
'your-customization' => 'التخصيص الخاص بك',
'total-amount' => 'المبلغ الإجمالي',
'none' => 'لا شيء',
'available' => 'Available',
'available-for-order' => 'متوفر لطلب الشراء',
],
// 'reviews' => [

View File

@ -413,7 +413,7 @@ return [
'your-customization' => 'Your Customization',
'total-amount' => 'Total Amount',
'none' => 'None',
'available' => 'Available'
'available-for-order' => 'Available for Order'
],
// 'reviews' => [

View File

@ -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' => [

View File

@ -412,7 +412,7 @@ return [
'your-customization' => 'شخصی سازی شما',
'total-amount' => 'مقدار کل',
'none' => 'هیچ یک',
'available' => 'Available'
'available-for-order' => 'Available for Order',
],
// 'reviews' => [

View File

@ -412,7 +412,7 @@ return [
'your-customization' => 'La tua Personalizzazione',
'total-amount' => 'Totale',
'none' => 'Nessuno',
'available' => 'Disponibile'
'available-for-order' => 'Disponibile per lordine'
],
// 'reviews' => [

View File

@ -378,7 +378,8 @@ return [
'out-of-stock' => '在庫なし',
'view-all' => '全て見る',
'select-above-options' => '最初に上記のオプションを選択してください.',
'less-quantity' => '数量1未満は選択できません.'
'less-quantity' => '数量1未満は選択できません.',
'available-for-order' => '注文可能',
],
'buynow' => [

View File

@ -417,7 +417,7 @@ return [
'your-customization' => 'Uw maatwerk',
'total-amount' => 'Totale hoeveelheid',
'none' => 'Geen',
'available' => 'Available'
'available-for-order' => 'Beschikbaar voor bestelling'
],
// 'reviews' => [

View File

@ -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' => [

View File

@ -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' => [

View File

@ -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

View File

@ -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