register.php (1580B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Register Account'; 4 5 // Text 6 $_['text_account'] = 'Account'; 7 $_['text_register'] = '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_your_details'] = 'Your Personal Details'; 10 $_['text_newsletter'] = 'Newsletter'; 11 $_['text_your_password'] = 'Your Password'; 12 $_['text_agree'] = 'I have read and agree to the <a href="%s" class="agree"><b>%s</b></a>'; 13 14 // Entry 15 $_['entry_customer_group'] = 'Customer Group'; 16 $_['entry_firstname'] = 'First Name'; 17 $_['entry_lastname'] = 'Last Name'; 18 $_['entry_email'] = 'E-Mail'; 19 $_['entry_telephone'] = 'Telephone'; 20 $_['entry_newsletter'] = 'Subscribe'; 21 $_['entry_password'] = 'Password'; 22 $_['entry_confirm'] = 'Password Confirm'; 23 24 // Error 25 $_['error_exists'] = 'Warning: E-Mail Address is already registered!'; 26 $_['error_firstname'] = 'First Name must be between 1 and 32 characters!'; 27 $_['error_lastname'] = 'Last Name must be between 1 and 32 characters!'; 28 $_['error_email'] = 'E-Mail Address does not appear to be valid!'; 29 $_['error_telephone'] = 'Telephone must be between 3 and 32 characters!'; 30 $_['error_custom_field'] = '%s required!'; 31 $_['error_password'] = 'Password must be between 4 and 20 characters!'; 32 $_['error_confirm'] = 'Password confirmation does not match password!'; 33 $_['error_agree'] = 'Warning: You must agree to the %s!';