This commit is contained in:
2025-10-22 20:08:22 +05:00
commit 736e3bef18
2573 changed files with 120385 additions and 0 deletions

View File

@@ -0,0 +1,482 @@
<?php
return [
'label' => 'Query builder',
'form' => [
'operator' => [
'label' => 'Operator',
],
'or_groups' => [
'label' => 'Groups',
'block' => [
'label' => 'OR condition',
'or' => 'OR',
],
],
'rules' => [
'label' => 'Rules',
'item' => [
'and' => 'AND',
],
],
],
'no_rules' => '(No rules)',
'item_separators' => [
'and' => 'AND',
'or' => 'OR',
],
'operators' => [
'is_filled' => [
'label' => [
'direct' => 'Is filled',
'inverse' => 'Is blank',
],
'summary' => [
'direct' => ':attribute is filled',
'inverse' => ':attribute is blank',
],
],
'boolean' => [
'is_true' => [
'label' => [
'direct' => 'Is true',
'inverse' => 'Is false',
],
'summary' => [
'direct' => ':attribute is true',
'inverse' => ':attribute is false',
],
],
],
'date' => [
'is_after' => [
'label' => [
'direct' => 'Is after',
'inverse' => 'Is not after',
],
'summary' => [
'direct' => ':attribute is after :date',
'inverse' => ':attribute is not after :date',
],
],
'is_before' => [
'label' => [
'direct' => 'Is before',
'inverse' => 'Is not before',
],
'summary' => [
'direct' => ':attribute is before :date',
'inverse' => ':attribute is not before :date',
],
],
'is_date' => [
'label' => [
'direct' => 'Is date',
'inverse' => 'Is not date',
],
'summary' => [
'direct' => ':attribute is :date',
'inverse' => ':attribute is not :date',
],
],
'is_month' => [
'label' => [
'direct' => 'Is month',
'inverse' => 'Is not month',
],
'summary' => [
'direct' => ':attribute is :month',
'inverse' => ':attribute is not :month',
],
],
'is_year' => [
'label' => [
'direct' => 'Is year',
'inverse' => 'Is not year',
],
'summary' => [
'direct' => ':attribute is :year',
'inverse' => ':attribute is not :year',
],
],
'form' => [
'date' => [
'label' => 'Date',
],
'month' => [
'label' => 'Month',
],
'year' => [
'label' => 'Year',
],
],
],
'number' => [
'equals' => [
'label' => [
'direct' => 'Equals',
'inverse' => 'Does not equal',
],
'summary' => [
'direct' => ':attribute equals :number',
'inverse' => ':attribute does not equal :number',
],
],
'is_max' => [
'label' => [
'direct' => 'Is maximum',
'inverse' => 'Is greater than',
],
'summary' => [
'direct' => ':attribute is maximum :number',
'inverse' => ':attribute is greater than :number',
],
],
'is_min' => [
'label' => [
'direct' => 'Is minimum',
'inverse' => 'Is less than',
],
'summary' => [
'direct' => ':attribute is minimum :number',
'inverse' => ':attribute is less than :number',
],
],
'aggregates' => [
'average' => [
'label' => 'Average',
'summary' => 'Average :attribute',
],
'max' => [
'label' => 'Max',
'summary' => 'Max :attribute',
],
'min' => [
'label' => 'Min',
'summary' => 'Min :attribute',
],
'sum' => [
'label' => 'Sum',
'summary' => 'Sum of :attribute',
],
],
'form' => [
'aggregate' => [
'label' => 'Aggregate',
],
'number' => [
'label' => 'Number',
],
],
],
'relationship' => [
'equals' => [
'label' => [
'direct' => 'Has',
'inverse' => 'Does not have',
],
'summary' => [
'direct' => 'Has :count :relationship',
'inverse' => 'Does not have :count :relationship',
],
],
'has_max' => [
'label' => [
'direct' => 'Has maximum',
'inverse' => 'Has more than',
],
'summary' => [
'direct' => 'Has maximum :count :relationship',
'inverse' => 'Has more than :count :relationship',
],
],
'has_min' => [
'label' => [
'direct' => 'Has minimum',
'inverse' => 'Has less than',
],
'summary' => [
'direct' => 'Has minimum :count :relationship',
'inverse' => 'Has less than :count :relationship',
],
],
'is_empty' => [
'label' => [
'direct' => 'Is empty',
'inverse' => 'Is not empty',
],
'summary' => [
'direct' => ':relationship is empty',
'inverse' => ':relationship is not empty',
],
],
'is_related_to' => [
'label' => [
'single' => [
'direct' => 'Is',
'inverse' => 'Is not',
],
'multiple' => [
'direct' => 'Contains',
'inverse' => 'Does not contain',
],
],
'summary' => [
'single' => [
'direct' => ':relationship is :values',
'inverse' => ':relationship is not :values',
],
'multiple' => [
'direct' => ':relationship contains :values',
'inverse' => ':relationship does not contain :values',
],
'values_glue' => [
0 => ', ',
'final' => ' or ',
],
],
'form' => [
'value' => [
'label' => 'Value',
],
'values' => [
'label' => 'Values',
],
],
],
'form' => [
'count' => [
'label' => 'Count',
],
],
],
'select' => [
'is' => [
'label' => [
'direct' => 'Is',
'inverse' => 'Is not',
],
'summary' => [
'direct' => ':attribute is :values',
'inverse' => ':attribute is not :values',
'values_glue' => [
', ',
'final' => ' or ',
],
],
'form' => [
'value' => [
'label' => 'Value',
],
'values' => [
'label' => 'Values',
],
],
],
],
'text' => [
'contains' => [
'label' => [
'direct' => 'Contains',
'inverse' => 'Does not contain',
],
'summary' => [
'direct' => ':attribute contains :text',
'inverse' => ':attribute does not contain :text',
],
],
'ends_with' => [
'label' => [
'direct' => 'Ends with',
'inverse' => 'Does not end with',
],
'summary' => [
'direct' => ':attribute ends with :text',
'inverse' => ':attribute does not end with :text',
],
],
'equals' => [
'label' => [
'direct' => 'Equals',
'inverse' => 'Does not equal',
],
'summary' => [
'direct' => ':attribute equals :text',
'inverse' => ':attribute does not equal :text',
],
],
'starts_with' => [
'label' => [
'direct' => 'Starts with',
'inverse' => 'Does not start with',
],
'summary' => [
'direct' => ':attribute starts with :text',
'inverse' => ':attribute does not start with :text',
],
],
'form' => [
'text' => [
'label' => 'Text',
],
],
],
],
'actions' => [
'add_rule' => [
'label' => 'Add rule',
],
'add_rule_group' => [
'label' => 'Add OR',
],
],
];

