34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// Headings
 | 
						|
$_['heading_title']      = 'Etsy links';
 | 
						|
$_['text_openbay']       = 'OpenBay Pro';
 | 
						|
$_['text_etsy']          = 'Etsy';
 | 
						|
 | 
						|
// Text
 | 
						|
$_['text_loading']       = 'Loading items';
 | 
						|
$_['text_new_link']      = 'Create new link';
 | 
						|
$_['text_current_links'] = 'Current links';
 | 
						|
$_['text_link_saved']    = 'Item has been linked';
 | 
						|
$_['text_no_links']      = 'You have no products linked to Etsy items';
 | 
						|
 | 
						|
// Columns
 | 
						|
$_['column_product']	 = 'Product name';
 | 
						|
$_['column_item_id']	 = 'Etsy ID';
 | 
						|
$_['column_store_stock'] = 'Stock';
 | 
						|
$_['column_etsy_stock']	 = 'Etsy Stock';
 | 
						|
$_['column_status']		 = 'Link Status';
 | 
						|
$_['column_action']		 = 'Action';
 | 
						|
 | 
						|
// Entry
 | 
						|
$_['entry_name']		 = 'Product name';
 | 
						|
$_['entry_etsy_id']		 = 'Etsy item ID';
 | 
						|
 | 
						|
// Error
 | 
						|
$_['error_product']		 = 'Product does not exist in your store';
 | 
						|
$_['error_stock']		 = 'You cannot link an item that has no stock';
 | 
						|
$_['error_product_id']	 = 'Product ID required';
 | 
						|
$_['error_etsy_id']		 = 'Etsy item ID required';
 | 
						|
$_['error_link_id']		 = 'Link ID required';
 | 
						|
$_['error_link_exists']	 = 'An active link already exists for this item';
 | 
						|
$_['error_etsy']		 = 'Unable to link item, Etsy API response: ';
 | 
						|
$_['error_status']		 = 'Status filter required'; |