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
+94
View File
@@ -0,0 +1,94 @@
<?php
return [
'label' => 'エクスポート',
'modal' => [
'heading' => 'エクスポート :label',
'form' => [
'columns' => [
'label' => 'カラム',
'actions' => [
'select_all' => [
'label' => 'すべて選択',
],
'deselect_all' => [
'label' => 'すべて解除',
],
],
'form' => [
'is_enabled' => [
'label' => ':column が有効になりました',
],
'label' => [
'label' => ':column ラベル',
],
],
],
],
'actions' => [
'export' => [
'label' => 'エクスポート',
],
],
],
'notifications' => [
'no_columns' => [
'title' => 'カラムが選択されていません',
'body' => 'エクスポートするカラムを少なくとも1つ選択してください。',
],
'completed' => [
'title' => 'エクスポート完了',
'actions' => [
'download_csv' => [
'label' => 'csv形式をダウンロード',
],
'download_xlsx' => [
'label' => 'xlsx形式をダウンロード',
],
],
],
'max_rows' => [
'title' => 'エクスポートするデータが大きすぎます',
'body' => '一度に:count行を超える行をエクスポートすることはできません。',
],
'started' => [
'title' => 'エクスポート開始',
'body' => 'エクスポートが開始され、:count行がバックグラウンドで処理されます。',
],
],
'file_name' => 'export-:export_id-:model',
];