38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* common.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author Edward Yang <yangjin@opencart.cn>
|
|
* @created 2022-08-17 23:10:20
|
|
* @modified 2022-08-17 23:10:20
|
|
*/
|
|
|
|
return [
|
|
'index' => 'checkouts',
|
|
'address' => 'address',
|
|
'chosen' => 'chosen',
|
|
'edit' => 'edit',
|
|
'choose_another_address' => 'Choose another address',
|
|
'add_new_address' => 'add new address',
|
|
'payment_method' => 'payment method',
|
|
'delivery_method' => 'Delivery Method',
|
|
'cart_totals' => 'cart totals',
|
|
'submit_order' => 'Submit Order',
|
|
'enter_name' => 'Please type in your name',
|
|
'enter_phone' => 'Please type your phone number',
|
|
'enter_address' => 'Please enter detailed address 1',
|
|
'select_province' => 'Please select province',
|
|
'enter_city' => 'Please fill in the city ',
|
|
'check_form' => 'Please check that the form is filled out correctly',
|
|
|
|
'payment' => [
|
|
'index' => 'please pay',
|
|
'please_pay' => 'Order submitted successfully, please pay',
|
|
'order_number' => 'order number',
|
|
'amounts_payable' => 'amounts payable',
|
|
'payment_method' => 'payment method',
|
|
]
|
|
];
|