265
lang/vendor/filament-tables/en/table.php vendored Normal file
View File

@@ -0,0 +1,265 @@
<?php
return [
'column_manager' => [
'heading' => 'Columns',
'actions' => [
'apply' => [
'label' => 'Apply columns',
],
'reset' => [
'label' => 'Reset',
],
],
],
'columns' => [
'actions' => [
'label' => 'Action|Actions',
],
'select' => [
'loading_message' => 'Loading...',
'no_search_results_message' => 'No options match your search.',
'placeholder' => 'Select an option',
'searching_message' => 'Searching...',
'search_prompt' => 'Start typing to search...',
],
'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',
],
'column_manager' => [
'label' => 'Column manager',
],
],
'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',
'relationship' => [
'empty_option_label' => 'None',
],
],
'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',
],
'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',
],
],
],
],
'default_model_label' => 'record',
];

View File

@@ -0,0 +1,482 @@
<?php
return [
'label' => 'Конструктор запросов',
'form' => [
'operator' => [
'label' => 'Оператор',
],
'or_groups' => [
'label' => 'Группы',
'block' => [
'label' => 'Дизъюнкция (ИЛИ)',
'or' => 'ИЛИ',
],
],
'rules' => [
'label' => 'Правила',
'item' => [
'and' => 'И',
],
],
],
'no_rules' => '(Нет правил)',
'item_separators' => [
'and' => 'И',
'or' => 'ИЛИ',
],
'operators' => [
'is_filled' => [
'label' => [
'direct' => 'Заполнено',
'inverse' => 'Пусто',
],
'summary' => [
'direct' => ':attribute заполнено',
'inverse' => ':attribute пусто',
],
],
'boolean' => [
'is_true' => [
'label' => [
'direct' => 'Истина',
'inverse' => 'Ложь',
],
'summary' => [
'direct' => ':attribute истинно',
'inverse' => ':attribute ложно',
],
],
],
'date' => [
'is_after' => [
'label' => [
'direct' => 'После',
'inverse' => 'Не после',
],
'summary' => [
'direct' => ':attribute после :date',
'inverse' => ':attribute не после :date',
],
],
'is_before' => [
'label' => [
'direct' => 'До',
'inverse' => 'Не до',
],
'summary' => [
'direct' => ':attribute до :date',
'inverse' => ':attribute не до :date',
],
],
'is_date' => [
'label' => [
'direct' => 'Дата',
'inverse' => 'Не дата',
],
'summary' => [
'direct' => ':attribute это :date',
'inverse' => ':attribute не это :date',
],
],
'is_month' => [
'label' => [
'direct' => 'Месяц',
'inverse' => 'Не месяц',
],
'summary' => [
'direct' => ':attribute это :month',
'inverse' => ':attribute не это :month',
],
],
'is_year' => [
'label' => [
'direct' => 'Год',
'inverse' => 'Не год',
],
'summary' => [
'direct' => ':attribute это :year',
'inverse' => ':attribute не это :year',
],
],
'form' => [
'date' => [
'label' => 'Дата',
],
'month' => [
'label' => 'Месяц',
],
'year' => [
'label' => 'Год',
],
],
],
'number' => [
'equals' => [
'label' => [
'direct' => 'Равно',
'inverse' => 'Не равно',
],
'summary' => [
'direct' => ':attribute равно :number',
'inverse' => ':attribute не равно :number',
],
],
'is_max' => [
'label' => [
'direct' => 'Максимум',
'inverse' => 'Больше чем',
],
'summary' => [
'direct' => ':attribute максимум :number',
'inverse' => ':attribute больше чем :number',
],
],
'is_min' => [
'label' => [
'direct' => 'Минимум',
'inverse' => 'Меньше чем',
],
'summary' => [
'direct' => ':attribute минимум :number',
'inverse' => ':attribute меньше чем :number',
],
],
'aggregates' => [
'average' => [
'label' => 'Среднее',
'summary' => 'Среднее :attribute',
],
'max' => [
'label' => 'Макс',
'summary' => 'Макс :attribute',
],
'min' => [
'label' => 'Мин',
'summary' => 'Мин :attribute',
],
'sum' => [
'label' => 'Сумма',
'summary' => 'Сумма :attribute',
],
],
'form' => [
'aggregate' => [
'label' => 'Сводка',
],
'number' => [
'label' => 'Число',
],
],
],
'relationship' => [
'equals' => [
'label' => [
'direct' => 'Имеет',
'inverse' => 'Не имеет',
],
'summary' => [
'direct' => 'Имеет :count :relationship',
'inverse' => 'Не имеет :count :relationship',
],
],
'has_max' => [
'label' => [
'direct' => 'Имеет максимум',
'inverse' => 'Имеет больше чем',
],
'summary' => [
'direct' => 'Имеет максимум :count :relationship',
'inverse' => 'Имеет больше чем :count :relationship',
],
],
'has_min' => [
'label' => [
'direct' => 'Имеет минимум',
'inverse' => 'Имеет меньше чем',
],
'summary' => [
'direct' => 'Имеет минимум :count :relationship',
'inverse' => 'Имеет меньше чем :count :relationship',
],
],
'is_empty' => [
'label' => [
'direct' => 'Пусто',
'inverse' => 'Не пусто',
],
'summary' => [
'direct' => ':relationship пусто',
'inverse' => ':relationship не пусто',
],
],
'is_related_to' => [
'label' => [
'single' => [
'direct' => 'Является',
'inverse' => 'Не является',
],
'multiple' => [
'direct' => 'Содержит',
'inverse' => 'Не содержит',
],
],
'summary' => [
'single' => [
'direct' => ':relationship это :values',
'inverse' => ':relationship не это :values',
],
'multiple' => [
'direct' => ':relationship содержит :values',
'inverse' => ':relationship не содержит :values',
],
'values_glue' => [
0 => ', ',
'final' => ' или ',
],
],
'form' => [
'value' => [
'label' => 'Значение',
],
'values' => [
'label' => 'Значения',
],
],
],
'form' => [
'count' => [
'label' => 'Количество',
],
],
],
'select' => [
'is' => [
'label' => [
'direct' => 'Является',
'inverse' => 'Не является',
],
'summary' => [
'direct' => ':attribute это :values',
'inverse' => ':attribute не это :values',
'values_glue' => [
', ',
'final' => ' или ',
],
],
'form' => [
'value' => [
'label' => 'Значение',
],
'values' => [
'label' => 'Значения',
],
],
],
],
'text' => [
'contains' => [
'label' => [
'direct' => 'Содержит',
'inverse' => 'Не содержит',
],
'summary' => [
'direct' => ':attribute содержит :text',
'inverse' => ':attribute не содержит :text',
],
],
'ends_with' => [
'label' => [
'direct' => 'Заканчивается на',
'inverse' => 'Не заканчивается на',
],
'summary' => [
'direct' => ':attribute заканчивается на :text',
'inverse' => ':attribute не заканчивается на :text',
],
],
'equals' => [
'label' => [
'direct' => 'Равно',
'inverse' => 'Не равно',
],
'summary' => [
'direct' => ':attribute равно :text',
'inverse' => ':attribute не равно :text',
],
],
'starts_with' => [
'label' => [
'direct' => 'Начинается с',
'inverse' => 'Не начинается с',
],
'summary' => [
'direct' => ':attribute начинается с :text',
'inverse' => ':attribute не начинается с :text',
],
],
'form' => [
'text' => [
'label' => 'Текст',
],
],
],
],
'actions' => [
'add_rule' => [
'label' => 'Добавить правило',
],
'add_rule_group' => [
'label' => 'Добавить группу правил',
],
],
];

