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-01-16 14:05:53 +00:00
|
|
|
'subject' => '구성요소 상태 업데이트됨',
|
|
|
|
'greeting' => '구성요소의 상태가 업데이트 됐습니다!',
|
2017-05-06 10:04:21 +01:00
|
|
|
'content' => ':name status changed from :old_status to :new_status.',
|
2018-01-16 14:05:53 +00:00
|
|
|
'action' => '보기',
|
2017-05-06 10:04:21 +01:00
|
|
|
],
|
|
|
|
'slack' => [
|
2018-01-16 14:05:53 +00:00
|
|
|
'title' => '구성요소 상태 업데이트됨',
|
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-01-16 14:05:53 +00:00
|
|
|
'subject' => '신규 문제가 보고 됐습니다.',
|
2017-05-06 10:04:21 +01:00
|
|
|
'greeting' => 'A new incident was reported at :app_name.',
|
|
|
|
'content' => 'Incident :name was reported',
|
2018-01-16 14:05:53 +00:00
|
|
|
'action' => '보기',
|
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-01-16 14:05:53 +00:00
|
|
|
'subject' => '문제 보고',
|
2017-05-06 10:04:21 +01:00
|
|
|
'content' => ':name was updated',
|
|
|
|
'title' => ':name was updated to :new_status',
|
2018-01-16 14:05:53 +00:00
|
|
|
'action' => '보기',
|
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-01-16 14:05:53 +00:00
|
|
|
'subject' => '신규 일정이 생성됨',
|
2017-05-06 10:04:21 +01:00
|
|
|
'content' => ':name was scheduled for :date',
|
|
|
|
'title' => 'A new scheduled maintenance was created.',
|
2018-01-16 14:05:53 +00:00
|
|
|
'action' => '보기',
|
2017-05-06 10:04:21 +01:00
|
|
|
],
|
|
|
|
'slack' => [
|
2018-01-16 14:05:53 +00:00
|
|
|
'title' => '신규 일정이 생성됨!',
|
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-01-16 14:05:53 +00:00
|
|
|
'subject' => '구독 인증을 해주세요.',
|
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-01-16 14:05:53 +00:00
|
|
|
'action' => '인증',
|
2017-05-06 10:04:21 +01:00
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'system' => [
|
|
|
|
'test' => [
|
|
|
|
'mail' => [
|
2018-01-16 14:05:53 +00:00
|
|
|
'subject' => 'Cachet에서 온 핑!',
|
|
|
|
'content' => 'Cachet에서 보내는 테스트 알림 입니다!',
|
2017-05-06 10:04:21 +01:00
|
|
|
'title' => '🔔',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'user' => [
|
|
|
|
'invite' => [
|
|
|
|
'mail' => [
|
2018-01-16 14:05:53 +00:00
|
|
|
'subject' => '초대장이 안에 있습니다...',
|
|
|
|
'content' => '초대 받았습니다 : app_name 상태 페이지.',
|
2017-05-06 10:04:21 +01:00
|
|
|
'title' => 'You\'re invited to join :app_name status page.',
|
2018-01-16 14:05:53 +00:00
|
|
|
'action' => '수락하기',
|
2017-05-06 10:04:21 +01:00
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
2017-05-06 10:10:36 +00:00
|
|
|
];
|