24 lines
		
	
	
		
			972 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			972 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 	$lang['plugin']['lastcommentsadmin ']['errors'] = array (
 | |
| 		-1	=> 'API key not set. Open the plugin to set your API key. Register on <a href="http://wordpress.com">Wordpress.com</a> to get one'
 | |
| 	);
 | |
| 
 | |
| 	$lang['admin']['plugin']['submenu']['lastcommentsadmin'] = 'Poslední komentáře';
 | |
| 
 | |
| 	$lang['admin']['plugin']['lastcommentsadmin'] = array(
 | |
| 		'head'		=> 'Poslední komentáře',
 | |
| 		'description'=>'Vymazání a obnovení mezipaměti komentářů',
 | |
| 		'clear'	=> 'Vymazat mezipamět',
 | |
| 		'cleardescription' => 'Smazat mezipamět komentářů. Nová mezipaměť bude vytvořena, když bude zveřejněn nový komentář.',
 | |
| 		'rebuild' => 'Obnovit mezipamět',
 | |
| 		'rebuilddescription' => 'Obnovení může trvat i delší dobu, nebo se nemusí podařit.',
 | |
| 	);
 | |
| 	$lang['admin']['plugin']['lastcommentsadmin']['msgs'] = array(
 | |
| 		1		=> 'Mezipamět smazána!',
 | |
| 		2		=> 'Mezipamět obnovena!',
 | |
| 		-1		=> 'Chyba!',
 | |
| 		-2	   => 'Tento plugin vyžaduje LastComments plugin!'
 | |
| 	);
 | |
| 	
 | |
| 
 | |
| ?>
 | 
