28 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// Text
 | 
						|
$_['text_title']				= 'Credit Card / Debit Card (BluePay)';
 | 
						|
$_['text_credit_card']			= 'Card Details';
 | 
						|
$_['text_description']			= 'Items on %s Order No: %s';
 | 
						|
$_['text_card_type']			= 'Card Type: ';
 | 
						|
$_['text_card_name']			= 'Card Name: ';
 | 
						|
$_['text_card_digits']			= 'Last Digits: ';
 | 
						|
$_['text_card_expiry']			= 'Expiry: ';
 | 
						|
$_['text_transaction_error']	= 'There was an error processing your transaction - ';
 | 
						|
 | 
						|
// Entry
 | 
						|
$_['entry_card']				= 'New or Existing Card: ';
 | 
						|
$_['entry_card_existing']		= 'Existing';
 | 
						|
$_['entry_card_new']			= 'New';
 | 
						|
$_['entry_card_save']			= 'Remember Card Details';
 | 
						|
$_['entry_cc_owner']			= 'Card Owner';
 | 
						|
$_['entry_cc_number']			= 'Card Number';
 | 
						|
$_['entry_cc_start_date']		= 'Card Valid From Date';
 | 
						|
$_['entry_cc_expire_date']		= 'Card Expiry Date';
 | 
						|
$_['entry_cc_cvv2']				= 'Card Security Code (CVV2)';
 | 
						|
$_['entry_cc_address']			= 'Street Address';
 | 
						|
$_['entry_cc_city']				= 'City';
 | 
						|
$_['entry_cc_state']			= 'State';
 | 
						|
$_['entry_cc_zipcode']			= 'Zipcode';
 | 
						|
$_['entry_cc_phone']			= 'Phone';
 | 
						|
$_['entry_cc_email']			= 'Email';
 | 
						|
$_['entry_cc_choice']			= 'Choose an Existing Card'; |