feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Vytvoriť :label',
|
||||
|
||||
'breadcrumb' => 'Vytvoriť',
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Zrušiť',
|
||||
],
|
||||
|
||||
'create' => [
|
||||
'label' => 'Vytvoriť',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Vytvoriť & vytvoriť ďalší',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => 'Vytvorené',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Upraviť :label',
|
||||
|
||||
'breadcrumb' => 'Upraviť',
|
||||
|
||||
'navigation_label' => 'Upraviť',
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Zrušiť',
|
||||
],
|
||||
|
||||
'save' => [
|
||||
'label' => 'Uložiť',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'content' => [
|
||||
|
||||
'tab' => [
|
||||
'label' => 'Upraviť',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Uložené',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'breadcrumb' => 'Prehľad',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Spravovať :label :relationship',
|
||||
];
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Zobraziť :label',
|
||||
|
||||
'breadcrumb' => 'Detail',
|
||||
|
||||
'navigation_label' => 'Detail',
|
||||
|
||||
'content' => [
|
||||
|
||||
'tab' => [
|
||||
'label' => 'Zobraziť',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user