35 lines
		
	
	
		
			784 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			784 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| 	$lang['admin']['head'] = 'Administrationsbereich';
 | |
| 	
 | |
| 	$lang['admin']['panels'] = array(
 | |
| 		'main'		=> 'Start',
 | |
| 		'config'	=> 'Konfiguration',
 | |
| 		//'users'		=> 'Users',
 | |
| 		'entry'		=> 'Beiträge',
 | |
| 		'static'	=> 'Seite',
 | |
| 		'uploader'	=> 'Uploader',
 | |
| 		'widgets'	=> 'Widgets',
 | |
| 		//'add'		=> 'Add',
 | |
| 		//'edit'		=> 'Edit/Delete',
 | |
| 		'maintain'	=> 'Wartung',
 | |
| 		'plugin'	=> 'Plugins',
 | |
| 		'themes'	=> 'Themes',
 | |
| 		//'updates'	=> 'Updates',
 | |
| 	);
 | |
| 	
 | |
| 	
 | |
| 	$lang['admin']['general'] = array(
 | |
| 		'id'		=> 'Id',	# for entry ids
 | |
| 		'name'		=> 'Name', 	# for file names
 | |
| 		'title'		=> 'Titel', # for entry/posts/static titles
 | |
| 		'comments'	=> '#Kommentare',
 | |
| 		'author'	=> 'Autor',
 | |
| 		'actdel'	=> 'Löschen',
 | |
| 		'actedit'	=> 'Bearbeiten',
 | |
| 		'actenable'	=> 'Aktivieren',
 | |
| 		'actdisable'=> 'Deaktivieren'
 | |
| 	);
 | |
| 
 | |
| ?>
 | 
