order.php (1544B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Order History'; 4 5 // Text 6 $_['text_account'] = 'Account'; 7 $_['text_order'] = 'Order Information'; 8 $_['text_order_detail'] = 'Order Details'; 9 $_['text_invoice_no'] = 'Invoice No.:'; 10 $_['text_order_id'] = 'Order ID:'; 11 $_['text_date_added'] = 'Date Added:'; 12 $_['text_shipping_address'] = 'Shipping Address'; 13 $_['text_shipping_method'] = 'Shipping Method:'; 14 $_['text_payment_address'] = 'Payment Address'; 15 $_['text_payment_method'] = 'Payment Method:'; 16 $_['text_comment'] = 'Order Comments'; 17 $_['text_history'] = 'Order History'; 18 $_['text_success'] = 'Success: You have added <a href="%s">%s</a> to your <a href="%s">shopping cart</a>!'; 19 $_['text_empty'] = 'You have not made any previous orders!'; 20 $_['text_error'] = 'The order you requested could not be found!'; 21 22 // Column 23 $_['column_order_id'] = 'Order ID'; 24 $_['column_customer'] = 'Customer'; 25 $_['column_product'] = 'No. of Products'; 26 $_['column_name'] = 'Product Name'; 27 $_['column_model'] = 'Model'; 28 $_['column_quantity'] = 'Quantity'; 29 $_['column_price'] = 'Price'; 30 $_['column_total'] = 'Total'; 31 $_['column_action'] = 'Action'; 32 $_['column_date_added'] = 'Date Added'; 33 $_['column_status'] = 'Status'; 34 $_['column_comment'] = 'Comment'; 35 36 // Error 37 $_['error_reorder'] = '%s is not currently available to be reordered.';