mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-22 02:42:18 +01:00
60 lines
1.6 KiB
PHP
Executable File
60 lines
1.6 KiB
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) James Brooks <james@cachethq.io>
|
|
* (c) Joseph Cohen <joseph.cohen@dinkbit.com>
|
|
* (c) Graham Campbell <graham@mineuk.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
return [
|
|
// Components
|
|
'components' => [
|
|
'status' => [
|
|
1 => 'Funktionsfähig',
|
|
2 => 'Performance Probleme',
|
|
3 => 'Teilweise Ausfall',
|
|
4 => 'größerer Ausfall',
|
|
],
|
|
],
|
|
|
|
// Incidents
|
|
'incidents' => [
|
|
'none' => 'keine Vorfälle.',
|
|
'past' => 'vergangene Vorfälle',
|
|
'previous_week' => 'letzte Woche',
|
|
'next_week' => 'nächste Woche',
|
|
'none' => 'keine Vorfälle',
|
|
'status' => [
|
|
0 => '',
|
|
1 => 'Untersuchung läuft',
|
|
2 => 'Problem identifiziert',
|
|
3 => 'Problem unter Beobachtung',
|
|
4 => 'Problem behoben',
|
|
],
|
|
],
|
|
|
|
// Service Status
|
|
'service' => [
|
|
'good' => 'Alle Systeme laufen.',
|
|
'bad' => 'Bei einigen System sind Fehler aufgetreten.',
|
|
],
|
|
|
|
'api' => [
|
|
'regenerate' => 'API-Schlüssel generieren',
|
|
'revoke' => 'API-Schlüssel löschen',
|
|
],
|
|
|
|
// Other
|
|
'powered_by' => ':app Status-Seite via <a href="https://cachethq.io">Cachet</a>.',
|
|
'about_this_site' => 'Über diese Seite',
|
|
'rss-feed' => 'RSS Feed',
|
|
'atom-feed' => 'Atom Feed',
|
|
'feed' => 'Status Feed',
|
|
|
|
];
|