order.php (6510B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Orders'; 4 5 // Text 6 $_['text_success'] = 'Success: You have modified orders!'; 7 $_['text_list'] = 'Order List'; 8 $_['text_add'] = 'Add Order'; 9 $_['text_edit'] = 'Edit Order'; 10 $_['text_filter'] = 'Filter'; 11 $_['text_order_detail'] = 'Order Details'; 12 $_['text_customer_detail'] = 'Customer Details'; 13 $_['text_option'] = 'Options'; 14 $_['text_store'] = 'Store'; 15 $_['text_date_added'] = 'Date Added'; 16 $_['text_payment_method'] = 'Payment Method'; 17 $_['text_shipping_method'] = 'Shipping Method'; 18 $_['text_customer'] = 'Customer'; 19 $_['text_customer_group'] = 'Customer Group'; 20 $_['text_email'] = 'E-Mail'; 21 $_['text_telephone'] = 'Telephone'; 22 $_['text_fax'] = 'Fax'; 23 $_['text_invoice'] = 'Invoice'; 24 $_['text_reward'] = 'Reward Points'; 25 $_['text_affiliate'] = 'Affiliate'; 26 $_['text_order'] = 'Order (#%s)'; 27 $_['text_payment_address'] = 'Payment Address'; 28 $_['text_shipping_address'] = 'Shipping Address'; 29 $_['text_comment'] = 'Customer Comment'; 30 $_['text_history'] = 'Order History'; 31 $_['text_history_add'] = 'Add Order History'; 32 $_['text_account_custom_field'] = 'Account Custom Fields'; 33 $_['text_payment_custom_field'] = 'Payment Address Custom Fields'; 34 $_['text_shipping_custom_field'] = 'Shipping Address Custom Fields'; 35 $_['text_browser'] = 'Browser'; 36 $_['text_ip'] = 'IP Address'; 37 $_['text_forwarded_ip'] = 'Forwarded IP'; 38 $_['text_user_agent'] = 'User Agent'; 39 $_['text_accept_language'] = 'Accept Language'; 40 $_['text_order_id'] = 'Order ID:'; 41 $_['text_website'] = 'Web Site:'; 42 $_['text_invoice_no'] = 'Invoice No.'; 43 $_['text_invoice_date'] = 'Invoice Date:'; 44 $_['text_sku'] = 'SKU:'; 45 $_['text_upc'] = 'UPC:'; 46 $_['text_ean'] = 'EAN:'; 47 $_['text_jan'] = 'JAN:'; 48 $_['text_isbn'] = 'ISBN:'; 49 $_['text_mpn'] = 'MPN:'; 50 $_['text_missing'] = 'Missing Orders'; 51 $_['text_default'] = 'Default'; 52 $_['text_product'] = 'Add Product(s)'; 53 $_['text_voucher'] = 'Add Voucher(s)'; 54 $_['text_shipping'] = 'Shipping'; 55 $_['text_contact'] = 'Contact'; 56 $_['text_reward_added'] = 'Success: Reward points added!'; 57 $_['text_reward_removed'] = 'Success: Reward points removed!'; 58 $_['text_commission_added'] = 'Success: Commission added!'; 59 $_['text_commission_removed'] = 'Success: Commission removed!'; 60 $_['text_restock'] = 'Success: Products have been restocked!'; 61 $_['text_upload'] = 'Your file was successfully uploaded!'; 62 $_['text_picklist'] = 'Dispatch Note'; 63 64 // Column 65 $_['column_order_id'] = 'Order ID'; 66 $_['column_customer'] = 'Customer'; 67 $_['column_status'] = 'Status'; 68 $_['column_date_added'] = 'Date Added'; 69 $_['column_date_modified'] = 'Date Modified'; 70 $_['column_total'] = 'Total'; 71 $_['column_product'] = 'Product'; 72 $_['column_model'] = 'Model'; 73 $_['column_quantity'] = 'Quantity'; 74 $_['column_price'] = 'Unit Price'; 75 $_['column_comment'] = 'Comment'; 76 $_['column_notify'] = 'Customer Notified'; 77 $_['column_location'] = 'Location'; 78 $_['column_reference'] = 'Reference'; 79 $_['column_action'] = 'Action'; 80 $_['column_weight'] = 'Product Weight'; 81 82 // Entry 83 $_['entry_store'] = 'Store'; 84 $_['entry_customer'] = 'Customer'; 85 $_['entry_customer_group'] = 'Customer Group'; 86 $_['entry_firstname'] = 'First Name'; 87 $_['entry_lastname'] = 'Last Name'; 88 $_['entry_email'] = 'E-Mail'; 89 $_['entry_telephone'] = 'Telephone'; 90 $_['entry_address'] = 'Choose Address'; 91 $_['entry_company'] = 'Company'; 92 $_['entry_address_1'] = 'Address 1'; 93 $_['entry_address_2'] = 'Address 2'; 94 $_['entry_city'] = 'City'; 95 $_['entry_postcode'] = 'Postcode'; 96 $_['entry_country'] = 'Country'; 97 $_['entry_zone'] = 'Region / State'; 98 $_['entry_zone_code'] = 'Region / State Code'; 99 $_['entry_product'] = 'Choose Product'; 100 $_['entry_option'] = 'Choose Option(s)'; 101 $_['entry_quantity'] = 'Quantity'; 102 $_['entry_to_name'] = 'Recipient\'s Name'; 103 $_['entry_to_email'] = 'Recipient\'s E-mail'; 104 $_['entry_from_name'] = 'Sender\'s Name'; 105 $_['entry_from_email'] = 'Sender\'s E-mail'; 106 $_['entry_theme'] = 'Gift Certificate Theme'; 107 $_['entry_message'] = 'Message'; 108 $_['entry_amount'] = 'Amount'; 109 $_['entry_affiliate'] = 'Affiliate'; 110 $_['entry_order_status'] = 'Order Status'; 111 $_['entry_notify'] = 'Notify Customer'; 112 $_['entry_override'] = 'Override'; 113 $_['entry_comment'] = 'Comment'; 114 $_['entry_currency'] = 'Currency'; 115 $_['entry_shipping_method'] = 'Shipping Method'; 116 $_['entry_payment_method'] = 'Payment Method'; 117 $_['entry_coupon'] = 'Coupon'; 118 $_['entry_voucher'] = 'Voucher'; 119 $_['entry_reward'] = 'Reward'; 120 $_['entry_order_id'] = 'Order ID'; 121 $_['entry_total'] = 'Total'; 122 $_['entry_date_added'] = 'Date Added'; 123 $_['entry_date_modified'] = 'Date Modified'; 124 125 // Help 126 $_['help_override'] = 'If the customers order is being blocked from changing the order status due to an anti-fraud extension enable override.'; 127 128 // Error 129 $_['error_warning'] = 'Warning: Please check the form carefully for errors!'; 130 $_['error_permission'] = 'Warning: You do not have permission to modify orders!'; 131 $_['error_action'] = 'Warning: Could not complete this action!'; 132 $_['error_filetype'] = 'Invalid file type!';