2015-01-13 10:13:11 +01: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-01-13 10:13:11 +01:00
return [
// Setup form fields
'setup' => [
'email' => 'E-Mail-Adresse' ,
'username' => 'Username' ,
'password' => 'Passwort' ,
'site_name' => 'Name der Seite' ,
'site_domain' => 'Domain der Seite' ,
'site_timezone' => 'Wählen Sie Ihre Zeitzone' ,
'site_locale' => 'Wählen Sie Ihre Sprache' ,
'enable_google2fa' => 'Aktivieren Sie Google Two Factor Authentication' ,
],
// Login form fields
'login' => [
2015-01-13 11:55:26 +00:00
'email' => 'Email' ,
'password' => 'Passwort' ,
'2fauth' => 'Authentifikations-Code' ,
2015-01-13 13:23:00 +01:00
'invalid' => 'Falsche E-Mail-Adresse oder falsches Passwort' ,
'invalid-token' => 'Token nicht korrekt' ,
2015-05-10 19:16:34 +01:00
'cookies' => 'You must enable cookies to login.' ,
2015-01-13 10:13:11 +01:00
],
// Incidents form fields
'incidents' => [
'name' => 'Name' ,
'status' => 'Status' ,
'message' => 'Nachricht' ,
'message-help' => 'Sie können auch Markdown benutzen.' ,
'templates' => [
'name' => 'Name' ,
'template' => 'Template' ,
],
],
// Components form fields
'components' => [
'name' => 'Name' ,
'status' => 'Status' ,
'group' => 'Gruppe' ,
'description' => 'Beschreibung' ,
'link' => 'Link' ,
'tags' => 'Tags' ,
2015-01-13 11:48:35 +01:00
'tags-help' => 'Bitte als Komma-separierte Liste angeben.' ,
2015-01-13 10:13:11 +01:00
'groups' => [
'name' => 'Name' ,
],
],
2015-01-21 02:32:18 -06:00
// Metric form fields
'metrics' => [
'name' => 'Name' ,
'suffix' => 'Suffix' ,
'description' => 'Description' ,
'description-help' => 'You may also use Markdown.' ,
'display-chart' => 'Display chart on status page?' ,
2015-03-17 16:41:23 +00:00
'calc_type' => 'Calculation of metrics' ,
'type_sum' => 'Sum' ,
'type_avg' => 'Average' ,
2015-01-21 02:32:18 -06:00
'points' => [
'value' => 'Value' ,
],
],
2015-01-13 10:13:11 +01:00
// Settings
'settings' => [
/// Application setup
'app-setup' => [
2015-06-13 17:20:02 +02:00
'site-name' => 'Name der Seite' ,
'site-url' => 'URL der Seite' ,
'site-timezone' => 'Wählen Sie Ihre Zeitzone' ,
'site-locale' => 'Wählen Sie Ihre Sprache' ,
'date-format' => 'Datumsformat' ,
'display-graphs' => 'Display graphs on status page?' ,
'about-this-page' => 'Über diese Seite' ,
'days-of-incidents' => 'Wie viele (vergangene) Tage sollen angezeigt werden?' ,
'banner' => 'Banner-Bild' ,
'banner-help' => 'Wählen Sie möglichst ein Bild mit 930 px Breite.' ,
'analytics_google' => 'Google Analytics code' ,
'analytics_gosquared' => 'GoSquared Analytics code' ,
'analytics_piwik_url' => 'URL of your Piwik instance (without http(s)://)' ,
'analytics_piwik_siteid' => 'Piwik\'s site id' ,
2015-01-13 10:13:11 +01:00
],
'security' => [
'allowed-domains' => 'Erlaubte Domains' ,
'allowed-domains-help' => 'Komma-Separiert. Die Domain die oben gesetzt ist, ist per Default erlaubt.' ,
],
'stylesheet' => [
'custom-css' => 'Eigenes Stylesheet' ,
],
'theme' => [
'background-color' => 'Hintergrund-Farbe' ,
'text-color' => 'Text-Farbe' ,
2015-07-28 16:19:47 +01:00
'dashboard-login' => 'Show dashboard button in the footer?' ,
2015-01-13 10:13:11 +01:00
],
],
'user' => [
'username' => 'Username' ,
'email' => 'E-Mail-Adresse' ,
'password' => 'Passwort' ,
'api-key' => 'API-Schlüssel' ,
'api-key-help' => 'Eine Regenerierung Ihres API-Schlüssels verhindert den Zugriff für alle vorhandenen Anwendungen.' ,
'2fa' => [
'help' => 'Zwei-Faktor-Authentifikation erhöht die Sicherheit Ihres Accounts. Sie müssen <a href="https://support.google.com/accounts/answer/1066447?hl=en">Google Authenticator</a>, <a href="https://fedorahosted.org/freeotp/" alt="OpenSource-Alternative">FreeOTP</a> oder andere OTP-Programme installieren. Wenn sie sich anschließend anmelden müssen Sie den in der App angezeigten Code eingeben.' ,
],
],
// Buttons
'add' => 'Hinzufügen' ,
'save' => 'Speichern' ,
'update' => 'Aktualsieren' ,
'create' => 'Erstellen' ,
'edit' => 'Editieren' ,
'delete' => 'Löschen' ,
'submit' => 'Speichern' ,
'cancel' => 'Abbrechen' ,
2015-01-06 11:43:32 +00:00
'remove' => 'Entfernen' ,
// Other
'optional' => '* Optional' ,
2015-01-13 10:13:11 +01:00
];