| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <?php
-
- return [
-
- 'column_toggle' => [
-
- 'heading' => 'Columns',
-
- ],
-
- 'columns' => [
-
- 'actions' => [
- 'label' => 'Action|Actions',
- ],
-
- 'text' => [
-
- 'actions' => [
- 'collapse_list' => 'Show :count less',
- 'expand_list' => 'Show :count more',
- ],
-
- 'more_list_items' => 'and :count more',
-
- ],
-
- ],
-
- 'fields' => [
-
- 'bulk_select_page' => [
- 'label' => 'Select/deselect all items for bulk actions.',
- ],
-
- 'bulk_select_record' => [
- 'label' => 'Select/deselect item :key for bulk actions.',
- ],
-
- 'bulk_select_group' => [
- 'label' => 'Select/deselect group :title for bulk actions.',
- ],
-
- 'search' => [
- 'label' => 'Search',
- 'placeholder' => 'Search',
- 'indicator' => 'Search',
- ],
-
- ],
-
- 'summary' => [
-
- 'heading' => 'Summary',
-
- 'subheadings' => [
- 'all' => 'All :label',
- 'group' => ':group summary',
- 'page' => 'This page',
- ],
-
- 'summarizers' => [
-
- 'average' => [
- 'label' => 'Average',
- ],
-
- 'count' => [
- 'label' => 'Count',
- ],
-
- 'sum' => [
- 'label' => 'Sum',
- ],
-
- ],
-
- ],
-
- 'actions' => [
-
- 'disable_reordering' => [
- 'label' => 'Finish reordering records',
- ],
-
- 'enable_reordering' => [
- 'label' => 'Reorder records',
- ],
-
- 'filter' => [
- 'label' => 'Filter',
- ],
-
- 'group' => [
- 'label' => 'Group',
- ],
-
- 'open_bulk_actions' => [
- 'label' => 'Bulk actions',
- ],
-
- 'toggle_columns' => [
- 'label' => 'Toggle columns',
- ],
-
- ],
-
- 'empty' => [
-
- 'heading' => 'No :model',
-
- 'description' => 'Create a :model to get started.',
-
- ],
-
- 'filters' => [
-
- 'actions' => [
-
- 'apply' => [
- 'label' => 'Apply filters',
- ],
-
- 'remove' => [
- 'label' => 'Remove filter',
- ],
-
- 'remove_all' => [
- 'label' => 'Remove all filters',
- 'tooltip' => 'Remove all filters',
- ],
-
- 'reset' => [
- 'label' => 'Reset',
- ],
-
- ],
-
- 'heading' => 'Filters',
-
- 'indicator' => 'Active filters',
-
- 'multi_select' => [
- 'placeholder' => 'All',
- ],
-
- 'select' => [
- 'placeholder' => 'All',
- ],
-
- 'trashed' => [
-
- 'label' => 'Deleted records',
-
- 'only_trashed' => 'Only deleted records',
-
- 'with_trashed' => 'With deleted records',
-
- 'without_trashed' => 'Without deleted records',
-
- ],
-
- ],
-
- 'grouping' => [
-
- 'fields' => [
-
- 'group' => [
- 'label' => 'Group by',
- 'placeholder' => 'Group by',
- ],
-
- 'direction' => [
-
- 'label' => 'Group direction',
-
- 'options' => [
- 'asc' => 'Ascending',
- 'desc' => 'Descending',
- ],
-
- ],
-
- ],
-
- ],
-
- 'reorder_indicator' => 'Drag and drop the records into order.',
-
- 'selection_indicator' => [
-
- 'selected_count' => '1 record selected|:count records selected',
-
- 'actions' => [
-
- 'select_all' => [
- 'label' => 'Select all :count',
- ],
-
- 'deselect_all' => [
- 'label' => 'Deselect all',
- ],
-
- ],
-
- ],
-
- 'sorting' => [
-
- 'fields' => [
-
- 'column' => [
- 'label' => 'Sort by',
- ],
-
- 'direction' => [
-
- 'label' => 'Sort direction',
-
- 'options' => [
- 'asc' => 'Ascending',
- 'desc' => 'Descending',
- ],
-
- ],
-
- ],
-
- ],
-
- ];
|