customer.php (5964B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Customers'; 4 5 // Text 6 $_['text_success'] = 'Success: You have modified customers!'; 7 $_['text_list'] = 'Customer List'; 8 $_['text_add'] = 'Add Customer'; 9 $_['text_edit'] = 'Edit Customer'; 10 $_['text_default'] = 'Default'; 11 $_['text_account'] = 'Customer Details'; 12 $_['text_password'] = 'Password'; 13 $_['text_other'] = 'Other'; 14 $_['text_affiliate'] = 'Affiliate Details'; 15 $_['text_payment'] = 'Payment Details'; 16 $_['text_balance'] = 'Balance'; 17 $_['text_cheque'] = 'Cheque'; 18 $_['text_paypal'] = 'PayPal'; 19 $_['text_bank'] = 'Bank Transfer'; 20 $_['text_history'] = 'History'; 21 $_['text_history_add'] = 'Add History'; 22 $_['text_transaction'] = 'Transactions'; 23 $_['text_transaction_add'] = 'Add Transaction'; 24 $_['text_reward'] = 'Reward Points'; 25 $_['text_reward_add'] = 'Add Reward Points'; 26 $_['text_ip'] = 'IP'; 27 $_['text_option'] = 'Options'; 28 $_['text_login'] = 'Login into Store'; 29 $_['text_unlock'] = 'Unlock Account'; 30 31 // Column 32 $_['column_name'] = 'Customer Name'; 33 $_['column_email'] = 'E-Mail'; 34 $_['column_customer_group'] = 'Customer Group'; 35 $_['column_status'] = 'Status'; 36 $_['column_date_added'] = 'Date Added'; 37 $_['column_comment'] = 'Comment'; 38 $_['column_description'] = 'Description'; 39 $_['column_amount'] = 'Amount'; 40 $_['column_points'] = 'Points'; 41 $_['column_ip'] = 'IP'; 42 $_['column_total'] = 'Total Accounts'; 43 $_['column_action'] = 'Action'; 44 45 // Entry 46 $_['entry_customer_group'] = 'Customer Group'; 47 $_['entry_firstname'] = 'First Name'; 48 $_['entry_lastname'] = 'Last Name'; 49 $_['entry_email'] = 'E-Mail'; 50 $_['entry_telephone'] = 'Telephone'; 51 $_['entry_newsletter'] = 'Newsletter'; 52 $_['entry_status'] = 'Status'; 53 $_['entry_approved'] = 'Approved'; 54 $_['entry_safe'] = 'Safe'; 55 $_['entry_password'] = 'Password'; 56 $_['entry_confirm'] = 'Confirm'; 57 $_['entry_company'] = 'Company'; 58 $_['entry_address_1'] = 'Address 1'; 59 $_['entry_address_2'] = 'Address 2'; 60 $_['entry_city'] = 'City'; 61 $_['entry_postcode'] = 'Postcode'; 62 $_['entry_country'] = 'Country'; 63 $_['entry_zone'] = 'Region / State'; 64 $_['entry_default'] = 'Default Address'; 65 $_['entry_affiliate'] = 'Affiliate'; 66 $_['entry_tracking'] = 'Tracking Code'; 67 $_['entry_website'] = 'Web Site'; 68 $_['entry_commission'] = 'Commission (%)'; 69 $_['entry_tax'] = 'Tax ID'; 70 $_['entry_payment'] = 'Payment Method'; 71 $_['entry_cheque'] = 'Cheque Payee Name'; 72 $_['entry_paypal'] = 'PayPal Email Account'; 73 $_['entry_bank_name'] = 'Bank Name'; 74 $_['entry_bank_branch_number'] = 'ABA/BSB number (Branch Number)'; 75 $_['entry_bank_swift_code'] = 'SWIFT Code'; 76 $_['entry_bank_account_name'] = 'Account Name'; 77 $_['entry_bank_account_number'] = 'Account Number'; 78 $_['entry_comment'] = 'Comment'; 79 $_['entry_description'] = 'Description'; 80 $_['entry_amount'] = 'Amount'; 81 $_['entry_points'] = 'Points'; 82 $_['entry_name'] = 'Customer Name'; 83 $_['entry_ip'] = 'IP'; 84 $_['entry_date_added'] = 'Date Added'; 85 86 // Help 87 $_['help_safe'] = 'Set to true to avoid this customer from being caught by the anti-fraud system'; 88 $_['help_affiliate'] = 'Enable / Disable the customers ability to use the affiliate system.'; 89 $_['help_tracking'] = 'The tracking code that will be used to track referrals.'; 90 $_['help_commission'] = 'Percentage the affiliate receives on each order.'; 91 $_['help_points'] = 'Use minus to remove points'; 92 93 // Error 94 $_['error_warning'] = 'Warning: Please check the form carefully for errors!'; 95 $_['error_permission'] = 'Warning: You do not have permission to modify customers!'; 96 $_['error_exists'] = 'Warning: E-Mail Address is already registered!'; 97 $_['error_firstname'] = 'First Name must be between 1 and 32 characters!'; 98 $_['error_lastname'] = 'Last Name must be between 1 and 32 characters!'; 99 $_['error_email'] = 'E-Mail Address does not appear to be valid!'; 100 $_['error_telephone'] = 'Telephone must be between 3 and 32 characters!'; 101 $_['error_password'] = 'Password must be between 4 and 20 characters!'; 102 $_['error_confirm'] = 'Password and password confirmation do not match!'; 103 $_['error_address_1'] = 'Address 1 must be between 3 and 128 characters!'; 104 $_['error_city'] = 'City must be between 2 and 128 characters!'; 105 $_['error_postcode'] = 'Postcode must be between 2 and 10 characters for this country!'; 106 $_['error_country'] = 'Please select a country!'; 107 $_['error_zone'] = 'Please select a region / state!'; 108 $_['error_custom_field'] = '%s required!'; 109 $_['error_tracking'] = 'Tracking Code required!'; 110 $_['error_tracking_exists'] = 'Tracking code is being used by another affiliate!'; 111 $_['error_cheque'] = 'Cheque Payee Name required!'; 112 $_['error_paypal'] = 'PayPal Email Address does not appear to be valid!'; 113 $_['error_bank_account_name'] = 'Account Name required!'; 114 $_['error_bank_account_number'] = 'Account Number required!';