53 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 	
 | |
| 	$lang['admin']['panel']['maintain'] = 'Maintainance';
 | |
| 
 | |
| 	$lang['admin']['maintain']['default'] = array(
 | |
| 		'head'		=> 'Maintenaince',
 | |
| 		'descr'		=> 'Come here when you think something got messed, '.
 | |
| 					'and maybe here you\'ll find a solution.
 | |
| 					However this might not work.',
 | |
| 		'opt0'		=> '« Back to main menu',
 | |
| 		'opt1'		=> 'Rebuild index',
 | |
| 		'opt2'		=> 'Purge theme and templates cache',
 | |
| 		'opt3'		=> 'Restore file permissions',
 | |
| 		'opt4'		=> 'Show info about PHP',
 | |
| 		'opt5'		=> 'Check for updates',
 | |
| 
 | |
| 		'chmod_info'	=> "The following file permissions <strong>could not</strong>
 | |
| 					be reset to 0777; probably file owner is not the same as the
 | |
| 					webserver's. Usually you can ignore this notice.",
 | |
| 		'help' => 'Help',
 | |
| 		'useful_links' => 'Here are some useful links:',
 | |
| 		'fp_home' => 'FlatPress Home',
 | |
| 		'fp_blog' => 'FlatPress Blog',
 | |
| 		'fp_forums' => 'FlatPress Forums',
 | |
| 		'fp_wiki' => 'FlatPress Wiki'
 | |
| 	);
 | |
| 	
 | |
| 	$lang['admin']['maintain']['default']['msgs'] = array(
 | |
| 		1		=> 'Operation completed'
 | |
| 	);
 | |
| 	
 | |
| 	$lang['admin']['maintain']['updates'] = array(
 | |
| 		'head'	=> 'Updates',
 | |
| 		'list'	=> '<ul>
 | |
| 		<li>You have FlatPress version <big>%s</big></li>
 | |
| 		<li>Last stable version for FlatPress is <big><a href="%s">%s</a></big></li>
 | |
| 		<li>Last unstable version for FlatPress is <big><a href="%s">%s</a></big></li>
 | |
| 		</ul>',
 | |
| 		'notice'=>'Notice:',
 | |
| 		// New admin theme
 | |
| 		'no_news' => 'There is not new flatpress notices :('
 | |
| 	);
 | |
| 	
 | |
| 	
 | |
| 	
 | |
| 	$lang['admin']['maintain']['updates']['msgs'] = array(
 | |
| 		1		=> 'There are updates available!',
 | |
| 		2		=> 'You are already up-to-date',
 | |
| 		-1		=> 'Unable to retrieve updates'
 | |
| 	);
 | |
| 
 | |
| ?>
 | 
