42 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// Heading
 | 
						|
$_['heading_title']         = 'Recurring Profiles';
 | 
						|
 | 
						|
// Text
 | 
						|
$_['text_success']          = 'Success: You have modified recurring profiles!';
 | 
						|
$_['text_list']             = 'Recurring Profile List';
 | 
						|
$_['text_add']              = 'Add Recurring Profile';
 | 
						|
$_['text_edit']             = 'Edit Recurring Profile';
 | 
						|
$_['text_day']              = 'Day';
 | 
						|
$_['text_week']             = 'Week';
 | 
						|
$_['text_semi_month']       = 'Semi Month';
 | 
						|
$_['text_month']            = 'Month';
 | 
						|
$_['text_year']             = 'Year';
 | 
						|
$_['text_recurring']        = '<p><i class="fa fa-info-circle"></i> Recurring amounts are calculated by the frequency and cycles.</p><p>For example if you use a frequency of "week" and a cycle of "2", then the user will be billed every 2 weeks.</p><p>The duration is the number of times the user will make a payment, set this to 0 if you want payments until they are cancelled.</p>';
 | 
						|
$_['text_profile']          = 'Recurring Profile';
 | 
						|
$_['text_trial']            = 'Trial Profile';
 | 
						|
 | 
						|
// Entry
 | 
						|
$_['entry_name']            = 'Name';
 | 
						|
$_['entry_price']           = 'Price';
 | 
						|
$_['entry_duration']        = 'Duration';
 | 
						|
$_['entry_cycle']           = 'Cycle';
 | 
						|
$_['entry_frequency']       = 'Frequency';
 | 
						|
$_['entry_trial_price']     = 'Trial price';
 | 
						|
$_['entry_trial_duration']  = 'Trial duration';
 | 
						|
$_['entry_trial_status']    = 'Trial status';
 | 
						|
$_['entry_trial_cycle']     = 'Trial cycle';
 | 
						|
$_['entry_trial_frequency'] = 'Trial frequency';
 | 
						|
$_['entry_status']          = 'Status';
 | 
						|
$_['entry_sort_order']      = 'Sort Order';
 | 
						|
 | 
						|
// Column
 | 
						|
$_['column_name']           = 'Name';
 | 
						|
$_['column_sort_order']     = 'Sort Order';
 | 
						|
$_['column_action']         = 'Action';
 | 
						|
 | 
						|
// Error
 | 
						|
$_['error_warning']         = 'Varoitus: Please check the form carefully for errors!';
 | 
						|
$_['error_permission']      = 'Varoitus: You do not have permission to modify recurring profiles!';
 | 
						|
$_['error_name']            = 'Profile Name must be greater than 3 and less than 255 characters!';
 | 
						|
$_['error_product']         = 'Varoitus: This recurring profile cannot be deleted as it is currently assigned to %s products!'; |