This commit is contained in:
Sanjay 2022-05-20 12:07:05 +05:30
parent da67547399
commit 255478ad26
5 changed files with 32 additions and 2 deletions

View File

@ -570,6 +570,14 @@ return [
'payment-methods' => 'اختار طريقة الدفع',
'payment-method' => 'طريقة الدفع او السداد',
'payment-method' => 'طريقة الدفع',
'payment-method-name' => [
'PayPal Smart Button' => 'زر PayPal الذكي',
'PayPal' => 'باي بال ',
'Cash On Delivery' => 'الدفع عند الاستلام',
'Money Transfer' => 'حوالة مالية',
'PayPal Standard' => 'معيار PayPal'
],
'summary' => 'المعلومات',
'price' => 'السعر',
'quantity' => 'الكمية',

View File

@ -569,6 +569,13 @@ return [
'shipping-method' => 'Select Shipping Method',
'payment-methods' => 'Select Payment Method',
'payment-method' => 'Payment Method',
'payment-method-name' => [
'PayPal Smart Button' => 'PayPal Smart Button',
'PayPal' => 'PayPal',
'Cash On Delivery' => 'Cash On Delivery',
'Money Transfer' => 'Money Transfer',
'Paypal Standard' => 'PayPal Standard'
],
'summary' => 'Order Summary',
'price' => 'Price',
'quantity' => 'Quantity',

View File

@ -568,6 +568,14 @@ return [
'shipping-method' => 'जलयात्रा पद्धति का चयन करें',
'payment-methods' => 'भुगतान का तरीका चुनें',
'payment-method' => 'भुगतान विधि',
'payment-method-name' => [
'PayPal Smart Button' => 'पेपाल स्मार्ट बटन',
'PayPal' => 'पेपाल',
'Cash On Delivery' => 'डिलवरी पर नकदी',
'Money Transfer' => 'मनी ट्रांसफर',
'PayPal Standard' => 'पेपैल मानक'
],
'summary' => 'आदेश सारांश',
'price' => 'कीमत',
'quantity' => 'मात्रा',

View File

@ -559,6 +559,13 @@ return [
'shipping-method' => 'Selecione o Método de Entrega',
'payment-methods' => 'Selecione o Método de Pagamento',
'payment-method' => 'Método de Pagamento',
'payment-method-name' => [
'PayPal Smart Button' => 'Botão Inteligente do PayPal',
'PayPal' => 'PayPal',
'Cash On Delivery' => 'Dinheiro na entrega',
'Money Transfer' => 'Transferência de dinheiro',
'Paypal Standard' => 'Padrão do PayPal'
],
'summary' => 'Resumo do Pedido',
'price' => 'Preço',
'quantity' => 'Quantidade',

View File

@ -35,12 +35,12 @@
<div class="pl40">
<div class="row">
<span class="payment-method method-label">
<b>{{ $payment['method_title'] }}</b>
<b>{{ __('shop::app.checkout.onepage.payment-method-name.'.$payment['method_title']) }}</b>
</span>
</div>
<div class="row">
<span class="method-summary">{{ __($payment['description']) }}</span>
<span class="method-summary">{{ __('shop::app.checkout.onepage.payment-method-name.'.$payment['description']) }}</span>
</div>
<?php $additionalDetails = \Webkul\Payment\Payment::getAdditionalDetails($payment['method']); ?>