252
lang/vendor/filament-tables/ru/table.php vendored Normal file
View File

@@ -0,0 +1,252 @@
<?php
return [
'column_manager' => [
'heading' => 'Столбцы',
'actions' => [
'apply' => [
'label' => 'Применить столбцы',
],
'reset' => [
'label' => 'Сбросить',
],
],
],
'columns' => [
'actions' => [
'label' => 'Действие|Действия',
],
'text' => [
'actions' => [
'collapse_list' => 'Скрыть :count',
'expand_list' => 'Показать еще :count',
],
'more_list_items' => 'и :count еще',
],
],
'fields' => [
'bulk_select_page' => [
'label' => 'Выбрать/снять все элементы для массовых действий.',
],
'bulk_select_record' => [
'label' => 'Выбрать/отменить :key для массовых действий.',
],
'bulk_select_group' => [
'label' => 'Выбрать/отменить сводку :title для массовых действий.',
],
'search' => [
'label' => 'Поиск',
'placeholder' => 'Поиск',
'indicator' => 'Поиск',
],
],
'summary' => [
'heading' => 'Сводка',
'subheadings' => [
'all' => 'Все :label',
'group' => 'Cводка :group',
'page' => 'Эта страница',
],
'summarizers' => [
'average' => [
'label' => 'Среднее',
],
'count' => [
'label' => 'Кол.',
],
'sum' => [
'label' => 'Сумма',
],
],
],
'actions' => [
'disable_reordering' => [
'label' => 'Сохранить порядок',
],
'enable_reordering' => [
'label' => 'Изменить порядок',
],
'filter' => [
'label' => 'Фильтр',
],
'group' => [
'label' => 'Группировать',
],
'open_bulk_actions' => [
'label' => 'Открыть действия',
],
'column_manager' => [
'label' => 'Переключить столбцы',
],
],
'empty' => [
'heading' => 'Не найдено :model',
'description' => 'Создать :model для старта.',
],
'filters' => [
'actions' => [
'apply' => [
'label' => 'Применить фильтры',
],
'remove' => [
'label' => 'Удалить фильтр',
],
'remove_all' => [
'label' => 'Очистить фильтры',
'tooltip' => 'Очистить фильтры',
],
'reset' => [
'label' => 'Сбросить',
],
],
'heading' => 'Фильтры',
'indicator' => 'Активные фильтры',
'multi_select' => [
'placeholder' => 'Все',
],
'select' => [
'placeholder' => 'Все',
'relationship' => [
'empty_option_label' => 'Нет',
],
],
'trashed' => [
'label' => 'Удаленные записи',
'only_trashed' => 'Только удаленные записи',
'with_trashed' => 'С удаленными записями',
'without_trashed' => 'Без удаленных записей',
],
],
'grouping' => [
'fields' => [
'group' => [
'label' => 'Группировать по',
'placeholder' => 'Группировать по',
],
'direction' => [
'label' => 'Направление',
'options' => [
'asc' => 'По возрастанию',
'desc' => 'По убыванию',
],
],
],
],
'reorder_indicator' => 'Перетягивайте записи, чтобы изменить порядок.',
'selection_indicator' => [
'selected_count' => 'Выбрана 1 запись|Выбрано :count записей',
'actions' => [
'select_all' => [
'label' => 'Выбрать всё :count',
],
'deselect_all' => [
'label' => 'Убрать выделение со всех',
],
],
],
'sorting' => [
'fields' => [
'column' => [
'label' => 'Сортировка',
],
'direction' => [
'label' => 'Направление',
'options' => [
'asc' => 'По возрастанию',
'desc' => 'По убыванию',
],
],
],
],
'default_model_label' => 'запись',
];

