2017-05-06 10:04:21 +01:00
|
|
|
<?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 [
|
|
|
|
'component' => [
|
|
|
|
'status_update' => [
|
|
|
|
'mail' => [
|
2018-07-12 08:41:12 +01:00
|
|
|
'subject' => 'Component Status Updated',
|
|
|
|
'greeting' => 'A component\'s status was updated!',
|
2017-05-06 10:04:21 +01:00
|
|
|
'content' => ':name status changed from :old_status to :new_status.',
|
2018-07-12 08:41:12 +01:00
|
|
|
'action' => 'View',
|
2017-05-06 10:04:21 +01:00
|
|
|
],
|
|
|
|
'slack' => [
|
2018-07-12 08:41:12 +01:00
|
|
|
'title' => 'Component Status Updated',
|
2017-05-06 10:04:21 +01:00
|
|
|
'content' => ':name status changed from :old_status to :new_status.',
|
|
|
|
],
|
|
|
|
'sms' => [
|
|
|
|
'content' => ':name status changed from :old_status to :new_status.',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'incident' => [
|
|
|
|
'new' => [
|
|
|
|
'mail' => [
|
2018-07-12 08:41:12 +01:00
|
|
|
'subject' => 'New Incident Reported',
|
2017-05-06 10:04:21 +01:00
|
|
|
'greeting' => 'A new incident was reported at :app_name.',
|
|
|
|
'content' => 'Incident :name was reported',
|
2018-07-12 08:41:12 +01:00
|
|
|
'action' => 'View',
|
2017-05-06 10:04:21 +01:00
|
|
|
],
|
|
|
|
'slack' => [
|
|
|
|
'title' => 'Incident :name Reported',
|
|
|
|
'content' => 'A new incident was reported at :app_name',
|
|
|
|
],
|
|
|
|
'sms' => [
|
|
|
|
'content' => 'A new incident was reported at :app_name.',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'update' => [
|
|
|
|
'mail' => [
|
2018-07-12 08:41:12 +01:00
|
|
|
'subject' => 'Incident Updated',
|
2017-05-06 10:04:21 +01:00
|
|
|
'content' => ':name was updated',
|
|
|
|
'title' => ':name was updated to :new_status',
|
2018-07-12 08:41:12 +01:00
|
|
|
'action' => 'View',
|
2017-05-06 10:04:21 +01:00
|
|
|
],
|
|
|
|
'slack' => [
|
|
|
|
'title' => ':name Updated',
|
|
|
|
'content' => ':name was updated to :new_status',
|
|
|
|
],
|
|
|
|
'sms' => [
|
|
|
|
'content' => 'Incident :name was updated',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'schedule' => [
|
|
|
|
'new' => [
|
|
|
|
'mail' => [
|
2018-07-12 08:41:12 +01:00
|
|
|
'subject' => 'New Schedule Created',
|
2017-05-06 10:04:21 +01:00
|
|
|
'content' => ':name was scheduled for :date',
|
|
|
|
'title' => 'A new scheduled maintenance was created.',
|
2018-07-12 08:41:12 +01:00
|
|
|
'action' => 'View',
|
2017-05-06 10:04:21 +01:00
|
|
|
],
|
|
|
|
'slack' => [
|
2018-07-12 08:41:12 +01:00
|
|
|
'title' => 'New Schedule Created!',
|
2017-05-06 10:04:21 +01:00
|
|
|
'content' => ':name was scheduled for :date',
|
|
|
|
],
|
|
|
|
'sms' => [
|
|
|
|
'content' => ':name was scheduled for :date',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'subscriber' => [
|
|
|
|
'verify' => [
|
|
|
|
'mail' => [
|
2018-07-12 08:41:12 +01:00
|
|
|
'subject' => 'Verify Your Subscription',
|
2017-05-06 10:04:21 +01:00
|
|
|
'content' => 'Click to verify your subscription to :app_name status page.',
|
|
|
|
'title' => 'Verify your subscription to :app_name status page.',
|
2018-07-12 08:41:12 +01:00
|
|
|
'action' => 'Verify',
|
2017-05-06 10:04:21 +01:00
|
|
|
],
|
|
|
|
],
|
2019-07-13 09:22:54 +01:00
|
|
|
'manage' => [
|
|
|
|
'mail' => [
|
|
|
|
'subject' => 'Manage Your Subscription',
|
|
|
|
'content' => 'Click to manage your subscription to :app_name status page.',
|
|
|
|
'title' => 'Click to manage your subscription to :app_name status page.',
|
|
|
|
'action' => 'Manage subscription',
|
|
|
|
],
|
|
|
|
],
|
2017-05-06 10:04:21 +01:00
|
|
|
],
|
|
|
|
'system' => [
|
|
|
|
'test' => [
|
|
|
|
'mail' => [
|
2018-07-12 08:41:12 +01:00
|
|
|
'subject' => 'Ping from Cachet!',
|
|
|
|
'content' => 'This is a test notification from Cachet!',
|
2017-05-06 10:04:21 +01:00
|
|
|
'title' => '🔔',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'user' => [
|
|
|
|
'invite' => [
|
|
|
|
'mail' => [
|
2018-07-12 08:41:12 +01:00
|
|
|
'subject' => 'Your invitation is inside...',
|
|
|
|
'content' => 'You have been invited to join :app_name status page.',
|
2017-05-06 10:04:21 +01:00
|
|
|
'title' => 'You\'re invited to join :app_name status page.',
|
2018-07-12 08:41:12 +01:00
|
|
|
'action' => 'Accept',
|
2017-05-06 10:04:21 +01:00
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
2017-05-06 10:10:36 +00:00
|
|
|
];
|