feat: add routes, lang, tests, stubs, docs, and docker configurations

This commit is contained in:
2026-05-21 16:05:16 +07:00
parent fad70d096b
commit 28a06315b8
3385 changed files with 177070 additions and 0 deletions
@@ -0,0 +1,37 @@
<?php
return [
'title' => ':label erstellen',
'breadcrumb' => 'Erstellen',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Abbrechen',
],
'create' => [
'label' => 'Erstellen',
],
'create_another' => [
'label' => 'Erstellen & weiterer Eintrag',
],
],
],
'notifications' => [
'created' => [
'title' => 'Erstellt',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => ':label bearbeiten',
'breadcrumb' => 'Bearbeiten',
'navigation_label' => 'Bearbeiten',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Abbrechen',
],
'save' => [
'label' => 'Speichern',
],
],
],
'content' => [
'tab' => [
'label' => 'Bearbeiten',
],
],
'notifications' => [
'saved' => [
'title' => 'Gespeichert',
],
],
];
@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => 'Übersicht',
];
@@ -0,0 +1,7 @@
<?php
return [
'title' => ':label :relationship verwalten',
];
@@ -0,0 +1,19 @@
<?php
return [
'title' => ':label ansehen',
'breadcrumb' => 'Ansehen',
'navigation_label' => 'Ansehen',
'content' => [
'tab' => [
'label' => 'Ansehen',
],
],
];