mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-24 11:43:33 +01:00
69 lines
1.8 KiB
PHP
Executable File
69 lines
1.8 KiB
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) James Brooks <james@cachethq.io>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
return [
|
|
// Components
|
|
'components' => [
|
|
'status' => [
|
|
1 => 'Operacional',
|
|
2 => 'Problemas de performance',
|
|
3 => 'Indisponibilidade parcial',
|
|
4 => 'Indisponibilidade total',
|
|
],
|
|
],
|
|
|
|
// Incidents
|
|
'incidents' => [
|
|
'none' => 'Nenhum incidente reportado.',
|
|
'past' => 'Incidentes anteriores',
|
|
'previous_week' => 'Semana anterior',
|
|
'next_week' => 'Próxima semana',
|
|
'none' => 'Nenhum incidente reportado.',
|
|
'scheduled' => '',
|
|
'scheduled_at' => '',
|
|
'status' => [
|
|
0 => '', // TODO: Hopefully remove this.
|
|
1 => 'Investigando',
|
|
2 => 'Identificado',
|
|
3 => 'Observando',
|
|
4 => 'Resolvido',
|
|
],
|
|
],
|
|
|
|
// Service Status
|
|
'service' => [
|
|
'good' => 'Todos os serviços estão operando normalmente.',
|
|
'bad' => 'Alguns serviços estão passando por problemas.',
|
|
],
|
|
|
|
'api' => [
|
|
'regenerate' => 'Gerar nova chave de API',
|
|
'revoke' => 'Revogar a chave de API',
|
|
],
|
|
|
|
// Metrics
|
|
'metrics' => [
|
|
'filter' => [
|
|
'hourly' => '',
|
|
'daily' => '',
|
|
'monthly' => '',
|
|
],
|
|
],
|
|
|
|
// Other
|
|
'powered_by' => ':app Esta Status Page é fornecida por <a href="https://cachethq.github.io">Cachet</a>.',
|
|
'about_this_site' => 'Sobre este site',
|
|
'rss-feed' => 'RSS Feed',
|
|
'atom-feed' => 'Atom Feed',
|
|
'feed' => 'Status Feed',
|
|
|
|
];
|