mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 02:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
    'notices' => [
 | 
						|
        'imported' => 'Successfully imported this Egg and its associated variables.',
 | 
						|
        'updated_via_import' => 'This Egg has been updated using the file provided.',
 | 
						|
        'deleted' => 'Successfully deleted the requested egg from the Panel.',
 | 
						|
        'updated' => 'Egg configuration has been updated successfully.',
 | 
						|
        'script_updated' => 'Egg install script has been updated and will run whenever servers are installed.',
 | 
						|
        'egg_created' => 'A new egg was laid successfully. You will need to restart any running daemons to apply this new egg.',
 | 
						|
    ],
 | 
						|
    'variables' => [
 | 
						|
        'notices' => [
 | 
						|
            'variable_deleted' => 'The variable ":variable" has been deleted and will no longer be available to servers once rebuilt.',
 | 
						|
            'variable_updated' => 'The variable ":variable" has been updated. You will need to rebuild any servers using this variable in order to apply changes.',
 | 
						|
            'variable_created' => 'New variable has successfully been created and assigned to this egg.',
 | 
						|
        ],
 | 
						|
    ],
 | 
						|
];
 |