contact.php (862B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Contact Us'; 4 5 // Text 6 $_['text_location'] = 'Our Location'; 7 $_['text_store'] = 'Our Stores'; 8 $_['text_contact'] = 'Contact Form'; 9 $_['text_address'] = 'Address'; 10 $_['text_telephone'] = 'Telephone'; 11 $_['text_fax'] = 'Fax'; 12 $_['text_open'] = 'Opening Times'; 13 $_['text_comment'] = 'Comments'; 14 $_['text_success'] = '<p>Your enquiry has been successfully sent to the store owner!</p>'; 15 16 // Entry 17 $_['entry_name'] = 'Your Name'; 18 $_['entry_email'] = 'E-Mail Address'; 19 $_['entry_enquiry'] = 'Enquiry'; 20 21 // Email 22 $_['email_subject'] = 'Enquiry %s'; 23 24 // Errors 25 $_['error_name'] = 'Name must be between 3 and 32 characters!'; 26 $_['error_email'] = 'E-Mail Address does not appear to be valid!'; 27 $_['error_enquiry'] = 'Enquiry must be between 10 and 3000 characters!';