43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
'eyebrow' => 'Security',
|
|
'title' => 'Certificates',
|
|
'subtitle' => 'TLS expiry of monitored endpoints',
|
|
|
|
'scan_hint' => 'Checking certificates …',
|
|
|
|
// Add
|
|
'new_endpoint' => 'New endpoint',
|
|
'label_label' => 'Label',
|
|
'host_label' => 'Host',
|
|
'port_label' => 'Port',
|
|
'add' => 'Add',
|
|
|
|
// List
|
|
'no_endpoints_title' => 'No endpoints',
|
|
'no_endpoints' => 'No monitored endpoints yet. Add the first one above.',
|
|
'expires_in' => 'expires in :days days',
|
|
'expired_since' => 'expired :days days ago',
|
|
'expires_today' => 'expires today',
|
|
'issuer' => 'Issuer: :issuer',
|
|
'check_error' => 'unreachable',
|
|
'delete' => 'Remove',
|
|
|
|
// Status
|
|
'status_ok' => 'Valid',
|
|
'status_warning' => 'Due soon',
|
|
'status_critical' => 'Critical',
|
|
'status_expired' => 'Expired',
|
|
'status_error' => 'Error',
|
|
'status_unknown' => 'Unknown',
|
|
|
|
// Toasts
|
|
'added' => 'Endpoint :host added.',
|
|
'deleted' => 'Endpoint :host removed.',
|
|
|
|
// Delete confirm
|
|
'delete_heading' => 'Remove endpoint',
|
|
'delete_body' => 'The endpoint :host will no longer be monitored.',
|
|
];
|