43 lines
2.0 KiB
PHP
43 lines
2.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
'title' => 'Datacenters',
|
|
'subtitle' => 'Create and manage locations — hosts and orders pick from these.',
|
|
'empty' => 'No datacenters yet. Add your first one.',
|
|
'code' => 'Code',
|
|
'code_hint' => 'Short & unique, e.g. fsn, hel, nbg.',
|
|
// Why the field is locked, with the numbers that lock it. The code is baked
|
|
// into each host's DNS name (fsn-01) and into the machine's own hostname —
|
|
// a rename does not follow it there.
|
|
'code_locked' => 'No longer editable: :hosts host(s) and :orders order(s) depend on it. The code is part of their DNS names.',
|
|
'name' => 'Name',
|
|
// Which building, not which city. Optional and free text — it is the
|
|
// provider's label, and nothing in the system keys off it.
|
|
'facility' => 'Specific datacenter',
|
|
'facility_hint' => 'Optional, e.g. fsn-dc-15 — so the picker shows which one is meant.',
|
|
'location' => 'Location',
|
|
'location_hint' => 'Optional, e.g. DE, Falkenstein.',
|
|
'hosts' => 'Hosts',
|
|
'status' => 'Status',
|
|
'active' => 'Active',
|
|
'inactive' => 'Inactive',
|
|
'add' => 'Add datacenter',
|
|
'created' => 'Datacenter created.',
|
|
'updated' => 'Datacenter updated.',
|
|
'actions' => 'Actions',
|
|
'edit' => 'Edit',
|
|
'edit_title' => 'Edit datacenter',
|
|
'no_country' => 'No country',
|
|
'save' => 'Save',
|
|
'cancel' => 'Cancel',
|
|
'delete' => 'Delete',
|
|
'delete_title' => 'Delete datacenter?',
|
|
'delete_body' => '“:name” will be permanently removed. This cannot be undone.',
|
|
'delete_confirm' => 'Delete permanently',
|
|
'delete_blocked_title' => 'Cannot delete',
|
|
'delete_blocked_body' => '“:name” still has :count host(s). Remove or move the hosts first.',
|
|
'active_label' => 'Available for new placements',
|
|
'active_hint' => 'Switched off, no new hosts or orders are placed here. Anything already running keeps running.',
|
|
'deactivated_with_hosts' => 'Location switched off — :n host(s) keep running there.',
|
|
];
|