Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/resources/lang/en/admin/nests.php
7460 views
1
<?php
2
3
return [
4
'notices' => [
5
'created' => 'A new nest, :name, has been successfully created.',
6
'deleted' => 'Successfully deleted the requested nest from the Panel.',
7
'updated' => 'Successfully updated the nest configuration options.',
8
],
9
'eggs' => [
10
'notices' => [
11
'imported' => 'Successfully imported this Egg and its associated variables.',
12
'updated_via_import' => 'This Egg has been updated using the file provided.',
13
'deleted' => 'Successfully deleted the requested egg from the Panel.',
14
'updated' => 'Egg configuration has been updated successfully.',
15
'script_updated' => 'Egg install script has been updated and will run whenever servers are installed.',
16
'egg_created' => 'A new egg was laid successfully. You will need to restart any running daemons to apply this new egg.',
17
],
18
],
19
'variables' => [
20
'notices' => [
21
'variable_deleted' => 'The variable ":variable" has been deleted and will no longer be available to servers once rebuilt.',
22
'variable_updated' => 'The variable ":variable" has been updated. You will need to rebuild any servers using this variable in order to apply changes.',
23
'variable_created' => 'New variable has successfully been created and assigned to this egg.',
24
],
25
],
26
];
27
28