文字替换: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 [ return [
'product_total' => 'Product Total', 'product_total' => 'Quantity total',// Product Total
'customer_view' => 'Benutzerbesuche', 'customer_view' => 'Benutzerbesuche',
'order_total' => 'Bestellmenge', 'order_total' => 'Bestellmenge',
'customer_new' => 'Benutzer hinzufügen', 'customer_new' => 'Benutzer hinzufügen',

View File

@ -10,7 +10,7 @@
*/ */
return [ return [
'product_total' => 'Product Total', 'product_total' => 'Quantity total',// Product Total
'customer_view' => 'Customer View', 'customer_view' => 'Customer View',
'order_total' => 'Order Total', 'order_total' => 'Order Total',
'customer_new' => 'Customer New', 'customer_new' => 'Customer New',

View File

@ -16,7 +16,7 @@ return [
'commodity' => 'Product', 'commodity' => 'Product',
'quantity' => 'Quantity', 'quantity' => 'Quantity',
'subtotal' => 'Subtotal', 'subtotal' => 'Subtotal',
'product_total' => 'Product Total', 'product_total' => 'Quantity total',// Product Total
'customer_discount' => 'Customer Discount', 'customer_discount' => 'Customer Discount',
'order_total' => 'Order Total', 'order_total' => 'Order Total',
'shipping_fee' => 'Shipping Fee', 'shipping_fee' => 'Shipping Fee',

View File

@ -23,8 +23,8 @@ return [
'enter_contacts' => 'Please enter contacts', 'enter_contacts' => 'Please enter contacts',
'enter_email' => 'Please enter email', 'enter_email' => 'Please enter email',
'enter_content' => 'Please enter content', 'enter_content' => 'Please enter content',
'add_buy_sku' => 'Add Buy Sku', 'add_buy_sku' => 'Quantity',//Add Buy Sku
'product_total' => 'Product Total', 'product_total' => 'Quantity total',// Product Total
'shipping_fee' => 'Shipping Fee', 'shipping_fee' => 'Shipping Fee',
'order_total' => 'Order Total', 'order_total' => 'Order Total',
]; ];

View File

@ -10,7 +10,7 @@
*/ */
return [ return [
'product_total' => 'Product Total', 'product_total' => 'Quantity total',// Product Total
'customer_view' => 'Visitas de usuarios', 'customer_view' => 'Visitas de usuarios',
'order_total' => 'Volumen de pedidos', 'order_total' => 'Volumen de pedidos',
'customer_new' => 'Usuarios nuevos', 'customer_new' => 'Usuarios nuevos',

View File

@ -10,7 +10,7 @@
*/ */
return [ return [
'product_total' => 'Product Total', 'product_total' => 'Quantity total',// Product Total
'customer_view' => 'visites des utilisateurs', 'customer_view' => 'visites des utilisateurs',
'order_total' => 'montant de la commande', 'order_total' => 'montant de la commande',
'customer_new' => 'Ajouter un utilisateur', 'customer_new' => 'Ajouter un utilisateur',

View File

@ -10,7 +10,7 @@
*/ */
return [ return [
'product_total' => 'Product Total', 'product_total' => 'Quantity total',// Product Total
'customer_view' => 'Kunjungan pengguna', 'customer_view' => 'Kunjungan pengguna',
'order_total' => 'Volume pesanan', 'order_total' => 'Volume pesanan',
'customer_new' => 'Tambahkan Pengguna', 'customer_new' => 'Tambahkan Pengguna',

View File

@ -10,7 +10,7 @@
*/ */
return [ return [
'product_total' => 'Product Total', 'product_total' => 'Quantity total',// Product Total
'customer_view' => 'visite degli utenti', 'customer_view' => 'visite degli utenti',
'order_total' => 'importo dell\'ordine', 'order_total' => 'importo dell\'ordine',
'customer_new' => 'Aggiungi utente', 'customer_new' => 'Aggiungi utente',

View File

@ -10,7 +10,7 @@
*/ */
return [ 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

@ -10,7 +10,7 @@
*/ */
return [ 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

@ -58,8 +58,7 @@
<div class="product-info"> <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="img border d-flex justify-content-center align-items-center wh-60"><img src="{{ $product->image }}" class="img-fluid"></div>
<div class="name"> <div class="name">
<a class="text-dark" <a class="text-dark" href="{{ shop_route('products.show', ['product' => $product->product_id]) }}">{{ $product->name }}</a>
href="{{ shop_route('products.show', ['product' => $product->product_id]) }}">{{ $product->name }}</a>
<div class="quantity mt-1 text-secondary">x {{ $product->quantity }}</div> <div class="quantity mt-1 text-secondary">x {{ $product->quantity }}</div>
</div> </div>
</div> </div>