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
+9
View File
@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => '正在上傳檔案...',
],
];
+9
View File
@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => '已複製',
],
];
+13
View File
@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => '關閉',
],
],
];
+47
View File
@@ -0,0 +1,47 @@
<?php
return [
'label' => '分頁導航',
'overview' => '正在顯示第 :first 至 :last 項結果,共 :total 項',
'fields' => [
'records_per_page' => [
'label' => '每頁顯示',
'options' => [
'all' => '全部',
],
],
],
'actions' => [
'first' => [
'label' => '第一頁',
],
'go_to_page' => [
'label' => '前往第 :page 頁',
],
'last' => [
'label' => '最後一頁',
],
'next' => [
'label' => '下一頁',
],
'previous' => [
'label' => '上一頁',
],
],
];