feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Создать :label',
|
||||
|
||||
'breadcrumb' => 'Создать',
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Отмена',
|
||||
],
|
||||
|
||||
'create' => [
|
||||
'label' => 'Создать',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Создать и Создать еще',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => 'Создано',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Редактирование :label',
|
||||
|
||||
'breadcrumb' => 'Редактирование',
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Отмена',
|
||||
],
|
||||
|
||||
'save' => [
|
||||
'label' => 'Сохранить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'content' => [
|
||||
|
||||
'tab' => [
|
||||
'label' => 'Изменить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Сохранено',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'breadcrumb' => 'Список',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Просмотр :label',
|
||||
|
||||
'breadcrumb' => 'Просмотр',
|
||||
|
||||
'content' => [
|
||||
|
||||
'tab' => [
|
||||
'label' => 'Просмотр',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user