21 lines
		
	
	
		
			895 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			895 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// Heading
 | 
						|
$_['heading_title']        = 'Estimate Shipping & Taxes';
 | 
						|
 | 
						|
// Text
 | 
						|
$_['text_success']         = 'Success: Your shipping estimate has been applied!';
 | 
						|
$_['text_shipping']        = 'Enter your destination to get a shipping estimate.';
 | 
						|
$_['text_shipping_method'] = 'Please select the preferred shipping method to use on this order.';
 | 
						|
 | 
						|
// Entry
 | 
						|
$_['entry_country']        = 'Maa';
 | 
						|
$_['entry_zone']           = 'Alue / Osavaltio';
 | 
						|
$_['entry_postcode']       = 'Postinumero';
 | 
						|
 | 
						|
// Error
 | 
						|
$_['error_postcode']       = 'Postcode must be between 2 and 10 characters!';
 | 
						|
$_['error_country']        = 'Please select a country!';
 | 
						|
$_['error_zone']           = 'Please select a region / state!';
 | 
						|
$_['error_shipping']       = 'Varoitus: Shipping method required!';
 | 
						|
$_['error_no_shipping']    = 'Varoitus: No Shipping options are available. Please <a href="%s">contact us</a> for assistance!';
 |