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 作成',
'breadcrumb' => '作成',
'form' => [
'actions' => [
'cancel' => [
'label' => 'キャンセル',
],
'create' => [
'label' => '作成',
],
'create_another' => [
'label' => '保存して、続けて作成',
],
],
],
'notifications' => [
'created' => [
'title' => '作成しました',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => ':label 編集',
'breadcrumb' => '編集',
'navigation_label' => '編集',
'form' => [
'actions' => [
'cancel' => [
'label' => 'キャンセル',
],
'save' => [
'label' => '保存',
],
],
],
'content' => [
'tab' => [
'label' => '編集',
],
],
'notifications' => [
'saved' => [
'title' => '保存しました',
],
],
];
@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => '一覧',
];
@@ -0,0 +1,7 @@
<?php
return [
'title' => ':label :relationship を管理',
];
@@ -0,0 +1,19 @@
<?php
return [
'title' => ':label 詳細',
'breadcrumb' => '詳細',
'navigation_label' => '詳細',
'content' => [
'tab' => [
'label' => '詳細',
],
],
];