2017-10-07 04:57:53 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
'notices' => [
|
|
|
|
'created' => 'A new nest, :name, has been successfully created.',
|
|
|
|
'deleted' => 'Successfully deleted the requested nest from the Panel.',
|
|
|
|
'updated' => 'Successfully updated the nest configuration options.',
|
|
|
|
],
|
|
|
|
'eggs' => [
|
|
|
|
'notices' => [
|
2017-10-09 02:36:22 +00:00
|
|
|
'imported' => 'Successfully imported this Egg and its associated variables.',
|
2017-10-09 04:50:52 +00:00
|
|
|
'updated_via_import' => 'This Egg has been updated using the file provided.',
|
2017-10-07 04:57:53 +00:00
|
|
|
'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.',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|