 6b8a4776df
			
		
	
	
		6b8a4776df
		
	
	
	
	
		
			
			Please visit his website http://www.aadmm.org/fp-patch/ and read patch-description.txt to learn more about the details of the patch. I adapted the patch slighty: It now does not just add a __construct() function to the existing class-named one, instead it replaces it completely. Therefore, some parent::__construct() calls had to be changed, too.
		
			
				
	
	
		
			24 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			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'] = 'Last Comments Admin';
 | |
| 
 | |
| 	$lang['admin']['plugin']['lastcommentsadmin'] = array(
 | |
| 		'head'		=> '"Letzte Kommentare" Cache verwalten',
 | |
| 		'description'=>'Leert und erneuert den Inhalt für die "Letzte Kommentare" Cache Datei ',
 | |
| 		'clear'	=> 'Lösche Cache',
 | |
| 		'cleardescription' => 'Lösche die vorhandene "Letzte Kommentare" Cache Datei. Eine neue Datei wird nach dem Posten eines Kommentares wieder angelegt.',
 | |
| 		'rebuild' => 'Cache neu anlegen',
 | |
| 		'rebuilddescription' => 'Eine neue Cache Datei anlegen. Diese Funktion sucht in allen Blog Beiträgen nach Kommentaren und übernimmt diese in die neue Cache Datei. Das kann einige Zeit dauern, je nachdem wieviele Kommentare gefunden werden!',
 | |
| 	);
 | |
| 	$lang['admin']['plugin']['lastcommentsadmin']['msgs'] = array(
 | |
| 		1		=> 'Cache wurde erfolgreich gelöscht',
 | |
| 		2		=> 'Cache wurde erfolgreich erneuert',
 | |
| 		-1		=> 'Fehler!',
 | |
| 		-2	   =>  'Dieses Plugin benötigt das in Flatpress integrierte LastComment Plugin. Bitte dieses vorher im Plugin Bereich aktivieren!'
 | |
| 	);
 | |
| 	
 | |
| 
 | |
| ?>
 |