98 lines
2.5 KiB
PHP
Executable File
98 lines
2.5 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 => '正常',
|
|
2 => '效能問題',
|
|
3 => '部分停止運作',
|
|
4 => '停止運作',
|
|
],
|
|
],
|
|
|
|
// Incidents
|
|
'incidents' => [
|
|
'none' => '沒有任何報告',
|
|
'past' => '以前的事件',
|
|
'previous_week' => '上星期',
|
|
'next_week' => '下星期',
|
|
'none' => '沒有任何報告',
|
|
'scheduled' => '排程維護',
|
|
'scheduled_at' => ',於:timestamp',
|
|
'status' => [
|
|
0 => '排程中的維護', // TODO: Hopefully remove this.
|
|
1 => '調查中',
|
|
2 => '已辨明',
|
|
3 => '警戒中',
|
|
4 => '已修復',
|
|
],
|
|
],
|
|
|
|
// Service Status
|
|
'service' => [
|
|
'good' => '所有系統正常運轉',
|
|
'bad' => '部分系統出現異常。',
|
|
],
|
|
|
|
'api' => [
|
|
'regenerate' => '重新產生 API 金鑰',
|
|
'revoke' => '撤銷 API 密鑰',
|
|
],
|
|
|
|
// Metrics
|
|
'metrics' => [
|
|
'filter' => [
|
|
'hourly' => '每小時',
|
|
'daily' => '每天',
|
|
'monthly' => '每月',
|
|
],
|
|
],
|
|
|
|
// Subscriber
|
|
'subscriber' => [
|
|
'subscribe' => '',
|
|
'button' => '',
|
|
'email' => [
|
|
'subscribe' => '',
|
|
'subscribed' => '',
|
|
'verified' => '',
|
|
'unsubscribe' => '',
|
|
'unsubscribed' => '',
|
|
'failure' => '',
|
|
'verify' => [
|
|
'text' => '',
|
|
'html-preheader' => '',
|
|
'html' => '',
|
|
],
|
|
'maintenance' => [
|
|
'text' => '',
|
|
'html-preheader' => '',
|
|
'html' => '',
|
|
],
|
|
'incident' => [
|
|
'text' => '',
|
|
'html-preheader' => '',
|
|
'html' => '',
|
|
],
|
|
],
|
|
],
|
|
|
|
// Other
|
|
'powered_by' => ':app 狀態頁是由 <a href="https://cachethq.io">Cachet</a> 提供。',
|
|
'about_this_site' => '關於此網站',
|
|
'rss-feed' => '',
|
|
'atom-feed' => '',
|
|
'feed' => 'Status 訂閱',
|
|
|
|
];
|