39 lines
		
	
	
		
			890 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			890 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| $lang ['admin'] ['head'] = 'Administration area';
 | |
| 
 | |
| $lang ['admin'] ['panels'] = array(
 | |
| 	'main' => 'Main',
 | |
| 	'config' => 'Options',
 | |
| 	// 'users' => 'Users',
 | |
| 	'entry' => 'Entries',
 | |
| 	'static' => 'Statics',
 | |
| 	'uploader' => 'Uploader',
 | |
| 	'widgets' => 'Widgets',
 | |
| 	// 'add' => 'Add',
 | |
| 	// 'edit' => 'Edit/Delete',
 | |
| 	'maintain' => 'Maintain',
 | |
| 	'plugin' => 'Plugins',
 | |
| 	'themes' => 'Themes'
 | |
| 	// 'updates' => 'Updates',
 | |
| );
 | |
| 
 | |
| $lang ['admin'] ['general'] = array(
 | |
| 	'id' => 'Id', // for entry ids
 | |
| 	'name' => 'Name', // for file names
 | |
| 	'title' => 'Title', // for entry/posts/static titles
 | |
| 	'comments' => '#Comms',
 | |
| 	'author' => 'Author',
 | |
| 	'actdel' => 'Delete',
 | |
| 	'actedit' => 'Edit',
 | |
| 	'actenable' => 'Enable',
 | |
| 	'actdisable' => 'Disable',
 | |
| 	// New admin panel
 | |
| 	'help_top'  => 'Help',
 | |
| 	'logout_top'    => 'Logout',
 | |
| 	'close'		=> 'Close',
 | |
| 	'blog'		=> 'Blog',
 | |
| 	'footer'	=> 'This blog is proudly powered by'
 | |
| );
 | |
| 
 | |
| ?>
 | 
