文字替换:Add buy sku 修改为Quantity;Product Total 修改为 Quantity total

This commit is contained in:
wuhui_zzw 2023-08-25 09:48:53 +08:00
parent a318806058
commit 1dd22c3e02
11 changed files with 12 additions and 13 deletions

View File

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

View File

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

View File

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

View File

@ -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',
];

View File

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

View File

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

View File

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

View File

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

View File

@ -10,7 +10,7 @@
*/
return [
'product_total' => 'Product Total',
'product_total' => 'Quantity total',// Product Total
'customer_view' => 'ユーザーの訪問',
'order_total' => '注文金額',
'customer_new' => 'ユーザーを追加',

View File

@ -10,7 +10,7 @@
*/
return [
'product_total' => 'Product Total',
'product_total' => 'Quantity total',// Product Total
'customer_view' => 'посещения пользователей',
'order_total' => 'сумма заказа',
'customer_new' => 'Добавить пользователя',

View File

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