mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 21:49:01 +01:00
117 lines
4.3 KiB
PHP
Executable File
117 lines
4.3 KiB
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
return [
|
|
// Components
|
|
'components' => [
|
|
'status' => [
|
|
1 => 'Operational',
|
|
2 => 'Performance Issues',
|
|
3 => 'Partial Outage',
|
|
4 => 'Major Outage',
|
|
],
|
|
],
|
|
|
|
// Incidents
|
|
'incidents' => [
|
|
'none' => 'No Incidents Reported.',
|
|
'past' => 'Past Incidents',
|
|
'previous_week' => 'Previous Week',
|
|
'next_week' => 'Next Week',
|
|
'none' => 'Nothing to report.',
|
|
'scheduled' => 'Scheduled Maintenance',
|
|
'scheduled_at' => ', scheduled :timestamp',
|
|
'status' => [
|
|
0 => 'Scheduled', // TODO: Hopefully remove this.
|
|
1 => 'Investigating',
|
|
2 => 'Identified',
|
|
3 => 'Watching',
|
|
4 => 'Fixed',
|
|
],
|
|
],
|
|
|
|
// Service Status
|
|
'service' => [
|
|
'good' => 'All Systems Are Functional',
|
|
'bad' => 'Some Systems Are Experiencing Issues',
|
|
],
|
|
|
|
'api' => [
|
|
'regenerate' => 'Regenerate API Key',
|
|
'revoke' => 'Revoke API Key',
|
|
],
|
|
|
|
// Metrics
|
|
'metrics' => [
|
|
'filter' => [
|
|
'hourly' => 'Last 12 Hours',
|
|
'weekly' => 'Week',
|
|
'monthly' => 'Month',
|
|
],
|
|
],
|
|
|
|
// Subscriber
|
|
'subscriber' => [
|
|
'subscribe' => 'Subscribe to Get the Most Recent Updates',
|
|
'button' => 'Subscribe',
|
|
'email' => [
|
|
'subscribe' => 'Subscribe to email updates.',
|
|
'subscribed' => 'You\'ve been subscribed to email notifications, please check your email to confirm your subscription.',
|
|
'verified' => 'Your email subscription has been confirmed. Thank you!',
|
|
'unsubscribe' => 'Unsubscribe from email updates.',
|
|
'unsubscribed' => 'Your email subscription has been cancelled.',
|
|
'failure' => 'Something went wrong with the subscription.',
|
|
'verify' => [
|
|
'text' => "Please confirm your email subscription to :app_name status updates.\n:link\nThank you, :app_name",
|
|
'html-preheader' => 'Please confirm your email subscription to :app_name status updates.',
|
|
'html' => '<p>Please confirm your email subscription to :app_name status updates.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
|
],
|
|
'maintenance' => [
|
|
'text' => "New maintenance has been scheduled on :app_name.\nThank you, :app_name",
|
|
'html-preheader' => 'New maintenance has been scheduled on :app_name.',
|
|
'html' => '<p>New maintenance has been scheduled on :app_name.</p>',
|
|
],
|
|
'incident' => [
|
|
'text' => "New incident has been reported on :app_name.\nThank you, :app_name",
|
|
'html-preheader' => 'New incident has been reported on :app_name.',
|
|
'html' => '<p>New incident has been reported on :app_name.</p><p>Thank you, :app_name</p>',
|
|
],
|
|
],
|
|
],
|
|
|
|
'users' => [
|
|
'email' => [
|
|
'invite' => [
|
|
'text' => "You have been invited to the team :app_name status page, to sign up follow the next link.\n:link\nThank you, :app_name",
|
|
'html-preheader' => 'You have been invited to the team :app_name.',
|
|
'html' => '<p>You have been invited to the team :app_name status page, to sign up follow the next link.</p><p><a href=":link">:link</a></p><p>Thank you, :app_name</p>',
|
|
],
|
|
],
|
|
],
|
|
|
|
'signup' => [
|
|
'title' => 'Sign Up',
|
|
'username' => 'Username',
|
|
'email' => 'Email',
|
|
'password' => 'Password',
|
|
'success' => 'Your account has been created.',
|
|
'failure' => 'Something went wrong with the signup.',
|
|
],
|
|
|
|
// Other
|
|
'powered_by' => ':app Status Page is powered by <a href="https://cachethq.io" class="links">Cachet</a>.',
|
|
'about_this_site' => 'About This Site',
|
|
'rss-feed' => 'RSS',
|
|
'atom-feed' => 'Atom',
|
|
'feed' => 'Status Feed',
|
|
|
|
];
|