47 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
// Heading
 | 
						|
$_['heading_title']          = 'Categories';
 | 
						|
 | 
						|
// Text
 | 
						|
$_['text_success']           = 'Success: You have modified categories!';
 | 
						|
$_['text_list']              = 'Category List';
 | 
						|
$_['text_add']               = 'Add Category';
 | 
						|
$_['text_edit']              = 'Edit Category';
 | 
						|
$_['text_default']           = 'Default';
 | 
						|
$_['text_keyword']           = 'Do not use spaces, instead replace spaces with - and make sure the SEO URL is globally unique.';
 | 
						|
 | 
						|
// Column
 | 
						|
$_['column_name']            = 'Category Name';
 | 
						|
$_['column_sort_order']      = 'Sort Order';
 | 
						|
$_['column_action']          = 'Action';
 | 
						|
 | 
						|
// Entry
 | 
						|
$_['entry_name']             = 'Category Name';
 | 
						|
$_['entry_description']      = 'Description';
 | 
						|
$_['entry_meta_title'] 	     = 'Meta Tag Title';
 | 
						|
$_['entry_meta_keyword']     = 'Meta Tag Keywords';
 | 
						|
$_['entry_meta_description'] = 'Meta Tag Description';
 | 
						|
$_['entry_store']            = 'Stores';
 | 
						|
$_['entry_keyword']          = 'Keyword';
 | 
						|
$_['entry_parent']           = 'Parent';
 | 
						|
$_['entry_filter']           = 'Filters';
 | 
						|
$_['entry_image']            = 'Image';
 | 
						|
$_['entry_top']              = 'Top';
 | 
						|
$_['entry_column']           = 'Columns';
 | 
						|
$_['entry_sort_order']       = 'Sort Order';
 | 
						|
$_['entry_status']           = 'Status';
 | 
						|
$_['entry_layout']           = 'Layout Override';
 | 
						|
 | 
						|
// Help
 | 
						|
$_['help_filter']            = '(Autocomplete)';
 | 
						|
$_['help_top']               = 'Display in the top menu bar. Only works for the top parent categories.';
 | 
						|
$_['help_column']            = 'Number of columns to use for the bottom 3 categories. Only works for the top parent categories.';
 | 
						|
 | 
						|
// Error
 | 
						|
$_['error_warning']          = 'Warning: Please check the form carefully for errors!';
 | 
						|
$_['error_permission']       = 'Warning: You do not have permission to modify categories!';
 | 
						|
$_['error_name']             = 'Category Name must be between 1 and 255 characters!';
 | 
						|
$_['error_meta_title']       = 'Meta Title must be greater than 1 and less than 255 characters!';
 | 
						|
$_['error_keyword']          = 'SEO URL already in use!';
 | 
						|
$_['error_unique']           = 'SEO URL must be unique!';
 | 
						|
$_['error_parent']           = 'The parent category you have chosen is a child of the current one!'; |