33 lines
945 B
PHP
33 lines
945 B
PHP
<?php
|
|
/**
|
|
* cart.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author Edward Yang <yangjin@opencart.cn>
|
|
* @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',
|
|
'operate' => 'operate',
|
|
'product_total' => 'product totals',
|
|
'all' => 'all',
|
|
'selected' => 'selected',
|
|
'total_price' => 'total_price',
|
|
'to_checkout' => 'to_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' => 'check the shopping cart',
|
|
];
|