35 lines
		
	
	
		
			801 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			801 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| 	$lang['admin']['head'] = 'Administrace';
 | |
| 	
 | |
| 	$lang['admin']['panels'] = array(
 | |
| 		'main'		=> 'Hlavní',
 | |
| 		'config'	=> 'Nastavení',
 | |
| 		//'users'		=> 'Users',
 | |
| 		'entry'		=> 'Příspěvky',
 | |
| 		'static'	=> 'Statické stránky',
 | |
| 		'uploader'	=> 'Nahrát soubory',
 | |
| 		'widgets'	=> 'Rozložení stránky',
 | |
| 		//'add'		=> 'Add',
 | |
| 		//'edit'		=> 'Edit/Delete',
 | |
| 		'maintain'	=> 'Údržba',
 | |
| 		'plugin'	=> 'Pluginy',
 | |
| 		'themes'	=> 'Vzhled',
 | |
| 		//'updates'	=> 'Updates',
 | |
| 	);
 | |
| 	
 | |
| 	
 | |
| 	$lang['admin']['general'] = array(
 | |
| 		'id'		=> 'Id',	# for entry ids
 | |
| 		'name'		=> 'Jméno', 	# for file names
 | |
| 		'title'		=> 'Nadpis', # for entry/posts/static titles
 | |
| 		'comments'	=> '#Komentáře',
 | |
| 		'author'	=> 'Autor',
 | |
| 		'actdel'	=> 'Smazat',
 | |
| 		'actedit'	=> 'Upravit',
 | |
| 		'actenable'	=> 'Zapnout',
 | |
| 		'actdisable'=> 'Vypnout'
 | |
| 	);
 | |
| 
 | |
| ?>
 | 
