文字替换:Add buy sku 修改为Quantity;Product Total 修改为 Quantity total
This commit is contained in:
parent
a318806058
commit
1dd22c3e02
|
|
@ -10,7 +10,7 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'product_total' => 'Product Total',
|
||||
'product_total' => 'Quantity total',// Product Total
|
||||
'customer_view' => 'Benutzerbesuche',
|
||||
'order_total' => 'Bestellmenge',
|
||||
'customer_new' => 'Benutzer hinzufügen',
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'product_total' => 'Product Total',
|
||||
'product_total' => 'Quantity total',// Product Total
|
||||
'customer_view' => 'Customer View',
|
||||
'order_total' => 'Order Total',
|
||||
'customer_new' => 'Customer New',
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ return [
|
|||
'commodity' => 'Product',
|
||||
'quantity' => 'Quantity',
|
||||
'subtotal' => 'Subtotal',
|
||||
'product_total' => 'Product Total',
|
||||
'product_total' => 'Quantity total',// Product Total
|
||||
'customer_discount' => 'Customer Discount',
|
||||
'order_total' => 'Order Total',
|
||||
'shipping_fee' => 'Shipping Fee',
|
||||
|
|
|
|||
|
|
@ -23,8 +23,8 @@ return [
|
|||
'enter_contacts' => 'Please enter contacts',
|
||||
'enter_email' => 'Please enter email',
|
||||
'enter_content' => 'Please enter content',
|
||||
'add_buy_sku' => 'Add Buy Sku',
|
||||
'product_total' => 'Product Total',
|
||||
'add_buy_sku' => 'Quantity',//Add Buy Sku
|
||||
'product_total' => 'Quantity total',// Product Total
|
||||
'shipping_fee' => 'Shipping Fee',
|
||||
'order_total' => 'Order Total',
|
||||
];
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'product_total' => 'Product Total',
|
||||
'product_total' => 'Quantity total',// Product Total
|
||||
'customer_view' => 'Visitas de usuarios',
|
||||
'order_total' => 'Volumen de pedidos',
|
||||
'customer_new' => 'Usuarios nuevos',
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'product_total' => 'Product Total',
|
||||
'product_total' => 'Quantity total',// Product Total
|
||||
'customer_view' => 'visites des utilisateurs',
|
||||
'order_total' => 'montant de la commande',
|
||||
'customer_new' => 'Ajouter un utilisateur',
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'product_total' => 'Product Total',
|
||||
'product_total' => 'Quantity total',// Product Total
|
||||
'customer_view' => 'Kunjungan pengguna',
|
||||
'order_total' => 'Volume pesanan',
|
||||
'customer_new' => 'Tambahkan Pengguna',
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'product_total' => 'Product Total',
|
||||
'product_total' => 'Quantity total',// Product Total
|
||||
'customer_view' => 'visite degli utenti',
|
||||
'order_total' => 'importo dell\'ordine',
|
||||
'customer_new' => 'Aggiungi utente',
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'product_total' => 'Product Total',
|
||||
'product_total' => 'Quantity total',// Product Total
|
||||
'customer_view' => 'ユーザーの訪問',
|
||||
'order_total' => '注文金額',
|
||||
'customer_new' => 'ユーザーを追加',
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'product_total' => 'Product Total',
|
||||
'product_total' => 'Quantity total',// Product Total
|
||||
'customer_view' => 'посещения пользователей',
|
||||
'order_total' => 'сумма заказа',
|
||||
'customer_new' => 'Добавить пользователя',
|
||||
|
|
|
|||
|
|
@ -58,8 +58,7 @@
|
|||
<div class="product-info">
|
||||
<div class="img border d-flex justify-content-center align-items-center wh-60"><img src="{{ $product->image }}" class="img-fluid"></div>
|
||||
<div class="name">
|
||||
<a class="text-dark"
|
||||
href="{{ shop_route('products.show', ['product' => $product->product_id]) }}">{{ $product->name }}</a>
|
||||
<a class="text-dark" href="{{ shop_route('products.show', ['product' => $product->product_id]) }}">{{ $product->name }}</a>
|
||||
<div class="quantity mt-1 text-secondary">x {{ $product->quantity }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue