2015-04-19 00:00:29 +08:00
|
|
|
|
<?php
|
|
|
|
|
|
2015-04-19 08:52:39 +01:00
|
|
|
|
/*
|
|
|
|
|
* This file is part of Cachet.
|
|
|
|
|
*
|
2015-07-06 17:37:01 +01:00
|
|
|
|
* (c) Alt Three Services Limited
|
2015-04-19 08:52:39 +01:00
|
|
|
|
*
|
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
|
*/
|
|
|
|
|
|
2015-04-19 00:00:29 +08:00
|
|
|
|
return [
|
|
|
|
|
// Components
|
|
|
|
|
'components' => [
|
2016-04-17 17:17:29 +01:00
|
|
|
|
'last_updated' => '最后更新 :timestamp',
|
2016-03-20 16:26:21 +00:00
|
|
|
|
'status' => [
|
2015-11-15 23:56:16 +08:00
|
|
|
|
1 => '运行正常',
|
|
|
|
|
2 => '负载较高',
|
2016-01-29 22:05:05 +00:00
|
|
|
|
3 => 'Partial Outage',
|
|
|
|
|
4 => 'Major Outage',
|
2015-04-19 00:00:29 +08:00
|
|
|
|
],
|
2016-03-20 16:26:21 +00:00
|
|
|
|
'group' => [
|
|
|
|
|
'other' => '其他组件',
|
|
|
|
|
],
|
2015-04-19 00:00:29 +08:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
// Incidents
|
|
|
|
|
'incidents' => [
|
2016-03-15 17:25:56 +00:00
|
|
|
|
'none' => '无故障报告',
|
2015-11-15 23:56:16 +08:00
|
|
|
|
'past' => '历史状态',
|
2015-04-19 00:00:29 +08:00
|
|
|
|
'previous_week' => '前一周',
|
|
|
|
|
'next_week' => '后一周',
|
2016-01-29 22:05:05 +00:00
|
|
|
|
'scheduled' => 'Scheduled Maintenance',
|
|
|
|
|
'scheduled_at' => ', scheduled :timestamp',
|
2015-04-19 00:00:29 +08:00
|
|
|
|
'status' => [
|
2015-11-11 10:53:36 +08:00
|
|
|
|
0 => '计划中', // TODO: Hopefully remove this.
|
2015-11-15 23:56:16 +08:00
|
|
|
|
1 => '确认中',
|
|
|
|
|
2 => '修复中',
|
|
|
|
|
3 => '已更新',
|
|
|
|
|
4 => '已解决',
|
2015-04-19 00:00:29 +08:00
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
// Service Status
|
|
|
|
|
'service' => [
|
2016-03-15 17:25:56 +00:00
|
|
|
|
'good' => '[0,1] 系统工作正常|[2,Inf] 所有系统工作正常',
|
|
|
|
|
'bad' => '[0,1] 一个系统出现了问题|[2,Inf] 一些系统出现了问题',
|
|
|
|
|
'major' => '[0,1] 一个系统出现重大故障|[2,Inf] 一些系统出现重大故障',
|
2015-04-19 00:00:29 +08:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'api' => [
|
2016-01-29 22:05:05 +00:00
|
|
|
|
'regenerate' => 'Regenerate API Key',
|
2015-11-11 10:53:36 +08:00
|
|
|
|
'revoke' => '注销 API 密钥',
|
2015-04-19 00:00:29 +08:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
// Metrics
|
|
|
|
|
'metrics' => [
|
|
|
|
|
'filter' => [
|
2016-03-15 17:25:56 +00:00
|
|
|
|
'last_hour' => '上个小时',
|
2015-12-24 11:27:22 +00:00
|
|
|
|
'hourly' => '最近12小时',
|
|
|
|
|
'weekly' => '周',
|
|
|
|
|
'monthly' => '月',
|
2015-04-19 00:00:29 +08:00
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
|
2015-05-24 16:33:03 -05:00
|
|
|
|
// Subscriber
|
|
|
|
|
'subscriber' => [
|
2015-06-23 22:00:05 +08:00
|
|
|
|
'subscribe' => '订阅最新的更新。',
|
2016-01-29 22:05:05 +00:00
|
|
|
|
'button' => 'Subscribe',
|
2016-03-20 16:26:21 +00:00
|
|
|
|
'manage' => [
|
2016-04-17 17:17:29 +01:00
|
|
|
|
'no_subscriptions' => '您当前已订阅所有更新。',
|
|
|
|
|
'my_subscriptions' => '您当前已订阅下列更新',
|
2016-03-20 16:26:21 +00:00
|
|
|
|
],
|
|
|
|
|
'email' => [
|
2016-01-29 22:05:05 +00:00
|
|
|
|
'subscribe' => 'Subscribe to email updates.',
|
2015-12-19 23:08:28 +08:00
|
|
|
|
'subscribed' => '您已经订阅电子邮件通知,请检查您的电子邮件,确认您的订阅。',
|
2016-01-29 22:05:05 +00:00
|
|
|
|
'verified' => 'Your email subscription has been confirmed. Thank you!',
|
2016-03-20 16:26:21 +00:00
|
|
|
|
'manage' => '管理您的订阅',
|
2015-12-19 23:08:28 +08:00
|
|
|
|
'unsubscribe' => '取消电子邮件订阅。',
|
2016-01-29 22:05:05 +00:00
|
|
|
|
'unsubscribed' => 'Your email subscription has been cancelled.',
|
|
|
|
|
'failure' => 'Something went wrong with the subscription.',
|
2016-03-20 16:26:21 +00:00
|
|
|
|
'already-subscribed' => '无法订阅,因为这个邮箱地址 ( :email ) 已经在订阅列表中了。',
|
2015-12-19 23:08:28 +08:00
|
|
|
|
'verify' => [
|
2016-01-29 22:05:05 +00:00
|
|
|
|
'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>请确认您的 :app_name 电子邮件订阅。</p><p><a href=":link">:link</a></p><p>此致,:app_name</p>',
|
2015-05-24 16:33:03 -05:00
|
|
|
|
],
|
2015-06-16 09:07:49 +01:00
|
|
|
|
'maintenance' => [
|
2016-01-29 22:05:05 +00: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-23 22:00:05 +08:00
|
|
|
|
'html' => '<p>新的维护计划已被安排在 :app_name 上。</p><p>此致,:app_name</p>',
|
2015-05-24 16:33:03 -05:00
|
|
|
|
],
|
2015-06-16 09:07:49 +01:00
|
|
|
|
'incident' => [
|
2016-01-29 22:05:05 +00: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>',
|
|
|
|
|
],
|
|
|
|
|
'component' => [
|
2016-03-15 17:25:56 +00:00
|
|
|
|
'subject' => '组件状态更新',
|
|
|
|
|
'text' => 'component :component_name 的状态已经更新。component现在的状态为: component_human_status。\n谢谢, :app_name',
|
|
|
|
|
'html-preheader' => 'component 更新来自:app_name',
|
|
|
|
|
'html' => '<p>component :component_name 已经被变更。component正在component_human_status。</p><p>谢谢, :app_name</p>',
|
|
|
|
|
'tooltip-title' => '订阅来自 component_name 的更新',
|
2015-05-24 16:33:03 -05:00
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
|
2015-11-11 10:53:36 +08:00
|
|
|
|
'users' => [
|
|
|
|
|
'email' => [
|
|
|
|
|
'invite' => [
|
|
|
|
|
'text' => "您已被邀请加入 :app_name 团队的状态页, 请点击以下链接进行注册。\n:link\n谢谢, :app_name",
|
|
|
|
|
'html-preheader' => '您已被邀请加入 :app_name.',
|
|
|
|
|
'html' => '<p>您已被邀请加入 :app_name 团队的状态页, 请点击以下链接进行注册。</p><p><a href=":link">:link</a></p><p>谢谢, :app_name</p>',
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'signup' => [
|
|
|
|
|
'title' => '注册',
|
2016-01-29 22:05:05 +00:00
|
|
|
|
'username' => 'Username',
|
|
|
|
|
'email' => '电子邮箱',
|
|
|
|
|
'password' => 'Password',
|
2015-11-11 10:53:36 +08:00
|
|
|
|
'success' => '您的账号已注册成功。',
|
|
|
|
|
'failure' => '注册失败。',
|
|
|
|
|
],
|
|
|
|
|
|
2016-01-29 22:05:05 +00:00
|
|
|
|
'system' => [
|
2016-03-15 17:25:56 +00:00
|
|
|
|
'update' => '有新版的Cachet可用,您可以<a href="https://docs.cachethq.io/docs/updating-cachet">点击这里</a>获取更新咨询',
|
2016-01-29 22:05:05 +00:00
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
// Modal
|
|
|
|
|
'modal' => [
|
2016-03-15 17:25:56 +00:00
|
|
|
|
'close' => '关闭',
|
2016-01-29 22:05:05 +00:00
|
|
|
|
'subscribe' => [
|
2016-03-15 17:25:56 +00:00
|
|
|
|
'title' => '订阅组件状态更新',
|
|
|
|
|
'body' => '请输入您用于接收订阅该组件更新通知的电子邮箱。如果您已经订阅,您应已收到关于这个组件的一系列电子邮件。',
|
2016-01-29 22:05:05 +00:00
|
|
|
|
'button' => 'Subscribe',
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
|
2015-04-19 00:00:29 +08:00
|
|
|
|
// Other
|
2016-04-17 17:17:29 +01:00
|
|
|
|
'home' => '主屏幕',
|
2016-03-20 16:26:21 +00:00
|
|
|
|
'description' => 'Stay up to date with the latest service updates from :app.',
|
2015-11-15 23:56:16 +08:00
|
|
|
|
'powered_by' => ':app 状态页托管服务由 <a href="https://cachethq.io">Cachet</a> 提供技术支持。',
|
|
|
|
|
'about_this_site' => '关于我们',
|
2016-01-29 22:05:05 +00:00
|
|
|
|
'rss-feed' => 'RSS',
|
|
|
|
|
'atom-feed' => 'Atom',
|
|
|
|
|
'feed' => 'Status Feed',
|
2015-04-19 00:00:29 +08:00
|
|
|
|
|
|
|
|
|
];
|