33 lines
1.0 KiB
PHP
33 lines
1.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
'title' => 'Dashboard',
|
|
'subtitle' => 'Live status of system and services.',
|
|
|
|
// health banner
|
|
'health_ok_title' => 'All services online',
|
|
'health_ok_body' => 'The system is running with no known issues.',
|
|
'health_problem_title' => '{1}One service has an issue|[2,*]:count services have issues',
|
|
'health_problem_body' => 'Please check the affected services below.',
|
|
|
|
// services
|
|
'services_title' => 'Services',
|
|
'svc_database' => 'Database',
|
|
'svc_cache' => 'Cache / Redis',
|
|
'svc_realtime' => 'Realtime',
|
|
'svc_queue' => 'Queue worker',
|
|
'svc_unreachable'=> 'unreachable',
|
|
'svc_running' => 'running',
|
|
'svc_stopped' => 'stopped',
|
|
|
|
'refresh' => 'Refresh',
|
|
'checked_at' => 'Checked at :time',
|
|
|
|
// compact system info (versions — belongs to its own area later)
|
|
'system_title' => 'System',
|
|
'stack_framework' => 'Framework',
|
|
'stack_database' => 'Database',
|
|
'stack_realtime' => 'Realtime',
|
|
'stack_queue' => 'Queue',
|
|
];
|