-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/subscriber-emails
- Loading branch information
Showing
107 changed files
with
2,317 additions
and
337 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Build API Reference | ||
|
||
on: | ||
schedule: | ||
- cron: '0 7 * * *' | ||
workflow_dispatch: | ||
|
||
env: | ||
DOCS_REPOSITORY: cachethq/docs | ||
DOCS_BRANCH: 3.x | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.3 | ||
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | ||
|
||
- name: Install dependencies | ||
run: composer install | ||
|
||
- name: Install Scramble PRO | ||
run: | | ||
composer config repositories.scramble-pro '{"type": "composer", "url": "https://satis.dedoc.co"}' | ||
composer config http-basic.satis.dedoc.co ${{ secrets.SCRAMBLE_USERNAME }} ${{ secrets.SCRAMBLE_KEY }} | ||
composer require dedoc/scramble-pro:0.7.0-alpha.1 --dev | ||
- name: Checkout documentation repository | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.DOCS_API_TOKEN }} | ||
repository: ${{ env.DOCS_REPOSITORY }} | ||
ref: ${{ env.DOCS_BRANCH }} | ||
path: 'docs-repository' | ||
|
||
- name: Build API docs | ||
run: php vendor/bin/testbench scramble:export --path=docs-repository/api-reference/openapi.json | ||
|
||
- name: Commit and push generated specification | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "Generated API specification from ${{ github.repository }}/${{ github.ref}}@${{ github.sha }}" | ||
repository: "docs-repository" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
return [ | ||
'resource_label' => 'API Schlüssel|API Schlüssel', | ||
'show_token' => [ | ||
'heading' => 'Dein API Token wurde generiert', | ||
'description' => 'Bitte kopiere deinen API Token. Aus Gründen der Sicherheit, wird dieser nicht erneut angezeigt.', | ||
'copy_tooltip' => 'Token kopiert!', | ||
], | ||
'abilities_label' => ':ability :resource', | ||
'form' => [ | ||
'name_label' => 'Token Name', | ||
'expires_at_label' => 'Abgelaufen am', | ||
'expires_at_helper' => 'Läuft ab um Mitternacht. Frei lassen für keinen Ablauf.', | ||
'expires_at_validation' => 'Das Ablaufdatum muss in der Zukunft liegen.', | ||
'abilities_label' => 'Berechtigungen', | ||
'abilities_hint' => 'Frei lassen, gibt dem Token volle Berechtigung.', | ||
], | ||
'list' => [ | ||
'actions' => [ | ||
'revoke' => 'Widerrufen', | ||
], | ||
'headers' => [ | ||
'name' => 'Token Name', | ||
'abilities' => 'Berechtigungen', | ||
'created_at' => 'Erstellt am', | ||
'expires_at' => 'Läuft ab am', | ||
'updated_at' => 'Aktualisiert am', | ||
], | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
|
||
return [ | ||
'support' => [ | ||
'section_heading' => 'Cachet unterstützen', | ||
'consider_supporting' => 'Bitte erwäge, Cachet über GitHub-Sponsoren zu unterstützen.', | ||
'keep_up_to_date' => 'Bleibe über die aktuellsten Nachrichten und Veröffentlichungen auf dem Laufenden, indem Du dem *Cachet-Blog* folgst.', | ||
'work_in_progress_text' => 'Cachet befindet sich in der aktiven Entwicklung. Änderungen sind noch vorbehalten.', | ||
], | ||
'powered_by' => 'Unterstützt von', | ||
'open_source_status_page' => 'Die Open-Source-Statusseite.', | ||
'all_times_shown_in' => 'Alle Zeiten werden angezeigt in *:timezone*.', | ||
'rss_feed' => ':name RSS-Feed', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
|
||
return [ | ||
'resource_label' => 'Komponente|Komponenten', | ||
'list' => [ | ||
'headers' => [ | ||
'name' => 'Name', | ||
'status' => 'Status', | ||
'order' => 'Reihenfolge', | ||
'group' => 'Gruppe', | ||
'enabled' => 'Aktiviert', | ||
'created_at' => 'Erstellt am', | ||
'updated_at' => 'Aktualisiert am', | ||
'deleted_at' => 'Gelöscht am', | ||
], | ||
'empty_state' => [ | ||
'heading' => 'Komponenten', | ||
'description' => 'Komponenten stellen die verschiedenen Teile Deines Systems dar, die den Status Deiner Statusseite beeinflussen können.', | ||
], | ||
], | ||
'last_updated' => 'Letzte Aktualisierung :timestamp', | ||
'view_details' => 'Details anzeigen', | ||
'form' => [ | ||
'name_label' => 'Name', | ||
'status_label' => 'Status', | ||
'description_label' => 'Beschreibung', | ||
'component_group_label' => 'Komponentengruppe', | ||
'link_label' => 'Link', | ||
'link_helper' => 'Ein optionaler Link zur Komponente', | ||
], | ||
'status' => [ | ||
'operational' => 'Funktionsfähig', | ||
'performance_issues' => 'Leistungsprobleme', | ||
'partial_outage' => 'Teilausfall', | ||
'major_outage' => 'Schwerer Ausfall', | ||
'unknown' => 'Unbekannt', | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
return [ | ||
'resource_label' => 'Komponentengruppe|Komponentengruppen', | ||
'incident_count' => ':count Vorfall|:count Vorfälle', | ||
'visibility' => [ | ||
'expanded' => 'Immer ausgeklappt', | ||
'collapsed' => 'Immer eingeklappt', | ||
'collapsed_unless_incident' => 'Eingeklappt - außer bei aktivem Vorfall', | ||
], | ||
'list' => [ | ||
'headers' => [ | ||
'name' => 'Name', | ||
'visible' => 'Sichtbar', | ||
'collapsed' => 'Ausgeklappt', | ||
'created_at' => 'Erstellt am', | ||
'updated_at' => 'Aktualisiert am', | ||
], | ||
'empty_state' => [ | ||
'heading' => 'Komponentengruppen', | ||
'description' => 'Gruppiere verwandte Komponenten', | ||
], | ||
], | ||
'form' => [ | ||
'name_label' => 'Name', | ||
'visible_label' => 'Sichtbar', | ||
'collapsed_label' => 'Ausgeklappt', | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<?php | ||
|
||
return [ | ||
'title' => 'Vorfälle', | ||
'resource_label' => 'Vorfall|Vorfälle', | ||
'status' => [ | ||
'investigating' => 'Untersuchung', | ||
'identified' => 'Identifiziert', | ||
'watching' => 'Beobachtung', | ||
'fixed' => 'Behoben', | ||
'reported' => 'Gemeldet', | ||
], | ||
'edit_button' => 'Vorfall bearbeiten', | ||
'new_button' => 'Vorfall hinzufügen', | ||
'no_incidents_reported' => 'Keine Vorfälle gemeldet.', | ||
'timeline' => [ | ||
'past_incidents_header' => 'Vergangene Vorfälle', | ||
'recent_incidents_header' => 'Jüngste Vorfälle', | ||
'no_incidents_reported_between' => 'Keine Vorfälle gemeldet zwischen :from und :to', | ||
'navigate' => [ | ||
'previous' => 'Vor', | ||
'today' => 'Heute', | ||
'next' => 'Weiter', | ||
], | ||
], | ||
'list' => [ | ||
'headers' => [ | ||
'name' => 'Name', | ||
'status' => 'Status', | ||
'visible' => 'Sichtbar', | ||
'stickied' => 'Angeheftet', | ||
'occurred_at' => 'Aufgetreten am', | ||
'notified_subscribers' => 'Benachrichtigte Abonnenten', | ||
'created_at' => 'Erstellt am', | ||
'updated_at' => 'Aktualisiert am', | ||
'deleted_at' => 'Gelöscht am', | ||
], | ||
'actions' => [ | ||
'record_update' => 'Update aufzeichnen', | ||
'view_incident' => 'Vorfall anschauen', | ||
], | ||
'empty_state' => [ | ||
'heading' => 'Vorfälle', | ||
'description' => 'Vorfälle werden verwendet, um den Status Deiner Dienste zu kommunizieren und zu verfolgen.', | ||
], | ||
], | ||
'form' => [ | ||
'name_label' => 'Name', | ||
'status_label' => 'Status', | ||
'message_label' => 'Nachricht', | ||
'occurred_at_label' => 'Aufgetreten am', | ||
'occurred_at_helper' => 'Wenn dieses Feld leer gelassen wird, wird der Zeitstempel der Erstellung des Vorfalls verwendet.', | ||
'visible_label' => 'Sichtbar', | ||
'user_label' => 'Benutzer', | ||
'user_helper' => 'Benutzer, welcher den Vorfall gemeldet hat.', | ||
'notifications_label' => 'Abonnenten benachrichtigen?', | ||
'stickied_label' => 'Vorfall anheften?', | ||
'guid_label' => 'Vorfall-UUID', | ||
'add_component' => [ | ||
'action_label' => 'Komponente hinzufügen', | ||
'header' => 'Komponenten', | ||
'component_label' => 'Komponente', | ||
'status_label' => 'Status', | ||
], | ||
], | ||
'record_update' => [ | ||
'success_title' => 'Vorfall aktualisiert - :name', | ||
'success_body' => 'Ein Update zu einem Vorfall wurde veröffentlicht.', | ||
'form' => [ | ||
'message_label' => 'Nachricht', | ||
'status_label' => 'Status', | ||
'user_label' => 'Benutzer', | ||
'user_helper' => 'Wer diesen Vorfall gemeldet hat.', | ||
], | ||
], | ||
'overview' => [ | ||
'total_incidents_label' => 'Vorfälle insgesamt', | ||
'total_incidents_description' => 'Anzahl aller Vorfälle', | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
return [ | ||
'resource_label' => 'Vorfallvorlage|Vorfallvorlagen', | ||
'list' => [ | ||
'headers' => [ | ||
'name' => 'Name', | ||
'slug' => 'Schlagwort', | ||
'engine' => 'Methode', | ||
'created_at' => 'Erstellt am', | ||
'updated_at' => 'Aktualisiert am', | ||
'deleted_at' => 'Gelöscht am', | ||
], | ||
'empty_state' => [ | ||
'heading' => 'Vorfallvorlage', | ||
'description' => 'Vorfallvorlagen werden zum Erstellen wiederverwendbarer Vorfallmeldungen verwendet.', | ||
], | ||
], | ||
'form' => [ | ||
'name_label' => 'Name', | ||
'slug_label' => 'Schlagwort', | ||
'template_label' => 'Vorlage', | ||
'engine_label' => 'Methode', | ||
], | ||
'engine' => [ | ||
'laravel_blade' => 'Laravel Blade', | ||
'laravel_blade_docs' => 'Laravel Blade Dokumentation', | ||
'twig' => 'Twig', | ||
'twig_docs' => 'Twig Dokumentation', | ||
], | ||
]; |
Oops, something went wrong.