131 lines
4.3 KiB
PHP
131 lines
4.3 KiB
PHP
<?php
|
|
/**
|
|
* account.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author Edward Yang <yangjin@opencart.cn>
|
|
* @created 2022-08-04 10:59:15
|
|
* @modified 2022-08-04 10:59:15
|
|
*/
|
|
|
|
return [
|
|
'index' => 'Account',
|
|
'revise_info' => 'modify information',
|
|
'collect' => 'collect',
|
|
'coupon' => 'coupon',
|
|
'my_order' => 'My Order',
|
|
'orders' => 'all orders',
|
|
'pending_payment' => 'pending payment',
|
|
'pending_send' => 'to be delivered',
|
|
'pending_receipt' => 'pending receipt',
|
|
'after_sales' => 'after sales',
|
|
'no_order' => "You don't have an order yet!",
|
|
'to_buy' => 'to place an order',
|
|
'order_number' => 'order number',
|
|
'order_time' => 'order time',
|
|
'state' => 'state',
|
|
'amount' => 'amount',
|
|
'check_details' => 'check details',
|
|
|
|
'edit' => [
|
|
'index' => 'Edit',
|
|
'modify_avatar' => 'modify avatar',
|
|
'suggest' => 'Upload a JPG or PNG image. 300 x 300 is recommended.',
|
|
'name' => 'name',
|
|
'email' => 'email',
|
|
'crop' => 'crop',
|
|
],
|
|
|
|
'wishlist' => [
|
|
'index' => 'Wishlist',
|
|
'product' => 'product',
|
|
'price' => 'price',
|
|
'check_details' => 'check details',
|
|
],
|
|
|
|
'order' => [
|
|
'index' => 'Order',
|
|
'completed' => 'completed',
|
|
'order_details' => 'Order Details',
|
|
'amount' => 'amount',
|
|
'state' => 'state',
|
|
'operate' => 'operate',
|
|
'order_number' => 'order number',
|
|
'check' => 'check',
|
|
|
|
'order_info' => [
|
|
'index' => 'Order Info',
|
|
'order_details' => 'order details',
|
|
'to_pay' => 'to pay',
|
|
'confirm_receipt' => 'confirm the receipt of goods',
|
|
'order_number' => 'order number',
|
|
'order_date' => 'order date',
|
|
'state' => 'state',
|
|
'order_amount' => 'order amount',
|
|
'order_items' => 'order items',
|
|
'apply_after_sales' => 'apply for after-sales',
|
|
'order_total' => 'order total',
|
|
'logistics_status' => 'logistics status',
|
|
'order_status' => 'order status',
|
|
'remark' => 'remark',
|
|
'update_time' => 'update time',
|
|
],
|
|
|
|
'order_success' => [
|
|
'order_success' => 'Congratulations, the order was successfully generated!',
|
|
'order_number' => 'order number',
|
|
'amounts_payable' => 'amounts payable ',
|
|
'payment_method' => 'payment method ',
|
|
'view_order' => 'view order ',
|
|
'pay_now' => 'pay now ',
|
|
'kind_tips' => 'Reminder: Your order has been successfully generated, please complete the payment as soon as possible~ ',
|
|
'also' => 'You can also',
|
|
'continue_purchase' => 'continue to purchase',
|
|
'contact_customer_service' => 'If you have any questions during the order process, you can contact our customer service staff at any time',
|
|
'emaill' => 'email',
|
|
'service_hotline' => 'service hotline',
|
|
],
|
|
|
|
],
|
|
|
|
'addresses' => [
|
|
'index' => 'Addresses',
|
|
'add_address' => 'add new address',
|
|
'default_address' => 'default address',
|
|
'delete' => 'delete',
|
|
'edit' => 'edit',
|
|
'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',
|
|
'confirm_delete' => 'Are you sure you want to delete the address?',
|
|
'hint' => 'hint',
|
|
],
|
|
|
|
'rma' => [
|
|
'index' => 'Rma',
|
|
'commodity' => 'commodity',
|
|
'quantity' => 'quantity',
|
|
'service_type' => 'service type',
|
|
'return_reason' => 'reason for return',
|
|
'creation_time' => 'creation time',
|
|
'operate' => 'operate',
|
|
'check' => 'check',
|
|
|
|
'rma_info' => [
|
|
'index' => 'after-sales details',
|
|
],
|
|
|
|
'rma_form' => [
|
|
'index' => 'Submit after-sales information',
|
|
'service_type' => 'service type',
|
|
'return_quantity' => 'return quantity',
|
|
'unpacked' => 'unpacked',
|
|
'return_reason' => 'reason for return',
|
|
'remark' => 'remark',
|
|
]
|
|
]
|
|
];
|