34 lines
876 B
PHP
34 lines
876 B
PHP
<?php
|
|
|
|
// Dashboard / live metrics view (R16). English translation.
|
|
return [
|
|
// Page
|
|
'page_title' => 'Clusev — Dashboard',
|
|
'heading' => 'Overview',
|
|
|
|
// Service state labels (systemd ActiveState, operator wording)
|
|
'svc_online' => 'active',
|
|
'svc_warning' => 'degraded',
|
|
'svc_offline' => 'stopped',
|
|
|
|
// Utilisation chart
|
|
'utilization' => 'Utilization',
|
|
'utilization_subtitle' => 'CPU & Memory · 15 min',
|
|
'axis_minus_15min' => '-15 min',
|
|
'axis_now' => 'now',
|
|
|
|
// systemd services panel
|
|
'services_title' => 'systemd services',
|
|
'col_state' => 'State',
|
|
'no_service_data' => 'No service data — server not connected.',
|
|
|
|
// Audit panel
|
|
'audit_title' => 'Audit log',
|
|
'audit_subtitle' => 'recent events',
|
|
'no_events' => 'No events.',
|
|
|
|
// Cores (CPU)
|
|
'core' => 'core',
|
|
'cores' => 'cores',
|
|
];
|