register.php (2879B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Affiliate Program'; 4 5 // Text 6 $_['text_account'] = 'Account'; 7 $_['text_register'] = 'Affiliate Register'; 8 $_['text_account_already'] = 'If you already have an account with us, please login at the <a href="%s">login page</a>.'; 9 $_['text_signup'] = 'To create an affiliate account, fill in the form below ensuring you complete all the required fields:'; 10 $_['text_your_details'] = 'Your Personal Details'; 11 $_['text_your_address'] = 'Your Address Details'; 12 $_['text_your_affiliate'] = 'Your Affiliate Information'; 13 $_['text_your_password'] = 'Your Password'; 14 $_['text_cheque'] = 'Cheque'; 15 $_['text_paypal'] = 'PayPal'; 16 $_['text_bank'] = 'Bank Transfer'; 17 $_['text_agree'] = 'I have read and agree to the <a href="%s" class="agree"><b>%s</b></a>'; 18 19 // Entry 20 $_['entry_customer_group'] = 'Customer Group'; 21 $_['entry_firstname'] = 'First Name'; 22 $_['entry_lastname'] = 'Last Name'; 23 $_['entry_email'] = 'E-Mail'; 24 $_['entry_telephone'] = 'Telephone'; 25 $_['entry_company'] = 'Company'; 26 $_['entry_website'] = 'Web Site'; 27 $_['entry_tax'] = 'Tax ID'; 28 $_['entry_payment'] = 'Payment Method'; 29 $_['entry_cheque'] = 'Cheque Payee Name'; 30 $_['entry_paypal'] = 'PayPal Email Account'; 31 $_['entry_bank_name'] = 'Bank Name'; 32 $_['entry_bank_branch_number'] = 'ABA/BSB number (Branch Number)'; 33 $_['entry_bank_swift_code'] = 'SWIFT Code'; 34 $_['entry_bank_account_name'] = 'Account Name'; 35 $_['entry_bank_account_number'] = 'Account Number'; 36 $_['entry_password'] = 'Password'; 37 $_['entry_confirm'] = 'Password Confirm'; 38 39 // Error 40 $_['error_exists'] = 'Warning: E-Mail Address is already registered!'; 41 $_['error_firstname'] = 'First Name must be between 1 and 32 characters!'; 42 $_['error_lastname'] = 'Last Name must be between 1 and 32 characters!'; 43 $_['error_email'] = 'E-Mail Address does not appear to be valid!'; 44 $_['error_telephone'] = 'Telephone must be between 3 and 32 characters!'; 45 $_['error_custom_field'] = '%s required!'; 46 $_['error_cheque'] = 'Cheque Payee Name required!'; 47 $_['error_paypal'] = 'PayPal Email Address does not appear to be valid!'; 48 $_['error_bank_account_name'] = 'Account Name required!'; 49 $_['error_bank_account_number'] = 'Account Number required!'; 50 $_['error_password'] = 'Password must be between 4 and 20 characters!'; 51 $_['error_confirm'] = 'Password confirmation does not match password!'; 52 $_['error_agree'] = 'Warning: You must agree to the %s!';