View File

@@ -0,0 +1,482 @@
<?php
return [
'label' => 'Query builder',
'form' => [
'operator' => [
'label' => 'Operator',
],
'or_groups' => [
'label' => 'Groups',
'block' => [
'label' => 'OR condition',
'or' => 'OR',
],
],
'rules' => [
'label' => 'Rules',
'item' => [
'and' => 'AND',
],
],
],
'no_rules' => '(No rules)',
'item_separators' => [
'and' => 'AND',
'or' => 'OR',
],
'operators' => [
'is_filled' => [
'label' => [
'direct' => 'Is filled',
'inverse' => 'Is blank',
],
'summary' => [
'direct' => ':attribute is filled',
'inverse' => ':attribute is blank',
],
],
'boolean' => [
'is_true' => [
'label' => [
'direct' => 'Is true',
'inverse' => 'Is false',
],
'summary' => [
'direct' => ':attribute is true',
'inverse' => ':attribute is false',
],
],
],
'date' => [
'is_after' => [
'label' => [
'direct' => 'Is after',
'inverse' => 'Is not after',
],
'summary' => [
'direct' => ':attribute is after :date',
'inverse' => ':attribute is not after :date',
],
],
'is_before' => [
'label' => [
'direct' => 'Is before',
'inverse' => 'Is not before',
],
'summary' => [
'direct' => ':attribute is before :date',
'inverse' => ':attribute is not before :date',
],
],
'is_date' => [
'label' => [
'direct' => 'Is date',
'inverse' => 'Is not date',
],
'summary' => [
'direct' => ':attribute is :date',
'inverse' => ':attribute is not :date',
],
],
'is_month' => [
'label' => [
'direct' => 'Is month',
'inverse' => 'Is not month',
],
'summary' => [
'direct' => ':attribute is :month',
'inverse' => ':attribute is not :month',
],
],
'is_year' => [
'label' => [
'direct' => 'Is year',
'inverse' => 'Is not year',
],
'summary' => [
'direct' => ':attribute is :year',
'inverse' => ':attribute is not :year',
],
],
'form' => [
'date' => [
'label' => 'Date',
],
'month' => [
'label' => 'Month',
],
'year' => [
'label' => 'Year',
],
],
],
'number' => [
'equals' => [
'label' => [
'direct' => 'Equals',
'inverse' => 'Does not equal',
],
'summary' => [
'direct' => ':attribute equals :number',
'inverse' => ':attribute does not equal :number',
],
],
'is_max' => [
'label' => [
'direct' => 'Is maximum',
'inverse' => 'Is greater than',
],
'summary' => [
'direct' => ':attribute is maximum :number',
'inverse' => ':attribute is greater than :number',
],
],
'is_min' => [
'label' => [
'direct' => 'Is minimum',
'inverse' => 'Is less than',
],
'summary' => [
'direct' => ':attribute is minimum :number',
'inverse' => ':attribute is less than :number',
],
],
'aggregates' => [
'average' => [
'label' => 'Average',
'summary' => 'Average :attribute',
],
'max' => [
'label' => 'Max',
'summary' => 'Max :attribute',
],
'min' => [
'label' => 'Min',
'summary' => 'Min :attribute',
],
'sum' => [
'label' => 'Sum',
'summary' => 'Sum of :attribute',
],
],
'form' => [
'aggregate' => [
'label' => 'Aggregate',
],
'number' => [
'label' => 'Number',
],
],
],
'relationship' => [
'equals' => [
'label' => [
'direct' => 'Has',
'inverse' => 'Does not have',
],
'summary' => [
'direct' => 'Has :count :relationship',
'inverse' => 'Does not have :count :relationship',
],
],
'has_max' => [
'label' => [
'direct' => 'Has maximum',
'inverse' => 'Has more than',
],
'summary' => [
'direct' => 'Has maximum :count :relationship',
'inverse' => 'Has more than :count :relationship',
],
],
'has_min' => [
'label' => [
'direct' => 'Has minimum',
'inverse' => 'Has less than',
],
'summary' => [
'direct' => 'Has minimum :count :relationship',
'inverse' => 'Has less than :count :relationship',
],
],
'is_empty' => [
'label' => [
'direct' => 'Is empty',
'inverse' => 'Is not empty',
],
'summary' => [
'direct' => ':relationship is empty',
'inverse' => ':relationship is not empty',
],
],
'is_related_to' => [
'label' => [
'single' => [
'direct' => 'Is',
'inverse' => 'Is not',
],
'multiple' => [
'direct' => 'Contains',
'inverse' => 'Does not contain',
],
],
'summary' => [
'single' => [
'direct' => ':relationship is :values',
'inverse' => ':relationship is not :values',
],
'multiple' => [
'direct' => ':relationship contains :values',
'inverse' => ':relationship does not contain :values',
],
'values_glue' => [
0 => ', ',
'final' => ' or ',
],
],
'form' => [
'value' => [
'label' => 'Value',
],
'values' => [
'label' => 'Values',
],
],
],
'form' => [
'count' => [
'label' => 'Count',
],
],
],
'select' => [
'is' => [
'label' => [
'direct' => 'Is',
'inverse' => 'Is not',
],
'summary' => [
'direct' => ':attribute is :values',
'inverse' => ':attribute is not :values',
'values_glue' => [
', ',
'final' => ' or ',
],
],
'form' => [
'value' => [
'label' => 'Value',
],
'values' => [
'label' => 'Values',
],
],
],
],
'text' => [
'contains' => [
'label' => [
'direct' => 'Contains',
'inverse' => 'Does not contain',
],
'summary' => [
'direct' => ':attribute contains :text',
'inverse' => ':attribute does not contain :text',
],
],
'ends_with' => [
'label' => [
'direct' => 'Ends with',
'inverse' => 'Does not end with',
],
'summary' => [
'direct' => ':attribute ends with :text',
'inverse' => ':attribute does not end with :text',
],
],
'equals' => [
'label' => [
'direct' => 'Equals',
'inverse' => 'Does not equal',
],
'summary' => [
'direct' => ':attribute equals :text',
'inverse' => ':attribute does not equal :text',
],
],
'starts_with' => [
'label' => [
'direct' => 'Starts with',
'inverse' => 'Does not start with',
],
'summary' => [
'direct' => ':attribute starts with :text',
'inverse' => ':attribute does not start with :text',
],
],
'form' => [
'text' => [
'label' => 'Text',
],
],
],
],
'actions' => [
'add_rule' => [
'label' => 'Add rule',
],
'add_rule_group' => [
'label' => 'Add OR',
],
],
];

