mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-24 03:34:12 +01:00
32 lines
803 B
PHP
32 lines
803 B
PHP
<?php
|
|
|
|
return array(
|
|
// Components
|
|
'component' => array(
|
|
'status' => array(
|
|
1 => 'Operational',
|
|
2 => 'Performance Issues',
|
|
3 => 'Partial Outage',
|
|
4 => 'Major Outage'
|
|
)
|
|
),
|
|
// Incidents
|
|
'incident' => array(
|
|
'status' => array(
|
|
1 => 'Investigating',
|
|
2 => 'Identified',
|
|
3 => 'Watching',
|
|
4 => 'Fixed'
|
|
)
|
|
),
|
|
// Service Status
|
|
'service' => array(
|
|
'good' => 'All systems are functional.',
|
|
'bad' => 'Some systems are experiencing issues.',
|
|
),
|
|
// Other
|
|
'powered_by' => ':app Status Page is powered by <a href="https://cachethq.github.io">Cachet</a>.',
|
|
'logout' => 'Logout',
|
|
'dashboard_link' => 'You\'re logged in.',
|
|
);
|