41 lines
1.6 KiB
PHP
41 lines
1.6 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' => '商品总计',
|
|
'customer_discount' => '会员优惠',
|
|
'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' => '支付方式不可用',
|
|
];
|