265
lang/vendor/filament-tables/tk/table.php vendored Normal file
View File

@@ -0,0 +1,265 @@
<?php
return [
'column_manager' => [
'heading' => 'Sütunler',
'actions' => [
'apply' => [
'label' => 'Tassykla',
],
'reset' => [
'label' => 'Aýyr',
],
],
],
'columns' => [
'actions' => [
'label' => 'Amal|Amallar',
],
'select' => [
'loading_message' => 'Ýüklenýär...',
'no_search_results_message' => 'No options match your search.',
'placeholder' => 'Saýla',
'searching_message' => 'Gözleg...',
'search_prompt' => 'Gözlemek üçin ýaz...',
],
'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' => 'Gözle',
'placeholder' => 'Gözle',
'indicator' => 'Search',
],
],
'summary' => [
'heading' => 'Summary',
'subheadings' => [
'all' => 'All :label',
'group' => ':group summary',
'page' => 'This page',
],
'summarizers' => [
'average' => [
'label' => 'Ortaça',
],
'count' => [
'label' => 'Sany',
],
'sum' => [
'label' => 'Jemi',
],
],
],
'actions' => [
'disable_reordering' => [
'label' => 'Finish reordering records',
],
'enable_reordering' => [
'label' => 'Reorder records',
],
'filter' => [
'label' => 'Filter',
],
'group' => [
'label' => 'Group',
],
'open_bulk_actions' => [
'label' => 'Bulk actions',
],
'column_manager' => [
'label' => 'Column manager',
],
],
'empty' => [
'heading' => 'No :model',
'description' => 'Create a :model to get started.',
],
'filters' => [
'actions' => [
'apply' => [
'label' => 'Filterle',
],
'remove' => [
'label' => 'Filteri aýyr',
],
'remove_all' => [
'label' => 'Filterleri aýyr',
'tooltip' => 'Filterleri aýyr',
],
'reset' => [
'label' => 'Filteri aýyr',
],
],
'heading' => 'Filterler',
'indicator' => 'Işjeň filterler',
'multi_select' => [
'placeholder' => 'Ählisi',
],
'select' => [
'placeholder' => 'Ählisi',
'relationship' => [
'empty_option_label' => 'None',
],
],
'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',
],
'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',
],
],
],
],
'default_model_label' => 'record',
];