38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| $lang ['admin'] ['panel'] ['main'] = 'Main';
 | |
| 
 | |
| $lang ['admin'] ['main'] ['default'] = array(
 | |
| 	'head' => 'Welcome to the administration area!',
 | |
| 	'descr' => 'Select an action',
 | |
| 
 | |
| 	'op1' => 'New Entry',
 | |
| 	'op1d' => 'Add a new entry',
 | |
| 	'op2' => 'Entries',
 | |
| 	'op2d' => 'Show  and manage all the entries',
 | |
| 	'op3' => 'Widgets',
 | |
| 	'op3d' => 'Manage sidebar, bottombar and topbar widgets',
 | |
| 	'op4' => 'Plugins',
 | |
| 	'op4d' => 'Install, enable, disable plugins',
 | |
| 	'op5' => 'Configuration',
 | |
| 	'op5d' => 'Customize your flatpress',
 | |
| 	'op6' => 'Maintenance',
 | |
| 	'op6d' => 'Clean and restore flatpress',
 | |
| 	// New admin theme
 | |
| 	'quick_menu' => 'Quick Menu',
 | |
| 	'welcome_back' => 'Welcome back',
 | |
| 	'can_do' => 'here you can do:',
 | |
| 	'last_comments' => 'Last comments',
 | |
| 	'add_new_entry' => 'Add new entry',
 | |
| 	'entry_name' => 'Entry Name',
 | |
| 	'entry_content' => 'Entry Content',
 | |
| 	'publish' => 'Publish',
 | |
| 	'saveandcontinue' => 'Save & Continue',
 | |
| 	'preview' => 'Preview',
 | |
| 	'help' => 'Help',
 | |
| 	'useful_links' => 'Here are some useful links:',
 | |
| 	'fp_home' => 'FlatPress Home',
 | |
| 	'fp_blog' => 'FlatPress Blog',
 | |
| 	'fp_forums' => 'FlatPress Forums',
 | |
| 	'fp_wiki' => 'FlatPress Wiki'
 | |
| );
 | 
