feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'messages' => [
|
||||
'uploading_file' => '正在上傳檔案...',
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'messages' => [
|
||||
'copied' => '已複製',
|
||||
],
|
||||
|
||||
];
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'close' => [
|
||||
'label' => '關閉',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -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' => '上一頁',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user