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
+77
View File
@@ -0,0 +1,77 @@
<?php
return [
'label' => '匯出 :label',
'modal' => [
'heading' => '匯出 :label',
'form' => [
'columns' => [
'label' => '欄位',
'form' => [
'is_enabled' => [
'label' => ':column 開啟',
],
'label' => [
'label' => ':column 標籤',
],
],
],
],
'actions' => [
'export' => [
'label' => '匯出',
],
],
],
'notifications' => [
'completed' => [
'title' => '匯出完成',
'actions' => [
'download_csv' => [
'label' => '下載 .csv 檔案',
],
'download_xlsx' => [
'label' => '下載 .xlsx 檔案',
],
],
],
'max_rows' => [
'title' => '匯出的檔案過大',
'body' => '你不能一次匯出超過 1 行紀錄。|你不能一次匯出超過 :count 行紀錄。',
],
'started' => [
'title' => '匯出開始',
'body' => '你的匯出已經開始,將在背景處理共 1 行。|你的匯出已經開始,將在背景處理共 :count 行。',
],
],
'file_name' => 'export-:export_id-:model',
];