[增添]添加了datasource的setting数据库以及默认值

This commit is contained in:
makotocc0107
2024-08-27 09:57:44 +08:00
parent d111dfaea4
commit 72eb990970
10955 changed files with 978898 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
<?php
return [
'single' => [
'label' => '關聯',
'modal' => [
'heading' => '關聯 :label',
'fields' => [
'record_id' => [
'label' => '資料',
],
],
'actions' => [
'associate' => [
'label' => '關聯',
],
'associate_another' => [
'label' => '關聯後繼續關聯另一個',
],
],
],
'notifications' => [
'associated' => [
'title' => '已關聯',
],
],
],
];

View File

@@ -0,0 +1,45 @@
<?php
return [
'single' => [
'label' => '附加',
'modal' => [
'heading' => '附加 :label',
'fields' => [
'record_id' => [
'label' => '資料',
],
],
'actions' => [
'attach' => [
'label' => '附加',
],
'attach_another' => [
'label' => '附加後繼續附加另一個',
],
],
],
'notifications' => [
'attached' => [
'title' => '已附加',
],
],
],
];

View File

@@ -0,0 +1,37 @@
<?php
return [
'single' => [
'label' => '新增 :label',
'modal' => [
'heading' => '建立 :label',
'actions' => [
'create' => [
'label' => '建立',
],
'create_another' => [
'label' => '建立後繼續建立另一個',
],
],
],
'notifications' => [
'created' => [
'title' => '已建立',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => '刪除',
'modal' => [
'heading' => '刪除 :label',
'actions' => [
'delete' => [
'label' => '刪除',
],
],
],
'notifications' => [
'deleted' => [
'title' => '已刪除',
],
],
],
'multiple' => [
'label' => '刪除所選的項目',
'modal' => [
'heading' => '刪除所選的 :label',
'actions' => [
'delete' => [
'label' => '刪除',
],
],
],
'notifications' => [
'deleted' => [
'title' => '已刪除',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => '解除附加',
'modal' => [
'heading' => '解除附加 :label',
'actions' => [
'detach' => [
'label' => '解除附加',
],
],
],
'notifications' => [
'detached' => [
'title' => '解除附加',
],
],
],
'multiple' => [
'label' => '解除附加所選的項目',
'modal' => [
'heading' => '解除附加所選的 :label',
'actions' => [
'detach' => [
'label' => '解除附加所選的項目',
],
],
],
'notifications' => [
'detached' => [
'title' => '已解除附加',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => '取消關聯',
'modal' => [
'heading' => '取消關聯 :label',
'actions' => [
'dissociate' => [
'label' => '取消關聯',
],
],
],
'notifications' => [
'dissociated' => [
'title' => '已取消關聯',
],
],
],
'multiple' => [
'label' => '取消關聯所選的項目',
'modal' => [
'heading' => '取消關聯所選的 :label',
'actions' => [
'dissociate' => [
'label' => '取消關聯所選的項目',
],
],
],
'notifications' => [
'dissociated' => [
'title' => '已取消關聯',
],
],
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => '編輯',
'modal' => [
'heading' => '編輯 :label',
'actions' => [
'save' => [
'label' => '保存',
],
],
],
'notifications' => [
'saved' => [
'title' => '已保存',
],
],
],
];

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',
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => '強制刪除',
'modal' => [
'heading' => '強制刪除 :label',
'actions' => [
'delete' => [
'label' => '刪除',
],
],
],
'notifications' => [
'deleted' => [
'title' => '已刪除資料',
],
],
],
'multiple' => [
'label' => '強制刪除所選的項目',
'modal' => [
'heading' => '強制刪除所選的 :label',
'actions' => [
'delete' => [
'label' => '刪除',
],
],
],
'notifications' => [
'deleted' => [
'title' => '已刪除資料',
],
],
],
];

View File

@@ -0,0 +1,9 @@
<?php
return [
'trigger' => [
'label' => '動作',
],
];

View File

@@ -0,0 +1,76 @@
<?php
return [
'label' => '匯入:label',
'modal' => [
'heading' => '匯入:label',
'form' => [
'file' => [
'label' => '檔案',
'placeholder' => '上傳一個 CSV 檔案',
],
'columns' => [
'label' => '欄位',
'placeholder' => '選擇一個欄位',
],
],
'actions' => [
'download_example' => [
'label' => '下載一個 CSV 模板',
],
'import' => [
'label' => '匯入',
],
],
],
'notifications' => [
'completed' => [
'title' => '匯入完成',
'actions' => [
'download_failed_rows_csv' => [
'label' => '下載匯入失敗的紀錄|下載匯入失敗的紀錄',
],
],
],
'max_rows' => [
'title' => '上傳的 CSV 檔案過大',
'body' => '你不能一次匯入超過 1 行紀錄。|你不能一次匯入超過 :count 行紀錄。',
],
'started' => [
'title' => '匯入開始',
'body' => '你的匯入已經開始,將在後台處理共 1 行。|你的匯入已經開始,將在後台處理共 :count 行。',
],
],
'example_csv' => [
'file_name' => ':importer-example',
],
'failure_csv' => [
'file_name' => 'import-:import_id-:csv_name-failed-rows',
'error_header' => '錯誤',
'system_error' => '系統錯誤,請聯繫官方。',
],
];

View File

@@ -0,0 +1,23 @@
<?php
return [
'confirmation' => '確定要進行嗎?',
'actions' => [
'cancel' => [
'label' => '取消',
],
'confirm' => [
'label' => '確定',
],
'submit' => [
'label' => '送出',
],
],
];

View File

@@ -0,0 +1,33 @@
<?php
return [
'single' => [
'label' => '複製',
'modal' => [
'heading' => '複製 :label',
'actions' => [
'replicate' => [
'label' => '複製',
],
],
],
'notifications' => [
'replicated' => [
'title' => '已複製資料',
],
],
],
];

View File

@@ -0,0 +1,61 @@
<?php
return [
'single' => [
'label' => '還原',
'modal' => [
'heading' => '還原 :label',
'actions' => [
'restore' => [
'label' => '還原',
],
],
],
'notifications' => [
'restored' => [
'title' => '已還原資料',
],
],
],
'multiple' => [
'label' => '已還原所選的資料',
'modal' => [
'heading' => '已選擇 :label',
'actions' => [
'restore' => [
'label' => '還原',
],
],
],
'notifications' => [
'restored' => [
'title' => '已還原資料',
],
],
],
];

View File

@@ -0,0 +1,25 @@
<?php
return [
'single' => [
'label' => '檢視',
'modal' => [
'heading' => '檢視 :label',
'actions' => [
'close' => [
'label' => '關閉',
],
],
],
],
];