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' => 'Utwórz :label',
'breadcrumb' => 'Utwórz',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Anuluj',
],
'create' => [
'label' => 'Utwórz',
],
'create_another' => [
'label' => 'Utwórz i utwórz kolejny',
],
],
],
'notifications' => [
'created' => [
'title' => 'Utworzono',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Edytuj :label',
'breadcrumb' => 'Edytuj',
'navigation_label' => 'Edycja',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Anuluj',
],
'save' => [
'label' => 'Zapisz',
],
],
],
'content' => [
'tab' => [
'label' => 'Edytuj',
],
],
'notifications' => [
'saved' => [
'title' => 'Zapisano zmiany',
],
],
];
@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => 'Lista',
];
@@ -0,0 +1,7 @@
<?php
return [
'title' => 'Zarządzaj :label :relationship',
];
@@ -0,0 +1,19 @@
<?php
return [
'title' => 'Podgląd :label',
'breadcrumb' => 'Podgląd',
'navigation_label' => 'Podgląd',
'content' => [
'tab' => [
'label' => 'Podgląd',
],
],
];