2015-04-18 13:59:37 +01:00
|
|
|
<?php
|
|
|
|
|
2015-04-19 08:52:39 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Cachet.
|
|
|
|
*
|
|
|
|
* (c) James Brooks <james@cachethq.io>
|
2015-05-19 10:45:38 +01:00
|
|
|
* (c) Joseph Cohen <joseph.cohen@dinkbit.com>
|
|
|
|
* (c) Graham Campbell <graham@mineuk.com>
|
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-18 13:59:37 +01:00
|
|
|
return [
|
|
|
|
// Components
|
|
|
|
'components' => [
|
|
|
|
'status' => [
|
|
|
|
1 => 'Działa',
|
|
|
|
2 => 'Problemy wydajnościowe',
|
|
|
|
3 => 'Częściowa niedostępność',
|
|
|
|
4 => 'Poważna awaria',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
// Incidents
|
|
|
|
'incidents' => [
|
|
|
|
'none' => 'Brak incydentów.',
|
|
|
|
'past' => 'Poprzednie incydenty',
|
|
|
|
'previous_week' => 'Poprzedni tydzień',
|
|
|
|
'next_week' => 'Następny tydzień',
|
|
|
|
'none' => 'Brak incydentów',
|
|
|
|
'scheduled' => 'Zapowiedziane prace',
|
|
|
|
'scheduled_at' => ', scheduled :timestamp',
|
|
|
|
'status' => [
|
|
|
|
0 => 'Planowy', // TODO: Hopefully remove this.
|
|
|
|
1 => 'Szukanie',
|
|
|
|
2 => 'Zidentyfikowany',
|
|
|
|
3 => 'Obserwacja',
|
|
|
|
4 => 'Naprawiony',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
// Service Status
|
|
|
|
'service' => [
|
|
|
|
'good' => 'Wszystkie systemy sprawne.',
|
|
|
|
'bad' => 'Część systemów ma problemy.',
|
|
|
|
],
|
|
|
|
|
|
|
|
'api' => [
|
|
|
|
'regenerate' => 'Przegeneruj klucz API',
|
|
|
|
'revoke' => 'Odwołaj klucz API',
|
|
|
|
],
|
|
|
|
|
|
|
|
// Metrics
|
|
|
|
'metrics' => [
|
|
|
|
'filter' => [
|
|
|
|
'hourly' => 'Godzinowo',
|
|
|
|
'daily' => 'Dziennie',
|
|
|
|
'monthly' => 'Miesięcznie',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
// Other
|
|
|
|
'powered_by' => ':app Status Page is powered by <a href="https://cachethq.io">Cachet</a>.',
|
|
|
|
'about_this_site' => 'O tej stronie',
|
|
|
|
'rss-feed' => 'RSS Feed',
|
|
|
|
'atom-feed' => 'Atom Feed',
|
|
|
|
'feed' => 'Status Feed',
|
|
|
|
|
|
|
|
];
|