Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/resources/lang/en/admin/server.php
7460 views
1
<?php
2
3
return [
4
'exceptions' => [
5
'no_new_default_allocation' => 'You are attempting to delete the default allocation for this server but there is no fallback allocation to use.',
6
'marked_as_failed' => 'This server was marked as having failed a previous installation. Current status cannot be toggled in this state.',
7
'bad_variable' => 'There was a validation error with the :name variable.',
8
'daemon_exception' => 'There was an exception while attempting to communicate with the daemon resulting in a HTTP/:code response code. This exception has been logged. (request id: :request_id)',
9
'default_allocation_not_found' => 'The requested default allocation was not found in this server\'s allocations.',
10
],
11
'alerts' => [
12
'startup_changed' => 'The startup configuration for this server has been updated. If this server\'s nest or egg was changed a reinstall will be occurring now.',
13
'server_deleted' => 'Server has successfully been deleted from the system.',
14
'server_created' => 'Server was successfully created on the panel. Please allow the daemon a few minutes to completely install this server.',
15
'build_updated' => 'The build details for this server have been updated. Some changes may require a restart to take effect.',
16
'suspension_toggled' => 'Server suspension status has been changed to :status.',
17
'rebuild_on_boot' => 'This server has been marked as requiring a Docker Container rebuild. This will happen the next time the server is started.',
18
'install_toggled' => 'The installation status for this server has been toggled.',
19
'server_reinstalled' => 'This server has been queued for a reinstallation beginning now.',
20
'details_updated' => 'Server details have been successfully updated.',
21
'docker_image_updated' => 'Successfully changed the default Docker image to use for this server. A reboot is required to apply this change.',
22
'node_required' => 'You must have at least one node configured before you can add a server to this panel.',
23
'transfer_nodes_required' => 'You must have at least two nodes configured before you can transfer servers.',
24
'transfer_started' => 'Server transfer has been started.',
25
'transfer_not_viable' => 'The node you selected does not have the required disk space or memory available to accommodate this server.',
26
],
27
];
28
29