Cachet/resources/lang/zh-CN/cachet.php

118 lines
4.3 KiB
PHP
Raw Normal View History

2015-04-19 00:00:29 +08:00
<?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.
*/
2015-04-19 00:00:29 +08:00
return [
// Components
'components' => [
'status' => [
2015-11-15 23:56:16 +08:00
1 => '运行正常',
2 => '负载较高',
2015-04-19 00:00:29 +08:00
3 => '部分停运',
4 => '严重停转',
],
],
// Incidents
'incidents' => [
2015-11-15 23:56:16 +08:00
'none' => '无故障报告',
'past' => '历史状态',
2015-04-19 00:00:29 +08:00
'previous_week' => '前一周',
'next_week' => '后一周',
2015-11-15 23:56:16 +08:00
'none' => '当日无故障',
2015-04-19 00:00:29 +08:00
'scheduled' => '计划维护',
'scheduled_at' => ',计划于 :timestamp',
'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' => [
2015-11-15 23:56:16 +08:00
'good' => '所有系统运行正常',
'bad' => '部分系统运行异常',
2015-04-19 00:00:29 +08:00
],
'api' => [
'regenerate' => '重新生成 API 密钥',
2015-11-11 10:53:36 +08:00
'revoke' => '注销 API 密钥',
2015-04-19 00:00:29 +08:00
],
// Metrics
'metrics' => [
'filter' => [
2015-11-11 10:53:36 +08: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' => '订阅最新的更新。',
'button' => '订阅',
2015-05-24 16:33:03 -05:00
'email' => [
2015-12-19 23:08:28 +08:00
'subscribe' => '订阅电子邮件更新。',
'subscribed' => '您已经订阅电子邮件通知,请检查您的电子邮件,确认您的订阅。',
'verified' => '您的电子邮件订阅已确认。谢谢!',
'unsubscribe' => '取消电子邮件订阅。',
'unsubscribed' => '您的电子邮件订阅已被取消。',
'failure' => '邮件订阅失败。',
'already-subscribed' => '邮箱 :email 已加入订阅,请勿重复订阅.',
'verify' => [
2015-06-23 22:00:05 +08:00
'text' => '请确认您的 :app_name 电子邮件订阅。\\n:link\\n此致:app_name',
'html-preheader' => '请确认您的 :app_name 状态更新邮件订阅。',
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
],
'maintenance' => [
2015-06-23 22:00:05 +08:00
'text' => '新的维护计划已被安排在 :app_name 上。\\n此致:app_name',
'html-preheader' => '新的维护计划已被安排在 :app_name 上。',
'html' => '<p>新的维护计划已被安排在 :app_name 上。</p><p>此致,:app_name</p>',
2015-05-24 16:33:03 -05:00
],
'incident' => [
2015-06-23 22:00:05 +08:00
'text' => ':app_name 有新事件报告。\\n此致:app_name',
'html-preheader' => ':app_name 有新事件报告。',
'html' => '<p>:app_name 有新事件报告。</p><p>此致,:app_name</p>',
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' => '注册',
'username' => '用户名',
'email' => '邮箱',
'password' => '密码',
'success' => '您的账号已注册成功。',
'failure' => '注册失败。',
],
2015-04-19 00:00:29 +08:00
// Other
2015-11-15 23:56:16 +08:00
'powered_by' => ':app 状态页托管服务由 <a href="https://cachethq.io">Cachet</a> 提供技术支持。',
'about_this_site' => '关于我们',
2015-06-23 22:00:05 +08:00
'rss-feed' => 'RSS 订阅',
'atom-feed' => 'Atom 订阅',
2015-04-19 00:00:29 +08:00
'feed' => '状态源',
];