2014-12-01 16:37:37 +00:00
|
|
|
<?php
|
|
|
|
|
2014-12-26 21:52:17 +00:00
|
|
|
return [
|
2014-12-01 16:37:37 +00:00
|
|
|
// Components
|
2015-01-05 11:12:34 +00:00
|
|
|
'components' => [
|
2014-12-20 21:20:17 +00:00
|
|
|
'status' => [
|
2014-12-01 16:37:37 +00:00
|
|
|
1 => 'Operational',
|
|
|
|
2 => 'Performance Issues',
|
|
|
|
3 => 'Partial Outage',
|
2014-12-20 21:20:17 +00:00
|
|
|
4 => 'Major Outage',
|
|
|
|
],
|
|
|
|
],
|
2015-01-05 11:12:34 +00:00
|
|
|
|
2014-12-01 16:37:37 +00:00
|
|
|
// Incidents
|
2015-01-05 11:12:34 +00:00
|
|
|
'incidents' => [
|
|
|
|
'none' => 'No incidents reported.',
|
|
|
|
'past' => 'Past incidents',
|
|
|
|
'previous_week' => 'Previous week',
|
|
|
|
'next_week' => 'Next week',
|
|
|
|
'none' => 'Nothing to report',
|
|
|
|
'status' => [
|
2014-12-01 16:37:37 +00:00
|
|
|
1 => 'Investigating',
|
|
|
|
2 => 'Identified',
|
|
|
|
3 => 'Watching',
|
2014-12-20 21:20:17 +00:00
|
|
|
4 => 'Fixed',
|
|
|
|
],
|
|
|
|
],
|
2015-01-05 11:12:34 +00:00
|
|
|
|
2014-12-01 16:37:37 +00:00
|
|
|
// Service Status
|
2014-12-20 21:20:17 +00:00
|
|
|
'service' => [
|
2014-12-01 16:37:37 +00:00
|
|
|
'good' => 'All systems are functional.',
|
2014-12-20 21:20:17 +00:00
|
|
|
'bad' => 'Some systems are experiencing issues.',
|
|
|
|
],
|
2015-01-05 11:12:34 +00:00
|
|
|
|
|
|
|
'api' => [
|
|
|
|
'regenerate' => 'Regenerate API Key',
|
|
|
|
'revoke' => 'Revoke API Key',
|
|
|
|
],
|
|
|
|
|
2014-12-01 16:37:37 +00:00
|
|
|
// Other
|
2015-01-05 10:29:52 +00:00
|
|
|
'powered_by' => ':app Status Page is powered by <a href="https://cachethq.io">Cachet</a>.',
|
2014-12-31 14:59:46 +00:00
|
|
|
'about_this_site' => 'About this site',
|
2015-01-05 11:12:34 +00:00
|
|
|
'rss-feed' => 'RSS Feed',
|
|
|
|
'atom-feed' => 'Atom Feed',
|
|
|
|
'feed' => 'Status Feed',
|
|
|
|
|
2014-12-26 21:52:17 +00:00
|
|
|
];
|