41 lines
1.6 KiB
PHP
41 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* cart.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-19 14:54:21
|
|
* @modified 2022-08-19 14:54:21
|
|
*/
|
|
|
|
return [
|
|
'index' => 'Cart',
|
|
'added_to_cart' => 'Added To Cart',
|
|
'select_all' => 'Select All',
|
|
'commodity' => 'Commodity',
|
|
'quantity' => 'Quantity',
|
|
'subtotal' => 'Subtotal',
|
|
'product_total' => 'Product Total',
|
|
'customer_discount' => 'Customer Discount',
|
|
'order_total' => 'Order Total',
|
|
'shipping_fee' => 'Shipping Fee',
|
|
'all' => 'All',
|
|
'selected' => 'Selected',
|
|
'to_checkout' => 'Checkout',
|
|
'cart_empty' => 'Your shopping cart is empty',
|
|
'go_buy' => 'You can go and see what you want to buy',
|
|
'go_shopping' => 'Go Shopping',
|
|
'must_select' => 'Please select at least one product',
|
|
'mini' => 'Your cart',
|
|
'delete' => 'Delete',
|
|
'check_cart' => 'Shopping Cart',
|
|
|
|
'invalid_customer' => 'Invalid customer.',
|
|
'empty_selected_products' => 'Empty selected products.',
|
|
'invalid_shipping_address' => 'Invalid shipping address',
|
|
'invalid_payment_address' => 'Invalid payment address.',
|
|
'invalid_shipping_method' => 'Invalid shipping method.',
|
|
'invalid_payment_method' => 'Invalid payment method.',
|
|
];
|