28 lines
		
	
	
		
			854 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			854 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// Heading
 | 
						|
$_['heading_title']  = 'Ota yhteyttä';
 | 
						|
 | 
						|
// Text
 | 
						|
$_['text_location']  = 'Our Location';
 | 
						|
$_['text_store']     = 'Our Stores';
 | 
						|
$_['text_contact']   = 'Yhteydenottolomake';
 | 
						|
$_['text_address']   = 'Osoite';
 | 
						|
$_['text_telephone'] = 'Puhelinnumero';
 | 
						|
$_['text_fax']       = 'Fax';
 | 
						|
$_['text_open']      = 'Opening Times';
 | 
						|
$_['text_comment']   = 'Comments';
 | 
						|
$_['text_message']   = '<p>Your enquiry has been successfully sent to the store owner!</p>'; 
 | 
						|
 | 
						|
// Entry
 | 
						|
$_['entry_name']     = 'Your Name';
 | 
						|
$_['entry_email']    = 'Sähköpostiosoite';
 | 
						|
$_['entry_enquiry']  = 'Enquiry';
 | 
						|
 | 
						|
// Email
 | 
						|
$_['email_subject']  = 'Enquiry %s';
 | 
						|
 | 
						|
// Errors
 | 
						|
$_['error_name']     = 'Name must be between 3 and 32 characters!';
 | 
						|
$_['error_email']    = 'E-Mail Address does not appear to be valid!';
 | 
						|
$_['error_enquiry']  = 'Enquiry must be between 10 and 3000 characters!';
 |