Update language files
This commit is contained in:
@@ -195,7 +195,7 @@ class SetupController extends Controller
|
|||||||
});
|
});
|
||||||
|
|
||||||
$v->sometimes(['env.mail_address', 'env.mail_username', 'env.mail_password'], 'required', function ($input) {
|
$v->sometimes(['env.mail_address', 'env.mail_username', 'env.mail_password'], 'required', function ($input) {
|
||||||
return $input->env['mail_driver'] !== 'log';
|
return !in_array($input->env['mail_driver'], ['log', 'smtp']);
|
||||||
});
|
});
|
||||||
|
|
||||||
if ($v->passes()) {
|
if ($v->passes()) {
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+6
-6
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -7,7 +7,7 @@ module.exports = {
|
|||||||
cache_driver: null,
|
cache_driver: null,
|
||||||
queue_driver: null,
|
queue_driver: null,
|
||||||
session_driver: null,
|
session_driver: null,
|
||||||
mail_driver: null,
|
mail_driver: 'smtp',
|
||||||
},
|
},
|
||||||
mail: {
|
mail: {
|
||||||
host: null,
|
host: null,
|
||||||
@@ -19,8 +19,8 @@ module.exports = {
|
|||||||
password: null,
|
password: null,
|
||||||
|
|
||||||
requiresHost: true,
|
requiresHost: true,
|
||||||
requiresUsername: true,
|
requiresUsername: false,
|
||||||
requiresPassword: true,
|
requiresPassword: false,
|
||||||
},
|
},
|
||||||
system: {
|
system: {
|
||||||
name: null,
|
name: null,
|
||||||
@@ -40,6 +40,10 @@ module.exports = {
|
|||||||
this.mail.requiresHost = false
|
this.mail.requiresHost = false
|
||||||
this.mail.requiresUsername = true
|
this.mail.requiresUsername = true
|
||||||
this.mail.requiresPassword = true
|
this.mail.requiresPassword = true
|
||||||
|
} else if (driver === 'smtp') {
|
||||||
|
this.mail.requiresHost = true
|
||||||
|
this.mail.requiresUsername = false
|
||||||
|
this.mail.requiresPassword = false
|
||||||
} else {
|
} else {
|
||||||
this.mail.requiresHost = true
|
this.mail.requiresHost = true
|
||||||
this.mail.requiresUsername = true
|
this.mail.requiresUsername = true
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'O této stránce',
|
'about-this-page' => 'O této stránce',
|
||||||
'days-of-incidents' => 'Kolik dní incidentů zobrazovat?',
|
'days-of-incidents' => 'Kolik dní incidentů zobrazovat?',
|
||||||
'banner' => 'Obrázek banneru',
|
'banner' => 'Obrázek banneru',
|
||||||
'banner-help' => 'Doručuje se nenahrávat soubory větší než 930 pixelů na šířku.',
|
'banner-help' => "Doručuje se nenahrávat soubory větší než 930 pixelů na šířku.",
|
||||||
'subscribers' => 'Umožnit lidem, aby se přihlašovali k odběru e-mailových upozornění?',
|
'subscribers' => 'Umožnit lidem, aby se přihlašovali k odběru e-mailových upozornění?',
|
||||||
'skip_subscriber_verification' => 'Přestat ověřovat uživatele? (Pozor na spammery)',
|
'skip_subscriber_verification' => 'Přestat ověřovat uživatele? (Pozor na spammery)',
|
||||||
'automatic_localization' => 'Automaticky lokalizovat stránku do jazyka návštěvníka?',
|
'automatic_localization' => 'Automaticky lokalizovat stránku do jazyka návštěvníka?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Om',
|
'about-this-page' => 'Om',
|
||||||
'days-of-incidents' => 'Hvor mange dage skal der vises hændelser for?',
|
'days-of-incidents' => 'Hvor mange dage skal der vises hændelser for?',
|
||||||
'banner' => 'Banner billede',
|
'banner' => 'Banner billede',
|
||||||
'banner-help' => 'Det anbefales ikke at uploade billeder bredere end 930px.',
|
'banner-help' => "Det anbefales ikke at uploade billeder bredere end 930px.",
|
||||||
'subscribers' => 'Tillad folk at tilmelde sig email underretninger?',
|
'subscribers' => 'Tillad folk at tilmelde sig email underretninger?',
|
||||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||||
'automatic_localization' => 'Sæt automatisk sproget på din statusside til den besøgendes sprog?',
|
'automatic_localization' => 'Sæt automatisk sproget på din statusside til den besøgendes sprog?',
|
||||||
|
|||||||
@@ -0,0 +1,129 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Cachet.
|
||||||
|
*
|
||||||
|
* (c) Alt Three Services Limited
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
return [
|
||||||
|
// Components
|
||||||
|
'components' => [
|
||||||
|
'last_updated' => 'Letztes Update :timestamp',
|
||||||
|
'status' => [
|
||||||
|
0 => 'Unbekannt',
|
||||||
|
1 => 'Funktionsfähig',
|
||||||
|
2 => 'Leistungsprobleme',
|
||||||
|
3 => 'Teilweiser Ausfall',
|
||||||
|
4 => 'Schwerer Ausfall',
|
||||||
|
],
|
||||||
|
'group' => [
|
||||||
|
'other' => 'Andere Komponenten',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Incidents
|
||||||
|
'incidents' => [
|
||||||
|
'none' => 'Es liegen keine Ereignisse vor',
|
||||||
|
'past' => 'Vergangene Ereignisse',
|
||||||
|
'stickied' => 'Angepinnte Vorfälle',
|
||||||
|
'scheduled' => 'Geplante Wartungen',
|
||||||
|
'scheduled_at' => ', geplant :timestamp',
|
||||||
|
'posted' => 'Veröffentlicht :timestamp',
|
||||||
|
'status' => [
|
||||||
|
1 => 'Untersuchungen laufen',
|
||||||
|
2 => 'Identifiziert',
|
||||||
|
3 => 'Unter Beobachtung',
|
||||||
|
4 => 'Behoben',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Schedule
|
||||||
|
'schedules' => [
|
||||||
|
'status' => [
|
||||||
|
0 => 'Bevorstehend',
|
||||||
|
1 => 'In Bearbeitung',
|
||||||
|
2 => 'Abgeschlossen',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Service Status
|
||||||
|
'service' => [
|
||||||
|
'good' => '[0,1] System funktioniert einwandfrei|[2,Inf] Alle Systeme funktionieren einwandfrei',
|
||||||
|
'bad' => '[0,1] System hat momentan Probleme|[2,Inf] Mehrere Systeme haben momentan Probleme',
|
||||||
|
'major' => '[0,1] System hat ein schwerwiegendes Problem|[2,Inf] Mehrere Systeme haben ein schwerwiegendes Problem',
|
||||||
|
],
|
||||||
|
|
||||||
|
'api' => [
|
||||||
|
'regenerate' => 'API-Schlüssel erneuern',
|
||||||
|
'revoke' => 'API-Schlüssel widerrufen',
|
||||||
|
],
|
||||||
|
|
||||||
|
// Metrics
|
||||||
|
'metrics' => [
|
||||||
|
'filter' => [
|
||||||
|
'last_hour' => 'Letzte Stunde',
|
||||||
|
'hourly' => 'Letzte 12 Stunden',
|
||||||
|
'weekly' => 'Wöchentlich',
|
||||||
|
'monthly' => 'Monatlich',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Subscriber
|
||||||
|
'subscriber' => [
|
||||||
|
'subscribe' => 'Abonnieren Sie um die neuesten Updates zu erhalten.',
|
||||||
|
'unsubscribe' => 'Deabonnieren unter :link',
|
||||||
|
'button' => 'Abonnieren',
|
||||||
|
'manage' => [
|
||||||
|
'no_subscriptions' => 'Du hast im Augenblick alle Updates abonniert.',
|
||||||
|
'my_subscriptions' => 'Du hast im Augenblick folgende Updates abonniert.',
|
||||||
|
],
|
||||||
|
'email' => [
|
||||||
|
'subscribe' => 'Aktualisierungen per E-Mail abonnieren.',
|
||||||
|
'subscribed' => 'Sie haben E-Mail-Benachrichtigungen abonniert, überprüfen Sie bitte Ihre E-Mail, um Ihr Abonnement zu bestätigen.',
|
||||||
|
'verified' => 'Ihre E-Mail-Abonnement ist bestätigt worden. Danke!',
|
||||||
|
'manage' => 'Verwalte deine Abonnements',
|
||||||
|
'unsubscribe' => 'Abonnement widerrufen.',
|
||||||
|
'unsubscribed' => 'Ihre E-Mail-Abonnement wurde beendet.',
|
||||||
|
'failure' => 'Beim aktivieren des Abonnements ist ein Fehler aufgetreten.',
|
||||||
|
'already-subscribed' => 'Abonnement für :email konnte nicht registriert werden, da die E-Mail Adresse schon registriert ist.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'signup' => [
|
||||||
|
'title' => 'Registrieren',
|
||||||
|
'username' => 'Benutzername',
|
||||||
|
'email' => 'E-Mail',
|
||||||
|
'password' => 'Passwort',
|
||||||
|
'success' => 'Ihr Konto wurde erfolgreich erstellt.',
|
||||||
|
'failure' => 'Mit der Registrierung ist etwas schief gelaufen.',
|
||||||
|
],
|
||||||
|
|
||||||
|
'system' => [
|
||||||
|
'update' => 'Es ist eine neuere Version von Cachet verfügbar. Lerne <a href="https://docs.cachethq.io/docs/updating-cachet">hier</a>!, wie du updaten kannst!',
|
||||||
|
],
|
||||||
|
|
||||||
|
// Modal
|
||||||
|
'modal' => [
|
||||||
|
'close' => 'Schließen',
|
||||||
|
'subscribe' => [
|
||||||
|
'title' => 'Abonniere die Komponenten-Updates',
|
||||||
|
'body' => 'Gib deine E-Mail Adresse ein, um Updates für diesen Komponenten zu erhalten. Wenn du bereits abonniert bist, erhälst du schon Updates für diesen Komponenten.',
|
||||||
|
'button' => 'Abonnieren',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Other
|
||||||
|
'home' => 'Startseite',
|
||||||
|
'description' => 'Bleiben sie auf dem Laufenden mit den neuesten Service-Updates von :app.',
|
||||||
|
'powered_by' => 'Powered by <a href="https://cachethq.io" class="links">Cachet</a>.',
|
||||||
|
'timezone' => 'Uhrzeiten werden in :timezone angezeigt.',
|
||||||
|
'about_this_site' => 'Über diese Seite',
|
||||||
|
'rss-feed' => 'RSS',
|
||||||
|
'atom-feed' => 'Atom',
|
||||||
|
'feed' => 'Status-Feed',
|
||||||
|
|
||||||
|
];
|
||||||
@@ -0,0 +1,293 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Cachet.
|
||||||
|
*
|
||||||
|
* (c) Alt Three Services Limited
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
'dashboard' => 'Dashboard',
|
||||||
|
'writeable_settings' => 'Das Cachet-Konfigurationsverzeichnis ist nicht beschreibbar. Bitte stellen Sie sicher, dass <code>./ bootstrap/cachet</code> vom Webserver beschreibbar ist.',
|
||||||
|
|
||||||
|
// Incidents
|
||||||
|
'incidents' => [
|
||||||
|
'title' => 'Ereignisse & Termine',
|
||||||
|
'incidents' => 'Ereignisse',
|
||||||
|
'logged' => '{0} Es gibt keine Ereignisse, gute Arbeit.|Du hast ein Ereignis gemeldet.|Du hast <strong>:count</strong> Ereignisse gemeldet.',
|
||||||
|
'incident-create-template' => 'Vorlage erstellen',
|
||||||
|
'incident-templates' => 'Ereignis Vorlagen',
|
||||||
|
'updates' => '{0} Keine Updates|Ein Update|:count Updates',
|
||||||
|
'add' => [
|
||||||
|
'title' => 'Ereignis hinzufügen',
|
||||||
|
'success' => 'Ereignis hinzugefügt.',
|
||||||
|
'failure' => 'Es ist ein Fehler beim Hinzufügen der Störung aufgetreten. Bitte erneut versuchen.',
|
||||||
|
],
|
||||||
|
'edit' => [
|
||||||
|
'title' => 'Ereignis bearbeiten',
|
||||||
|
'success' => 'Ereignis aktualisiert.',
|
||||||
|
'failure' => 'Es ist ein Fehler beim Editieren der Störung aufgetreten. Bitte erneut versuchen.',
|
||||||
|
],
|
||||||
|
'delete' => [
|
||||||
|
'success' => 'Das Ereignis wurde gelöscht und wird nicht mehr angezeigt.',
|
||||||
|
'failure' => 'Die Störung konnte nicht gelöscht werden. Bitte versuche es erneut.',
|
||||||
|
],
|
||||||
|
'update' => [
|
||||||
|
'title' => 'Vorfall-Update erstellen',
|
||||||
|
'subtitle' => 'Ein Update zu <strong>:incident</strong> hinzufügen',
|
||||||
|
'success' => 'Update added.',
|
||||||
|
],
|
||||||
|
|
||||||
|
// Incident templates
|
||||||
|
'templates' => [
|
||||||
|
'title' => 'Ereignis Vorlagen',
|
||||||
|
'add' => [
|
||||||
|
'title' => 'Ereignisvorlage erstellen',
|
||||||
|
'message' => 'Du solltest eine Ereignis-Vorlage hinzufügen.',
|
||||||
|
'success' => 'Deine neue Ereignis-Vorlage wurde angelegt.',
|
||||||
|
'failure' => 'Etwas ist mit der Ereignis-Vorlage schief gelaufen.',
|
||||||
|
],
|
||||||
|
'edit' => [
|
||||||
|
'title' => 'Vorlage bearbeiten',
|
||||||
|
'success' => 'Die Ereignis-Vorlage wurde aktualisiert.',
|
||||||
|
'failure' => 'Etwas ist mit dem Aktualisieren der Ereignis-Vorlage schief gelaufen',
|
||||||
|
],
|
||||||
|
'delete' => [
|
||||||
|
'success' => 'Die Ereignis-Vorlage wurde gelöscht.',
|
||||||
|
'failure' => 'Die Ereignis-Vorlage konnte nicht gelöscht werden. Bitte versuche es erneut.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Incident Maintenance
|
||||||
|
'schedule' => [
|
||||||
|
'schedule' => 'Geplante Wartungen',
|
||||||
|
'logged' => '{0} Es gibt keine Zeitpläne, gute Arbeit.|Du hast einen Zeitplan erstellt.|Du hast <strong>:count</strong> Zeitpläne gemeldet.',
|
||||||
|
'scheduled_at' => 'Geplant am :timestamp',
|
||||||
|
'add' => [
|
||||||
|
'title' => 'Planmäßige Wartungsarbeiten hinzufügen',
|
||||||
|
'success' => 'Zeitplan hinzugefügt.',
|
||||||
|
'failure' => 'Etwas lief schief mit dem Hinzufügen des Zeitplans. Bitte versuchen Sie es erneut.',
|
||||||
|
],
|
||||||
|
'edit' => [
|
||||||
|
'title' => 'Planmäßige Wartung bearbeiten',
|
||||||
|
'success' => 'Zeitplan wurde aktualisiert!',
|
||||||
|
'failure' => 'Etwas lief schief mit dem Editieren des Zeitplans. Bitte versuchen Sie es erneut.',
|
||||||
|
],
|
||||||
|
'delete' => [
|
||||||
|
'success' => 'Der Zeitplan wurde gelöscht und wird nicht auf Ihrer Statusseite angezeigt.',
|
||||||
|
'failure' => 'Der Zeitplan konnte nicht gelöscht werden. Bitte versuchen Sie es erneut.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Components
|
||||||
|
'components' => [
|
||||||
|
'components' => 'Komponenten',
|
||||||
|
'component_statuses' => 'Komponentenstatus',
|
||||||
|
'listed_group' => 'Gruppenname :name',
|
||||||
|
'add' => [
|
||||||
|
'title' => 'Komponente hinzufügen',
|
||||||
|
'message' => 'Sie sollten eine Komponente erstellen.',
|
||||||
|
'success' => 'Komponente erstellt.',
|
||||||
|
'failure' => 'Etwas ist schief gelaufen mit der Komponenten-Gruppe, versuchen sie es erneut.',
|
||||||
|
],
|
||||||
|
'edit' => [
|
||||||
|
'title' => 'Komponente bearbeiten',
|
||||||
|
'success' => 'Komponente aktualisiert.',
|
||||||
|
'failure' => 'Etwas ist schief gelaufen mit der Komponenten-Gruppe, versuchen sie es erneut.',
|
||||||
|
],
|
||||||
|
'delete' => [
|
||||||
|
'success' => 'Die Komponente wurde gelöscht!',
|
||||||
|
'failure' => 'Die Komponente konnte nicht gelöscht werden. Bitte versuche es erneut.',
|
||||||
|
],
|
||||||
|
|
||||||
|
// Component groups
|
||||||
|
'groups' => [
|
||||||
|
'groups' => 'Komponentengruppe|Komponentengruppen',
|
||||||
|
'no_components' => 'Sie sollten eine Komponentengruppe hinzufügen.',
|
||||||
|
'add' => [
|
||||||
|
'title' => 'Eine Komponentengruppe hinzufügen',
|
||||||
|
'success' => 'Komponentengruppe hinzugefügt.',
|
||||||
|
'failure' => 'Etwas ist schief gelaufen mit der Komponenten-Gruppe, versuchen sie es erneut.',
|
||||||
|
],
|
||||||
|
'edit' => [
|
||||||
|
'title' => 'Komponentengruppe bearbeiten',
|
||||||
|
'success' => 'Komponentengruppe aktualisiert.',
|
||||||
|
'failure' => 'Etwas ist schief gelaufen mit der Komponenten-Gruppe, versuchen sie es erneut.',
|
||||||
|
],
|
||||||
|
'delete' => [
|
||||||
|
'success' => 'Die Komponentengruppe wurde gelöscht!',
|
||||||
|
'failure' => 'Die Komponentengruppe konnte nicht gelöscht werden. Bitte versuche es erneut.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Metrics
|
||||||
|
'metrics' => [
|
||||||
|
'metrics' => 'Metriken',
|
||||||
|
'add' => [
|
||||||
|
'title' => 'Metrik erstellen',
|
||||||
|
'message' => 'Du solltest eine Metrik hinzufügen.',
|
||||||
|
'success' => 'Metrik erstellt.',
|
||||||
|
'failure' => 'Es lieft etwas mit der Metrik schief, bitte nochmal versuchen.',
|
||||||
|
],
|
||||||
|
'edit' => [
|
||||||
|
'title' => 'Metrik bearbeiten',
|
||||||
|
'success' => 'Metrik aktualisiert.',
|
||||||
|
'failure' => 'Es lieft etwas mit der Metrik schief, bitte nochmal versuchen.',
|
||||||
|
],
|
||||||
|
'delete' => [
|
||||||
|
'success' => 'Die Metrik wurde gelöscht und wird nicht mehr angezeigt.',
|
||||||
|
'failure' => 'Die Metrik konnte nicht gelöscht werden. Bitte versuche es erneut.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
// Subscribers
|
||||||
|
'subscribers' => [
|
||||||
|
'subscribers' => 'Abonnenten',
|
||||||
|
'description' => 'Abonnenten erhalten E-Mail Updates, wenn Vorfälle erstellt oder Komponenten bearbeitet werden.',
|
||||||
|
'verified' => 'Bestätigt',
|
||||||
|
'not_verified' => 'Nicht Bestätigt',
|
||||||
|
'subscriber' => ':email, abonniert am :date',
|
||||||
|
'no_subscriptions' => 'Aktualisierungen per E-Mail abonnieren',
|
||||||
|
'add' => [
|
||||||
|
'title' => 'Einen neuen Abonnenten hinzufügen',
|
||||||
|
'success' => 'Abonnent hinzugefügt.',
|
||||||
|
'failure' => 'Etwas lief schief dem dem Hinzufügen eines Abonnenten. Bitte versuchen Sie es erneut.',
|
||||||
|
'help' => 'Gib jeden Abonnenten in eine neue Zeile ein.',
|
||||||
|
],
|
||||||
|
'edit' => [
|
||||||
|
'title' => 'Abonnent aktualisieren',
|
||||||
|
'success' => 'Abonnent aktualisiert.',
|
||||||
|
'failure' => 'Etwas lief schief mit dem Bearbeiten eines Abonnenten. Bitte versuchen sie es erneut.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Team
|
||||||
|
'team' => [
|
||||||
|
'team' => 'Team',
|
||||||
|
'member' => 'Mitglied',
|
||||||
|
'profile' => 'Profil',
|
||||||
|
'description' => 'Teammitglieder werden die Möglichkeit haben, Komponente sowie Vorfälle hinzuzufügen und zu verändern.',
|
||||||
|
'add' => [
|
||||||
|
'title' => 'Neues Teammitglied hinzufügen',
|
||||||
|
'success' => 'Teammitglied hinzugefügt.',
|
||||||
|
'failure' => 'Teammitglied konnte nicht hinzugefügt werden. Bitte versuchen Sie es erneut.',
|
||||||
|
],
|
||||||
|
'edit' => [
|
||||||
|
'title' => 'Profil aktualisieren',
|
||||||
|
'success' => 'Profil aktualisiert.',
|
||||||
|
'failure' => 'Etwas lief schief mit dem Aktualisieren des Profils. Bitte versuchen Sie es erneut.',
|
||||||
|
],
|
||||||
|
'delete' => [
|
||||||
|
'success' => 'Benutzer aktualisiert.',
|
||||||
|
'failure' => 'Teammitglied konnte nicht hinzugefügt werden. Bitte versuchen Sie es erneut.',
|
||||||
|
],
|
||||||
|
'invite' => [
|
||||||
|
'title' => 'Ein neues Teammitglied einladen',
|
||||||
|
'success' => 'Eine Einladung wurde verschickt',
|
||||||
|
'failure' => 'Diese Einladung konnte nicht versendet werden. Bitte versuchen Sie es erneut.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Settings
|
||||||
|
'settings' => [
|
||||||
|
'settings' => 'Einstellungen',
|
||||||
|
'app-setup' => [
|
||||||
|
'app-setup' => 'Anwendungsinstallation',
|
||||||
|
'images-only' => 'Es können nur Bilder hochgeladen werden.',
|
||||||
|
'too-big' => 'Die von Ihnen hochgeladene Datei ist zu groß. Sie können Dateien bis zu einer Maximalgröße von :size hochladen.',
|
||||||
|
],
|
||||||
|
'analytics' => [
|
||||||
|
'analytics' => 'Analytics',
|
||||||
|
],
|
||||||
|
'log' => [
|
||||||
|
'log' => 'Verlauf',
|
||||||
|
],
|
||||||
|
'localization' => [
|
||||||
|
'localization' => 'Standort',
|
||||||
|
],
|
||||||
|
'customization' => [
|
||||||
|
'customization' => 'Individualisierung',
|
||||||
|
'header' => 'Benutzerdefinierter HTML Header',
|
||||||
|
'footer' => 'Benutzerdefinierter HTML Footer',
|
||||||
|
],
|
||||||
|
'mail' => [
|
||||||
|
'mail' => 'E-Mail-Einstellungen',
|
||||||
|
'test' => 'Test',
|
||||||
|
'email' => [
|
||||||
|
'subject' => 'Test-Benachrichtigung von Cachet',
|
||||||
|
'body' => 'Dies ist ein Test-Benachrichtigung von Cachet.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'security' => [
|
||||||
|
'security' => 'Sicherheit',
|
||||||
|
'two-factor' => 'Nutzer ohne Zwei-Faktor-Authentifizierung',
|
||||||
|
],
|
||||||
|
'stylesheet' => [
|
||||||
|
'stylesheet' => 'Stylesheet',
|
||||||
|
],
|
||||||
|
'theme' => [
|
||||||
|
'theme' => 'Theme',
|
||||||
|
],
|
||||||
|
'edit' => [
|
||||||
|
'success' => 'Einstellungen gespeichert.',
|
||||||
|
'failure' => 'Einstellungen konnten nicht gespeichert werden.',
|
||||||
|
],
|
||||||
|
'credits' => [
|
||||||
|
'credits' => 'Danksagungen',
|
||||||
|
'contributors' => 'Unterstützer',
|
||||||
|
'license' => 'Cachet ist ein BSD-3-lizensiertes Open Source-Projekt, veröffentlicht von <a href="https://alt-three.com/?utm_source=cachet&utm_medium=credits&utm_campaign=Cachet%20Credit%20Dashboard" target="_blank">Alt Three Services Limited</a>.',
|
||||||
|
'backers-title' => 'Unterstützer & Sponsoren',
|
||||||
|
'backers' => 'Wenn Du die Entwicklung der Software unterstützen möchtest, kannst Du unter <a href="https://patreon.com/jbrooksuk" target="_blank">Cachet Patreon</a> einen Beitrag leisten.',
|
||||||
|
'thank-you' => 'Vielen Dank an jeden der :count Unterstützer.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Login
|
||||||
|
'login' => [
|
||||||
|
'login' => 'Einloggen',
|
||||||
|
'logged_in' => 'Sie sind eingeloggt.',
|
||||||
|
'welcome' => 'Willkommen zurück!',
|
||||||
|
'two-factor' => 'Bitte geben Sie Ihren Token ein.',
|
||||||
|
],
|
||||||
|
|
||||||
|
// Sidebar footer
|
||||||
|
'help' => 'Hilfe',
|
||||||
|
'status_page' => 'Statusseite',
|
||||||
|
'logout' => 'Abmelden',
|
||||||
|
|
||||||
|
// Notifications
|
||||||
|
'notifications' => [
|
||||||
|
'notifications' => 'Benachrichtigungen',
|
||||||
|
'awesome' => 'Großartig.',
|
||||||
|
'whoops' => 'Hoppla.',
|
||||||
|
],
|
||||||
|
|
||||||
|
// Widgets
|
||||||
|
'widgets' => [
|
||||||
|
'support' => 'Cachet unterstützen',
|
||||||
|
'support_subtitle' => 'Unterstütze uns unter <strong><a href="https://patreon.com/jbrooksuk" target="_blank">Patreon</a></strong>!',
|
||||||
|
'news' => 'Aktuelle Neuigkeiten',
|
||||||
|
'news_subtitle' => 'Erhalte die neusten Nachrichten',
|
||||||
|
],
|
||||||
|
|
||||||
|
// Welcome modal
|
||||||
|
'welcome' => [
|
||||||
|
'welcome' => 'Willkommen zu Deiner Status Seite!',
|
||||||
|
'message' => 'Ihre Statusseite ist fast fertig! Vielleicht möchten Sie diese zusätzlichen Einstellungen konfigurieren',
|
||||||
|
'close' => 'Gehe einfach direkt zu meinem Dashboard',
|
||||||
|
'steps' => [
|
||||||
|
'component' => 'Komponenten erstellen',
|
||||||
|
'incident' => 'Ereignis erstellen',
|
||||||
|
'customize' => 'Seite anpassen',
|
||||||
|
'team' => 'Benutzer hinzufügen',
|
||||||
|
'api' => 'API Token generieren',
|
||||||
|
'two-factor' => 'Zwei-Faktor-Authentifizierung',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
@@ -0,0 +1,240 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Cachet.
|
||||||
|
*
|
||||||
|
* (c) Alt Three Services Limited
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
// Setup form fields
|
||||||
|
'setup' => [
|
||||||
|
'email' => 'E-Mail',
|
||||||
|
'username' => 'Benutzername',
|
||||||
|
'password' => 'Passwort',
|
||||||
|
'site_name' => 'Seitenname',
|
||||||
|
'site_domain' => 'Domain ihrer Seite',
|
||||||
|
'site_timezone' => 'Wählen Sie Ihre Zeitzone',
|
||||||
|
'site_locale' => 'Wählen Sie Ihre Sprache',
|
||||||
|
'enable_google2fa' => 'Google Zwei-Faktor-Authentifizierung aktivieren',
|
||||||
|
'cache_driver' => 'Cache-Treiber',
|
||||||
|
'queue_driver' => 'Queue-Treiber',
|
||||||
|
'session_driver' => 'Sitzungs-Treiber',
|
||||||
|
'mail_driver' => 'Mail Protokoll',
|
||||||
|
'mail_host' => 'Mail Host',
|
||||||
|
'mail_address' => 'Absenderadresse',
|
||||||
|
'mail_username' => 'Mail Nutzername',
|
||||||
|
'mail_password' => 'Mail Passwort',
|
||||||
|
],
|
||||||
|
|
||||||
|
// Login form fields
|
||||||
|
'login' => [
|
||||||
|
'login' => 'Username oder E-Mail',
|
||||||
|
'email' => 'E-Mail',
|
||||||
|
'password' => 'Passwort',
|
||||||
|
'2fauth' => 'Authentifizierungscode',
|
||||||
|
'invalid' => 'Benutzername oder Passwort ungültig',
|
||||||
|
'invalid-token' => 'Token ist ungültig',
|
||||||
|
'cookies' => 'Sie müssen Cookies aktivieren um sich anzumelden.',
|
||||||
|
'rate-limit' => 'Maximale Anzahl von Bewertungen erreicht.',
|
||||||
|
'remember_me' => 'Eingeloggt bleiben',
|
||||||
|
],
|
||||||
|
|
||||||
|
// Incidents form fields
|
||||||
|
'incidents' => [
|
||||||
|
'name' => 'Name',
|
||||||
|
'status' => 'Status',
|
||||||
|
'component' => 'Komponente',
|
||||||
|
'message' => 'Nachricht',
|
||||||
|
'message-help' => 'Sie können auch Markdown verwenden.',
|
||||||
|
'occurred_at' => 'Wann ist dieser Vorfall aufgetreten?',
|
||||||
|
'notify_subscribers' => 'Abonnenten benachrichtigen',
|
||||||
|
'visibility' => 'Ereignis Sichtbarkeit',
|
||||||
|
'stick_status' => 'Vorfall anpinnen',
|
||||||
|
'stickied' => 'Angepinnt',
|
||||||
|
'not_stickied' => 'Nicht angepinnt',
|
||||||
|
'public' => 'Öffentlich sichtbar',
|
||||||
|
'logged_in_only' => 'Nur für angemeldete Benutzer sichtbar',
|
||||||
|
'templates' => [
|
||||||
|
'name' => 'Name',
|
||||||
|
'template' => 'Vorlage',
|
||||||
|
'twig' => 'Ereignis Vorlagen können den <a href="http://twig.sensiolabs.org/" target="_blank">Twig</a> Syntax nutzen.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'schedules' => [
|
||||||
|
'name' => 'Name',
|
||||||
|
'status' => 'Status',
|
||||||
|
'message' => 'Nachricht',
|
||||||
|
'message-help' => 'Sie können auch Markdown verwenden.',
|
||||||
|
'scheduled_at' => 'Für wann ist die Wartungsarbeit geplant?',
|
||||||
|
'completed_at' => 'Wann wurde diese Wartungsarbeit abgeschlossen?',
|
||||||
|
'templates' => [
|
||||||
|
'name' => 'Name',
|
||||||
|
'template' => 'Vorlage',
|
||||||
|
'twig' => 'Ereignis Vorlagen können den <a href="http://twig.sensiolabs.org/" target="_blank">Twig</a> Syntax nutzen.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Components form fields
|
||||||
|
'components' => [
|
||||||
|
'name' => 'Name',
|
||||||
|
'status' => 'Status',
|
||||||
|
'group' => 'Gruppe',
|
||||||
|
'description' => 'Beschreibung',
|
||||||
|
'link' => 'Link',
|
||||||
|
'tags' => 'Schlagwörter',
|
||||||
|
'tags-help' => 'Durch Kommata trennen.',
|
||||||
|
'enabled' => 'Component enabled?',
|
||||||
|
|
||||||
|
'groups' => [
|
||||||
|
'name' => 'Name',
|
||||||
|
'collapsing' => 'Optionen Anzeigen/Ausblenden',
|
||||||
|
'visible' => 'Immer erweitert',
|
||||||
|
'collapsed' => 'Die Gruppe standardmäßig ausblenden',
|
||||||
|
'collapsed_incident' => 'Die Gruppe standardmäßig ausblenden, aber erweitern wenn es Probleme gibt',
|
||||||
|
'visibility' => 'Sichtbarkeit',
|
||||||
|
'visibility_public' => 'Öffentlich sichtbar',
|
||||||
|
'visibility_authenticated' => 'Nur für angemeldete Benutzer sichtbar',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Action form fields
|
||||||
|
'actions' => [
|
||||||
|
'name' => 'Name',
|
||||||
|
'description' => 'Beschreibung',
|
||||||
|
'start_at' => 'Startzeit festlegen',
|
||||||
|
'timezone' => 'Zeitzone',
|
||||||
|
'schedule_frequency' => 'Häufigkeit festlegen (in Sekunden)',
|
||||||
|
'completion_latency' => 'Wartezeit bis zur Fertigstellung (in Sekunden)',
|
||||||
|
'group' => 'Gruppe',
|
||||||
|
'active' => 'Aktiv?',
|
||||||
|
'groups' => [
|
||||||
|
'name' => 'Gruppen Name',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Metric form fields
|
||||||
|
'metrics' => [
|
||||||
|
'name' => 'Name',
|
||||||
|
'suffix' => 'Suffix',
|
||||||
|
'description' => 'Beschreibung',
|
||||||
|
'description-help' => 'Sie können auch Markdown verwenden.',
|
||||||
|
'display-chart' => 'Diagramm auf der Statusseite anzeigen?',
|
||||||
|
'default-value' => 'Standardwert',
|
||||||
|
'calc_type' => 'Berechnung der Metrik',
|
||||||
|
'type_sum' => 'Summe',
|
||||||
|
'type_avg' => 'Durchschnitt',
|
||||||
|
'places' => 'Nachkommastellen',
|
||||||
|
'default_view' => 'Standardansicht',
|
||||||
|
'threshold' => 'Wie viele Minuten soll der Abstand zwischen den Messpunkten sein?',
|
||||||
|
'visibility' => 'Sichtbarkeit',
|
||||||
|
'visibility_authenticated' => 'Sichtbar für angemeldete Nutzer',
|
||||||
|
'visibility_public' => 'Sichtbar für alle',
|
||||||
|
'visibility_hidden' => 'Immer ausgeblendet',
|
||||||
|
|
||||||
|
'points' => [
|
||||||
|
'value' => 'Wert',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
// Settings
|
||||||
|
'settings' => [
|
||||||
|
// Application setup
|
||||||
|
'app-setup' => [
|
||||||
|
'site-name' => 'Seitenname',
|
||||||
|
'site-url' => 'URL ihrer Seite',
|
||||||
|
'display-graphs' => 'Graphen auf der Statusseite anzeigen?',
|
||||||
|
'about-this-page' => 'Über diese Seite',
|
||||||
|
'days-of-incidents' => 'Wie viele Tage mit Vorfällen sollen gezeigt werden?',
|
||||||
|
'banner' => 'Banner Bild',
|
||||||
|
'banner-help' => "Es wird empfohlen, dass Sie keine Dateien die breiter als 930 Pixel sind hochladen .",
|
||||||
|
'subscribers' => 'Personen die Anmeldung für E-Mail-Benachrichtigung erlauben?',
|
||||||
|
'skip_subscriber_verification' => 'Verifizierung der Nutzer überspringen? (Warnung, du könntest gespammt werden)',
|
||||||
|
'automatic_localization' => 'Die Status-Seite automatisch auf die Sprache deiner Besucher anpassen?',
|
||||||
|
'enable_external_dependencies' => 'Drittanbieter Abhängigkeiten erlauben (Google Schriftarten, Tracker, etc...)',
|
||||||
|
'show_timezone' => 'Zeitzone in der sich die Status-Seite befindet anzeigen.',
|
||||||
|
'only_disrupted_days' => 'Im Verlauf nur Tage mit Vorfällen anzeigen?',
|
||||||
|
],
|
||||||
|
'analytics' => [
|
||||||
|
'analytics_google' => 'Google Analytics Code',
|
||||||
|
'analytics_gosquared' => 'GoSquared Analytics Code',
|
||||||
|
'analytics_piwik_url' => 'URL der Piwik-Instanz (ohne http(s)://)',
|
||||||
|
'analytics_piwik_siteid' => 'Piwik\'s Seiten-ID',
|
||||||
|
],
|
||||||
|
'localization' => [
|
||||||
|
'site-timezone' => 'Zeitzone ihrer Seite',
|
||||||
|
'site-locale' => 'Sprache ihrer Seite',
|
||||||
|
'date-format' => 'Datumsformat',
|
||||||
|
'incident-date-format' => 'Ereignis Uhrzeit Format',
|
||||||
|
],
|
||||||
|
'security' => [
|
||||||
|
'allowed-domains' => 'Erlaubte Domains',
|
||||||
|
'allowed-domains-help' => 'Durch Kommata trennen. Die oben genannte Domain ist standardmäßig erlaubt.',
|
||||||
|
],
|
||||||
|
'stylesheet' => [
|
||||||
|
'custom-css' => 'Benutzerdefiniertes Stylesheet',
|
||||||
|
],
|
||||||
|
'theme' => [
|
||||||
|
'background-color' => 'Hintergrundfarbe',
|
||||||
|
'background-fills' => 'Hintergrunddateien (Komponenten, Vorfälle, Footer)',
|
||||||
|
'banner-background-color' => 'Banner Background Color',
|
||||||
|
'banner-padding' => 'Banner Padding',
|
||||||
|
'fullwidth-banner' => 'Enable fullwidth banner?',
|
||||||
|
'text-color' => 'Schriftfarbe',
|
||||||
|
'dashboard-login' => 'Dashboard-Button im Footer anzeigen?',
|
||||||
|
'reds' => 'Rot (Genutzt für Fehler)',
|
||||||
|
'blues' => 'Blau (Genutzt für Informationen)',
|
||||||
|
'greens' => 'Grün (Genutzt für Erfolgreich)',
|
||||||
|
'yellows' => 'Gelb (Genutzt für Warnungen)',
|
||||||
|
'oranges' => 'Orange (Genutzt für Nachrichten)',
|
||||||
|
'metrics' => 'Kennzahlen-Füllung',
|
||||||
|
'links' => 'Links',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'user' => [
|
||||||
|
'username' => 'Benutzername',
|
||||||
|
'email' => 'E-Mail',
|
||||||
|
'password' => 'Passwort',
|
||||||
|
'api-token' => 'API Token',
|
||||||
|
'api-token-help' => 'Wenn sie ihren API-Token neu generieren, können bestehende Anwendungen nicht mehr auf Cachet zugreifen.',
|
||||||
|
'gravatar' => 'Change your profile picture at Gravatar.',
|
||||||
|
'user_level' => 'Benutzerebene',
|
||||||
|
'levels' => [
|
||||||
|
'admin' => 'Admin',
|
||||||
|
'user' => 'Benutzer',
|
||||||
|
],
|
||||||
|
'2fa' => [
|
||||||
|
'help' => 'Die Zwei-Faktor-Authentifizierung erhöht die Sicherheit Ihres Kontos. Sie benötigen <a href="https://support.google.com/accounts/answer/1066447?hl=en">Google Authenticator</a> oder eine ähnliche App auf Ihrem Mobilgerät. Beim Anmelden werden sie aufgefordert, einen Token einzugeben, der von der App generiert wird.',
|
||||||
|
],
|
||||||
|
'team' => [
|
||||||
|
'description' => 'Invite your team members by entering their email addresses here.',
|
||||||
|
'email' => 'Email #:id',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
'general' => [
|
||||||
|
'timezone' => 'Zeitzone wählen',
|
||||||
|
],
|
||||||
|
|
||||||
|
// Buttons
|
||||||
|
'add' => 'Hinzufügen',
|
||||||
|
'save' => 'Speichern',
|
||||||
|
'update' => 'Aktualisieren',
|
||||||
|
'create' => 'Erstellen',
|
||||||
|
'edit' => 'Bearbeiten',
|
||||||
|
'delete' => 'Löschen',
|
||||||
|
'submit' => 'Abschicken',
|
||||||
|
'cancel' => 'Abbrechen',
|
||||||
|
'remove' => 'Entfernen',
|
||||||
|
'invite' => 'Einladen',
|
||||||
|
'signup' => 'Registrieren',
|
||||||
|
|
||||||
|
// Other
|
||||||
|
'optional' => '* optional',
|
||||||
|
];
|
||||||
@@ -0,0 +1,108 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Cachet.
|
||||||
|
*
|
||||||
|
* (c) Alt Three Services Limited
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
return [
|
||||||
|
'component' => [
|
||||||
|
'status_update' => [
|
||||||
|
'mail' => [
|
||||||
|
'subject' => 'Component Status Updated',
|
||||||
|
'greeting' => 'A component\'s status was updated!',
|
||||||
|
'content' => ':name status changed from :old_status to :new_status.',
|
||||||
|
'action' => 'View',
|
||||||
|
],
|
||||||
|
'slack' => [
|
||||||
|
'title' => 'Component Status Updated',
|
||||||
|
'content' => ':name status changed from :old_status to :new_status.',
|
||||||
|
],
|
||||||
|
'sms' => [
|
||||||
|
'content' => ':name status changed from :old_status to :new_status.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'incident' => [
|
||||||
|
'new' => [
|
||||||
|
'mail' => [
|
||||||
|
'subject' => 'New Incident Reported',
|
||||||
|
'greeting' => 'A new incident was reported at :app_name.',
|
||||||
|
'content' => 'Incident :name was reported',
|
||||||
|
'action' => 'View',
|
||||||
|
],
|
||||||
|
'slack' => [
|
||||||
|
'title' => 'Incident :name Reported',
|
||||||
|
'content' => 'A new incident was reported at :app_name',
|
||||||
|
],
|
||||||
|
'sms' => [
|
||||||
|
'content' => 'A new incident was reported at :app_name.',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'update' => [
|
||||||
|
'mail' => [
|
||||||
|
'subject' => 'Incident Updated',
|
||||||
|
'content' => ':name was updated',
|
||||||
|
'title' => ':name was updated to :new_status',
|
||||||
|
'action' => 'View',
|
||||||
|
],
|
||||||
|
'slack' => [
|
||||||
|
'title' => ':name Updated',
|
||||||
|
'content' => ':name was updated to :new_status',
|
||||||
|
],
|
||||||
|
'sms' => [
|
||||||
|
'content' => 'Incident :name was updated',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'schedule' => [
|
||||||
|
'new' => [
|
||||||
|
'mail' => [
|
||||||
|
'subject' => 'New Schedule Created',
|
||||||
|
'content' => ':name was scheduled for :date',
|
||||||
|
'title' => 'A new scheduled maintenance was created.',
|
||||||
|
'action' => 'View',
|
||||||
|
],
|
||||||
|
'slack' => [
|
||||||
|
'title' => 'New Schedule Created!',
|
||||||
|
'content' => ':name was scheduled for :date',
|
||||||
|
],
|
||||||
|
'sms' => [
|
||||||
|
'content' => ':name was scheduled for :date',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'subscriber' => [
|
||||||
|
'verify' => [
|
||||||
|
'mail' => [
|
||||||
|
'subject' => 'Verify Your Subscription',
|
||||||
|
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||||
|
'title' => 'Verify your subscription to :app_name status page.',
|
||||||
|
'action' => 'Verify',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'system' => [
|
||||||
|
'test' => [
|
||||||
|
'mail' => [
|
||||||
|
'subject' => 'Ping from Cachet!',
|
||||||
|
'content' => 'This is a test notification from Cachet!',
|
||||||
|
'title' => '🔔',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'user' => [
|
||||||
|
'invite' => [
|
||||||
|
'mail' => [
|
||||||
|
'subject' => 'Your invitation is inside...',
|
||||||
|
'content' => 'You have been invited to join :app_name status page.',
|
||||||
|
'title' => 'You\'re invited to join :app_name status page.',
|
||||||
|
'action' => 'Accept',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
];
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Cachet.
|
||||||
|
*
|
||||||
|
* (c) Alt Three Services Limited
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Pagination Language Lines
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The following language lines are used by the paginator library to build
|
||||||
|
| the simple pagination links. You are free to change them to anything
|
||||||
|
| you want to customize your views to better match your application.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'previous' => 'Previous',
|
||||||
|
'next' => 'Next',
|
||||||
|
|
||||||
|
];
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Cachet.
|
||||||
|
*
|
||||||
|
* (c) Alt Three Services Limited
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
return [
|
||||||
|
'setup' => 'Installation',
|
||||||
|
'title' => 'Cachet installieren',
|
||||||
|
'service_details' => 'Servicedetails',
|
||||||
|
'env_setup' => 'Einrichtung der Systemumgebung',
|
||||||
|
'status_page_setup' => 'Statusseite einrichten',
|
||||||
|
'show_support' => 'Möchten Sie Cachet unterstützen?',
|
||||||
|
'admin_account' => 'Administrator Konto',
|
||||||
|
'complete_setup' => 'Installation abschließen',
|
||||||
|
'completed' => 'Cachet wurde erfolgreich konfiguriert!',
|
||||||
|
'finish_setup' => 'Zum Dashboard wechseln',
|
||||||
|
];
|
||||||
@@ -0,0 +1,122 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file is part of Cachet.
|
||||||
|
*
|
||||||
|
* (c) Alt Three Services Limited
|
||||||
|
*
|
||||||
|
* For the full copyright and license information, please view the LICENSE
|
||||||
|
* file that was distributed with this source code.
|
||||||
|
*/
|
||||||
|
|
||||||
|
return [
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Validation Language Lines
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The following language lines contain the default error messages used by
|
||||||
|
| the validator class. Some of these rules have multiple versions such
|
||||||
|
| as the size rules. Feel free to tweak each of these messages here.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'accepted' => ':attribute muss akzeptiert werden.',
|
||||||
|
'active_url' => ':attribute ist keine gültige Internet-Adresse.',
|
||||||
|
'after' => ':attribute muss ein Datum nach dem :date sein.',
|
||||||
|
'alpha' => ':attribute darf nur aus Buchstaben bestehen.',
|
||||||
|
'alpha_dash' => ':attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen. Umlaute (ä, ö, ü) und Eszett (ß) sind nicht erlaubt.',
|
||||||
|
'alpha_num' => ':attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen. Umlaute (ä, ö, ü) und Eszett (ß) sind nicht erlaubt.',
|
||||||
|
'array' => ':attribute muss ein Array sein.',
|
||||||
|
'before' => ':attribute muss ein Datum vor dem :date sein.',
|
||||||
|
'between' => [
|
||||||
|
'numeric' => ':attribute muss zwischen :min und :max liegen.',
|
||||||
|
'file' => ':attribute muss zwischen :min und :max Kilobytes groß sein.',
|
||||||
|
'string' => ':attribute muss zwischen :min und :max Zeichen lang sein.',
|
||||||
|
'array' => ':attribute muss zwischen :min & :max Elemente haben.',
|
||||||
|
],
|
||||||
|
'boolean' => ':attribute Feld muss true oder false sein.',
|
||||||
|
'confirmed' => ':attribute Bestätigung stimmt nicht überein.',
|
||||||
|
'date' => ':attribute ist kein gültiges Datum.',
|
||||||
|
'date_format' => ':attribute entspricht nicht dem Format :format.',
|
||||||
|
'different' => ':attribute und :other dürfen nicht identisch sein.',
|
||||||
|
'digits' => ':attribute muss :digits Zeichen lang sein.',
|
||||||
|
'digits_between' => ':attribute muss zwischen :min und :max Zeichen lang sein.',
|
||||||
|
'email' => ':attribute muss eine gültige E-Mail-Adresse sein.',
|
||||||
|
'exists' => 'Das ausgewählte :attribute ist ungültig.',
|
||||||
|
'distinct' => ':attribute hat doppelte Werte.',
|
||||||
|
'filled' => 'Das Feld :attribute ist erforderlich.',
|
||||||
|
'image' => ':attribute muss ein Bild sein.',
|
||||||
|
'in' => 'Das ausgewählte :attribute ist ungültig.',
|
||||||
|
'in_array' => ':attribute existiert nicht in :other.',
|
||||||
|
'integer' => ':attribute muss eine ganze Zahl sein.',
|
||||||
|
'ip' => ':attribute muss eine gültige IP-Adresse sein.',
|
||||||
|
'json' => ':attribut muss ein gültiger JSON-String sein.',
|
||||||
|
'max' => [
|
||||||
|
'numeric' => ':attribute darf nicht größer sein als :max.',
|
||||||
|
'file' => ':attribute darf nicht größer sein als :max kilobytes.',
|
||||||
|
'string' => ':attribute darf maximal :max Zeichen haben.',
|
||||||
|
'array' => ':attribute darf nicht mehr als :max Elemente haben.',
|
||||||
|
],
|
||||||
|
'mimes' => ':attribute muss einem der Dateitypen: :values entsprechen.',
|
||||||
|
'min' => [
|
||||||
|
'numeric' => ':attribute muss mindestens :min sein.',
|
||||||
|
'file' => ':attribute muss mindestens :min Kilobytes groß sein.',
|
||||||
|
'string' => ':attribute muss mindestens :min Zeichen enthalten.',
|
||||||
|
'array' => ':attribute muss mindestens :min Elemente haben.',
|
||||||
|
],
|
||||||
|
'not_in' => 'Das ausgewählte :attribute ist ungültig.',
|
||||||
|
'numeric' => ':attribute muss eine Zahl sein.',
|
||||||
|
'present' => ':attribute muss ausgefüllt sein.',
|
||||||
|
'regex' => 'Das Format von :attribute ist ungültig.',
|
||||||
|
'required' => 'Das Feld :attribute ist erforderlich.',
|
||||||
|
'required_if' => ':attribute wird benötigt wenn :other :value entspricht.',
|
||||||
|
'required_unless' => 'Das :attribute Feld ist erforderlich außer :other hat den Wert :values.',
|
||||||
|
'required_with' => ':attribute muss angegeben werden, wenn :values ausgefüllt wurde.',
|
||||||
|
'required_with_all' => ':attribute muss angegeben werden, wenn :values ausgefüllt wurde.',
|
||||||
|
'required_without' => ':attribute muss angegeben werden, wenn :values nicht angegeben wurde.',
|
||||||
|
'required_without_all' => ':attribute ist erforderlich, wenn keiner von :values vorhanden sind.',
|
||||||
|
'same' => ':attribute und :other müssen übereinstimmen.',
|
||||||
|
'size' => [
|
||||||
|
'numeric' => ':attribute muss :size sein.',
|
||||||
|
'file' => ':attribute muss :size Kilobytes groß sein.',
|
||||||
|
'string' => ':attribute muss :size Zeichen lang sein.',
|
||||||
|
'array' => ':attribute muss :size Elemente beinhalten.',
|
||||||
|
],
|
||||||
|
'string' => 'Das :attribute muss eine Zeichenfolge sein.',
|
||||||
|
'timezone' => ':attribute muss eine gültige Zeitzone sein.',
|
||||||
|
'unique' => ':attribute ist schon vergeben.',
|
||||||
|
'url' => 'Das Format von :attribute ist ungültig.',
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Custom Validation Language Lines
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Here you may specify custom validation messages for attributes using the
|
||||||
|
| convention "attribute.rule" to name the lines. This makes it quick to
|
||||||
|
| specify a specific custom language line for a given attribute rule.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'custom' => [
|
||||||
|
'attribute-name' => [
|
||||||
|
'rule-name' => 'Individuelle Nachricht',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Custom Validation Attributes
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| The following language lines are used to swap attribute place-holders
|
||||||
|
| with something more reader friendly such as E-Mail Address instead
|
||||||
|
| of "email". This simply helps us make messages a little cleaner.
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
'attributes' => [],
|
||||||
|
|
||||||
|
];
|
||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'crwdns1193:0crwdne1193:0',
|
'about-this-page' => 'crwdns1193:0crwdne1193:0',
|
||||||
'days-of-incidents' => 'crwdns1194:0crwdne1194:0',
|
'days-of-incidents' => 'crwdns1194:0crwdne1194:0',
|
||||||
'banner' => 'crwdns1195:0crwdne1195:0',
|
'banner' => 'crwdns1195:0crwdne1195:0',
|
||||||
'banner-help' => 'crwdns1196:0crwdne1196:0',
|
'banner-help' => "crwdns1196:0crwdne1196:0",
|
||||||
'subscribers' => 'crwdns1197:0crwdne1197:0',
|
'subscribers' => 'crwdns1197:0crwdne1197:0',
|
||||||
'skip_subscriber_verification' => 'crwdns1198:0crwdne1198:0',
|
'skip_subscriber_verification' => 'crwdns1198:0crwdne1198:0',
|
||||||
'automatic_localization' => 'crwdns1199:0crwdne1199:0',
|
'automatic_localization' => 'crwdns1199:0crwdne1199:0',
|
||||||
|
|||||||
@@ -151,7 +151,6 @@ return [
|
|||||||
'display-graphs' => 'Display graphs on status page?',
|
'display-graphs' => 'Display graphs on status page?',
|
||||||
'about-this-page' => 'About this page',
|
'about-this-page' => 'About this page',
|
||||||
'days-of-incidents' => 'How many days of incidents to show?',
|
'days-of-incidents' => 'How many days of incidents to show?',
|
||||||
'time_before_refresh' => 'Status page refresh rate (in seconds).',
|
|
||||||
'banner' => 'Banner Image',
|
'banner' => 'Banner Image',
|
||||||
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
|
'banner-help' => "It's recommended that you upload files no bigger than 930px wide .",
|
||||||
'subscribers' => 'Allow people to signup to email notifications?',
|
'subscribers' => 'Allow people to signup to email notifications?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Sobre esta página',
|
'about-this-page' => 'Sobre esta página',
|
||||||
'days-of-incidents' => '¿Cuántos días de incidentes mostrar?',
|
'days-of-incidents' => '¿Cuántos días de incidentes mostrar?',
|
||||||
'banner' => 'Imagen del banner',
|
'banner' => 'Imagen del banner',
|
||||||
'banner-help' => 'Se recomienda subir una imagen no más grande de 930px de ancho .',
|
'banner-help' => "Se recomienda subir una imagen no más grande de 930px de ancho .",
|
||||||
'subscribers' => '¿Permitir a la gente inscribirse mediante noficiacion por correo electronico?',
|
'subscribers' => '¿Permitir a la gente inscribirse mediante noficiacion por correo electronico?',
|
||||||
'skip_subscriber_verification' => '¿Omitir verificación de usuarios? (Advertencia, podrías ser spammeado)',
|
'skip_subscriber_verification' => '¿Omitir verificación de usuarios? (Advertencia, podrías ser spammeado)',
|
||||||
'automatic_localization' => '¿Traducir automáticamente la página de estado según el lenguaje del visitante?',
|
'automatic_localization' => '¿Traducir automáticamente la página de estado según el lenguaje del visitante?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'درباره این صفحه',
|
'about-this-page' => 'درباره این صفحه',
|
||||||
'days-of-incidents' => 'چند روز از رویدادها نمایش داده شوند؟',
|
'days-of-incidents' => 'چند روز از رویدادها نمایش داده شوند؟',
|
||||||
'banner' => 'تصویر بنر',
|
'banner' => 'تصویر بنر',
|
||||||
'banner-help' => 'پیشنهاد میشود که شما تصاویری با پهنای بیشتر از 930px آپلود نکنید.',
|
'banner-help' => "پیشنهاد میشود که شما تصاویری با پهنای بیشتر از 930px آپلود نکنید.",
|
||||||
'subscribers' => 'آیا به کاربران اجازه ثبتنام برای اعلانهای ایمیلی داده شود؟',
|
'subscribers' => 'آیا به کاربران اجازه ثبتنام برای اعلانهای ایمیلی داده شود؟',
|
||||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||||
'automatic_localization' => 'به صورت خودکار صفحه وضعیت به زبان مشاهدهکنندگان تغییر زبان دهد؟',
|
'automatic_localization' => 'به صورت خودکار صفحه وضعیت به زبان مشاهدهکنندگان تغییر زبان دهد؟',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Tietoa tästä sivustosta',
|
'about-this-page' => 'Tietoa tästä sivustosta',
|
||||||
'days-of-incidents' => 'Monenko päivän ajalta tapaukset näytetään?',
|
'days-of-incidents' => 'Monenko päivän ajalta tapaukset näytetään?',
|
||||||
'banner' => 'Bannerikuva',
|
'banner' => 'Bannerikuva',
|
||||||
'banner-help' => 'On suositeltavaa, ettet lataa yli 930px leveitä kuvia.',
|
'banner-help' => "On suositeltavaa, ettet lataa yli 930px leveitä kuvia.",
|
||||||
'subscribers' => 'Salli käyttäjien tilata sähköpostitilaukset?',
|
'subscribers' => 'Salli käyttäjien tilata sähköpostitilaukset?',
|
||||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||||
'automatic_localization' => 'Lokalisoidaanko statussivu automaattisesti kävijän kielen mukaan?',
|
'automatic_localization' => 'Lokalisoidaanko statussivu automaattisesti kävijän kielen mukaan?',
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ return [
|
|||||||
'update' => [
|
'update' => [
|
||||||
'title' => 'Créer une mise à jour d\'incident',
|
'title' => 'Créer une mise à jour d\'incident',
|
||||||
'subtitle' => 'Ajouter une mise à jour à <strong>:incident</strong>',
|
'subtitle' => 'Ajouter une mise à jour à <strong>:incident</strong>',
|
||||||
'success' => 'Mise à jour ajoutée.',
|
'success' => 'Update added.',
|
||||||
],
|
],
|
||||||
|
|
||||||
// Incident templates
|
// Incident templates
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'À propos de cette page',
|
'about-this-page' => 'À propos de cette page',
|
||||||
'days-of-incidents' => 'Combien de jours d\'incidents à montrer ?',
|
'days-of-incidents' => 'Combien de jours d\'incidents à montrer ?',
|
||||||
'banner' => 'Image d\'en-tête',
|
'banner' => 'Image d\'en-tête',
|
||||||
'banner-help' => 'Il est recommandé de téléchargez un fichier ne dépassant pas 930px de large .',
|
'banner-help' => "Il est recommandé de téléchargez un fichier ne dépassant pas 930px de large .",
|
||||||
'subscribers' => 'Permettre aux personnes de s\'inscrire aux notifications par e-mail ?',
|
'subscribers' => 'Permettre aux personnes de s\'inscrire aux notifications par e-mail ?',
|
||||||
'skip_subscriber_verification' => 'Ne pas vérifier les utilisateurs ? (Attention, vous pourriez être spammé)',
|
'skip_subscriber_verification' => 'Ne pas vérifier les utilisateurs ? (Attention, vous pourriez être spammé)',
|
||||||
'automatic_localization' => 'Traduire automatiquement votre page de statut dans la langue du visiteur ?',
|
'automatic_localization' => 'Traduire automatiquement votre page de statut dans la langue du visiteur ?',
|
||||||
|
|||||||
@@ -13,84 +13,84 @@ return [
|
|||||||
'component' => [
|
'component' => [
|
||||||
'status_update' => [
|
'status_update' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Le statut du composant a été mis à jour',
|
'subject' => 'Component Status Updated',
|
||||||
'greeting' => 'Le statut d’un composant a été mis à jour !',
|
'greeting' => 'A component\'s status was updated!',
|
||||||
'content' => 'Le statut de :name est passé de :old_status à :new_status.',
|
'content' => ':name status changed from :old_status to :new_status.',
|
||||||
'action' => 'View',
|
'action' => 'View',
|
||||||
],
|
],
|
||||||
'slack' => [
|
'slack' => [
|
||||||
'title' => 'Le statut du composant a été mis à jour',
|
'title' => 'Component Status Updated',
|
||||||
'content' => 'Le statut de :name est passé de :old_status à :new_status.',
|
'content' => ':name status changed from :old_status to :new_status.',
|
||||||
],
|
],
|
||||||
'sms' => [
|
'sms' => [
|
||||||
'content' => 'Le statut de :name est passé de :old_status à :new_status.',
|
'content' => ':name status changed from :old_status to :new_status.',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'incident' => [
|
'incident' => [
|
||||||
'new' => [
|
'new' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Nouvel incident signalé',
|
'subject' => 'New Incident Reported',
|
||||||
'greeting' => 'Un nouvel incident a été signalé pour :app_name.',
|
'greeting' => 'A new incident was reported at :app_name.',
|
||||||
'content' => 'Incident :name a été signalé',
|
'content' => 'Incident :name was reported',
|
||||||
'action' => 'View',
|
'action' => 'View',
|
||||||
],
|
],
|
||||||
'slack' => [
|
'slack' => [
|
||||||
'title' => 'Incident :name signalé',
|
'title' => 'Incident :name Reported',
|
||||||
'content' => 'Un nouvel incident a été signalé pour :app_name',
|
'content' => 'A new incident was reported at :app_name',
|
||||||
],
|
],
|
||||||
'sms' => [
|
'sms' => [
|
||||||
'content' => 'Un nouvel incident a été signalé pour :app_name.',
|
'content' => 'A new incident was reported at :app_name.',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'update' => [
|
'update' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Incident mis à jour',
|
'subject' => 'Incident Updated',
|
||||||
'content' => ':name a été mis à jour',
|
'content' => ':name was updated',
|
||||||
'title' => ':name est passé à :new_status',
|
'title' => ':name was updated to :new_status',
|
||||||
'action' => 'View',
|
'action' => 'View',
|
||||||
],
|
],
|
||||||
'slack' => [
|
'slack' => [
|
||||||
'title' => ':name mis à jour',
|
'title' => ':name Updated',
|
||||||
'content' => ':name est passé à :new_status',
|
'content' => ':name was updated to :new_status',
|
||||||
],
|
],
|
||||||
'sms' => [
|
'sms' => [
|
||||||
'content' => 'Incident :name a été mis à jour',
|
'content' => 'Incident :name was updated',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'schedule' => [
|
'schedule' => [
|
||||||
'new' => [
|
'new' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Nouvelle planification créée',
|
'subject' => 'New Schedule Created',
|
||||||
'content' => ':name a été planifié pour :date',
|
'content' => ':name was scheduled for :date',
|
||||||
'title' => 'Une nouvelle maintenance planifiée a été créée.',
|
'title' => 'A new scheduled maintenance was created.',
|
||||||
'action' => 'View',
|
'action' => 'View',
|
||||||
],
|
],
|
||||||
'slack' => [
|
'slack' => [
|
||||||
'title' => 'Nouvelle planification créée !',
|
'title' => 'New Schedule Created!',
|
||||||
'content' => ':name a été planifié pour :date',
|
'content' => ':name was scheduled for :date',
|
||||||
],
|
],
|
||||||
'sms' => [
|
'sms' => [
|
||||||
'content' => ':name a été planifié pour :date',
|
'content' => ':name was scheduled for :date',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'subscriber' => [
|
'subscriber' => [
|
||||||
'verify' => [
|
'verify' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Veuillez vérifier votre abonnement',
|
'subject' => 'Verify Your Subscription',
|
||||||
'content' => 'Cliquez ici pour vérifier votre abonnement à la page de statut de :app_name.',
|
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||||
'title' => 'Vérifiez votre abonnement à la page de statut de :app_name.',
|
'title' => 'Verify your subscription to :app_name status page.',
|
||||||
'action' => 'Vérifier',
|
'action' => 'Verify',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'system' => [
|
'system' => [
|
||||||
'test' => [
|
'test' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Ping depuis Cachet!',
|
'subject' => 'Ping from Cachet!',
|
||||||
'content' => 'Ceci est une notification de test depuis Cachet !',
|
'content' => 'This is a test notification from Cachet!',
|
||||||
'title' => '🔔',
|
'title' => '🔔',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
@@ -98,10 +98,10 @@ return [
|
|||||||
'user' => [
|
'user' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Votre invitation est à l\'intérieur...',
|
'subject' => 'Your invitation is inside...',
|
||||||
'content' => 'Vous avez été invité à rejoindre la page de statut de :app_name.',
|
'content' => 'You have been invited to join :app_name status page.',
|
||||||
'title' => 'Vous êtes invité à rejoindre la page de statut de :app_name.',
|
'title' => 'You\'re invited to join :app_name status page.',
|
||||||
'action' => 'Accepter',
|
'action' => 'Accept',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'previous' => 'Précédent',
|
'previous' => 'Previous',
|
||||||
'next' => 'Suivant',
|
'next' => 'Next',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Erről az oldalról',
|
'about-this-page' => 'Erről az oldalról',
|
||||||
'days-of-incidents' => 'Mennyi incidens legyen látható?',
|
'days-of-incidents' => 'Mennyi incidens legyen látható?',
|
||||||
'banner' => 'Banner kép',
|
'banner' => 'Banner kép',
|
||||||
'banner-help' => 'Nem ajánlott 930 pixelnél szélesebb képet feltölteni.',
|
'banner-help' => "Nem ajánlott 930 pixelnél szélesebb képet feltölteni.",
|
||||||
'subscribers' => 'Emberek regisztrálhatnak email értesítésekre?',
|
'subscribers' => 'Emberek regisztrálhatnak email értesítésekre?',
|
||||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||||
'automatic_localization' => 'Állapot oldal automatikus lokalizálása a látogató nyelvén?',
|
'automatic_localization' => 'Állapot oldal automatikus lokalizálása a látogató nyelvén?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Tentang halaman ini',
|
'about-this-page' => 'Tentang halaman ini',
|
||||||
'days-of-incidents' => 'Berapa hari insiden akan ditampilkan?',
|
'days-of-incidents' => 'Berapa hari insiden akan ditampilkan?',
|
||||||
'banner' => 'Gambar Banner',
|
'banner' => 'Gambar Banner',
|
||||||
'banner-help' => 'Disarankan gambar yang anda unggah tidak lebih lebar dari 930px.',
|
'banner-help' => "Disarankan gambar yang anda unggah tidak lebih lebar dari 930px.",
|
||||||
'subscribers' => 'Bolehkan pengunjung mendaftar notifikasi email?',
|
'subscribers' => 'Bolehkan pengunjung mendaftar notifikasi email?',
|
||||||
'skip_subscriber_verification' => 'Lewatkan verifikasi user? (Hati-hati, anda bisa kena spam)',
|
'skip_subscriber_verification' => 'Lewatkan verifikasi user? (Hati-hati, anda bisa kena spam)',
|
||||||
'automatic_localization' => 'Otomatis ganti bahasa halaman status anda ke bahasa pengunjung?',
|
'automatic_localization' => 'Otomatis ganti bahasa halaman status anda ke bahasa pengunjung?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Informazioni sulla pagina',
|
'about-this-page' => 'Informazioni sulla pagina',
|
||||||
'days-of-incidents' => 'Quanti giorni di segnalazioni mostrare?',
|
'days-of-incidents' => 'Quanti giorni di segnalazioni mostrare?',
|
||||||
'banner' => 'Immagine del banner',
|
'banner' => 'Immagine del banner',
|
||||||
'banner-help' => 'È consigliabile caricare file larghi non più di 930px.',
|
'banner-help' => "È consigliabile caricare file larghi non più di 930px.",
|
||||||
'subscribers' => 'Permettere alle persone di iscriversi alle notifiche via email?',
|
'subscribers' => 'Permettere alle persone di iscriversi alle notifiche via email?',
|
||||||
'skip_subscriber_verification' => 'Skip verifica degli utenti? (Attenzione, potreste ricevere spam)',
|
'skip_subscriber_verification' => 'Skip verifica degli utenti? (Attenzione, potreste ricevere spam)',
|
||||||
'automatic_localization' => 'Tradurre automaticamente la tua pagina di stato nella lingua del visitatore?',
|
'automatic_localization' => 'Tradurre automaticamente la tua pagina di stato nella lingua del visitatore?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'このページについて',
|
'about-this-page' => 'このページについて',
|
||||||
'days-of-incidents' => '何日間のインシデントを表示しますか?',
|
'days-of-incidents' => '何日間のインシデントを表示しますか?',
|
||||||
'banner' => 'バナー画像',
|
'banner' => 'バナー画像',
|
||||||
'banner-help' => '横幅が930px以内の画像をアップロードしてください。',
|
'banner-help' => "横幅が930px以内の画像をアップロードしてください。",
|
||||||
'subscribers' => 'Allow people to signup to email notifications?',
|
'subscribers' => 'Allow people to signup to email notifications?',
|
||||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||||
'automatic_localization' => 'Automatically localise your status page to your visitor\'s language?',
|
'automatic_localization' => 'Automatically localise your status page to your visitor\'s language?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => '이 페이지에 대하여',
|
'about-this-page' => '이 페이지에 대하여',
|
||||||
'days-of-incidents' => '몇 일 동안 사건을 표시하시겠습니까?',
|
'days-of-incidents' => '몇 일 동안 사건을 표시하시겠습니까?',
|
||||||
'banner' => '배너 이미지',
|
'banner' => '배너 이미지',
|
||||||
'banner-help' => '가로가 930 픽셀보다 작은 이미지를 업로드 하는 것을 권장합니다.',
|
'banner-help' => "가로가 930 픽셀보다 작은 이미지를 업로드 하는 것을 권장합니다.",
|
||||||
'subscribers' => '이메일 알림을 받기 위한 회원가입 허용',
|
'subscribers' => '이메일 알림을 받기 위한 회원가입 허용',
|
||||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||||
'automatic_localization' => 'Automatically localise your status page to your visitor\'s language?',
|
'automatic_localization' => 'Automatically localise your status page to your visitor\'s language?',
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ return [
|
|||||||
'update' => [
|
'update' => [
|
||||||
'title' => 'Maak een nieuwe incident update',
|
'title' => 'Maak een nieuwe incident update',
|
||||||
'subtitle' => 'Voeg een update toe aan <strong>:incident</strong>',
|
'subtitle' => 'Voeg een update toe aan <strong>:incident</strong>',
|
||||||
'success' => 'Update toegevoegd.',
|
'success' => 'Update added.',
|
||||||
],
|
],
|
||||||
|
|
||||||
// Incident templates
|
// Incident templates
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Over deze pagina',
|
'about-this-page' => 'Over deze pagina',
|
||||||
'days-of-incidents' => 'Hoeveel dagen moeten incidenten getoond worden?',
|
'days-of-incidents' => 'Hoeveel dagen moeten incidenten getoond worden?',
|
||||||
'banner' => 'Banner afbeelding',
|
'banner' => 'Banner afbeelding',
|
||||||
'banner-help' => 'Het wordt aanbevolen dat u geen bestanden upload die breeder zijn dan 930px.',
|
'banner-help' => "Het wordt aanbevolen dat u geen bestanden upload die breeder zijn dan 930px.",
|
||||||
'subscribers' => 'Bezoekers toestaan om te abonneren op e-mail notificaties?',
|
'subscribers' => 'Bezoekers toestaan om te abonneren op e-mail notificaties?',
|
||||||
'skip_subscriber_verification' => 'Verificatie van gebruikers overslaan? (Let op, je kunt gespamd worden)',
|
'skip_subscriber_verification' => 'Verificatie van gebruikers overslaan? (Let op, je kunt gespamd worden)',
|
||||||
'automatic_localization' => 'Stel de taal van de bezoeker in als standaardtaal voor deze bezoeker?',
|
'automatic_localization' => 'Stel de taal van de bezoeker in als standaardtaal voor deze bezoeker?',
|
||||||
|
|||||||
@@ -13,84 +13,84 @@ return [
|
|||||||
'component' => [
|
'component' => [
|
||||||
'status_update' => [
|
'status_update' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Component status bijgewerkt',
|
'subject' => 'Component Status Updated',
|
||||||
'greeting' => 'De status van een component is bijgewerkt!',
|
'greeting' => 'A component\'s status was updated!',
|
||||||
'content' => ':name status is veranderd van :old_status naar :new_status.',
|
'content' => ':name status changed from :old_status to :new_status.',
|
||||||
'action' => 'Tonen',
|
'action' => 'View',
|
||||||
],
|
],
|
||||||
'slack' => [
|
'slack' => [
|
||||||
'title' => 'Component status bijgewerkt',
|
'title' => 'Component Status Updated',
|
||||||
'content' => ':name status is veranderd van :old_status naar :new_status.',
|
'content' => ':name status changed from :old_status to :new_status.',
|
||||||
],
|
],
|
||||||
'sms' => [
|
'sms' => [
|
||||||
'content' => ':name status is veranderd van :old_status naar :new_status.',
|
'content' => ':name status changed from :old_status to :new_status.',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'incident' => [
|
'incident' => [
|
||||||
'new' => [
|
'new' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Nieuw incident gemeld',
|
'subject' => 'New Incident Reported',
|
||||||
'greeting' => 'Er is een nieuw incident gemeld voor :app_name.',
|
'greeting' => 'A new incident was reported at :app_name.',
|
||||||
'content' => 'Incident :name is gerapporteerd',
|
'content' => 'Incident :name was reported',
|
||||||
'action' => 'Tonen',
|
'action' => 'View',
|
||||||
],
|
],
|
||||||
'slack' => [
|
'slack' => [
|
||||||
'title' => 'Incident :name is gerapporteerd',
|
'title' => 'Incident :name Reported',
|
||||||
'content' => 'Er is een nieuw incident gemeld voor :app_name',
|
'content' => 'A new incident was reported at :app_name',
|
||||||
],
|
],
|
||||||
'sms' => [
|
'sms' => [
|
||||||
'content' => 'Er is een nieuw incident gemeld voor :app_name.',
|
'content' => 'A new incident was reported at :app_name.',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'update' => [
|
'update' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Incident bijgewerkt',
|
'subject' => 'Incident Updated',
|
||||||
'content' => ':name is bijgewerkt',
|
'content' => ':name was updated',
|
||||||
'title' => ':name is bijgewerkt naar :new_status',
|
'title' => ':name was updated to :new_status',
|
||||||
'action' => 'Tonen',
|
'action' => 'View',
|
||||||
],
|
],
|
||||||
'slack' => [
|
'slack' => [
|
||||||
'title' => ':name is bijgewerkt',
|
'title' => ':name Updated',
|
||||||
'content' => ':name is bijgewerkt naar :new_status',
|
'content' => ':name was updated to :new_status',
|
||||||
],
|
],
|
||||||
'sms' => [
|
'sms' => [
|
||||||
'content' => 'Incident :name is bijgewerkt',
|
'content' => 'Incident :name was updated',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'schedule' => [
|
'schedule' => [
|
||||||
'new' => [
|
'new' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Nieuw tijdschema aangemaakt',
|
'subject' => 'New Schedule Created',
|
||||||
'content' => ':name is ingepland voor :date',
|
'content' => ':name was scheduled for :date',
|
||||||
'title' => 'Nieuw gepland onderhoud aangemaakt.',
|
'title' => 'A new scheduled maintenance was created.',
|
||||||
'action' => 'Tonen',
|
'action' => 'View',
|
||||||
],
|
],
|
||||||
'slack' => [
|
'slack' => [
|
||||||
'title' => 'Nieuw tijdschema aangemaakt!',
|
'title' => 'New Schedule Created!',
|
||||||
'content' => ':name is ingepland voor :date',
|
'content' => ':name was scheduled for :date',
|
||||||
],
|
],
|
||||||
'sms' => [
|
'sms' => [
|
||||||
'content' => ':name is ingepland voor :date',
|
'content' => ':name was scheduled for :date',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'subscriber' => [
|
'subscriber' => [
|
||||||
'verify' => [
|
'verify' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Bevestig je inschrijving',
|
'subject' => 'Verify Your Subscription',
|
||||||
'content' => 'Klik om je inschrijving op :app_name statuspagina te bevestigen.',
|
'content' => 'Click to verify your subscription to :app_name status page.',
|
||||||
'title' => 'Bevestig je inschrijving voor de :app_name statuspagina.',
|
'title' => 'Verify your subscription to :app_name status page.',
|
||||||
'action' => 'Verifiëren',
|
'action' => 'Verify',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'system' => [
|
'system' => [
|
||||||
'test' => [
|
'test' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Ping van Cachet!',
|
'subject' => 'Ping from Cachet!',
|
||||||
'content' => 'Dit is een testnotificatie van Cachet!',
|
'content' => 'This is a test notification from Cachet!',
|
||||||
'title' => '🔔',
|
'title' => '🔔',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
@@ -98,10 +98,10 @@ return [
|
|||||||
'user' => [
|
'user' => [
|
||||||
'invite' => [
|
'invite' => [
|
||||||
'mail' => [
|
'mail' => [
|
||||||
'subject' => 'Je uitnodiging zit in deze mail...',
|
'subject' => 'Your invitation is inside...',
|
||||||
'content' => 'Je bent uitgenodigd voor de :app_name statuspagina.',
|
'content' => 'You have been invited to join :app_name status page.',
|
||||||
'title' => 'Je bent uitgenodigd voor :app_name statuspagina.',
|
'title' => 'You\'re invited to join :app_name status page.',
|
||||||
'action' => 'Accepteer',
|
'action' => 'Accept',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'previous' => 'Vorige',
|
'previous' => 'Previous',
|
||||||
'next' => 'Volgende',
|
'next' => 'Next',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Om denne siden',
|
'about-this-page' => 'Om denne siden',
|
||||||
'days-of-incidents' => 'Hvor mange dagers hendelser vises?',
|
'days-of-incidents' => 'Hvor mange dagers hendelser vises?',
|
||||||
'banner' => 'Bannerbilde',
|
'banner' => 'Bannerbilde',
|
||||||
'banner-help' => 'Det anbefales at du ikke laster opp bilder bredere enn 930 piksler.',
|
'banner-help' => "Det anbefales at du ikke laster opp bilder bredere enn 930 piksler.",
|
||||||
'subscribers' => 'Tillatt brukere å melde seg inn for epostvarslinger?',
|
'subscribers' => 'Tillatt brukere å melde seg inn for epostvarslinger?',
|
||||||
'skip_subscriber_verification' => 'Hopp over kontroll av brukere? (Vær advart, du kunne bli spammet)',
|
'skip_subscriber_verification' => 'Hopp over kontroll av brukere? (Vær advart, du kunne bli spammet)',
|
||||||
'automatic_localization' => 'Automatisk lokaliser statussiden til besøkendes språk?',
|
'automatic_localization' => 'Automatisk lokaliser statussiden til besøkendes språk?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Über diese Seite',
|
'about-this-page' => 'Über diese Seite',
|
||||||
'days-of-incidents' => 'Wie viele Tage mit Vorfällen sollen gezeigt werden?',
|
'days-of-incidents' => 'Wie viele Tage mit Vorfällen sollen gezeigt werden?',
|
||||||
'banner' => 'Banner',
|
'banner' => 'Banner',
|
||||||
'banner-help' => 'Es wird empfohlen, dass Sie keine Dateien die breiter als 930 Pixel sind hochladen .',
|
'banner-help' => "Es wird empfohlen, dass Sie keine Dateien die breiter als 930 Pixel sind hochladen .",
|
||||||
'subscribers' => 'Personen die Anmeldung für E-Mail-Benachrichtigung erlauben?',
|
'subscribers' => 'Personen die Anmeldung für E-Mail-Benachrichtigung erlauben?',
|
||||||
'skip_subscriber_verification' => 'Pominąć weryfikację użytkowników? (Ostrzeżenie: możesz otrzymać spam)',
|
'skip_subscriber_verification' => 'Pominąć weryfikację użytkowników? (Ostrzeżenie: możesz otrzymać spam)',
|
||||||
'automatic_localization' => 'Automatycznie tłumaczyć twoją stronę statusu na język odwiedzającego?',
|
'automatic_localization' => 'Automatycznie tłumaczyć twoją stronę statusu na język odwiedzającego?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Sobre esta página',
|
'about-this-page' => 'Sobre esta página',
|
||||||
'days-of-incidents' => 'Quantos dias de incidentes para mostrar?',
|
'days-of-incidents' => 'Quantos dias de incidentes para mostrar?',
|
||||||
'banner' => 'Imagem do banner',
|
'banner' => 'Imagem do banner',
|
||||||
'banner-help' => 'É recomendável que você faça upload de arquivos menores que 930px .',
|
'banner-help' => "É recomendável que você faça upload de arquivos menores que 930px .",
|
||||||
'subscribers' => 'Permitir que outras pessoas se cadastrem para notificações via e-mail?',
|
'subscribers' => 'Permitir que outras pessoas se cadastrem para notificações via e-mail?',
|
||||||
'skip_subscriber_verification' => 'Ignorar verificação de usuários? (Cuidado, você pode sofrer com spams)',
|
'skip_subscriber_verification' => 'Ignorar verificação de usuários? (Cuidado, você pode sofrer com spams)',
|
||||||
'automatic_localization' => 'Localizar sua página de status de acordo com o idioma do visitante automaticamente?',
|
'automatic_localization' => 'Localizar sua página de status de acordo com o idioma do visitante automaticamente?',
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'previous' => '« Anterior',
|
'previous' => 'Previous',
|
||||||
'next' => 'Próximo »',
|
'next' => 'Next',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Sobre esta página',
|
'about-this-page' => 'Sobre esta página',
|
||||||
'days-of-incidents' => 'Quantos dias de incidentes para mostrar?',
|
'days-of-incidents' => 'Quantos dias de incidentes para mostrar?',
|
||||||
'banner' => 'Imagem de Banner',
|
'banner' => 'Imagem de Banner',
|
||||||
'banner-help' => 'É recomendável que você faça upload de arquivos menores que 930px .',
|
'banner-help' => "É recomendável que você faça upload de arquivos menores que 930px .",
|
||||||
'subscribers' => 'Permitir que as pessoas subscrevam as notificações?',
|
'subscribers' => 'Permitir que as pessoas subscrevam as notificações?',
|
||||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||||
'automatic_localization' => 'Mostrar automaticamente a tradução conforme a língua do browser do visitante?',
|
'automatic_localization' => 'Mostrar automaticamente a tradução conforme a língua do browser do visitante?',
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'previous' => '« Anterior',
|
'previous' => 'Previous',
|
||||||
'next' => 'Próximo »',
|
'next' => 'Next',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Despre această pagină',
|
'about-this-page' => 'Despre această pagină',
|
||||||
'days-of-incidents' => 'Câte zile de incidente vreţi să fie afişate?',
|
'days-of-incidents' => 'Câte zile de incidente vreţi să fie afişate?',
|
||||||
'banner' => 'Imagine Banner',
|
'banner' => 'Imagine Banner',
|
||||||
'banner-help' => 'Este recomandat să încărcaţi fişiere cu lăţimea nu mai mare de 930px.',
|
'banner-help' => "Este recomandat să încărcaţi fişiere cu lăţimea nu mai mare de 930px.",
|
||||||
'subscribers' => 'Permiteţi vizitatorilor să se aboneze la notificări prin email?',
|
'subscribers' => 'Permiteţi vizitatorilor să se aboneze la notificări prin email?',
|
||||||
'skip_subscriber_verification' => 'Omite verificarea utilizatorilor? (Avertizare, poți primi spam)',
|
'skip_subscriber_verification' => 'Omite verificarea utilizatorilor? (Avertizare, poți primi spam)',
|
||||||
'automatic_localization' => 'Schimbaţi automat limba pentru pagina de stare în funcţie de limba vizitatorului?',
|
'automatic_localization' => 'Schimbaţi automat limba pentru pagina de stare în funcţie de limba vizitatorului?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Об этой странице',
|
'about-this-page' => 'Об этой странице',
|
||||||
'days-of-incidents' => 'За сколько дней показывать инциденты?',
|
'days-of-incidents' => 'За сколько дней показывать инциденты?',
|
||||||
'banner' => 'Картинка-баннер',
|
'banner' => 'Картинка-баннер',
|
||||||
'banner-help' => 'Рекомендуется загружать картинки не больше 930 пикс. в ширину.',
|
'banner-help' => "Рекомендуется загружать картинки не больше 930 пикс. в ширину.",
|
||||||
'subscribers' => 'Разрешить посетителям подписываться на email-уведомления?',
|
'subscribers' => 'Разрешить посетителям подписываться на email-уведомления?',
|
||||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||||
'automatic_localization' => 'Автоматически переводить вашу статусную страницу на язык посетителя?',
|
'automatic_localization' => 'Автоматически переводить вашу статусную страницу на язык посетителя?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Om den här sidan',
|
'about-this-page' => 'Om den här sidan',
|
||||||
'days-of-incidents' => 'Hur många dagar av händelser ska visas?',
|
'days-of-incidents' => 'Hur många dagar av händelser ska visas?',
|
||||||
'banner' => 'Bannerbild',
|
'banner' => 'Bannerbild',
|
||||||
'banner-help' => 'Vi rekommenderar att du inte laddar upp bilder som är bredare än 930 px.',
|
'banner-help' => "Vi rekommenderar att du inte laddar upp bilder som är bredare än 930 px.",
|
||||||
'subscribers' => 'Tillåt att registrera sig för notifikationer via e-post?',
|
'subscribers' => 'Tillåt att registrera sig för notifikationer via e-post?',
|
||||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||||
'automatic_localization' => 'Automatically localise your status page to your visitor\'s language?',
|
'automatic_localization' => 'Automatically localise your status page to your visitor\'s language?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => 'Về trang này',
|
'about-this-page' => 'Về trang này',
|
||||||
'days-of-incidents' => 'Sự cố này sẽ hiển thị mấy ngày ?',
|
'days-of-incidents' => 'Sự cố này sẽ hiển thị mấy ngày ?',
|
||||||
'banner' => 'Banner Image',
|
'banner' => 'Banner Image',
|
||||||
'banner-help' => 'Bạn nên upload ảnh có chiều rộng lớn hơn 930px',
|
'banner-help' => "Bạn nên upload ảnh có chiều rộng lớn hơn 930px",
|
||||||
'subscribers' => 'Allow people to signup to email notifications?',
|
'subscribers' => 'Allow people to signup to email notifications?',
|
||||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||||
'automatic_localization' => 'Automatically localise your status page to your visitor\'s language?',
|
'automatic_localization' => 'Automatically localise your status page to your visitor\'s language?',
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => '关于本页',
|
'about-this-page' => '关于本页',
|
||||||
'days-of-incidents' => '显示多少天的故障?',
|
'days-of-incidents' => '显示多少天的故障?',
|
||||||
'banner' => '横幅图像',
|
'banner' => '横幅图像',
|
||||||
'banner-help' => '建议上传文件宽度不大于 930 像素。',
|
'banner-help' => "建议上传文件宽度不大于 930 像素。",
|
||||||
'subscribers' => '允许用户订阅邮件通知',
|
'subscribers' => '允许用户订阅邮件通知',
|
||||||
'skip_subscriber_verification' => '是否跳过用户邮件验证?(小心,这可能会被滥用)',
|
'skip_subscriber_verification' => '是否跳过用户邮件验证?(小心,这可能会被滥用)',
|
||||||
'automatic_localization' => '根据访客的系统语言自动本地化状态页面',
|
'automatic_localization' => '根据访客的系统语言自动本地化状态页面',
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'previous' => '« 上一个',
|
'previous' => 'Previous',
|
||||||
'next' => '下一个 »',
|
'next' => 'Next',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -152,7 +152,7 @@ return [
|
|||||||
'about-this-page' => '關於本站',
|
'about-this-page' => '關於本站',
|
||||||
'days-of-incidents' => '顯示多少天前的事件?',
|
'days-of-incidents' => '顯示多少天前的事件?',
|
||||||
'banner' => 'Banner Image',
|
'banner' => 'Banner Image',
|
||||||
'banner-help' => '橫幅寬度建議少於 930px 。',
|
'banner-help' => "橫幅寬度建議少於 930px 。",
|
||||||
'subscribers' => '允許用戶訂閱郵件通知嗎?',
|
'subscribers' => '允許用戶訂閱郵件通知嗎?',
|
||||||
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
'skip_subscriber_verification' => 'Skip verifying of users? (Be warned, you could be spammed)',
|
||||||
'automatic_localization' => 'Automatically localise your status page to your visitor\'s language?',
|
'automatic_localization' => 'Automatically localise your status page to your visitor\'s language?',
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'previous' => '« 上一頁',
|
'previous' => 'Previous',
|
||||||
'next' => '下一頁 »',
|
'next' => 'Next',
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -86,9 +86,9 @@
|
|||||||
<span class="text-danger">{{ $errors->first('env.mail_driver') }}</span>
|
<span class="text-danger">{{ $errors->first('env.mail_driver') }}</span>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group" v-if="mail.requiresHost">
|
<div class="form-group">
|
||||||
<label>{{ trans('forms.setup.mail_host') }} (optional)</label>
|
<label>{{ trans('forms.setup.mail_host') }}</label>
|
||||||
<input type="text" class="form-control" name="env[mail_host]" value="{{ Binput::old('env.mail_host', $mail_config['host']) }}" placeholder="{{ trans('forms.setup.mail_host') }}">
|
<input type="text" class="form-control" name="env[mail_host]" value="{{ Binput::old('env.mail_host', $mail_config['host']) }}" placeholder="{{ trans('forms.setup.mail_host') }}" :required="mail.requiresHost">
|
||||||
@if($errors->has('env.mail_host'))
|
@if($errors->has('env.mail_host'))
|
||||||
<span class="text-danger">{{ $errors->first('env.mail_host') }}</span>
|
<span class="text-danger">{{ $errors->first('env.mail_host') }}</span>
|
||||||
@endif
|
@endif
|
||||||
@@ -100,16 +100,16 @@
|
|||||||
<span class="text-danger">{{ $errors->first('env.mail_address') }}</span>
|
<span class="text-danger">{{ $errors->first('env.mail_address') }}</span>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group" v-if="mail.requiresUsername">
|
<div class="form-group">
|
||||||
<label>{{ trans('forms.setup.mail_username') }}</label>
|
<label>{{ trans('forms.setup.mail_username') }}</label>
|
||||||
<input type="text" class="form-control" name="env[mail_username]" value="{{ Binput::old('env.mail_username', $mail_config['username']) }}" placeholder="{{ trans('forms.setup.mail_username') }}">
|
<input type="text" class="form-control" name="env[mail_username]" value="{{ Binput::old('env.mail_username', $mail_config['username']) }}" placeholder="{{ trans('forms.setup.mail_username') }}" :required="mail.requiresUsername">
|
||||||
@if($errors->has('env.mail_username'))
|
@if($errors->has('env.mail_username'))
|
||||||
<span class="text-danger">{{ $errors->first('env.mail_username') }}</span>
|
<span class="text-danger">{{ $errors->first('env.mail_username') }}</span>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group" v-if="mail.requiresPassword">
|
<div class="form-group">
|
||||||
<label>{{ trans('forms.setup.mail_password') }}</label>
|
<label>{{ trans('forms.setup.mail_password') }}</label>
|
||||||
<input type="password" class="form-control" name="env[mail_password]" value="{{ Binput::old('env.mail_password', $mail_config['password']) }}" autocomplete="off" placeholder="{{ trans('forms.setup.mail_password') }}">
|
<input type="password" class="form-control" name="env[mail_password]" value="{{ Binput::old('env.mail_password', $mail_config['password']) }}" autocomplete="off" placeholder="{{ trans('forms.setup.mail_password') }}" :required="mail.requiresUsername">
|
||||||
@if($errors->has('env.mail_password'))
|
@if($errors->has('env.mail_password'))
|
||||||
<span class="text-danger">{{ $errors->first('env.mail_password') }}</span>
|
<span class="text-danger">{{ $errors->first('env.mail_password') }}</span>
|
||||||
@endif
|
@endif
|
||||||
|
|||||||
Reference in New Issue
Block a user