table.php 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. return [
  3. 'fields' => [
  4. 'search' => [
  5. 'label' => '搜尋',
  6. 'placeholder' => '搜尋',
  7. ],
  8. ],
  9. 'actions' => [
  10. 'filter' => [
  11. 'label' => '篩選',
  12. ],
  13. 'open_bulk_actions' => [
  14. 'label' => '打開動作',
  15. ],
  16. 'toggle_columns' => [
  17. 'label' => '顯示/隱藏直列',
  18. ],
  19. ],
  20. 'empty' => [
  21. 'heading' => '未找到資料',
  22. ],
  23. 'filters' => [
  24. 'actions' => [
  25. 'reset' => [
  26. 'label' => '重設篩選',
  27. ],
  28. ],
  29. 'multi_select' => [
  30. 'placeholder' => '全部',
  31. ],
  32. 'select' => [
  33. 'placeholder' => '全部',
  34. ],
  35. 'trashed' => [
  36. 'label' => '已刪除的資料',
  37. 'only_trashed' => '僅顯示已刪除的資料',
  38. 'with_trashed' => '包含已刪除的資料',
  39. 'without_trashed' => '不含已刪除的資料',
  40. ],
  41. ],
  42. 'selection_indicator' => [
  43. 'selected_count' => '已選擇 :count 個項目',
  44. 'actions' => [
  45. 'select_all' => [
  46. 'label' => '選擇全部 :count 項',
  47. ],
  48. 'deselect_all' => [
  49. 'label' => '取消選擇全部',
  50. ],
  51. ],
  52. ],
  53. ];