40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* common.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-17 23:10:20
|
|
* @modified 2022-08-17 23:10:20
|
|
*/
|
|
|
|
return [
|
|
'index' => '購物車',
|
|
'added_to_cart' => '已加入購物車',
|
|
'select_all' => '全選',
|
|
'commodity' => '商品',
|
|
'quantity' => '數量',
|
|
'subtotal' => '小計',
|
|
'product_total' => '商品總計',
|
|
'order_total' => '應付總金額',
|
|
'shipping_fee' => '運費',
|
|
'all' => '全部',
|
|
'selected' => '已選',
|
|
'to_checkout' => '去結賬',
|
|
'cart_empty' => '您的購物車是空的',
|
|
'go_buy' => '您可以去看看有哪些想買的',
|
|
'go_shopping' => '去逛逛',
|
|
'must_select' => '請選擇至少一個商品',
|
|
'mini' => '您的購物車',
|
|
'delete' => '刪除',
|
|
'check_cart' => '查看購物車',
|
|
|
|
'invalid_customer' => '購物車客戶無效',
|
|
'empty_selected_products' => '購物車選中商品為空',
|
|
'invalid_shipping_address' => '配送地址無效',
|
|
'invalid_payment_address' => '賬單地址無效',
|
|
'invalid_shipping_method' => '配送方式不可用',
|
|
'invalid_payment_method' => '支付方式不可用',
|
|
];
|