Cachet/resources/lang/en/cachet.php

98 lines
3.5 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of Cachet.
*
2015-07-06 17:37:01 +01:00
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2014-12-26 21:52:17 +00:00
return [
// Components
'components' => [
2014-12-20 21:20:17 +00:00
'status' => [
1 => 'Operational',
2 => 'Performance Issues',
3 => 'Partial Outage',
2014-12-20 21:20:17 +00:00
4 => 'Major Outage',
],
],
// Incidents
'incidents' => [
2015-10-27 20:17:22 +00:00
'none' => 'No Incidents Reported.',
2015-01-05 11:32:04 +00:00
'past' => 'Past incidents',
2015-10-27 20:17:22 +00:00
'previous_week' => 'Previous Week',
'next_week' => 'Next Week',
'none' => 'Nothing to report.',
'scheduled' => 'Scheduled Maintenance',
'scheduled_at' => ', scheduled :timestamp',
2015-01-05 11:32:04 +00:00
'status' => [
0 => 'Scheduled', // TODO: Hopefully remove this.
1 => 'Investigating',
2 => 'Identified',
3 => 'Watching',
2014-12-20 21:20:17 +00:00
4 => 'Fixed',
],
],
// Service Status
2014-12-20 21:20:17 +00:00
'service' => [
2015-10-27 20:17:22 +00:00
'good' => 'All Systems Are Functional',
'bad' => 'Some Systems Are Experiencing Issues',
2014-12-20 21:20:17 +00:00
],
'api' => [
'regenerate' => 'Regenerate API Key',
'revoke' => 'Revoke API Key',
],
// Metrics
'metrics' => [
'filter' => [
'hourly' => 'Last 12 Hours',
'weekly' => 'Week',
'monthly' => 'Month',
],
],
2015-05-24 16:33:03 -05:00
// Subscriber
'subscriber' => [
2015-10-27 20:17:22 +00:00
'subscribe' => 'Subscribe To Get The Most Recent Updates',
2015-05-24 16:33:03 -05:00
'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.',
2015-05-24 16:33:03 -05:00
'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.',
2015-07-10 13:08:35 -05:00
'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>',
2015-05-24 16:33:03 -05:00
],
2015-06-10 22:11:14 +01:00
'maintenance' => [
2015-05-24 16:33:03 -05:00
'text' => "New maintenance has been scheduled on :app_name.\nThank you, :app_name",
'html-preheader' => 'New maintenance has been scheduled on :app_name.',
2015-06-18 16:25:34 +01:00
'html' => '<p>New maintenance has been scheduled on :app_name.</p>',
2015-05-24 16:33:03 -05:00
],
2015-06-10 22:11:14 +01:00
'incident' => [
2015-05-24 16:33:03 -05:00
'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>',
],
],
],
// Other
2015-10-27 20:17:22 +00:00
'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',
2014-12-26 21:52:17 +00:00
];