[增添]添加了datasource的setting数据库以及默认值
This commit is contained in:
228
vendor/filament/tables/resources/js/components/table.js
vendored
Normal file
228
vendor/filament/tables/resources/js/components/table.js
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
export default function table() {
|
||||
return {
|
||||
collapsedGroups: [],
|
||||
|
||||
isLoading: false,
|
||||
|
||||
selectedRecords: [],
|
||||
|
||||
shouldCheckUniqueSelection: true,
|
||||
|
||||
lastCheckedRecord: null,
|
||||
|
||||
init: function () {
|
||||
this.$wire.$on('deselectAllTableRecords', () =>
|
||||
this.deselectAllRecords(),
|
||||
)
|
||||
|
||||
this.$watch('selectedRecords', () => {
|
||||
if (!this.shouldCheckUniqueSelection) {
|
||||
this.shouldCheckUniqueSelection = true
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
this.selectedRecords = [...new Set(this.selectedRecords)]
|
||||
|
||||
this.shouldCheckUniqueSelection = false
|
||||
})
|
||||
|
||||
this.$nextTick(() => this.watchForCheckboxClicks())
|
||||
|
||||
Livewire.hook('element.init', ({ component }) => {
|
||||
if (component.id === this.$wire.id) {
|
||||
this.watchForCheckboxClicks()
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
mountAction: function (name, record = null) {
|
||||
this.$wire.set('selectedTableRecords', this.selectedRecords, false)
|
||||
this.$wire.mountTableAction(name, record)
|
||||
},
|
||||
|
||||
mountBulkAction: function (name) {
|
||||
this.$wire.set('selectedTableRecords', this.selectedRecords, false)
|
||||
this.$wire.mountTableBulkAction(name)
|
||||
},
|
||||
|
||||
toggleSelectRecordsOnPage: function () {
|
||||
const keys = this.getRecordsOnPage()
|
||||
|
||||
if (this.areRecordsSelected(keys)) {
|
||||
this.deselectRecords(keys)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
this.selectRecords(keys)
|
||||
},
|
||||
|
||||
toggleSelectRecordsInGroup: async function (group) {
|
||||
this.isLoading = true
|
||||
|
||||
if (this.areRecordsSelected(this.getRecordsInGroupOnPage(group))) {
|
||||
this.deselectRecords(
|
||||
await this.$wire.getGroupedSelectableTableRecordKeys(group),
|
||||
)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
this.selectRecords(
|
||||
await this.$wire.getGroupedSelectableTableRecordKeys(group),
|
||||
)
|
||||
|
||||
this.isLoading = false
|
||||
},
|
||||
|
||||
getRecordsInGroupOnPage: function (group) {
|
||||
const keys = []
|
||||
|
||||
for (let checkbox of this.$root?.getElementsByClassName(
|
||||
'fi-ta-record-checkbox',
|
||||
) ?? []) {
|
||||
if (checkbox.dataset.group !== group) {
|
||||
continue
|
||||
}
|
||||
|
||||
keys.push(checkbox.value)
|
||||
}
|
||||
|
||||
return keys
|
||||
},
|
||||
|
||||
getRecordsOnPage: function () {
|
||||
const keys = []
|
||||
|
||||
for (let checkbox of this.$root?.getElementsByClassName(
|
||||
'fi-ta-record-checkbox',
|
||||
) ?? []) {
|
||||
keys.push(checkbox.value)
|
||||
}
|
||||
|
||||
return keys
|
||||
},
|
||||
|
||||
selectRecords: function (keys) {
|
||||
for (let key of keys) {
|
||||
if (this.isRecordSelected(key)) {
|
||||
continue
|
||||
}
|
||||
|
||||
this.selectedRecords.push(key)
|
||||
}
|
||||
},
|
||||
|
||||
deselectRecords: function (keys) {
|
||||
for (let key of keys) {
|
||||
let index = this.selectedRecords.indexOf(key)
|
||||
|
||||
if (index === -1) {
|
||||
continue
|
||||
}
|
||||
|
||||
this.selectedRecords.splice(index, 1)
|
||||
}
|
||||
},
|
||||
|
||||
selectAllRecords: async function () {
|
||||
this.isLoading = true
|
||||
|
||||
this.selectedRecords =
|
||||
await this.$wire.getAllSelectableTableRecordKeys()
|
||||
|
||||
this.isLoading = false
|
||||
},
|
||||
|
||||
deselectAllRecords: function () {
|
||||
this.selectedRecords = []
|
||||
},
|
||||
|
||||
isRecordSelected: function (key) {
|
||||
return this.selectedRecords.includes(key)
|
||||
},
|
||||
|
||||
areRecordsSelected: function (keys) {
|
||||
return keys.every((key) => this.isRecordSelected(key))
|
||||
},
|
||||
|
||||
toggleCollapseGroup: function (group) {
|
||||
if (this.isGroupCollapsed(group)) {
|
||||
this.collapsedGroups.splice(
|
||||
this.collapsedGroups.indexOf(group),
|
||||
1,
|
||||
)
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
this.collapsedGroups.push(group)
|
||||
},
|
||||
|
||||
isGroupCollapsed: function (group) {
|
||||
return this.collapsedGroups.includes(group)
|
||||
},
|
||||
|
||||
resetCollapsedGroups: function () {
|
||||
this.collapsedGroups = []
|
||||
},
|
||||
|
||||
watchForCheckboxClicks: function () {
|
||||
let checkboxes =
|
||||
this.$root?.getElementsByClassName('fi-ta-record-checkbox') ??
|
||||
[]
|
||||
|
||||
for (let checkbox of checkboxes) {
|
||||
// Remove existing listener to avoid duplicates
|
||||
checkbox.removeEventListener('click', this.handleCheckboxClick)
|
||||
|
||||
checkbox.addEventListener('click', (event) =>
|
||||
this.handleCheckboxClick(event, checkbox),
|
||||
)
|
||||
}
|
||||
},
|
||||
|
||||
handleCheckboxClick: function (event, checkbox) {
|
||||
if (!this.lastChecked) {
|
||||
this.lastChecked = checkbox
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
if (event.shiftKey) {
|
||||
let checkboxes = Array.from(
|
||||
this.$root?.getElementsByClassName(
|
||||
'fi-ta-record-checkbox',
|
||||
) ?? [],
|
||||
)
|
||||
|
||||
if (!checkboxes.includes(this.lastChecked)) {
|
||||
this.lastChecked = checkbox
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
let start = checkboxes.indexOf(this.lastChecked)
|
||||
let end = checkboxes.indexOf(checkbox)
|
||||
|
||||
let range = [start, end].sort((a, b) => a - b)
|
||||
let values = []
|
||||
|
||||
for (let i = range[0]; i <= range[1]; i++) {
|
||||
checkboxes[i].checked = checkbox.checked
|
||||
|
||||
values.push(checkboxes[i].value)
|
||||
}
|
||||
|
||||
if (checkbox.checked) {
|
||||
this.selectRecords(values)
|
||||
} else {
|
||||
this.deselectRecords(values)
|
||||
}
|
||||
}
|
||||
|
||||
this.lastChecked = checkbox
|
||||
},
|
||||
}
|
||||
}
|
||||
0
vendor/filament/tables/resources/js/index.js
vendored
Normal file
0
vendor/filament/tables/resources/js/index.js
vendored
Normal file
482
vendor/filament/tables/resources/lang/ar/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/ar/filters/query-builder.php
vendored
Normal 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' => 'إضافة مجموعة قواعد',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/ar/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/ar/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'الأعمدة',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'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' => 'ملخص :group',
|
||||
'page' => 'هذه الصفحة',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'المتوسط',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'العدد',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'المجموع',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'إنهاء إعادة ترتيب السجلات',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'إعادة ترتيب السجلات',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'تصفية',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'مجموعة',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'الإجراءات',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'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' => 'الكل',
|
||||
],
|
||||
|
||||
'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} تم تحديد سجل واحد|[3,10] تم تحديد :count سجلات |[2,*] تم تحديد :count سجل',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'تحديد كل السجلات :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'إلغاء تحديد الكل',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'ترتيب حسب',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'اتجاه الترتيب',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'تصاعدي',
|
||||
'desc' => 'تنازلي',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
217
vendor/filament/tables/resources/lang/az/table.php
vendored
Normal file
217
vendor/filament/tables/resources/lang/az/table.php
vendored
Normal file
@@ -0,0 +1,217 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Sütunlar',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'və :count daha',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Çoxlu hərəkətlər üçün bütün elementləri seç/seçimi yığışdır.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Çoxlu hərəkətlər üçün :key elementini seç/seçimi yığışdır.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Çoxlu hərəkətlər üçün :title qrupunu seç/seçimi yığışdır.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Axtar',
|
||||
'placeholder' => 'Axtar',
|
||||
'indicator' => 'Axtar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Xülasə',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Bütün :label',
|
||||
'group' => ':group xülasəsi',
|
||||
'page' => 'Bu səhifə',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Ortalama',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Say',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Toplam',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Sıralamanı yekunlaşdır',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Sıralamanı başlat',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtrlə',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Qrupla',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Çoxlu hərəkətlər',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Sütunları göstər/gizlət',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => ':model Yoxdur',
|
||||
|
||||
'description' => 'Başlamaq üçün bir :model yaradın.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Filtri yığışdır',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Bütün filtrləri yığışdır',
|
||||
'tooltip' => 'Bütün filtrləri yığışdır',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Sıfırla',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtrlər',
|
||||
|
||||
'indicator' => 'Aktiv filtrlər',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Hamısı',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Hamısı',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Silinmiş məlumatlar',
|
||||
|
||||
'only_trashed' => 'Sadəcə silinmiş məlumatlar',
|
||||
|
||||
'with_trashed' => 'Silinmiş məlumatlarla birlikdə',
|
||||
|
||||
'without_trashed' => 'Silinmiş məlumatlar olmadan',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Qrupla',
|
||||
'placeholder' => 'Qrupla',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Qrup istiqaməti',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Artan',
|
||||
'desc' => 'Azalan',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Məlumatları sıralamaq üçün sürüşdürüb buraxın.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 məlumat seçildi|:count məlumat seçildi',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Bütün :count məlumatı seç',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Bütün seçimləri yığışdır',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Buna görə sırala',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Sıralama istiqaməti',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Artan',
|
||||
'desc' => 'Azalan',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/bg/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/bg/filters/query-builder.php
vendored
Normal 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' => 'E след',
|
||||
'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' => 'Добави група',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/bg/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/bg/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Колони',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'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' => 'Обебщение на :group',
|
||||
'page' => 'Текуща страница',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Средно',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Брой',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Сума',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Приключи пренареждането',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Пренареди',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Филтрирай',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Групирай',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Отвори масови действия',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'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' => 'Избери',
|
||||
],
|
||||
|
||||
'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' => 'Низходящо',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
136
vendor/filament/tables/resources/lang/bn/table.php
vendored
Normal file
136
vendor/filament/tables/resources/lang/bn/table.php
vendored
Normal file
@@ -0,0 +1,136 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'এবং আরো :count',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'search' => [
|
||||
'label' => 'খুঁজুন',
|
||||
'placeholder' => 'খুঁজুন',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'রেকর্ড পুনর্বিন্যাস সম্পন্ন করুন',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'রেকর্ড পুনর্বিন্যাস করুন',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'অনুসন্ধান করুন',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'কার্যক্রম গুলো দেখুন',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'কলাম টগল করুন',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
'heading' => 'রেকর্ড পাওয়া যায়নি',
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'অনুসন্ধান সরান',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'সব অনুসন্ধান সরান',
|
||||
'tooltip' => 'সব অনুসন্ধান সরান',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'অনুসন্ধান সরান',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'indicator' => 'সক্রিয় অনুসন্ধান',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'সব',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'সব',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'রেকর্ড মুছে ফেলুন',
|
||||
|
||||
'only_trashed' => 'শুধু মুছে ফেলা রেকর্ডগুলো',
|
||||
|
||||
'with_trashed' => 'মুছে ফেলা রেকর্ডগুলোর সাথে',
|
||||
|
||||
'without_trashed' => 'মুছে ফেলা রেকর্ডগুলো ছাড়া',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'ক্রমানুসারে রেকর্ড টেনে আনুন।',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '১ টি রেকর্ড নির্বাচিত। | :count টি রেকর্ড নির্বাচিত।',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'সব নির্বাচিত করুন',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'সব অনির্বাচিত করুন',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'ক্রমানুসার',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'ক্রমানুসারের দিক',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'ঊর্ধ্বগামী',
|
||||
'desc' => 'অধোগামী',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
144
vendor/filament/tables/resources/lang/bs/table.php
vendored
Normal file
144
vendor/filament/tables/resources/lang/bs/table.php
vendored
Normal file
@@ -0,0 +1,144 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'i :count više',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Odaberi/poništi odabir svih stavki za grupne radnje.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Odaberi/poništi odabir stavke :key za grupne radnje.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Pretraga',
|
||||
'placeholder' => 'Tražite',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Završi preuređivanje zapisa',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Preuredi zapise',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filter',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Otvorene akcije',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Preklopiti kolone',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
'heading' => 'Nije pronađen nijedan zapis',
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Skloni filter',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Skloni svi filteri',
|
||||
'tooltip' => 'Skloni svi filteri',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Resetujte filtere',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'indicator' => 'Aktivne filteri',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Svi',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Svi',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Izbrisani zapisi',
|
||||
|
||||
'only_trashed' => 'Samo izbrisani zapisi',
|
||||
|
||||
'with_trashed' => 'Sa izbrisanim zapisima',
|
||||
|
||||
'without_trashed' => 'Bez izbrisanih zapisa',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Prevucite i ispustite zapise u red.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 izabran zapis|:count izabrani zapisi',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Izaberite sve :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Poništitite izbor',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Sortirajte po',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Sortirajte po smjeru',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Uzlazno',
|
||||
'desc' => 'Silazno',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/ca/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/ca/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Constructor de consultes',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operador',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Grups',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjunció (O)',
|
||||
'or' => 'O',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Regles',
|
||||
|
||||
'item' => [
|
||||
'and' => 'Y',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Sense regles)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'Y',
|
||||
'or' => 'O',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Està emplenat',
|
||||
'inverse' => 'Està en blanc',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute està emplenat',
|
||||
'inverse' => ':attribute està en blanc',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'És cert',
|
||||
'inverse' => 'És fals',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute és cert',
|
||||
'inverse' => ':attribute és fals',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'És posterior a',
|
||||
'inverse' => 'No és posterior a',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute és posterior a :date',
|
||||
'inverse' => ':attribute no és posterior a :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'És anterior a',
|
||||
'inverse' => 'No és anterior a',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute és anterior a :date',
|
||||
'inverse' => ':attribute no és anterior a :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'És a la data',
|
||||
'inverse' => 'No és a la data',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute és a :date',
|
||||
'inverse' => ':attribute no és a :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'És en el mes de',
|
||||
'inverse' => 'No és en el mes de',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute és al :month',
|
||||
'inverse' => ':attribute no és al :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => "És a l'any",
|
||||
'inverse' => "No és a l'any",
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute és al :year',
|
||||
'inverse' => ':attribute no és al :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Data',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Mes',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Any',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Igual a',
|
||||
'inverse' => 'No és igual a',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute és igual a :number',
|
||||
'inverse' => ':attribute no és igual a :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'És màxim',
|
||||
'inverse' => 'És major que',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute és màxim :number',
|
||||
'inverse' => ':attribute és major que :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'És mínim',
|
||||
'inverse' => 'És menor que',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute és mínim :number',
|
||||
'inverse' => ':attribute és menor que :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Promig',
|
||||
'summary' => ':Attribute promig',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Màx',
|
||||
'summary' => 'Màxim :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Mín',
|
||||
'summary' => 'Mínim :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Suma',
|
||||
'summary' => 'Suma de :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Agregat',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Número',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Té',
|
||||
'inverse' => 'No té',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Té :count :relationship',
|
||||
'inverse' => 'No té :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Té màxim',
|
||||
'inverse' => 'Té més de',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Té màxim :count :relationship',
|
||||
'inverse' => 'Té més de :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Té mínim',
|
||||
'inverse' => 'Té menys de',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Té mínim :count :relationship',
|
||||
'inverse' => 'Té menys de :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'És buit',
|
||||
'inverse' => 'No és buit',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship és buit',
|
||||
'inverse' => ':relationship no és buit',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'És',
|
||||
'inverse' => 'No és',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Conté',
|
||||
'inverse' => 'No conté',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship són :values',
|
||||
'inverse' => ':relationship no són :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship conté :values',
|
||||
'inverse' => ':relationship no conté :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' o ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Valor',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Valors',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Recompte',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'És',
|
||||
'inverse' => 'No és',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute és :values',
|
||||
'inverse' => ':attribute no és :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' o ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Valor',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Valors',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Conté',
|
||||
'inverse' => 'No conté',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute conté :text',
|
||||
'inverse' => ':attribute no conté :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Acaba en',
|
||||
'inverse' => 'No acaba en',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute acaba en :text',
|
||||
'inverse' => ':attribute no acaba en :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'És igual a',
|
||||
'inverse' => 'No és igual a',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute és igual a :text',
|
||||
'inverse' => ':attribute no és igual a :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Comença amb',
|
||||
'inverse' => 'No comença amb',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute comença amb :text',
|
||||
'inverse' => ':attribute no comença amb :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Agregar regla',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Agregar grup de regles',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/ca/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/ca/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Columnes',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Mostrar-ne :count menys',
|
||||
'expand_list' => 'Mostrar-ne :count més',
|
||||
],
|
||||
|
||||
'more_list_items' => 'i :count més',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Seleccionar/desseleccionar tots els elements per les accions massives.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Seleccionar/desseleccionar l\'element :key per accions massives.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Seleccionar/desseleccionar grup :title per accions massives.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Cerca',
|
||||
'placeholder' => 'Cercar',
|
||||
'indicator' => 'Cercar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Resum',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Tots :label',
|
||||
'group' => 'Resum del :group',
|
||||
'page' => 'Aquesta pàgina',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Mitja',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Recompte',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Suma',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Acabar de reorganitzar registres',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Reorganitzar registres',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtrar',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grup',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Accions massives',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Alternar columnes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'No s\'han trobat registres',
|
||||
|
||||
'description' => 'Crea un :model per començar.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Aplicar filtres',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Esborrar filtre',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Esborrar tots els filtres',
|
||||
'tooltip' => 'Esborrar tots els filtres',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Restablir',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtres',
|
||||
|
||||
'indicator' => 'Filtres actius',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Tots',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Tots',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Registres esborrats',
|
||||
|
||||
'only_trashed' => 'Només registres esborrats',
|
||||
|
||||
'with_trashed' => 'Amb registres esborrats',
|
||||
|
||||
'without_trashed' => 'Sense registres esborrats',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Agrupar per',
|
||||
'placeholder' => 'Agrupar per',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Sentit',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Ascendent',
|
||||
'desc' => 'Descendent',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Arrossega i deixa anar els registres per ordenar-los.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 registre seleccionat|:count registres seleccionats',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Selecciona\'ls tots :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Desselecciona\'ls tots',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Ordenar per',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Sentit',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Ascendent',
|
||||
'desc' => 'Descendent',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
213
vendor/filament/tables/resources/lang/ckb/table.php
vendored
Normal file
213
vendor/filament/tables/resources/lang/ckb/table.php
vendored
Normal file
@@ -0,0 +1,213 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'ستوونەکان',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'وە :count ی زیاتر',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'دیاریکردن/لابردنی دیاریکردنەکان بۆ هەموو تۆمارەکان بۆ کۆمەڵەی کردارەکان.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'دیاریکردن/لابردنی دیاریکراوەکان بۆ :key بۆ کۆمەڵەی کردارەکان.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'گەڕان',
|
||||
'placeholder' => 'گەڕان',
|
||||
'indicator' => 'گەڕان',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'پوختە',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'هەموو :label',
|
||||
'group' => ':group پوختە',
|
||||
'page' => 'ئەم پەڕەیە',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'تێکڕا',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'ژماردەکان',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'کۆی گشتی',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'تەواوکردنی ڕێکخستنی تۆمارەکان',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'ڕێکخستنی تۆمارەکان',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'فلتەر',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'کۆمەڵ',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'کۆمەڵی کردارەکان',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'پشاندان/لابردنی ستوونەکان',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'هیچ تۆمارێکی :model بوونی نییە.',
|
||||
|
||||
'description' => 'تۆمارێکی :model دروس بکە بۆ دەستپێکردن.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'سڕینەوەی فلتەر',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'سڕینەوەی هەموو فلتەرەکان',
|
||||
'tooltip' => 'سڕینەوەی هەموو فلتەرەکان',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'دۆخی سەرەتا',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'فلتەرەکان',
|
||||
|
||||
'indicator' => 'فلتەرە چالاککراوەکان',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'هەموو',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'هەموو',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'تۆمارە سڕدراوەکان',
|
||||
|
||||
'only_trashed' => 'تەنها تۆمارە سڕدراوەکان',
|
||||
|
||||
'with_trashed' => 'لەگەل تۆمارە سڕدراوەکان',
|
||||
|
||||
'without_trashed' => 'بەبێ تۆمارە سڕدراوەکان',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'کۆمەڵ کردن بە',
|
||||
'placeholder' => 'کۆمەڵ کردن بە',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'ئاڕاستەی کۆمەڵ کردن',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'کەم بۆ زۆر',
|
||||
'desc' => 'زۆر بۆ کەم',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'تۆمارەکان هەڵبگرە و ڕیزیان بکە.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '١ ڕیز دیاریکراوە|:count ڕیز دیاریکراوە',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'هەڵبژاردنی هەموو :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'هەڵنەبژاردنی هەموو',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'کۆمەڵکردن بە',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'ئاڕاستەی کۆمەڵ کردن',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'کەم بۆ زۆر',
|
||||
'desc' => 'زۆر بۆ کەم',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/cs/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/cs/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Query builder',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operátor',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Skupiny',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjunkce (NEBO)',
|
||||
'or' => 'NEBO',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Pravidla',
|
||||
|
||||
'item' => [
|
||||
'and' => 'A',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Žádná pravidla)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'A',
|
||||
'or' => 'NEBO',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je vyplněno',
|
||||
'inverse' => 'Je prázdné',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je vyplněno',
|
||||
'inverse' => ':attribute je prázdné',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je pravda',
|
||||
'inverse' => 'Není pravda',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je pravda',
|
||||
'inverse' => ':attribute není pravda',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je po',
|
||||
'inverse' => 'Není po',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je po :date',
|
||||
'inverse' => ':attribute není po :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je před',
|
||||
'inverse' => 'Není před',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je před :date',
|
||||
'inverse' => ':attribute není před :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je datum',
|
||||
'inverse' => 'Není datum',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je :date',
|
||||
'inverse' => ':attribute není :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je měsíc',
|
||||
'inverse' => 'Není měsíc',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je :month',
|
||||
'inverse' => ':attribute není :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je rok',
|
||||
'inverse' => 'Není rok',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je :year',
|
||||
'inverse' => ':attribute není :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Datum',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Měsíc',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Rok',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Rovná se',
|
||||
'inverse' => 'Nerovná se',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute se rovná :number',
|
||||
'inverse' => ':attribute se nerovná :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je maximální',
|
||||
'inverse' => 'Je větší než',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je maximálně :number',
|
||||
'inverse' => ':attribute je větší než :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je minimální',
|
||||
'inverse' => 'Je menší než',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je minimálně :number',
|
||||
'inverse' => ':attribute je menší než :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Průměr',
|
||||
'summary' => 'Průměr :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Max',
|
||||
'summary' => 'Max :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Min',
|
||||
'summary' => 'Min :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Suma',
|
||||
'summary' => 'Součet :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Agregace',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Číslo',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Má',
|
||||
'inverse' => 'Nemá',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Má :count :relationship',
|
||||
'inverse' => 'Nemá :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Má maximálně',
|
||||
'inverse' => 'Má více než',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Má maximálně :count :relationship',
|
||||
'inverse' => 'Má více než :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Má minimálně',
|
||||
'inverse' => 'Má méně než',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Má minimálně :count :relationship',
|
||||
'inverse' => 'Má méně než :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je prázdné',
|
||||
'inverse' => 'Není prázdné',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship je prázdné',
|
||||
'inverse' => ':relationship není prázdné',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Je',
|
||||
'inverse' => 'Není',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Obsahuje',
|
||||
'inverse' => 'Neobsahuje',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship je :values',
|
||||
'inverse' => ':relationship není :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship obsahuje :values',
|
||||
'inverse' => ':relationship neobsahuje :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' nebo ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Hodnota',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Hodnoty',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Počet',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je',
|
||||
'inverse' => 'Není',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je :values',
|
||||
'inverse' => ':attribute není :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' nebo ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Hodnota',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Hodnoty',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Obsahuje',
|
||||
'inverse' => 'Neobsahuje',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute obsahuje :text',
|
||||
'inverse' => ':attribute neobsahuje :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Končí na',
|
||||
'inverse' => 'Nekončí na',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute končí na :text',
|
||||
'inverse' => ':attribute nekončí na :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Rovná se',
|
||||
'inverse' => 'Nerovná se',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute se rovná :text',
|
||||
'inverse' => ':attribute se nerovná :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Začíná na',
|
||||
'inverse' => 'Nezačíná na',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute začíná na :text',
|
||||
'inverse' => ':attribute nezačíná na :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Přidat pravidlo',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Přidat skupinu pravidel',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
227
vendor/filament/tables/resources/lang/cs/table.php
vendored
Normal file
227
vendor/filament/tables/resources/lang/cs/table.php
vendored
Normal file
@@ -0,0 +1,227 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Sloupce',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Zobrazit o :count méně',
|
||||
'expand_list' => 'Zobrazit o :count více',
|
||||
],
|
||||
|
||||
'more_list_items' => 'a 1 další|a :count další| a :count dalších',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Vybrat/odznačit všechny položky pro hromadné akce.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Vybrat/odznačit položku :key pro hromadné akce.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Vybrat/zrušit výběr skupiny :title pro hromadné akce.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Vyhledávání',
|
||||
'placeholder' => 'Hledat',
|
||||
'indicator' => 'Hledat',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Shrnutí',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Všechny :label',
|
||||
'group' => ':group shrnutí',
|
||||
'page' => 'Tato stránka',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Průměr',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Počet',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Součet',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Dokončit změnu pořadí položek',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Změnit pořadí položek',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtrovat',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Seskupit',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Otevřít panel akcí',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Skrýt/zobrazit sloupce',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Žádné záznamy nenalezeny',
|
||||
|
||||
'description' => 'Začněte vytvořením :modelu.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Použít filtry',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Odstranit filtr',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Odstranit všechny filtry',
|
||||
'tooltip' => 'Odstranit všechny filtry',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Resetovat filtry',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtrovat',
|
||||
|
||||
'indicator' => 'Aktivní filtry',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Vše',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Vše',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Smazané položky',
|
||||
|
||||
'only_trashed' => 'Pouze smazané položky',
|
||||
|
||||
'with_trashed' => 'Včetně smazaných položek',
|
||||
|
||||
'without_trashed' => 'Bez smazaných položek',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Seskupit podle',
|
||||
'placeholder' => 'Seskupit podle',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Směr seskupení',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Vzestupně',
|
||||
'desc' => 'Sestupně',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Vyberte a přesuňte položky.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '{1} 1 záznam zvolen|[2,4] :count záznamy zvoleny|[5,*] :count záznamů zvoleno',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Označit všechny :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Odznačit všechny',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Seřadit podle',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Směr řazení',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Vzestupně',
|
||||
'desc' => 'Sestupně',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
146
vendor/filament/tables/resources/lang/cy/table.php
vendored
Normal file
146
vendor/filament/tables/resources/lang/cy/table.php
vendored
Normal file
@@ -0,0 +1,146 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'tags' => [
|
||||
'more' => 'Ychwanegu :count arall',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Dewis / Dad ddewis pob eitem ar gyfer gweithredoedd swmpus',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Dewis / Dad ddewis eitem :key ar gyfer gweithredoedd swmpus',
|
||||
],
|
||||
|
||||
'search_query' => [
|
||||
'label' => 'Chwilio',
|
||||
'placeholder' => 'Chwilio',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Gorffen ail archebu cofnodion',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Ail archebu cofnodion',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Hidlo',
|
||||
],
|
||||
|
||||
'open_actions' => [
|
||||
'label' => 'Gweithredoedd agored',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Toglo colofnau',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Ni ddarganfuwyd unrhyw gofnodion',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Tynnu hidlydd',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Tynnu pob hidlydd',
|
||||
'tooltip' => 'Tynnu pob hidlydd',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Ailosod hidlyddion',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'indicator' => 'Hidlyddion Gweithredol',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Oll',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Oll',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Cofnodion wedi dileu',
|
||||
|
||||
'only_trashed' => 'Dim ond cofnodion wedi dileu',
|
||||
|
||||
'with_trashed' => 'Gyda chofnodion wedi dileu',
|
||||
|
||||
'without_trashed' => 'Heb gofnodion wedi dileu',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Llusgo a gollwn y cofnodion mewn trefn',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => 'Dewiswyd 1 cofnod|:count rcyfrif wedi`u dewis',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Dewiswch bob :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Dad-ddewis popeth',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Trefnu fesul',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Trefnu cyfeiriad',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Esgynnol',
|
||||
'desc' => 'Disgynnol',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/da/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/da/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Query builder',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operator',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Groups',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjunction (OR)',
|
||||
'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 rule group',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
220
vendor/filament/tables/resources/lang/da/table.php
vendored
Normal file
220
vendor/filament/tables/resources/lang/da/table.php
vendored
Normal file
@@ -0,0 +1,220 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Kolonner',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Vis :count mindre',
|
||||
'expand_list' => 'Vis :count flere',
|
||||
],
|
||||
|
||||
'more_list_items' => 'og :count flere',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Vælg/fravælg alle rækker for masse handlinger.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Vælg/fravælg :key for masse handlinger.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Vælg/fravælg gruppe :title til massehandlinger.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Søg',
|
||||
'placeholder' => 'Søg',
|
||||
'indicator' => 'Søg',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Resumé',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Alle :label',
|
||||
'group' => ':group resumé',
|
||||
'page' => 'Denne side',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Gennemsnit',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Antal',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Sum',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
'disable_reordering' => [
|
||||
'label' => 'Afslut omrokering',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Omroker rækker',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtrer',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Gruppe',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Åbn handlinger',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Vælg kolonner',
|
||||
],
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
'heading' => 'Ingen resultater',
|
||||
'description' => 'Opret en :model for at komme igang.',
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Anvend filtre',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Fjern filter',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Fjern alle filtre',
|
||||
'tooltip' => 'Fjern alle filtre',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Nulstil',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtre',
|
||||
|
||||
'indicator' => 'Aktive filtre',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Alle',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Alle',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Slettede rækker',
|
||||
|
||||
'only_trashed' => 'Kun slettede rækker',
|
||||
|
||||
'with_trashed' => 'Med slettede rækker',
|
||||
|
||||
'without_trashed' => 'Uden slettede rækker',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Gruppere på',
|
||||
'placeholder' => 'Gruppere på',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Grupperingsretning',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Stigende',
|
||||
'desc' => 'Faldende',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Træk og slip rækkerne i den ønskede rækkefølge.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 række valgt|:count rækker valgt',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Vælg alle :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Fravælg alle',
|
||||
],
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Sorter efter',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Sorteringsretning',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Stigende',
|
||||
'desc' => 'Faldende',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/de/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/de/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Abfragegenerator',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operator',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Gruppen',
|
||||
|
||||
'block' => [
|
||||
'label' => '(ODER) Trennung',
|
||||
'or' => 'ODER',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Bedingungen',
|
||||
|
||||
'item' => [
|
||||
'and' => 'UND',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Keine Bedinungen)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'UND',
|
||||
'or' => 'ODER',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ausgefüllt',
|
||||
'inverse' => 'leer',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':Attribut ist vorhangen',
|
||||
'inverse' => ':Attribut ist nicht vorhanden',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist wahr',
|
||||
'inverse' => 'ist falsch',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist wahr',
|
||||
'inverse' => ':attribute ist falsch',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'nach',
|
||||
'inverse' => 'vor',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is after :date',
|
||||
'inverse' => ':attribute is not after :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist vor',
|
||||
'inverse' => 'ist nach',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist vor :date',
|
||||
'inverse' => ':attribute ist nicht vor :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist Datum',
|
||||
'inverse' => 'ist kein Datum',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist :date',
|
||||
'inverse' => ':attribute ist kein :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist ein ',
|
||||
'inverse' => 'ist kein Monat',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist :month',
|
||||
'inverse' => ':attribute ist kein :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist ein Jahr',
|
||||
'inverse' => 'ist kein Jahr',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist ein :year',
|
||||
'inverse' => ':attribute ist kein :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Datum',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Monat',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Jahr',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist gleich',
|
||||
'inverse' => 'ist nicht gleich',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist gleich :number',
|
||||
'inverse' => ':attribute ist nicht gleich :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Maximal',
|
||||
'inverse' => 'Größer als',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist maximal :number',
|
||||
'inverse' => ':attribute ist größer als :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Minimum',
|
||||
'inverse' => 'ist kleiner als',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist Minimum von :number',
|
||||
'inverse' => ':attribute ist kleiner als :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Durchschnitt',
|
||||
'summary' => 'Durchschnittliches :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Max',
|
||||
'summary' => 'Max :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Min',
|
||||
'summary' => 'Min :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Gesamt',
|
||||
'summary' => 'Gesamt von :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Verknüpfung',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Zahl',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Hat',
|
||||
'inverse' => 'Hat nicht',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Hat :count :relationship',
|
||||
'inverse' => 'Hat nicht :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Hat Maximal',
|
||||
'inverse' => 'Hat mehr als',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Hat maximal :count :relationship',
|
||||
'inverse' => 'Hat mehr als :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Hat mindestens',
|
||||
'inverse' => 'Hat weniger als',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Hat mindestens :count :relationship',
|
||||
'inverse' => 'Hat weniger als:count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist leer',
|
||||
'inverse' => 'ist nicht leer',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship ist leer',
|
||||
'inverse' => ':relationship ist nicht leer',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'ist',
|
||||
'inverse' => 'ist nicht',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Beinhaltet',
|
||||
'inverse' => 'Beinhaltet nicht',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship ist :values',
|
||||
'inverse' => ':relationship ist nicht :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship beinhaltet :values',
|
||||
'inverse' => ':relationship beinhaltet nicht :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' oder ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Wert',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Werte',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Anzahl',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'ist',
|
||||
'inverse' => 'ist nicht',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist :values',
|
||||
'inverse' => ':attribute ist nicht :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' oder ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Wert',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Werte',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Beinhaltet',
|
||||
'inverse' => 'Beinhaltet nicht',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute beinhaltet :text',
|
||||
'inverse' => ':attribute beinhaltet nicht :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Endet mit',
|
||||
'inverse' => 'Endet nicht mit',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute endet mit :text',
|
||||
'inverse' => ':attribute endet nicht mit :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ist gleich',
|
||||
'inverse' => 'Ist nicht gleich',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ist gleich :text',
|
||||
'inverse' => ':attribute ist nicht gleich :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Beginnt mit',
|
||||
'inverse' => 'Beginnt nicht mit',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute beginnt mit :text',
|
||||
'inverse' => ':attribute beginnt nicht mit :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Bedingung hinzufügen',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Bedingungsgruppe hinzufügen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
227
vendor/filament/tables/resources/lang/de/table.php
vendored
Normal file
227
vendor/filament/tables/resources/lang/de/table.php
vendored
Normal file
@@ -0,0 +1,227 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Spalten',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => ':count weniger anzeigen',
|
||||
'expand_list' => ':count weitere anzeigen',
|
||||
],
|
||||
|
||||
'more_list_items' => 'und :count weitere',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Alle Einträge für Stapelverarbeitung auswählen/abwählen.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Eintrag :key für Stapelverarbeitung auswählen/abwählen.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Gruppe auswählen/abwählen :title für Stapelverarbeitung.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Suche',
|
||||
'placeholder' => 'Suche',
|
||||
'indicator' => 'Suche',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Zusammenfassung',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Alle :label',
|
||||
'group' => ':group Zusammenfassung',
|
||||
'page' => 'Diese Seite',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Durchschnitt',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Anzahl',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Summe',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Sortieren beenden',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Einträge sortieren',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtern',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Gruppe',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Aktionen öffnen',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Spalten auswählen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Keine :model',
|
||||
|
||||
'description' => 'Erstelle ein(e) :model um zu beginnen.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => ' Filter anwenden',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Filter löschen',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Alle Filter löschen',
|
||||
'tooltip' => 'Alle Filter löschen',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Filter zurücksetzen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filter',
|
||||
|
||||
'indicator' => 'Aktive Filter',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Alle',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Alle',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Gelöschte Einträge',
|
||||
|
||||
'only_trashed' => 'Nur gelöschte Einträge',
|
||||
|
||||
'with_trashed' => 'Mit gelöschten Einträgen',
|
||||
|
||||
'without_trashed' => 'Ohne gelöschte Einträge',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Gruppieren nach',
|
||||
'placeholder' => 'Gruppieren nach',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Gruppierungsrichtung',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Aufsteigend',
|
||||
'desc' => 'Absteigend',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Zum Sortieren die Einträge per Drag & Drop in die richtige Reihenfolge ziehen.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 Datensatz ausgewählt|:count Datensätze ausgewählt',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Alle :count Datensätze auswählen',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Auswahl aufheben',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Sortieren nach',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Sortierrichtung',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Aufsteigend',
|
||||
'desc' => 'Absteigend',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/el/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/el/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Query builder',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Τελεστής',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Ομάδες',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Διαχωρισμός (Ή / OR)',
|
||||
'or' => 'Ή (OR)',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Κανόνες',
|
||||
|
||||
'item' => [
|
||||
'and' => 'ΚΑΙ (AND)',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'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' => 'Είναι μετά',
|
||||
'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' => 'Is maximum',
|
||||
'inverse' => 'Είναι μεγαλύτερο από',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is maximum :number',
|
||||
'inverse' => ':attribute είναι μεγαλύτερο από :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is minimum',
|
||||
'inverse' => 'Είναι μικρότερο από',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is minimum :number',
|
||||
'inverse' => ':attribute είναι μικρότερο από :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Μέσος όρος',
|
||||
'summary' => 'Average :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Μέγιστο',
|
||||
'summary' => 'Max :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Ελάχιστο',
|
||||
'summary' => 'Min :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Άθροισμα',
|
||||
'summary' => 'Sum of :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Aggregate',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Αριθμός',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Έχει',
|
||||
'inverse' => 'Δεν έχει',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Έχει :count :relationship',
|
||||
'inverse' => 'Δεν έχει :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Has maximum',
|
||||
'inverse' => 'Έχει περισσότερο από',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Has maximum :count :relationship',
|
||||
'inverse' => 'Έχει περισσότερο από :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Has minimum',
|
||||
'inverse' => 'Έχει λιγότερο από',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Has minimum :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' => ' or ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Τιμή',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Τιμές',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Σύνολο',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Είναι',
|
||||
'inverse' => 'Δεν είναι',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute είναι :values',
|
||||
'inverse' => ':attribute δεν είναι :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' or ',
|
||||
],
|
||||
],
|
||||
|
||||
'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' => 'Add rule group',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/el/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/el/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Στήλες',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'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' => 'σύνοψη :group',
|
||||
'page' => 'This page',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Μέσος όρος',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Σύνολο',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Άθροισμα',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Τερματισμός αναδιάταξης',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Αναδιάταξη εγγραφών',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Φίλτρο',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Ομάδας',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Μαζικές ενέργειες',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Toggle columns',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Δεν υπάρχουν εγγραφές',
|
||||
|
||||
'description' => 'Προσθέστε ένα/μία ":model" για να ξεκινήσετε.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Εφαρμογή φίλτρου',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Αφαίρεση φίτλρου',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Αφαίρεση φίτλρων',
|
||||
'tooltip' => 'Αφαίρεση φίτλρων',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Επαναφορά',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Φίλτρα',
|
||||
|
||||
'indicator' => 'Ενεργά φίλτρα',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Όλα',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Όλα',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Διεγραμμένες εγγραφές',
|
||||
|
||||
'only_trashed' => 'Μόνο διεγραμμένες εγγραφές',
|
||||
|
||||
'with_trashed' => 'Σε συνδυασμό με διεγραμμένες εγγραφές',
|
||||
|
||||
'without_trashed' => 'Χωρίς διεγραμμένες εγγραφές',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Ομαδοποίηση βάσει',
|
||||
'placeholder' => 'Ομαδοποίηση βάσει',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Group direction',
|
||||
|
||||
'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' => 'Φθίνουσα σειρά',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/en/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/en/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Query builder',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operator',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Groups',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjunction (OR)',
|
||||
'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 rule group',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/en/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/en/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Columns',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'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',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/es/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/es/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Constructor de consultas',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operador',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Grupos',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disyunción (O)',
|
||||
'or' => 'O',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Reglas',
|
||||
|
||||
'item' => [
|
||||
'and' => 'Y',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Sin reglas)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'Y',
|
||||
'or' => 'O',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Está rellenado',
|
||||
'inverse' => 'Está en blanco',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute está rellenado',
|
||||
'inverse' => ':attribute está en blanco',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Es verdadero',
|
||||
'inverse' => 'Es falso',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute es verdadero',
|
||||
'inverse' => ':attribute es falso',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Es posterior a',
|
||||
'inverse' => 'No es posterior a',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute es posterior a :date',
|
||||
'inverse' => ':attribute no es posterior a :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Es anterior a',
|
||||
'inverse' => 'No es anterior a',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute es anterior a :date',
|
||||
'inverse' => ':attribute no es anterior a :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Es en la fecha',
|
||||
'inverse' => 'No es en la fecha',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute es en :date',
|
||||
'inverse' => ':attribute no es en :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Es en el mes de',
|
||||
'inverse' => 'No es en el mes de',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute es en :month',
|
||||
'inverse' => ':attribute no es en :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Es en el año',
|
||||
'inverse' => 'No es en el año',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute es en :year',
|
||||
'inverse' => ':attribute no es en :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Fecha',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Mes',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Año',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Igual a',
|
||||
'inverse' => 'No es igual a',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute es igual a :number',
|
||||
'inverse' => ':attribute no es igual a :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Es máximo',
|
||||
'inverse' => 'Es mayor que',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute es máximo :number',
|
||||
'inverse' => ':attribute es mayor que :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Es mínimo',
|
||||
'inverse' => 'Es menor que',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute es mínimo :number',
|
||||
'inverse' => ':attribute es menor que :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Promedio',
|
||||
'summary' => ':Attribute promedio',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Máx',
|
||||
'summary' => 'Máximo :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Mín',
|
||||
'summary' => 'Mínimo :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Suma',
|
||||
'summary' => 'Suma de :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Agregado',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Número',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Tiene',
|
||||
'inverse' => 'No tiene',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Tiene :count :relationship',
|
||||
'inverse' => 'No tiene :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Tiene máximo',
|
||||
'inverse' => 'Tiene más de',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Tiene máximo :count :relationship',
|
||||
'inverse' => 'Tiene más de :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Tiene mínimo',
|
||||
'inverse' => 'Tiene menos de',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Tiene mínimo :count :relationship',
|
||||
'inverse' => 'Tiene menos de :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Está vacío',
|
||||
'inverse' => 'No está vacío',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship está vacío',
|
||||
'inverse' => ':relationship no está vacío',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Es',
|
||||
'inverse' => 'No es',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Contiene',
|
||||
'inverse' => 'No contiene',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship son :values',
|
||||
'inverse' => ':relationship no son :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship contiene :values',
|
||||
'inverse' => ':relationship no contiene :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' o ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Valor',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Valores',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Conteo',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Es',
|
||||
'inverse' => 'No es',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute es :values',
|
||||
'inverse' => ':attribute no es :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' o ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Valor',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Valores',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Contiene',
|
||||
'inverse' => 'No contiene',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute contiene :text',
|
||||
'inverse' => ':attribute no contiene :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Termina en',
|
||||
'inverse' => 'No termina en',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute termina en :text',
|
||||
'inverse' => ':attribute no termina en :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Es igual a',
|
||||
'inverse' => 'No es igual a',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute es igual a :text',
|
||||
'inverse' => ':attribute no es igual a :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Comienza con',
|
||||
'inverse' => 'No comienza con',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute comienza con :text',
|
||||
'inverse' => ':attribute no comienza con :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Texto',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Agregar regla',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Agregar grupo de reglas',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/es/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/es/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Columnas',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Mostrar :count menos',
|
||||
'expand_list' => 'Mostrar :count más',
|
||||
],
|
||||
|
||||
'more_list_items' => 'y :count más',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Seleccionar/deseleccionar todos los elementos para las acciones masivas.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Seleccionar/deseleccionar el elemento :key para las acciones masivas.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Seleccionar/deseleccionar grupo :title para acciones masivas.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Búsqueda',
|
||||
'placeholder' => 'Buscar',
|
||||
'indicator' => 'Buscar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Resumen',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Todos :label',
|
||||
'group' => 'resumen del :group',
|
||||
'page' => 'Esta página',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Media',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Recuento',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Suma',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Terminar de reordenar registros',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Reordenar registros',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtrar',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupo',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Abrir acciones',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Alternar columnas',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'No se encontraron registros',
|
||||
|
||||
'description' => 'Cree un :model para empezar.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Aplicar filtros',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Quitar filtro',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Quitar todos los filtros',
|
||||
'tooltip' => 'Quitar todos los filtros',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Resetear los filtros',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtros',
|
||||
|
||||
'indicator' => 'Filtros activos',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Todos',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Todos',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Registros eliminados',
|
||||
|
||||
'only_trashed' => 'Solo registros eliminados',
|
||||
|
||||
'with_trashed' => 'Con registros eliminados',
|
||||
|
||||
'without_trashed' => 'Sin registros eliminados',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Agrupar por',
|
||||
'placeholder' => 'Agrupar por',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Dirección de grupo',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Ascendente',
|
||||
'desc' => 'Descendente',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Arrastrar los registros en el orden.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 registro seleccionado|:count registros seleccionados',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Selecciona todos :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Deselecciona todos',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Ordenar por',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Dirección del orden',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Ascendente',
|
||||
'desc' => 'Descendente',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
213
vendor/filament/tables/resources/lang/eu/table.php
vendored
Normal file
213
vendor/filament/tables/resources/lang/eu/table.php
vendored
Normal file
@@ -0,0 +1,213 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Zutabeak',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'eta :count gehiago',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Aukeratu/deselektatu denak ekintza masiboetarako.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Aukeratu/deselektatu :key ekintza masiboetarako.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Bilatu',
|
||||
'placeholder' => 'Bilatu',
|
||||
'indicator' => 'Bilatu',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Laburpena',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Guztiak :label',
|
||||
'group' => ':group-aren laburpena',
|
||||
'page' => 'Orrialde hau',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Batezbesteko',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Zenbatekoa',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Baturak',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Erregistroen berrantolaketa amaitu',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Erregistroak berrantolatu',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Iragazkiak',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Taldekatu',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Ireki ekintzak',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Zutabeak aldatu',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Erregistroak ez daude aurkitu',
|
||||
|
||||
'description' => 'Sortu :model bat hasteko.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Iragazkia kendu',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Iragazki guztiak kendu',
|
||||
'tooltip' => 'Iragazki guztiak kendu',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Berrezarri iragazkiak',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Iragazkiak',
|
||||
|
||||
'indicator' => 'Iragazkiak aktiboak',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Guztiak',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Guztiak',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Ezabatutako erregistroak',
|
||||
|
||||
'only_trashed' => 'Bakarrik ezabatutako erregistroak',
|
||||
|
||||
'with_trashed' => 'Ezabatutako erregistroekin',
|
||||
|
||||
'without_trashed' => 'Ezabatutako erregistro gabe',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Taldekatu',
|
||||
'placeholder' => 'Taldekatu',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Taldekatzearen norabidea',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Goranzkoa',
|
||||
'desc' => 'Beheranzkoa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Erregistroak ordenan eraman ahal izateko arrastatu.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => ':count erregistro aukeratu da|:count erregistro aukeratuak dira',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Hautatu guztiak :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Aukeratu guztiak kentzea',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Ordenatu',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Ordenaren norabidea',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Goranzkoa',
|
||||
'desc' => 'Beheranzkoa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/fa/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/fa/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'ستونها',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'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' => ':group خلاصه',
|
||||
'page' => 'این صفحه',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'میانگین',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'تعداد',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'مجموع',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'اتمام بازچینش رکوردها',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'بازچینش رکوردها',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'فیلتر',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'گروه',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'عملیات گروهی',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'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' => 'همه',
|
||||
],
|
||||
|
||||
'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' => 'نزولی',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/fi/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/fi/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Kyselyn rakentaja',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operaattori',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Ryhmät',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjunktio (OR)',
|
||||
'or' => 'OR',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Säännöt',
|
||||
|
||||
'item' => [
|
||||
'and' => 'AND',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Ei sääntöjä)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'AND',
|
||||
'or' => 'OR',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On täytetty',
|
||||
'inverse' => 'On tyhjä',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute on täytetty',
|
||||
'inverse' => ':attribute on tyhjä',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On tosi',
|
||||
'inverse' => 'On epätosi',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute on tosi',
|
||||
'inverse' => ':attribute on epätosi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On jälkeen',
|
||||
'inverse' => 'Ei ole jälkeen',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute on :date jälkeen',
|
||||
'inverse' => ':attribute ei ole :date jälkeen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On ennen',
|
||||
'inverse' => 'Ei ole ennen',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute on ennen :date',
|
||||
'inverse' => ':attribute ei ole ennen :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On päiväys',
|
||||
'inverse' => 'Ei ole päiväys',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute on :date',
|
||||
'inverse' => ':attribute ei ole :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On kuukausi',
|
||||
'inverse' => 'Ei ole kuukausi',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute on :month',
|
||||
'inverse' => ':attribute ei ole :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On vuosi',
|
||||
'inverse' => 'Ei ole vuosi',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute on :year',
|
||||
'inverse' => ':attribute ei ole :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Päivä',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Kuukausi',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Vuosi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On yhtä kuin',
|
||||
'inverse' => 'Ei ole yhtä kuin',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute on yhtä kuin :number',
|
||||
'inverse' => ':attribute ei ole yhtä kuin :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On enimmillään',
|
||||
'inverse' => 'On suurempi kuin',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute on enimmillään :number',
|
||||
'inverse' => ':attribute on suurempi kuin :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On vähimmillään',
|
||||
'inverse' => 'On vähemmän kuin',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute on vähimmillään :number',
|
||||
'inverse' => ':attribute on vähemmän kuin :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Keskiarvo',
|
||||
'summary' => 'Keskiarvo :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Maks',
|
||||
'summary' => 'Maks :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Min',
|
||||
'summary' => 'Min :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Summa',
|
||||
'summary' => 'Summa :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Kokonaisuus',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Numero',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Omistaa',
|
||||
'inverse' => 'Ei omista',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Omistaa :count :relationship',
|
||||
'inverse' => 'Ei omista :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On enimmillään',
|
||||
'inverse' => 'On enemmän kuin',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'On enimmillään :count :relationship',
|
||||
'inverse' => 'On enemmän kuin :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On vähintään',
|
||||
'inverse' => 'On vähemmän kuin',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'On vähintään :count :relationship',
|
||||
'inverse' => 'On vähemmän kuin :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On tyhjä',
|
||||
'inverse' => 'Ei ole tyhjä',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship on tyhjä',
|
||||
'inverse' => ':relationship ei ole tyhjä',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'On',
|
||||
'inverse' => 'Ei ole',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Sisältää',
|
||||
'inverse' => 'Ei sisällä',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship on :values',
|
||||
'inverse' => ':relationship ei ole :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship sisältää :values',
|
||||
'inverse' => ':relationship ei sisällä :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' tai ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Arvo',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Arvot',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Määrä',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On',
|
||||
'inverse' => 'Ei ole',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute on :values',
|
||||
'inverse' => ':attribute ei ole :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' tai ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Arvo',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Arvot',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Sisältää',
|
||||
'inverse' => 'Ei sisällä',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute sisältää :text',
|
||||
'inverse' => ':attribute ei sisällä :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Loppuu',
|
||||
'inverse' => 'Ei lopu',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute loppuu :text',
|
||||
'inverse' => ':attribute ei lopu :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'On yhtä kuin',
|
||||
'inverse' => 'Ei ole yhtä kuin',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute equals :text',
|
||||
'inverse' => ':attribute does not equal :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Alkaa',
|
||||
'inverse' => 'Ei ala',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute alkaa :text',
|
||||
'inverse' => ':attribute ei ala :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Teksti',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Lisää sääntö',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Lisää sääntöryhmä',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/fi/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/fi/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Kolumnit',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Näytä :count vähemmän',
|
||||
'expand_list' => 'Näytä :count lisää',
|
||||
],
|
||||
|
||||
'more_list_items' => 'ja :count lisää',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Aseta/poista massatoiminnon valinta kaikista kohteista.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Aseta/poista massatoiminnon valinta kohteelle :key.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Aseta/poista massatoiminnon valinta ryhmälle :title.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Etsi',
|
||||
'placeholder' => 'Etsi',
|
||||
'indicator' => 'Etsi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Yhteenveto',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Kaikki :label',
|
||||
'group' => ':group yhteenveto',
|
||||
'page' => 'Tämä sivu',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Keskiarvo',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Määrä',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Summa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Viimeistele tietueiden järjestely',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Järjestele tietueita',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Suodata',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Ryhmä',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Avaa toiminnot',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Näytä kolumnit',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Ei :model',
|
||||
|
||||
'description' => 'Luo :model aloittaaksesi.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Käytä suodattimet',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Poista suodatin',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Poista suodattimet',
|
||||
'tooltip' => 'Poista suodattimet',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Tyhjennä suodattimet',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Suodattimet',
|
||||
|
||||
'indicator' => 'Aktiiviset suodattimet',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Kaikki',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Kaikki',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Poistetut tietueet',
|
||||
|
||||
'only_trashed' => 'Vain poistetut tietueet',
|
||||
|
||||
'with_trashed' => 'Poistettujen tietueiden kanssa',
|
||||
|
||||
'without_trashed' => 'Ilman poistettuja tietueita',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Ryhmittele',
|
||||
'placeholder' => 'Ryhmittele',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Ryhmittelyn suunta',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Nousevasti',
|
||||
'desc' => 'Laskevasti',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Raahaa ja pudota tietueet järjestykseen.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 tietue valittu|:count tietuetta valittu',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Valitse kaikki :count tietuetta',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Poista valinta kaikista',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Järjestele',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Järjestyksen suunta',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Nousevasti',
|
||||
'desc' => 'Laskevasti',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/fr/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/fr/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Query builder',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Opérateur',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Groupes',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjonction (OR)',
|
||||
'or' => 'OR',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Règles',
|
||||
|
||||
'item' => [
|
||||
'and' => 'AND',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Aucune règle)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'AND',
|
||||
'or' => 'OR',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Est rempli',
|
||||
'inverse' => 'Est vide',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute est rempli',
|
||||
'inverse' => ':attribute est vide',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Est true',
|
||||
'inverse' => 'Est false',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute est true',
|
||||
'inverse' => ':attribute est false',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Est après',
|
||||
'inverse' => 'N\'est pas après',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute est après :date',
|
||||
'inverse' => ':attribute n\'est pas après :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Est avant',
|
||||
'inverse' => 'N\'est pas avant',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute est avant :date',
|
||||
'inverse' => ':attribute n\'est pas avant :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Est une date',
|
||||
'inverse' => 'N\'est pas une date',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute est :date',
|
||||
'inverse' => ':attribute n\'est pas :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Est un mois',
|
||||
'inverse' => 'N\'est pas un mois',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute est :month',
|
||||
'inverse' => ':attribute n\'est pas :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Est une année',
|
||||
'inverse' => 'N\'est pas une année',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute est :year',
|
||||
'inverse' => ':attribute n\'est pas :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Date',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Mois',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Année',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Egal',
|
||||
'inverse' => 'N\'est pas égal',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute égal :number',
|
||||
'inverse' => ':attribute n\'est pas égal :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Est maximum',
|
||||
'inverse' => 'Est supérieur à',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute est maximum :number',
|
||||
'inverse' => ':attribute est supérieur à :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Est minimum',
|
||||
'inverse' => 'Est inférieur à',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute est minimum :number',
|
||||
'inverse' => ':attribute est inférieur à :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Moyenne',
|
||||
'summary' => 'Moyenne :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Max',
|
||||
'summary' => 'Max :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Min',
|
||||
'summary' => 'Min :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Somme',
|
||||
'summary' => 'Somme de :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Agrégat',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Nombre',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'A',
|
||||
'inverse' => 'N\'a pas',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'A :count :relationship',
|
||||
'inverse' => 'N\'a pas :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'A un maximum',
|
||||
'inverse' => 'A plus que',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'A un maximum :count :relationship',
|
||||
'inverse' => 'A plus que :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'A un minimum',
|
||||
'inverse' => 'A moins de',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'A un minimum :count :relationship',
|
||||
'inverse' => 'A moins de :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Est vide',
|
||||
'inverse' => 'N\'est pas vide',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship est vide',
|
||||
'inverse' => ':relationship n\'est pas vide',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Est',
|
||||
'inverse' => 'N\'est pas',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Contient',
|
||||
'inverse' => 'Ne contient pas',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship est :values',
|
||||
'inverse' => ':relationship n\'est pas :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship contient :values',
|
||||
'inverse' => ':relationship ne contient pas :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' or ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Valeur',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Valeurs',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Compter',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Est',
|
||||
'inverse' => 'N\'est pas',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute est :values',
|
||||
'inverse' => ':attribute n\'est pas :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' or ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Valeur',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Valeurs',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Contient',
|
||||
'inverse' => 'Ne contient pas',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute contient :text',
|
||||
'inverse' => ':attribute ne contient pas :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Se termine par',
|
||||
'inverse' => 'Ne se termine pas par',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute se termine par :text',
|
||||
'inverse' => ':attribute ne se termine pas par :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Egal',
|
||||
'inverse' => 'N\'est pas égal',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute égal :text',
|
||||
'inverse' => ':attribute n\'est pas égal :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Commence par',
|
||||
'inverse' => 'Ne commence pas par',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute commence par :text',
|
||||
'inverse' => ':attribute ne commence pas par :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Texte',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Ajouter une règle',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Ajouter une règle de groupe',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/fr/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/fr/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Colonnes',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Afficher :count de moins',
|
||||
'expand_list' => 'Afficher :count de plus',
|
||||
],
|
||||
|
||||
'more_list_items' => ':count de plus',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Sélectionner/déselectionner tous les éléments pour les actions groupées.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => "Sélectionner/désélectionner l'élément :key pour les actions groupées.",
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Sélectionner/désélectionner le groupe :title pour les actions groupées.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Rechercher',
|
||||
'placeholder' => 'Rechercher',
|
||||
'indicator' => 'Recherche',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Résumé',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Tous :label',
|
||||
'group' => 'résumé de :group',
|
||||
'page' => 'Cette page',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Moyenne',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Compteur',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Somme',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Fin du classement des enregistrements',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Classer les enregistrements',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtre',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Groupe',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Ouvrir les actions',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Basculer les colonnes',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Aucun élément trouvé',
|
||||
|
||||
'description' => 'Créer un(e) :model pour commencer.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Appliquer les filtres',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Supprimer le filtre',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Supprimer tous les filtres',
|
||||
'tooltip' => 'Supprimer tous les filtres',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Réinitialiser les filtres',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtres',
|
||||
|
||||
'indicator' => 'Filtres actifs',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Tout',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Tout',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Enregistrements supprimés',
|
||||
|
||||
'only_trashed' => 'Enregistrements supprimés uniquement',
|
||||
|
||||
'with_trashed' => 'Avec les enregistrements supprimés',
|
||||
|
||||
'without_trashed' => 'Sans les enregistrements supprimés',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grouper par',
|
||||
'placeholder' => 'Grouper par',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Groupe',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Croissant',
|
||||
'desc' => 'Décroissant',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => "Faites glisser et déposez les enregistrements dans l'ordre.",
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 élément sélectionné|:count éléments sélectionnés',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Sélectionner tout (:count)',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Désélectionner tout',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Trier par',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Ordre',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Croissant',
|
||||
'desc' => 'Décroissant',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
149
vendor/filament/tables/resources/lang/he/table.php
vendored
Normal file
149
vendor/filament/tables/resources/lang/he/table.php
vendored
Normal file
@@ -0,0 +1,149 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
'heading' => 'עמודות',
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
'text' => [
|
||||
'more_list_items' => 'ו-:count פריטים נוספים',
|
||||
],
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
'bulk_select_page' => [
|
||||
'label' => 'בחר/בטל בחירה לפעולות המרובות.',
|
||||
],
|
||||
'bulk_select_record' => [
|
||||
'label' => 'בחר/בטל בחירה לפעולות המרובות לפריט :key.',
|
||||
],
|
||||
'search' => [
|
||||
'label' => 'חיפוש',
|
||||
'placeholder' => 'חיפוש',
|
||||
'indicator' => 'חיפוש',
|
||||
],
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'heading' => 'סיכום',
|
||||
'subheadings' => [
|
||||
'all' => 'כל ה-:label',
|
||||
'group' => 'סיכום של :group',
|
||||
'page' => 'עמוד זה',
|
||||
],
|
||||
'summarizers' => [
|
||||
'average' => [
|
||||
'label' => 'ממוצע',
|
||||
],
|
||||
'count' => [
|
||||
'label' => 'ספירה',
|
||||
],
|
||||
'sum' => [
|
||||
'label' => 'סכום',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
'disable_reordering' => [
|
||||
'label' => 'סיים סידור רשומות',
|
||||
],
|
||||
'enable_reordering' => [
|
||||
'label' => 'סדר מחדש רשומות',
|
||||
],
|
||||
'filter' => [
|
||||
'label' => 'פילטר',
|
||||
],
|
||||
'group' => [
|
||||
'label' => 'קבוצה',
|
||||
],
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'פתח פעולות מרובות',
|
||||
],
|
||||
'toggle_columns' => [
|
||||
'label' => 'הצג עמודות',
|
||||
],
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
'heading' => 'לא נמצאו רשומות',
|
||||
'description' => 'צור :model כדי להתחיל.',
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
'actions' => [
|
||||
'remove' => [
|
||||
'label' => 'הסר סנן',
|
||||
],
|
||||
'remove_all' => [
|
||||
'label' => 'הסר את כל הסננים',
|
||||
'tooltip' => 'הסר את כל הסננים',
|
||||
],
|
||||
'reset' => [
|
||||
'label' => 'איפוס סננים',
|
||||
],
|
||||
],
|
||||
'heading' => 'סננים',
|
||||
'indicator' => 'סננים מופעלים',
|
||||
'multi_select' => [
|
||||
'placeholder' => 'הכל',
|
||||
],
|
||||
'select' => [
|
||||
'placeholder' => 'הכל',
|
||||
],
|
||||
'trashed' => [
|
||||
'label' => 'רשומות שנמחקו',
|
||||
'only_trashed' => 'רק רשומות שנמחקו',
|
||||
'with_trashed' => 'כולל רשומות שנמחקו',
|
||||
'without_trashed' => 'ללא רשומות שנמחקו',
|
||||
],
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
'fields' => [
|
||||
'group' => [
|
||||
'label' => 'קבץ לפי',
|
||||
'placeholder' => 'קבץ לפי',
|
||||
],
|
||||
'direction' => [
|
||||
'label' => 'כיוון קיבוץ',
|
||||
'options' => [
|
||||
'asc' => 'עולה',
|
||||
'desc' => 'יורד',
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'גרור ושחרר רשומות לסידור מחדש.',
|
||||
|
||||
'selection_indicator' => [
|
||||
'selected_count' => 'נבחרה רשומה אחת|נבחרו :count רשומות',
|
||||
'actions' => [
|
||||
'select_all' => [
|
||||
'label' => 'בחר את כל :count',
|
||||
],
|
||||
'deselect_all' => [
|
||||
'label' => 'בטל בחירה',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
'fields' => [
|
||||
'column' => [
|
||||
'label' => 'מיין לפי',
|
||||
],
|
||||
'direction' => [
|
||||
'label' => 'סדר לפי',
|
||||
'options' => [
|
||||
'asc' => 'סדר עולה',
|
||||
'desc' => 'סדר יורד',
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
];
|
||||
68
vendor/filament/tables/resources/lang/hi/table.php
vendored
Normal file
68
vendor/filament/tables/resources/lang/hi/table.php
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'search' => [
|
||||
'label' => 'खोजें',
|
||||
'placeholder' => 'खोजें',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'filter' => [
|
||||
'label' => 'फ़िल्टर',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'क्रियाएँ खोलें',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
'heading' => 'कोई रिकॉर्ड उपलब्ध नहीं',
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'फ़िल्टर रीसेट करें',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'सब',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'सब',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 रिकॉर्ड चयनित।|:count रिकॉर्ड चयनित।',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'सभी :count चुने',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'सभी अचयनित करे',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
217
vendor/filament/tables/resources/lang/hr/table.php
vendored
Normal file
217
vendor/filament/tables/resources/lang/hr/table.php
vendored
Normal file
@@ -0,0 +1,217 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Kolone',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'i :count još',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Odaberi/poništi odabir svih stavki za skupne radnje.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Odaberi/poništi odabir stavke :key za skupne radnje.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Odaberi/poništi odabir grupe :title za skupne radnje.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Pretraga',
|
||||
'placeholder' => 'Pretraži',
|
||||
'indicator' => 'Pretraži',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Sažetak',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Sve :label',
|
||||
'group' => ':group sažetak',
|
||||
'page' => 'Ova stranica',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Prosijek',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Broj',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Zbroj',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Završi mijenjanje redolijeda zapisa',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Mijenjanje redolijeda zapisa',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filter',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupa',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Skupne radnje',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Prikaži/sakrij kolone',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Nema :model',
|
||||
|
||||
'description' => 'Stvorite :model kako biste počeli.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Ukloni filter',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Ukloni sve filtere',
|
||||
'tooltip' => 'Ukloni sve filtere',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Poništi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filteri',
|
||||
|
||||
'indicator' => 'Aktivni filteri',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Sve',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Sve',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Obrisani zapisi',
|
||||
|
||||
'only_trashed' => 'Samo obrisani zapisi',
|
||||
|
||||
'with_trashed' => 'Sa obrisanih zapisa',
|
||||
|
||||
'without_trashed' => 'Bez obrisanih zapisa',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupiraj prema',
|
||||
'placeholder' => 'Grupiraj prema',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Smjer grupiranja',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Uzlazno',
|
||||
'desc' => 'Silazno',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Povucite i ispustite zapise u redoslijed.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 odabrani zapis|:count odabranih zapisa',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Odaberi svih :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Odznači sve',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Sortiraj prema',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Smjer sortiranja',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Uzlazno',
|
||||
'desc' => 'Silazno',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/hu/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/hu/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Összetett szűrés',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Művelet',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Csoportok',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Diszjunkció (VAGY)',
|
||||
'or' => 'VAGY',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Szabályok',
|
||||
|
||||
'item' => [
|
||||
'and' => 'ÉS',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Nincs megadva szabály)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'ÉS',
|
||||
'or' => 'VAGY',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Nem üres',
|
||||
'inverse' => 'Üres',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute nem üres',
|
||||
'inverse' => ':attribute üres',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Igaz',
|
||||
'inverse' => 'Hamis',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute igaz',
|
||||
'inverse' => ':attribute hamis',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ez után',
|
||||
'inverse' => 'Nem ez után',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :date után van',
|
||||
'inverse' => ':attribute nem :date után van',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ez előtt',
|
||||
'inverse' => 'Nem ez előtt',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :date előtt van',
|
||||
'inverse' => ':attribute nem :date előtt van',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ekkor',
|
||||
'inverse' => 'Nem ekkor',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :date',
|
||||
'inverse' => ':attribute nem :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ezen hónapban',
|
||||
'inverse' => 'Nem ezen hónapban',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :month hónapban van',
|
||||
'inverse' => ':attribute nem :month hónapban van',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ezen évben',
|
||||
'inverse' => 'Nem ezen évben',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :year évben van',
|
||||
'inverse' => ':attribute nem :year évben van',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Dátum',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Hónap',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Év',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Egyenlő',
|
||||
'inverse' => 'Nem egyenlő',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute egyenlő :number',
|
||||
'inverse' => ':attributenem egyenlő :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Maximum',
|
||||
'inverse' => 'Nagyobb mint',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute maximum :number',
|
||||
'inverse' => ':attribute nagyobb mint :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Minimum',
|
||||
'inverse' => 'Kisebb mint',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute minimum :number',
|
||||
'inverse' => ':attribute kisebb mint :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Átlag',
|
||||
'summary' => 'Átlag :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Maximum',
|
||||
'summary' => 'Maximum :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Minimum',
|
||||
'summary' => 'Minimum :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Összeg',
|
||||
'summary' => ':attribute összege',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Összesítés',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Szám',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Rendelkezik',
|
||||
'inverse' => 'Nem rendelkezik',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Rendelkezik :count :relationship -val/vel',
|
||||
'inverse' => 'Nem rendelkezik :count :relationship -val/vel',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Maximum rendelkezik',
|
||||
'inverse' => 'Többel rendelkezik',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Maximum :count :relationship -val/vel rendelkezik',
|
||||
'inverse' => 'Több mint :count :relationship -val/vel rendelkezik',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Minimum rendelkezik',
|
||||
'inverse' => 'Kevesebbel rendelkezik',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Minimum :count :relationship -val/vel rendelkezik',
|
||||
'inverse' => 'Kevesebb mint :count :relationship -val/vel rendelkezik',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Meg van adva',
|
||||
'inverse' => 'Nincs megadva',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship meg van adva',
|
||||
'inverse' => ':relationship nincs megadva',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Ez',
|
||||
'inverse' => 'Nem ez',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Tartalmazza',
|
||||
'inverse' => 'Nem tartalmazza',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship értéke :values',
|
||||
'inverse' => ':relationship értéke nem :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship tartalmazza a(z) :values értékeket',
|
||||
'inverse' => ':relationship nem tartalmazza a(z) :values értékeket',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' vagy ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Érték',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Értékek',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Mennyiség',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ez',
|
||||
'inverse' => 'Nem ez',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute értéke :values',
|
||||
'inverse' => ':attribute értéke nem :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' vagy ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Érték',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Értékek',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Tartalmazza',
|
||||
'inverse' => 'Nem tartalmazza',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute tartalmazza a(z) :text szövegrészletet',
|
||||
'inverse' => ':attribute nem tartalmazza a(z) :text szövegrészletet',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Így végződik',
|
||||
'inverse' => 'Nem így végződik',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :text -val/vel végződik',
|
||||
'inverse' => ':attribute nem :text -val/vel végződik',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Megegyezik',
|
||||
'inverse' => 'Nem egyezik meg',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute megegyezik :text -val/vel',
|
||||
'inverse' => ':attribute nem egyezik meg :text -val/vel',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Így kezdődik',
|
||||
'inverse' => 'Nem így kezdődik',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :text -val/vel kezdődik',
|
||||
'inverse' => ':attribute nem :text -val/vel kezdődik',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Szöveg',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Szabály hozzáadása',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Szabálycsoport hozzáadása',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/hu/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/hu/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Oszlopok',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => ':count elemmel kevesebb mutatása',
|
||||
'expand_list' => ':count elemmel több mutatása',
|
||||
],
|
||||
|
||||
'more_list_items' => 'és :count több',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Az összes elem kijelölése vagy a kijelölés megszüntetése csoportos műveletekhez.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => ':key elem kijelölése vagy a kijelölés megszüntetése csoportos műveletekhez.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => ':title csoport kijelölése vagy a kijelölés megszüntetése csoportos műveletekhez.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Keresés',
|
||||
'placeholder' => 'Keresés',
|
||||
'indicator' => 'Keresés',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Összesítés',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Összes :label',
|
||||
'group' => ':group összesítése',
|
||||
'page' => 'Ezen az oldalon',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Átlag',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Darab',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Összeg',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Átrendezés befejezése',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Átrendezés',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Szűrés',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Csoportosítás',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Csoportos műveletek',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Oszlopok láthatósága',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Nincs megjeleníthető elem',
|
||||
|
||||
'description' => 'Hozz létre egy újat a kezdéshez.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Szűrők alkalmazása',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Szűrő megszüntetése',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Az összes szűrő megszüntetése',
|
||||
'tooltip' => 'Az összes szűrő megszüntetése',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Visszaállítás',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Szűrők',
|
||||
|
||||
'indicator' => 'Aktív szűrők',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Mind',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Mind',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Törölt elemek',
|
||||
|
||||
'only_trashed' => 'Csak a törölt elemek',
|
||||
|
||||
'with_trashed' => 'Törölt elemekkel együtt',
|
||||
|
||||
'without_trashed' => 'Törölt elemek nélkül',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Csoportosítás',
|
||||
'placeholder' => 'Csoportosítás',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Csoportosítás iránya',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Növekvő',
|
||||
'desc' => 'Csökkenő',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Kattints az elemekre és mozgasd őket az átrendezéshez.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 elem kiválasztva|:count elem kiválasztva',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Mind a(z) :count elem kijelölése',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Kijelölés megszüntetése',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Rendezés',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Rendezési irány',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Növekvő',
|
||||
'desc' => 'Csökkenő',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
84
vendor/filament/tables/resources/lang/hy/table.php
vendored
Normal file
84
vendor/filament/tables/resources/lang/hy/table.php
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'search' => [
|
||||
'label' => 'Որոնել',
|
||||
'placeholder' => 'Որոնել',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Ֆիլտր',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Բացել գործողություններ',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Փոխարկել սյունակները',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
'heading' => 'Գրառումներ չեն գտնվել',
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Վերականգնել ֆիլտրերը',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Բոլորը',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Բոլորը',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Ջնջված գրառումները',
|
||||
|
||||
'only_trashed' => 'Միայն ջնջված գրառումները',
|
||||
|
||||
'with_trashed' => 'Ջնջված գրառումներով',
|
||||
|
||||
'without_trashed' => 'Առանց ջնջված գրառումների',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 գրառում ընտրված է։|:count գրառում ընտրված է։',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Ընտրել բոլոր :count֊ը',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Ապաընտրել բոլորը',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/id/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/id/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Penyusun Kueri',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operator',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Grup',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjungsi (ATAU)',
|
||||
'or' => 'ATAU',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Aturan',
|
||||
|
||||
'item' => [
|
||||
'and' => 'DAN',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Tanpa aturan)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'DAN',
|
||||
'or' => 'ATAU',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Terisi',
|
||||
'inverse' => 'Kosong',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute terisi',
|
||||
'inverse' => ':attribute kosong',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ya',
|
||||
'inverse' => 'Tidak',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute adalah ya',
|
||||
'inverse' => ':attribute adalah tidak',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Setelah',
|
||||
'inverse' => 'Tidak setelah',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute setelah :date',
|
||||
'inverse' => ':attribute tidak setelah :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Sebelum',
|
||||
'inverse' => 'Tidak sebelum',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute sebelum :date',
|
||||
'inverse' => ':attribute tidak sebelum :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Pada tanggal',
|
||||
'inverse' => 'Tidak pada tanggal',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute pada tanggal :date',
|
||||
'inverse' => ':attribute tidak pada tanggal :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Pada bulan',
|
||||
'inverse' => 'Tidak pada bulan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute pada bulan :month',
|
||||
'inverse' => ':attribute tidak pada bulan :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Pada tahun',
|
||||
'inverse' => 'Tidak pada tahun',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute pada tahun :year',
|
||||
'inverse' => ':attribute tidak pada tahun :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Tanggal',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Bulan',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Tahun',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Sama dengan',
|
||||
'inverse' => 'Tidak sama dengan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute sama dengan :number',
|
||||
'inverse' => ':attribute tidak sama dengan :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Maksimum',
|
||||
'inverse' => 'Lebih dari',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Maksimum :attribute adalah :number',
|
||||
'inverse' => ':attribute lebih dari :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Minimum',
|
||||
'inverse' => 'Kurang dari',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Minimum :attribute adalah :number',
|
||||
'inverse' => ':attribute kurang dari :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Rata-rata',
|
||||
'summary' => 'Rata-rata :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Tertinggi',
|
||||
'summary' => ':attribute tertinggi',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Terendah',
|
||||
'summary' => ':attribute terendah',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Total',
|
||||
'summary' => 'Total :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Agregat',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Angka',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Memiliki',
|
||||
'inverse' => 'Tidak memiliki',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Memiliki :count :relationship',
|
||||
'inverse' => 'Tidak memiliki :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Memiliki hingga',
|
||||
'inverse' => 'Memiliki lebih dari',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Memiliki hingga :count :relationship',
|
||||
'inverse' => 'Memiliki lebih dari :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Memiliki setidaknya',
|
||||
'inverse' => 'Memiliki kurang dari',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Memiliki setidaknya :count :relationship',
|
||||
'inverse' => 'Memiliki kurang dari :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Tidak memiliki',
|
||||
'inverse' => 'Memiliki',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'tidak memiliki :relationship',
|
||||
'inverse' => 'memiliki :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Adalah',
|
||||
'inverse' => 'Bukan',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Terdapat',
|
||||
'inverse' => 'Tidak terdapat',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship adalah :values',
|
||||
'inverse' => ':relationship bukanlah :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship terdapat :values',
|
||||
'inverse' => ':relationship tidak terdapat :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' atau ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Nilai',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Nilai',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Jumlah',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Adalah',
|
||||
'inverse' => 'Bukan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute adalah :values',
|
||||
'inverse' => ':attribute bukan :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' or ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Nilai',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Nilai',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Terdapat',
|
||||
'inverse' => 'Tidak terdapat',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute terdapat :text',
|
||||
'inverse' => ':attribute tidak terdapat :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Diakhiri dengan',
|
||||
'inverse' => 'Tidak diakhiri dengan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute diakhiri dengan :text',
|
||||
'inverse' => ':attribute tidak diakhiri dengan :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Sama dengan',
|
||||
'inverse' => 'Tidak sama dengan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute sama dengan :text',
|
||||
'inverse' => ':attribute tidak sama dengan :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Dimulai dengan',
|
||||
'inverse' => 'Tidak dimulai dengan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute dimulai dengan :text',
|
||||
'inverse' => ':attribute tidak dimulai dengan :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Teks',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Tambah aturan',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Tambah grup aturan',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/id/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/id/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Kolom',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Sembunyikan :count lainnya',
|
||||
'expand_list' => 'Tampilkan :count lainnya',
|
||||
],
|
||||
|
||||
'more_list_items' => 'dan :count lainnya',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Buat/batalkan pilihan semua item untuk tindakan massal.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Buat/batalkan pilihan item :key untuk tindakan massal.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Buat/batalkan pilihan grup :title untuk tindakan massal.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Cari',
|
||||
'placeholder' => 'Cari',
|
||||
'indicator' => 'Pencarian',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Rangkuman',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Semua :label',
|
||||
'group' => 'Rangkuman :group',
|
||||
'page' => 'Halaman ini',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Rata-rata',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Jumlah',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Total',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Selesaikan pengurutan ulang data',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Urutkan ulang data',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filter',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grup',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Tindakan',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Pilih kolom',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Tidak ada data yang ditemukan',
|
||||
|
||||
'description' => 'Buat :model untuk memulai.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Terapkan filter',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Hapus filter',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Hapus semua filter',
|
||||
'tooltip' => 'Hapus semua filter',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Atur ulang filter',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filter',
|
||||
|
||||
'indicator' => 'Filter aktif',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Semua',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Semua',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Data yang dihapus',
|
||||
|
||||
'only_trashed' => 'Hanya data yang dihapus',
|
||||
|
||||
'with_trashed' => 'Dengan data yang dihapus',
|
||||
|
||||
'without_trashed' => 'Tanpa data yang dihapus',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Kelompokkan berdasar',
|
||||
'placeholder' => 'Kelompokkan berdasar',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Urutan grup',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Naik',
|
||||
'desc' => 'Turun',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Seret dan lepaskan data ke dalam urutan.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => ':count data dipilih',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Pilih semua (:count)',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Batalkan semua pilihan',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Urutkan menurut',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Arah urutan',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Naik',
|
||||
'desc' => 'Turun',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/it/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/it/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Generatore di query',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operatore',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Gruppi',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Separatore (OR)',
|
||||
'or' => 'OR',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Regole',
|
||||
|
||||
'item' => [
|
||||
'and' => 'AND',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Nessuna regola)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'AND',
|
||||
'or' => 'OR',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Compilato',
|
||||
'inverse' => 'Non compilato',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute è compilato',
|
||||
'inverse' => ':attribute non è compilato',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Vero',
|
||||
'inverse' => 'Falso',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute è vero',
|
||||
'inverse' => ':attribute è falso',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Dopo il',
|
||||
'inverse' => 'Fino al',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute dopo il :date',
|
||||
'inverse' => ':attribute fino al :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Prima del',
|
||||
'inverse' => 'Non prima del',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute è prima del :date',
|
||||
'inverse' => ':attribute non è prima del :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Data uguale a',
|
||||
'inverse' => 'Data diversa da',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute è uguale a :date',
|
||||
'inverse' => ':attribute è diversa da :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Mese uguale a',
|
||||
'inverse' => 'Mese diverso da',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute è uguale a :month',
|
||||
'inverse' => ':attribute è diverso da :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Anno uguale a ',
|
||||
'inverse' => 'Anno diverso da',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute è uguale a :year',
|
||||
'inverse' => ':attribute è diverso da :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Data',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Mese',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Anno',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Uguale a ',
|
||||
'inverse' => 'Diverso da',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute uguale a :number',
|
||||
'inverse' => ':attribute diverso da :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Massimo',
|
||||
'inverse' => 'Più grande di',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute è massimo :number',
|
||||
'inverse' => ':attribute è più grande di :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Minimo',
|
||||
'inverse' => 'Meno di',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute è minimo :number',
|
||||
'inverse' => ':attribute è meno di :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Media',
|
||||
'summary' => 'Media :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Massimo',
|
||||
'summary' => 'Massimo :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Minimo',
|
||||
'summary' => 'Minimo :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Somma',
|
||||
'summary' => 'Somma di :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Aggregata',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Numero',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ha',
|
||||
'inverse' => 'Non ha',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Ha :count :relationship',
|
||||
'inverse' => 'Non ha :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ha al massimo',
|
||||
'inverse' => 'Ha più di',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Ha al massimo :count :relationship',
|
||||
'inverse' => 'Ha più di :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ha minimo',
|
||||
'inverse' => 'Ha meno di',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Ha minimo :count :relationship',
|
||||
'inverse' => 'Ha meno di :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'È vuoto',
|
||||
'inverse' => 'Non è vuoto',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship è vuoto',
|
||||
'inverse' => ':relationship non è vuoto',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'È uguale a',
|
||||
'inverse' => 'È diverso da',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Contiene',
|
||||
'inverse' => 'Non contiene',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship è :values',
|
||||
'inverse' => ':relationship non è :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship contiene :values',
|
||||
'inverse' => ':relationship non contiene :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' oppure ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Valore',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Valori',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Conteggio',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'È uguale a',
|
||||
'inverse' => 'È diverso da',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute è uguale a :values',
|
||||
'inverse' => ':attribute diverso da :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' oppure ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Valore',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Valori',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Contiene',
|
||||
'inverse' => 'Non contiene',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute contiene :text',
|
||||
'inverse' => ':attribute non contiene :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Finisce con',
|
||||
'inverse' => 'Non finisce con',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute finisce con :text',
|
||||
'inverse' => ':attribute non finisce con :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Uguale a',
|
||||
'inverse' => 'Diverso da',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute uguale a :text',
|
||||
'inverse' => ':attribute diversa da :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Inizia con',
|
||||
'inverse' => 'Non inizia con',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute inizia con :text',
|
||||
'inverse' => ':attribute non inizia con :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Testo',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Aggiungi regola',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Aggiungi gruppo di regole',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
223
vendor/filament/tables/resources/lang/it/table.php
vendored
Normal file
223
vendor/filament/tables/resources/lang/it/table.php
vendored
Normal file
@@ -0,0 +1,223 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Colonne',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Mostra :count di meno',
|
||||
'expand_list' => 'Mostra :count di più',
|
||||
],
|
||||
|
||||
'more_list_items' => 'e altri :count',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Seleziona/Deseleziona tutti gli elementi per le azioni di massa.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => "Seleziona/Deseleziona l'elemento :key per le azioni di massa.",
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Seleziona/deseleziona gruppo :title per azioni collettive.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Cerca',
|
||||
'placeholder' => 'Cerca',
|
||||
'indicator' => 'Cerca',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Riepilogo',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Tutti gli :label',
|
||||
'group' => 'Riepilogo :group',
|
||||
'page' => 'Questa pagina',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Media',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Conteggio',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Somma',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Termina riordino record',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Riordina record',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtro',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Gruppo',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Azioni',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Mostra/Nascondi colonne',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Nessun risultato',
|
||||
|
||||
'description' => 'Crea un :model per iniziare.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Rimuovi filtro',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Rimuovi tutti i filtri',
|
||||
'tooltip' => 'Rimuovi tutti i filtri',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Reimposta',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtri',
|
||||
|
||||
'indicator' => 'Filtri attivi',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Tutti',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Tutti',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Record eliminati',
|
||||
|
||||
'only_trashed' => 'Solo record eliminati',
|
||||
|
||||
'with_trashed' => 'Con record eliminati',
|
||||
|
||||
'without_trashed' => 'Senza record eliminati',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Raggruppa per',
|
||||
'placeholder' => 'Raggruppa per',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Ordine',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Crescente',
|
||||
'desc' => 'Decrescente',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Trascina e rilascia i record in ordine.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 record selezionato|:count record selezionati',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Seleziona tutti :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Deseleziona tutti',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Ordina per',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Ordine',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Crescente',
|
||||
'desc' => 'Decrescente',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/ja/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/ja/filters/query-builder.php
vendored
Normal 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' => 'ルールグループを追加',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/ja/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/ja/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'カラム',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'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' => '一括操作のグループ:keyの選択/解除。',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => '検索',
|
||||
'placeholder' => '検索',
|
||||
'indicator' => '検索',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'サマリー',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'すべての:label',
|
||||
'group' => ':groupのサマリー',
|
||||
'page' => 'このページ',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => '平均',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'カウント',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => '合計',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'レコードの並び替えを終了',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'レコードの並び替え',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'フィルタ',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'グループ',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => '操作を開く',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'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' => '全件',
|
||||
],
|
||||
|
||||
'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' => '降順',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
138
vendor/filament/tables/resources/lang/ka/table.php
vendored
Normal file
138
vendor/filament/tables/resources/lang/ka/table.php
vendored
Normal file
@@ -0,0 +1,138 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'tags' => [
|
||||
'more' => 'და კიდევ :count',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'search' => [
|
||||
'label' => 'ძიება',
|
||||
'placeholder' => 'ძიება',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'ჩანაწერების გადანაცვლების დასრულება',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'ჩანაწერების გადანაცვლება',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'ფილტრი',
|
||||
],
|
||||
|
||||
'open_actions' => [
|
||||
'label' => 'ქმედებები',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'სვეტების დამალვა/გამოჩენა',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'ჩანაწერები ვერ მოიძებნა',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'ფილტრის მოხსნა',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'ყველა ფილტრის მოხსნა',
|
||||
'tooltip' => 'ყველა ფილტრის მოხსნა',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'ფილტრების გაუქმება',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'indicator' => 'აქტიური ფილტრები',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'ყველა',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'ყველა',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'წაშლილი ჩანაწერები',
|
||||
|
||||
'only_trashed' => 'მხოლოდ წაშლილი ჩანაწერები',
|
||||
|
||||
'with_trashed' => 'წაშლილი ჩანაწერებიანა',
|
||||
|
||||
'without_trashed' => 'წაშლილი ჩანაწერების გარეშე',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'გადაადგილე ჩანაწერები.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => 'მონიშნულია :count ჩანაწერი',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => '{1} მონიშნე ყველა|[2,*] მონიშნე :count-ივე',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'მონიშვნების მოხსნა',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'სორტირება',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'სორტირების მიმართულება',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'ზრდადობით',
|
||||
'desc' => 'კლებადობით',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/km/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/km/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Query builder',
|
||||
|
||||
'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' => 'បន្ថែមក្រុមច្បាប់',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/km/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/km/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'ជួរឈរ',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'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' => ':group សង្ខេប',
|
||||
'page' => 'ទំព័រនេះ',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'មធ្យម',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'រាប់',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'បូក',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'បញ្ចប់ការរៀបចំកំណត់ត្រាឡើងវិញ',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'តម្រៀបកំណត់ត្រាឡើងវិញ',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'តម្រង',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'ក្រុម',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'សកម្មភាពភាគច្រើន',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'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' => 'ទាំងអស់។',
|
||||
],
|
||||
|
||||
'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' => 'ចុះ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/ko/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/ko/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => '쿼리 빌더',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => '연산자',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => '그룹',
|
||||
|
||||
'block' => [
|
||||
'label' => '배타적 논리 (OR)',
|
||||
'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' => '조건 그룹 추가',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/ko/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/ko/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => '열',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'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' => ':group 요약',
|
||||
'page' => '이 페이지',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => '평균',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => '수량',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => '합계',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => '재정렬 완료',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => '항목 재정렬',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => '필터',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => '그룹',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => '일괄 작업',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'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' => '전체',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => '삭제된 항목',
|
||||
|
||||
'only_trashed' => '삭제된 항목만',
|
||||
|
||||
'with_trashed' => '삭제된 항목 포함',
|
||||
|
||||
'without_trashed' => '삭제된 항목 제외',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => '그룹 기준',
|
||||
'placeholder' => '그룹 기준',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => '그룹 순서',
|
||||
|
||||
'options' => [
|
||||
'asc' => '오름차순',
|
||||
'desc' => '내림차순',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => '항목을 순서대로 끌어다 놓습니다.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => ':count 항목 선택됨',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => ':count 항목 모두 선택',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => '모두 선택 해제',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => '정렬 기준',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => '정렬 순서',
|
||||
|
||||
'options' => [
|
||||
'asc' => '오름차순',
|
||||
'desc' => '내림차순',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
213
vendor/filament/tables/resources/lang/ku/table.php
vendored
Normal file
213
vendor/filament/tables/resources/lang/ku/table.php
vendored
Normal file
@@ -0,0 +1,213 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'ستوونەکان',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'وە :count ی زیاتر',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'دیاریکردن/لابردنی دیاریکردنەکان بۆ هەموو تۆمارەکان بۆ کۆمەڵەی کردارەکان.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'دیاریکردن/لابردنی دیاریکراوەکان بۆ :key بۆ کۆمەڵەی کردارەکان.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'گەڕان',
|
||||
'placeholder' => 'گەڕان',
|
||||
'indicator' => 'گەڕان',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'پوختە',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'هەموو :label',
|
||||
'group' => ':group پوختە',
|
||||
'page' => 'ئەم پەڕەیە',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'تێکڕا',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'ژماردەکان',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'کۆی گشتی',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'تەواوکردنی ڕێکخستنی تۆمارەکان',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'ڕێکخستنی تۆمارەکان',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'فلتەر',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'کۆمەڵ',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'کۆمەڵی کردارەکان',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'پشاندان/لابردنی ستوونەکان',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'هیچ تۆمارێکی :model بوونی نییە.',
|
||||
|
||||
'description' => 'تۆمارێکی :model دروس بکە بۆ دەستپێکردن.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'سڕینەوەی فلتەر',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'سڕینەوەی هەموو فلتەرەکان',
|
||||
'tooltip' => 'سڕینەوەی هەموو فلتەرەکان',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'دۆخی سەرەتا',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'فلتەرەکان',
|
||||
|
||||
'indicator' => 'فلتەرە چالاککراوەکان',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'هەموو',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'هەموو',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'تۆمارە سڕدراوەکان',
|
||||
|
||||
'only_trashed' => 'تەنها تۆمارە سڕدراوەکان',
|
||||
|
||||
'with_trashed' => 'لەگەل تۆمارە سڕدراوەکان',
|
||||
|
||||
'without_trashed' => 'بەبێ تۆمارە سڕدراوەکان',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'کۆمەڵ کردن بە',
|
||||
'placeholder' => 'کۆمەڵ کردن بە',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'ئاڕاستەی کۆمەڵ کردن',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'کەم بۆ زۆر',
|
||||
'desc' => 'زۆر بۆ کەم',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'تۆمارەکان هەڵبگرە و ڕیزیان بکە.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '١ ڕیز دیاریکراوە|:count ڕیز دیاریکراوە',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'هەڵبژاردنی هەموو :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'هەڵنەبژاردنی هەموو',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'کۆمەڵکردن بە',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'ئاڕاستەی کۆمەڵ کردن',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'کەم بۆ زۆر',
|
||||
'desc' => 'زۆر بۆ کەم',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/lt/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/lt/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Užklausos kūrimas',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Palyginimas',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Grupės',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Blokas (ARBA)',
|
||||
'or' => 'ARBA',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Taisyklės',
|
||||
|
||||
'item' => [
|
||||
'and' => 'IR',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Nėra taisyklių)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'IR',
|
||||
'or' => 'ARBA',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Užpildyta',
|
||||
'inverse' => 'Neužpildyta',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute užpildyta',
|
||||
'inverse' => ':attribute neužpildyta',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra teigiamas',
|
||||
'inverse' => 'Nėra teigiamas',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra teigiamas',
|
||||
'inverse' => ':attribute nėra teigiamas',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra po',
|
||||
'inverse' => 'Nėra po',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra po :date',
|
||||
'inverse' => ':attribute nėra po :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra prieš',
|
||||
'inverse' => 'Nėra prieš',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra prieš :date',
|
||||
'inverse' => ':attribute nėra prieš :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra data',
|
||||
'inverse' => 'Nėra data',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra :date',
|
||||
'inverse' => ':attribute nėra :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra mėnesis',
|
||||
'inverse' => 'Nėra mėnesis',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra :month',
|
||||
'inverse' => ':attribute nėra :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra metai',
|
||||
'inverse' => 'Nėra metai',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra :year',
|
||||
'inverse' => ':attribute nėra :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Data',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Mėnesis',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Metai',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Lygu',
|
||||
'inverse' => 'Nelygu',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute lygu :number',
|
||||
'inverse' => ':attribute nelygu :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra didžiausias',
|
||||
'inverse' => 'Yra didesnis už',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra didžiausias :number',
|
||||
'inverse' => ':attribute yra didesnis už :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra mažiausias',
|
||||
'inverse' => 'Yra mažesnis už',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra mažiausias :number',
|
||||
'inverse' => ':attribute yra mažesnis už :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Vidurkis',
|
||||
'summary' => ':attribute vidurkis',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Maksimumas',
|
||||
'summary' => 'Didžiausias :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Minimumas',
|
||||
'summary' => 'Mažiausias :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Suma',
|
||||
'summary' => ':attribute suma',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Suminis rodiklis',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Skaičius',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Turi',
|
||||
'inverse' => 'Neturi',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Turi :count :relationship',
|
||||
'inverse' => 'Neturi :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Turi daugiausiai',
|
||||
'inverse' => 'Turi daugiau nei',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Turi daugiausiai :count :relationship',
|
||||
'inverse' => 'Turi daugiau nei :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Turi mažiausiai',
|
||||
'inverse' => 'Turi mažiau nei',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Turi mažiausiai :count :relationship',
|
||||
'inverse' => 'Turi mažiau nei :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra tuščias',
|
||||
'inverse' => 'Nėra tuščias',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship yra tuščias',
|
||||
'inverse' => ':relationship nėra tuščias',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Yra',
|
||||
'inverse' => 'Nėra',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Yra vienas iš',
|
||||
'inverse' => 'Nėra nė vienas iš',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship yra :values',
|
||||
'inverse' => ':relationship nėra :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship turi :values',
|
||||
'inverse' => ':relationship neturi :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' arba ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Reikšmė',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Reikšmės',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Kiekis',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra',
|
||||
'inverse' => 'Nėra',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute yra :values',
|
||||
'inverse' => ':attribute nėra :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' arba ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Reikšmė',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Reikšmės',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Turi',
|
||||
'inverse' => 'Neturi',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute turi :text',
|
||||
'inverse' => ':attribute neturi :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Turi pabaigą',
|
||||
'inverse' => 'Neturi pabaigos',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute baigiasi :text',
|
||||
'inverse' => ':attribute nesibaigia :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yra',
|
||||
'inverse' => 'Nėra',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute lygus :text',
|
||||
'inverse' => ':attribute nelygus :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Turi pradžią',
|
||||
'inverse' => 'Neturi pradžios',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute prasideda :text',
|
||||
'inverse' => ':attribute neprasideda :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Tekstas',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Pridėti taisyklę',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Pridėti taisyklių grupę',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
227
vendor/filament/tables/resources/lang/lt/table.php
vendored
Normal file
227
vendor/filament/tables/resources/lang/lt/table.php
vendored
Normal file
@@ -0,0 +1,227 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Stulpeliai',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Slėpti :count',
|
||||
'expand_list' => 'Rodyti dar :count',
|
||||
],
|
||||
|
||||
'more_list_items' => 'ir dar :count',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Pažymėti/atžymėti visus įrašus masiniam veiksmui.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Pažymėti/atžymėti įrašą :key masiniam veiksmui.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Pažymėti/atžymėti grupę :title masiniam veiksmui.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Paieška',
|
||||
'placeholder' => 'Paieška',
|
||||
'indicator' => 'Paieška',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Santrauka',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Viso :label',
|
||||
'group' => ':group santrauka',
|
||||
'page' => 'Šis puslapis',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Vidurkis',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Viso',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Suma',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Pabaik pertvarkyti įrašus',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Pertvarkyti įrašus',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtras',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupė',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Atidaryti veiksmus',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Perjungti stulpelius',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Nerasta įrašų',
|
||||
|
||||
'description' => 'Norėdami pradėti, sukurkite :model.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Taikyti filtrus',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Pašalinti filtrą',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Pašalinti visus filtrus',
|
||||
'tooltip' => 'Pašalinti visus filtrus',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Nustatyti filtrus iš naujo',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtrai',
|
||||
|
||||
'indicator' => 'Aktyvūs filtrai',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Visi',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Visi',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Ištrinti įrašai',
|
||||
|
||||
'only_trashed' => 'Tik ištrinti įrašai',
|
||||
|
||||
'with_trashed' => 'Su ištrintais įrašais',
|
||||
|
||||
'without_trashed' => 'Be ištrintų įrašų',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupuoti pagal',
|
||||
'placeholder' => 'Grupuoti pagal',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Grupės kryptis',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Didėjančia tvarka',
|
||||
'desc' => 'Mažėjančia tvarka',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Vilkite ir paleiskite įrašų rikiavimui.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 įrašas pasirinktas|:count įrašai pasirinkti',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Pažymėti visus :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Atžymėti visus',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Rūšiuoti pagal',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Rūšiavimo kryptis',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Didėjimo tvarka',
|
||||
'desc' => 'Mažėjimo tvarka',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
217
vendor/filament/tables/resources/lang/lv/table.php
vendored
Normal file
217
vendor/filament/tables/resources/lang/lv/table.php
vendored
Normal file
@@ -0,0 +1,217 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Kolonnas',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'un :count vēl',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Atlasīt/noņemt atlasi no visiem ierakstiem, lai veiktu lielapjoma darbības.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Atlasīt/noņemt atlasi no ierksta :key, lai veiktu lielapjoma darbības.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Atlasīt/noņemt atlasi no grupas :title, lai veiktu lielapjoma darbības.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Meklēt',
|
||||
'placeholder' => 'Meklēt',
|
||||
'indicator' => 'Meklēt',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Kopsavilkums',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Visi :label',
|
||||
'group' => ':group kopsavilkums',
|
||||
'page' => 'Šī lapa',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Vidēji',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Skaits',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Summa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Pabeigt ierakstu kārtošanu',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Kārtot ierakstus',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtrēt',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupēt',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Lielapjoma darbības',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Izvēlēties kolonnas',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Nav atrasts neviens ieraksts',
|
||||
|
||||
'description' => 'Izveidot :model, lai sāktu.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Noņemt filtru',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Noņemt visus filtrus',
|
||||
'tooltip' => 'Noņemt visus filtrus',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Atiestatīt filtrus',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtri',
|
||||
|
||||
'indicator' => 'Aktīvie filtri',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Visi',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Visi',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Dzēstie ieraksti',
|
||||
|
||||
'only_trashed' => 'Tikai dzēstie ieraksti',
|
||||
|
||||
'with_trashed' => 'Kopā ar dzēstajiem ierakstiem',
|
||||
|
||||
'without_trashed' => 'Bez dzēstajiem ierakstiem',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupēt pēc',
|
||||
'placeholder' => 'Grupēt pēc',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Grupēšanas virziens',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Augošs',
|
||||
'desc' => 'Dilstošs',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Velciet un nometiet ierakstus secībā.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => 'Izvēlēts 1 ieraksts|:count ieraksti izvēlēti',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Atlasīt visus :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Noņemt atlasi visiem',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Kārtot pēc',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Kārtošanas virziens',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Augošs',
|
||||
'desc' => 'Dilstošs',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
146
vendor/filament/tables/resources/lang/mn/table.php
vendored
Normal file
146
vendor/filament/tables/resources/lang/mn/table.php
vendored
Normal file
@@ -0,0 +1,146 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'tags' => [
|
||||
'more' => '... :count илүү',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Олонг сонгох/Цуцлах.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Олонг сонгох/Цуцлах :key.',
|
||||
],
|
||||
|
||||
'search_query' => [
|
||||
'label' => 'Хайх',
|
||||
'placeholder' => 'Хайх',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Эрэмбэлэлтийг дуусгах',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Мөрүүдийг эрэмбэлэх',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Шүүлтүүр',
|
||||
],
|
||||
|
||||
'open_actions' => [
|
||||
'label' => 'Үйлдэл',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Баганыг нээх/хаах',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Илэрц хоосон',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Цэвэрлэх',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Бүгдийг цэвэрлэх',
|
||||
'tooltip' => 'Бүгдийг цэвэрлэх',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Филтерийг болиулах',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'indicator' => 'Филтерийг идэвхижүүлэх',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Бүгд',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Бүгд',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Хогийн сав',
|
||||
|
||||
'only_trashed' => 'Зөвхөн устгасанг',
|
||||
|
||||
'with_trashed' => 'Аль алиныг',
|
||||
|
||||
'without_trashed' => 'Хэвийн',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'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' => 'Буурах',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/ms/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/ms/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Pembina pertanyaan',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operator',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Kumpulan',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjunction (ATAU)',
|
||||
'or' => 'ATAU',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Peraturan',
|
||||
|
||||
'item' => [
|
||||
'and' => 'DAN',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Tiada peraturan)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'DAN',
|
||||
'or' => 'ATAU',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Dipenuhi',
|
||||
'inverse' => 'Kosong',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute dipenuhi',
|
||||
'inverse' => ':attribute kosong',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Betul',
|
||||
'inverse' => 'Salah',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute adalah betul',
|
||||
'inverse' => ':attribute adalah salah',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Adalah selepas',
|
||||
'inverse' => 'Adalah tidak selepas',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute adalah selepas :date',
|
||||
'inverse' => ':attribute adalah tidak selepas :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Adalah sebelum',
|
||||
'inverse' => 'Adalah tidak sebelum',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute adalah sebelum :date',
|
||||
'inverse' => ':attribute adalah tidak sebelum :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Adalah tarikh',
|
||||
'inverse' => 'Adalah bukan tarikh',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute adalah :date',
|
||||
'inverse' => ':attribute bukan :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Adalah bulan',
|
||||
'inverse' => 'Adalah bukan bulan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute adalah :month',
|
||||
'inverse' => ':attribute bukan :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Adalah tahun',
|
||||
'inverse' => 'Adalah bukan tahun',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute adalah :year',
|
||||
'inverse' => ':attribute bukan :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Tarikh',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Bulan',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Tahun',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Sama',
|
||||
'inverse' => 'Tidak sama',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute sama :number',
|
||||
'inverse' => ':attribute tidak sama :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Adalah maksimum',
|
||||
'inverse' => 'Adalah lebih besar daripada',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute adalah maksimum :number',
|
||||
'inverse' => ':attribute adalah lebih besar daripada :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Adalah minimum',
|
||||
'inverse' => 'Adalah kurang daripada',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute adalah minimum :number',
|
||||
'inverse' => ':attribute adalah kurang daripada :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Purata',
|
||||
'summary' => 'Purata :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Maks',
|
||||
'summary' => 'Maks :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Min',
|
||||
'summary' => 'Min :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Jumlah',
|
||||
'summary' => 'Jumlah :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Agregat',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Nombor',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Mempunyai',
|
||||
'inverse' => 'Tidak mempunyai',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Mempunyai :count :relationship',
|
||||
'inverse' => 'Tidak mempunyai :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Mempunyai maksimum',
|
||||
'inverse' => 'Mempunyai lebih daripada',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Mempunyai maksimum :count :relationship',
|
||||
'inverse' => 'Mempunyai lebih daripada :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Mempunyai minimum',
|
||||
'inverse' => 'Mempunyai kurang daripada',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Mempunyai minimum :count :relationship',
|
||||
'inverse' => 'Mempunyai kurang daripada :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Kosong',
|
||||
'inverse' => 'Tidak kosong',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship kosong',
|
||||
'inverse' => ':relationship tidak kosong',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Adalah',
|
||||
'inverse' => 'Adalah tidak',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Mengandungi',
|
||||
'inverse' => 'Tidak mengandungi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship adalah :values',
|
||||
'inverse' => ':relationship bukan :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship mengandungi :values',
|
||||
'inverse' => ':relationship tidak mengandungi :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' atau ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Nilai',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Nilai',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Kira',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Adalah',
|
||||
'inverse' => 'Bukan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute adalah :values',
|
||||
'inverse' => ':attribute bukan :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' atau ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Nilai',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Nilai',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Mengandungi',
|
||||
'inverse' => 'Tidak mengandungi',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute mengandungi :text',
|
||||
'inverse' => ':attribute tidak mengandungi :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Berakhir dengan',
|
||||
'inverse' => 'Tidak berakhir dengan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute berakhir dengan :text',
|
||||
'inverse' => ':attribute tidak berakhir dengan :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Sama',
|
||||
'inverse' => 'Tidak sama',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute sama :text',
|
||||
'inverse' => ':attribute tidak sama :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Bermula dengan',
|
||||
'inverse' => 'Tidak bermula dengan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute bermula dengan :text',
|
||||
'inverse' => ':attribute tidak bermula dengan :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Teks',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Tambah peraturan',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Tambahkan kumpulan peraturan',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
227
vendor/filament/tables/resources/lang/ms/table.php
vendored
Normal file
227
vendor/filament/tables/resources/lang/ms/table.php
vendored
Normal file
@@ -0,0 +1,227 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Kolum',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Tunjukkan kurang :count',
|
||||
'expand_list' => 'Tunjukkan :count lagi',
|
||||
],
|
||||
|
||||
'more_list_items' => 'dan :count lagi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Pilih/nyahpilih semua item untuk tindakan pukal.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Pilih/nyahpilih item :key untuk tindakan pukal.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Pilih/nyahpilih kumpulan :title untuk tindakan pukal.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Cari',
|
||||
'placeholder' => 'Carian',
|
||||
'indicator' => 'Carian',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Ringkasan',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Semua :label',
|
||||
'group' => ':group ringkasan',
|
||||
'page' => 'Muka surat ini',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Purata',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Bilangan',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Jumlah',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Selesai menyusun semula rekod',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Menyusun semula rekod',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Tapisan',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Kumpulan',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Tindakan terbuka',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Togol lajur',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Tiada rekod dijumpai',
|
||||
|
||||
'description' => 'Cipta :model untuk bermula.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Gunakan tapisan',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Buang tapisan',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Buang semua tapisan',
|
||||
'tooltip' => 'Buang semua tapisan',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Tetapkan semula tapisan',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Tapisan',
|
||||
|
||||
'indicator' => 'Tapisan aktif',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Semua',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Semua',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Rekod telah dipadamkan',
|
||||
|
||||
'only_trashed' => 'Hanya rekod yang dipadamkan',
|
||||
|
||||
'with_trashed' => 'Dengan rekod yang dipadam',
|
||||
|
||||
'without_trashed' => 'Tanpa rekod yang dipadam',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Kumpulan mengikut',
|
||||
'placeholder' => 'Kumpulan mengikut',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Arah kumpulan',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Menaik',
|
||||
'desc' => 'Menurun',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Seret dan lepaskan rekod mengikut susunan.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '{1} 1 rekod dipilih|[2,*] :count rekod yang dipilih',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Pilih semua :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Nyahpilih semua',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Disusun mengikut',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Arah susunan',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Menaik',
|
||||
'desc' => 'Menurun',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/nl/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/nl/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Geavanceerd filteren',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operator',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Groepen',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjunctie (OF)',
|
||||
'or' => 'OF',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Regels',
|
||||
|
||||
'item' => [
|
||||
'and' => 'EN',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Geen regels)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'EN',
|
||||
'or' => 'OF',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is gevuld',
|
||||
'inverse' => 'Is leeg',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is gevuld',
|
||||
'inverse' => ':attribute is leeg',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is waar',
|
||||
'inverse' => 'Is onwaar',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is waar',
|
||||
'inverse' => ':attribute is onwaar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is na',
|
||||
'inverse' => 'Is niet na',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is na :date',
|
||||
'inverse' => ':attribute is niet na :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is voor',
|
||||
'inverse' => 'Is niet voor',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is voor :date',
|
||||
'inverse' => ':attribute is niet voor :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is datum',
|
||||
'inverse' => 'Is niet datum',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is :date',
|
||||
'inverse' => ':attribute is niet :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is maand',
|
||||
'inverse' => 'Is niet maand',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is :month',
|
||||
'inverse' => ':attribute is niet :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is jaar',
|
||||
'inverse' => 'Is niet jaar',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is :year',
|
||||
'inverse' => ':attribute is niet :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Datum',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Maand',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Jaar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is gelijk aan',
|
||||
'inverse' => 'Is niet gelijk aan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is gelijk aan :number',
|
||||
'inverse' => ':attribute is niet gelijk aan :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is maximaal',
|
||||
'inverse' => 'Is groter dan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is maximaal :number',
|
||||
'inverse' => ':attribute is groter dan :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is minimaal',
|
||||
'inverse' => 'Is kleiner dan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is minimaal :number',
|
||||
'inverse' => ':attribute is kleiner dan :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Gemiddelde',
|
||||
'summary' => 'Gemiddelde van :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Maximum',
|
||||
'summary' => 'Maximum van :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Minimum',
|
||||
'summary' => 'Minimum van :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Som',
|
||||
'summary' => 'Som van :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Aggregaat',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Getal',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Heeft',
|
||||
'inverse' => 'Heeft niet',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Heeft :count :relationship',
|
||||
'inverse' => 'Heeft niet :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Heeft maximaal',
|
||||
'inverse' => 'Heeft meer dan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Heeft maximaal :count :relationship',
|
||||
'inverse' => 'Heeft meer dan :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Heeft minimaal',
|
||||
'inverse' => 'Heeft minder dan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Heeft minimaal :count :relationship',
|
||||
'inverse' => 'Heeft minder dan :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is leeg',
|
||||
'inverse' => 'Is niet leeg',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship is leeg',
|
||||
'inverse' => ':relationship is niet leeg',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Is',
|
||||
'inverse' => 'Is niet',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Bevat',
|
||||
'inverse' => 'Bevat niet',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship is :values',
|
||||
'inverse' => ':relationship is niet :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship bevat :values',
|
||||
'inverse' => ':relationship bevat niet :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' of ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Waarde',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Waarden',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Aantal',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is',
|
||||
'inverse' => 'Is niet',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is :values',
|
||||
'inverse' => ':attribute is niet :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' of ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Waarde',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Waarden',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Bevat',
|
||||
'inverse' => 'Bevat niet',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute bevat :text',
|
||||
'inverse' => ':attribute bevat niet :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Eindigt op',
|
||||
'inverse' => 'Eindigt niet op',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute eindigt op :text',
|
||||
'inverse' => ':attribute eindigt niet op :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Is gelijk aan',
|
||||
'inverse' => 'Is niet gelijk aan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute is gelijk aan :text',
|
||||
'inverse' => ':attribute is niet gelijk aan :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Begint met',
|
||||
'inverse' => 'Begint niet met',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute begint met :text',
|
||||
'inverse' => ':attribute begint niet met :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Tekst',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Regel toevoegen',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Regelgroep toevoegen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
227
vendor/filament/tables/resources/lang/nl/table.php
vendored
Normal file
227
vendor/filament/tables/resources/lang/nl/table.php
vendored
Normal file
@@ -0,0 +1,227 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Kolommen',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => ':count minder tonen',
|
||||
'expand_list' => ':count meer tonen',
|
||||
],
|
||||
|
||||
'more_list_items' => 'en :count meer',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Alle items selecteren/deselecteren voor bulkacties.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Item :key selecteren/deselecteren voor bulkacties.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Groep :title selecteren/deselecteren voor bulkacties.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Zoeken',
|
||||
'placeholder' => 'Zoeken',
|
||||
'indicator' => 'Zoekopdracht',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Samenvatting',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Alle :label',
|
||||
'group' => ':group samenvatting',
|
||||
'page' => 'Deze pagina',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Gemiddelde',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Aantal',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Som',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Herordenen van records voltooien',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Records herordenen',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filteren',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Groeperen',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Acties openen',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Kolommen in-/uitschakelen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Geen :model',
|
||||
|
||||
'description' => 'Maak een :model aan om aan de slag te gaan.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Filters toepassen',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Filter verwijderen',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Alle filters verwijderen',
|
||||
'tooltip' => 'Alle filters verwijderen',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Resetten',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filters',
|
||||
|
||||
'indicator' => 'Actieve filters',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Alles',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Alles',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Verwijderde records',
|
||||
|
||||
'only_trashed' => 'Alleen verwijderde records',
|
||||
|
||||
'with_trashed' => 'Met verwijderde records',
|
||||
|
||||
'without_trashed' => 'Zonder verwijderde records',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Groeperen op',
|
||||
'placeholder' => 'Groeperen op',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Groeperingsrichting',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Oplopend',
|
||||
'desc' => 'Aflopend',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Sleep de records in de juiste volgorde.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 record geselecteerd|:count records geselecteerd',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Selecteer alle :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Alles deselecteren',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Sorteren op',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Sorteerrichting',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Oplopend',
|
||||
'desc' => 'Aflopend',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/no/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/no/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Spørringsbygger',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operatør',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Grupper',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjunksjon (ELLER)',
|
||||
'or' => 'ELLER',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Regler',
|
||||
|
||||
'item' => [
|
||||
'and' => 'OG',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Ingen regler)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'OG',
|
||||
'or' => 'ELLER',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er fylt',
|
||||
'inverse' => 'Er blank',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute er fylt',
|
||||
'inverse' => ':attribute er blank',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er sant',
|
||||
'inverse' => 'Er usant',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute er sant',
|
||||
'inverse' => ':attribute er usant',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er etter',
|
||||
'inverse' => 'Er ikke etter',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute er etter :date',
|
||||
'inverse' => ':attribute er ikke etter :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er før',
|
||||
'inverse' => 'Er ikke før',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute er før :date',
|
||||
'inverse' => ':attribute er ikke før :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er dato',
|
||||
'inverse' => 'Er ikke dato',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute er :date',
|
||||
'inverse' => ':attribute er ikke :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er måned',
|
||||
'inverse' => 'Er ikke måned',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute er :month',
|
||||
'inverse' => ':attribute er ikke :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er år',
|
||||
'inverse' => 'er ikke år',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute er :year',
|
||||
'inverse' => ':attribute er ikke :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Dato',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Måned',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'År',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er lik',
|
||||
'inverse' => 'Er ikke lik',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute er lik :number',
|
||||
'inverse' => ':attribute er ikke lik :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er maks',
|
||||
'inverse' => 'Er større enn',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute er maks :number',
|
||||
'inverse' => ':attribute er større enn :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er minimum',
|
||||
'inverse' => 'Er mindre enn',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute er minimum :number',
|
||||
'inverse' => ':attribute er mindre enn :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Gjennomsnitt',
|
||||
'summary' => 'Gjennomsnitt :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Maks',
|
||||
'summary' => 'Maks :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Minimum',
|
||||
'summary' => 'Minimum :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Sum',
|
||||
'summary' => 'Sum av :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Samlet',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Nummer',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Har',
|
||||
'inverse' => 'Har ikke',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Har :count :relationship',
|
||||
'inverse' => 'Har ikke :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Har maks',
|
||||
'inverse' => 'Har mer enn',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Har maks :count :relationship',
|
||||
'inverse' => 'Har mer enn :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Har minimum',
|
||||
'inverse' => 'Har mindre enn',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Har minimum :count :relationship',
|
||||
'inverse' => 'Har mindre enn :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er tom',
|
||||
'inverse' => 'Er ikke tom',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship er tom',
|
||||
'inverse' => ':relationship er ikke tom',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Er',
|
||||
'inverse' => 'Er ikke',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Inneholder',
|
||||
'inverse' => 'Inneholder ikke',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship er :values',
|
||||
'inverse' => ':relationship er ikke :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship inneholder :values',
|
||||
'inverse' => ':relationship inneholder ikke :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' eller ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Verdi',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Verdier',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Telle',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er',
|
||||
'inverse' => 'Er ikke',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute er :values',
|
||||
'inverse' => ':attribute er ikke :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' eller ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Verdi',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Verdier',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Inneholder',
|
||||
'inverse' => 'Inneholder ikke',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute inneholder :text',
|
||||
'inverse' => ':attribute inneholder ikke :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ender med',
|
||||
'inverse' => 'Ender ikke med',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute ender med :text',
|
||||
'inverse' => ':attribute ender ikke med :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Er lik',
|
||||
'inverse' => 'Er ikke lik',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute er lik :text',
|
||||
'inverse' => ':attribute er ikke lik :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Starter med',
|
||||
'inverse' => 'Starter ikke med',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute starter med :text',
|
||||
'inverse' => ':attribute starter ikke med :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Tekst',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Legg til regel',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Legg til grupperegel',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/no/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/no/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Kolonner',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Vis :count mindre',
|
||||
'expand_list' => 'Vis :count til',
|
||||
],
|
||||
|
||||
'more_list_items' => 'og :count til',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Velg/fjern alle valgte elementer for massehandlinger.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Velg/fjern element :key for massehandlinger.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Velg/fjern gruppen :title for massehandlinger.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Søk',
|
||||
'placeholder' => 'Søk',
|
||||
'indicator' => 'Søk',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Oppsummering',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Alle :label',
|
||||
'group' => ':group oppsummering',
|
||||
'page' => 'Denne siden',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Gjennomsnitt',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Tell opp',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Sum',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Fullfør omorganisering av poster',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Omorganiser poster',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filter',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Gruppere',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Massehandlinger',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Veksle kolonner',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Ingen :model',
|
||||
|
||||
'description' => 'Opprett en :model for å komme igang.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Bruk filtre',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Fjern filter',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Fjern alle filtre',
|
||||
'tooltip' => 'Fjern alle filtre',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Nullstill',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtre',
|
||||
|
||||
'indicator' => 'Aktive filtre',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Alle',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Alle',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Slettede poster',
|
||||
|
||||
'only_trashed' => 'Bare slettede poster',
|
||||
|
||||
'with_trashed' => 'Med slettede poster',
|
||||
|
||||
'without_trashed' => 'Uten slettede poster',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupper etter',
|
||||
'placeholder' => 'Grupper etter',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Grupperetning',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Stigende',
|
||||
'desc' => 'Synkende',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Dra og slipp postene i rekkefølge.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 post valgt|:count poster valgt',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Velg alle :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Fjern alle markeringer',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Sorter etter',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Sorteringsretning',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Stigende',
|
||||
'desc' => 'Synkende',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
214
vendor/filament/tables/resources/lang/np/table.php
vendored
Normal file
214
vendor/filament/tables/resources/lang/np/table.php
vendored
Normal file
@@ -0,0 +1,214 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'स्तम्भहरू',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'र थप :count',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'बल्क कार्यका लागि सबै वस्तुहरू चयन/अचयन गर्नुहोस्।',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
// वस्तु चयन/अचयन गर्नुहोस् : बल्क कार्यहरूको लागि कुञ्जी।
|
||||
'label' => ':key वस्तु चयन/अचयन गर्नुहोस् : बल्क कार्यहरूको लागि।',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'खोज',
|
||||
'placeholder' => 'खोज',
|
||||
'indicator' => 'खोज',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'सारांश',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'सबै :label',
|
||||
'group' => ':group को सारांश',
|
||||
'page' => 'यो पृष्ठ',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'औसत',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'गणना',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'योगफल',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'रेकर्ड पुन क्रमबद्ध समाप्त गर्नुहोस्',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'रेकर्डहरू पुन क्रमबद्ध गर्नुहोस्',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'फिल्टर गर्नुहोस्',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'समूहबद्ध गर्नुहोस्',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'बल्क कार्यहरू',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'स्तम्भहरू टगल गर्नुहोस्',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => ':model छैन',
|
||||
|
||||
'description' => 'सुरु गर्न :model सिर्जना गर्नुहोस्।',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'फिल्टर हटाउनुहोस्',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'सबै फिल्टरहरू हटाउनुहोस्',
|
||||
'tooltip' => 'सबै फिल्टरहरू हटाउनुहोस्',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'रिसेट गर्नुहोस्',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'फिल्टरहरू',
|
||||
|
||||
'indicator' => 'सक्रिय फिल्टरहरू',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'सबै',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'सबै',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'मेटिएका रेकर्डहरू',
|
||||
|
||||
'only_trashed' => 'केवल मेटाइएको रेकर्डहरू',
|
||||
|
||||
'with_trashed' => 'मेटाइएका रेकर्डहरूसँग',
|
||||
|
||||
'without_trashed' => 'मेटाइएको रेकर्ड बिना',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'समायोजन गर्नुहोस्',
|
||||
'placeholder' => 'समायोजन गर्नुहोस्',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'समूहको दिशा',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'आरोहण',
|
||||
'desc' => 'अवतरण',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'क्रम मा रेकर्ड तान्नुहोस् र छोड्नुहोस्।',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => 'एउटा रेकर्ड चयन गरियो|:count वटा रेकर्ड चयन गरियो',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => ':count वटा चयन गर्नुहोस्',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'सबै अचयन गर्नुहोस्',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'क्रमबद्ध गर्नुहोस्',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'क्रमबद्ध दिशा',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'आरोहण',
|
||||
'desc' => 'अवतरण',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
213
vendor/filament/tables/resources/lang/pl/table.php
vendored
Normal file
213
vendor/filament/tables/resources/lang/pl/table.php
vendored
Normal file
@@ -0,0 +1,213 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Kolumny',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'i :count więcej',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Zaznacz/odznacz wszystkie pozycje dla operacji zbiorczych.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Zaznacz/odznacz pozycję :key dla operacji zbiorczych.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Szukaj',
|
||||
'placeholder' => 'Szukaj',
|
||||
'indicator' => 'Szukaj',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Podsumowanie',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Wszystkie :label',
|
||||
'group' => 'Grupa :group',
|
||||
'page' => 'Bieżąca strona',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Średnia',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Ilość',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Suma',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Zakończ zmienianie kolejności',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Zmień kolejność',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtr',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupa',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Akcje masowe',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Wybierz kolumny',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Nie znaleziono rekordów',
|
||||
|
||||
'description' => 'Utwórz rekord aby rozpocząć.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Usuń filtr',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Usuń wszystkie filtry',
|
||||
'tooltip' => 'Usuń wszystkie filtry',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Zresetuj filtry',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtry',
|
||||
|
||||
'indicator' => 'Aktywne filtry',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Wszystkie',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Wszystkie',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Usunięte rekordy',
|
||||
|
||||
'only_trashed' => 'Tylko usunięte rekordy',
|
||||
|
||||
'with_trashed' => 'Uwzględnij usunięte rekordy',
|
||||
|
||||
'without_trashed' => 'Bez usuniętych rekordów',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupuj według',
|
||||
'placeholder' => 'Grupuj według',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Kolejność grup',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Rosnąco',
|
||||
'desc' => 'Malejąco',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Zmień kolejność przeciągając.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '{1} 1 rekord zaznaczony|[2,4]:count rekordy zaznaczone|[5,*]:count rekordów zaznaczonych',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Zaznacz wszystkie :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Odznacz wszystkie',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Sortuj według',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Kierunek sortowania',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Rosnąco',
|
||||
'desc' => 'Malejąco',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/pt_BR/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/pt_BR/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Construtor de Consultas',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operador',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Grupos',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjunção (OU)',
|
||||
'or' => 'OU',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Regras',
|
||||
|
||||
'item' => [
|
||||
'and' => 'E',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Sem regras)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'E',
|
||||
'or' => 'OU',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Preenchido',
|
||||
'inverse' => 'Em branco',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute preenchido',
|
||||
'inverse' => ':attribute em branco',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É verdadeiro',
|
||||
'inverse' => 'É falso',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é verdadeiro',
|
||||
'inverse' => ':attribute é falso',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É posterior',
|
||||
'inverse' => 'Não é posterior',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é posterior a :date',
|
||||
'inverse' => ':attribute não é posterir a :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É anterior',
|
||||
'inverse' => 'Não é anterior',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é anterior a :date',
|
||||
'inverse' => ':attribute não é anterior a :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É data',
|
||||
'inverse' => 'Não é data',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é :date',
|
||||
'inverse' => ':attribute não é :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É mês',
|
||||
'inverse' => 'Não é mês',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é :month',
|
||||
'inverse' => ':attribute não é :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É ano',
|
||||
'inverse' => 'Não é ano',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é :year',
|
||||
'inverse' => ':attribute não é :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Data',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Mês',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Ano',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É igual',
|
||||
'inverse' => 'É diferente',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é igual a :number',
|
||||
'inverse' => ':attribute é diferente de :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É máximo',
|
||||
'inverse' => 'É maior que',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é máximo :number',
|
||||
'inverse' => ':attribute é maior que :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É mínimo',
|
||||
'inverse' => 'É menor que',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é mínimo :number',
|
||||
'inverse' => ':attribute é menor que :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Média',
|
||||
'summary' => 'Média de :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Máx.',
|
||||
'summary' => 'Máx. de :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Mín.',
|
||||
'summary' => 'Mín. de :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Soma',
|
||||
'summary' => 'Soma de :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Agregação',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Número',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Contém',
|
||||
'inverse' => 'Não contém',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Tem :count :relationship',
|
||||
'inverse' => 'Não tem :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Tem máximo',
|
||||
'inverse' => 'Tem mais de',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Tem máximo de :count :relationship',
|
||||
'inverse' => 'Tem mais de :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Tem mínimo',
|
||||
'inverse' => 'Tem menos de',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Tem mínimo de :count :relationship',
|
||||
'inverse' => 'Tem emnos de :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É vazio',
|
||||
'inverse' => 'Não é vazio',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship é vazio',
|
||||
'inverse' => ':relationship não é vazio',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'É',
|
||||
'inverse' => 'Não é',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Contém',
|
||||
'inverse' => 'Não contém',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship é :values',
|
||||
'inverse' => ':relationship não é :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship contém :values',
|
||||
'inverse' => ':relationship não contém :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' ou ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Valor',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Valores',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Contagem',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É',
|
||||
'inverse' => 'Não é',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é :values',
|
||||
'inverse' => ':attribute não é :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' ou ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Valor',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Valores',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Contém',
|
||||
'inverse' => 'Não contém',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute contém :text',
|
||||
'inverse' => ':attribute não contém :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Termina em',
|
||||
'inverse' => 'Não termina em',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute termina em :text',
|
||||
'inverse' => ':attribute não termina em :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É igual',
|
||||
'inverse' => 'Não é igual',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é igual :text',
|
||||
'inverse' => ':attribute não é igual :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Inicia por',
|
||||
'inverse' => 'Não inicia por',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute inicia por :text',
|
||||
'inverse' => ':attribute não inicia por :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Texto',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Adicionar regra',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Adicionar grupo de regras',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
227
vendor/filament/tables/resources/lang/pt_BR/table.php
vendored
Normal file
227
vendor/filament/tables/resources/lang/pt_BR/table.php
vendored
Normal file
@@ -0,0 +1,227 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Colunas',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Mostrar menos :count',
|
||||
'expand_list' => 'Mostrar mais :count',
|
||||
],
|
||||
|
||||
'more_list_items' => 'e mais :count',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Marcar/desmarcar todos os itens para ações em massa.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Marcar/desmarcar o item :key para ações em massa.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Marcar/desmarcar o grupo :title para ações em massa.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Pesquisar',
|
||||
'placeholder' => 'Pesquisar',
|
||||
'indicator' => 'Pesquisar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Resumo',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Todos :label',
|
||||
'group' => ':group resumo',
|
||||
'page' => 'Esta página',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Média',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Contagem',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Soma',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Concluir a reordenação de registros',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Reordenar registros',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtrar',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Agrupar',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Abrir ações',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Alternar colunas',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Sem registros',
|
||||
|
||||
'description' => 'Crie um :model para começar.',
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Aplicar filtros',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Remover filtro',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Remover todos os filtros',
|
||||
'tooltip' => 'Remover todos os filtros',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Limpar filtros',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtros',
|
||||
|
||||
'indicator' => 'Filtros ativos',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Todos',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Todos',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Registros excluídos',
|
||||
|
||||
'only_trashed' => 'Somente registros excluídos',
|
||||
|
||||
'with_trashed' => 'Exibir registros excluídos',
|
||||
|
||||
'without_trashed' => 'Não exibir registros excluídos',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Agrupar por',
|
||||
'placeholder' => 'Agrupar por',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Direção do agrupamento',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Ascendente',
|
||||
'desc' => 'Descendente',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Arraste e solte os registros na ordem.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 registro selecionado|:count registros selecionados',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Selecione todos os :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Desselecionar todos',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Ordenar por',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Direção de ordenação',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Ascendente',
|
||||
'desc' => 'Descendente',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/pt_PT/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/pt_PT/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Construtor de Consultas',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operador',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Grupos',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjunção (OU)',
|
||||
'or' => 'OU',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Regras',
|
||||
|
||||
'item' => [
|
||||
'and' => 'E',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Sem regras)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'E',
|
||||
'or' => 'OU',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Preenchido',
|
||||
'inverse' => 'Em branco',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute preenchido',
|
||||
'inverse' => ':attribute em branco',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É verdadeiro',
|
||||
'inverse' => 'É falso',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é verdadeiro',
|
||||
'inverse' => ':attribute é falso',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É posterior',
|
||||
'inverse' => 'Não é posterior',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é posterior a :date',
|
||||
'inverse' => ':attribute não é posterir a :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É anterior',
|
||||
'inverse' => 'Não é anterior',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é anterior a :date',
|
||||
'inverse' => ':attribute não é anterior a :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É data',
|
||||
'inverse' => 'Não é data',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é :date',
|
||||
'inverse' => ':attribute não é :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É mês',
|
||||
'inverse' => 'Não é mês',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é :month',
|
||||
'inverse' => ':attribute não é :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É ano',
|
||||
'inverse' => 'Não é ano',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é :year',
|
||||
'inverse' => ':attribute não é :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Data',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Mês',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Ano',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É igual',
|
||||
'inverse' => 'É diferente',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é igual a :number',
|
||||
'inverse' => ':attribute é diferente de :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É máximo',
|
||||
'inverse' => 'É maior que',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é máximo :number',
|
||||
'inverse' => ':attribute é maior que :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É mínimo',
|
||||
'inverse' => 'É menor que',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é mínimo :number',
|
||||
'inverse' => ':attribute é menor que :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Média',
|
||||
'summary' => 'Média de :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Máx.',
|
||||
'summary' => 'Máx. de :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Mín.',
|
||||
'summary' => 'Mín. de :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Soma',
|
||||
'summary' => 'Soma de :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Agregação',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Número',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Contém',
|
||||
'inverse' => 'Não contém',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Tem :count :relationship',
|
||||
'inverse' => 'Não tem :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Tem máximo',
|
||||
'inverse' => 'Tem mais de',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Tem máximo de :count :relationship',
|
||||
'inverse' => 'Tem mais de :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Tem mínimo',
|
||||
'inverse' => 'Tem menos de',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Tem mínimo de :count :relationship',
|
||||
'inverse' => 'Tem emnos de :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É vazio',
|
||||
'inverse' => 'Não é vazio',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship é vazio',
|
||||
'inverse' => ':relationship não é vazio',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'É',
|
||||
'inverse' => 'Não é',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Contém',
|
||||
'inverse' => 'Não contém',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship é :values',
|
||||
'inverse' => ':relationship não é :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship contém :values',
|
||||
'inverse' => ':relationship não contém :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' ou ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Valor',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Valores',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Contagem',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É',
|
||||
'inverse' => 'Não é',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é :values',
|
||||
'inverse' => ':attribute não é :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' ou ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Valor',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Valores',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Contém',
|
||||
'inverse' => 'Não contém',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute contém :text',
|
||||
'inverse' => ':attribute não contém :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Termina em',
|
||||
'inverse' => 'Não termina em',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute termina em :text',
|
||||
'inverse' => ':attribute não termina em :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'É igual',
|
||||
'inverse' => 'Não é igual',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute é igual :text',
|
||||
'inverse' => ':attribute não é igual :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Inicia por',
|
||||
'inverse' => 'Não inicia por',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute inicia por :text',
|
||||
'inverse' => ':attribute não inicia por :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Texto',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Adicionar regra',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Adicionar grupo de regras',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/pt_PT/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/pt_PT/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Colunas',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Mostrar menos :count',
|
||||
'expand_list' => 'Mostrar mais :count',
|
||||
],
|
||||
|
||||
'more_list_items' => 'e mais :count',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Marcar/desmarcar todos os itens para acções em massa.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Marcar/desmarcar o item :key para acções em massa.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Marcar/desmarcar o grupo :title para acções em massa.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Pesquisar',
|
||||
'placeholder' => 'Pesquisar',
|
||||
'indicator' => 'Pesquisar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Resumo',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Todos :label',
|
||||
'group' => 'Resumo de :group',
|
||||
'page' => 'Esta página',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Média',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Contagem',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Soma',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Concluir a reordenação de registos',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Reordenar registos',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtrar',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Agrupar',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Acções em massa',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Activar colunas',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Sem :model',
|
||||
|
||||
'description' => 'Crie um(a) :model para começar.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Aplicar filtros',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Remover filtro',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Remover todos os filtros',
|
||||
'tooltip' => 'Remover todos os filtros',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Repôr',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtros',
|
||||
|
||||
'indicator' => 'Filtros activos',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Todos',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Todos',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Registos eliminados',
|
||||
|
||||
'only_trashed' => 'Apenas registos eliminados',
|
||||
|
||||
'with_trashed' => 'Mostrar registos eliminados',
|
||||
|
||||
'without_trashed' => 'Não mostrar registos eliminados',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Agrupar por',
|
||||
'placeholder' => 'Agrupar por',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Direcção de agrupamento',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Ascendente',
|
||||
'desc' => 'Descendente',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Arraste e solte os registos por ordem.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 registo seleccionado|:count registos seleccionados',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Seleccionar todos os :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Desmarcar todos',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Ordenar por',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Direcção de ordenação',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Ascendente',
|
||||
'desc' => 'Descendente',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
221
vendor/filament/tables/resources/lang/ro/table.php
vendored
Normal file
221
vendor/filament/tables/resources/lang/ro/table.php
vendored
Normal file
@@ -0,0 +1,221 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Coloane',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'si alte :count',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Selectați/Deselectați tot pentru operațiuni in masă.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Selectează/Deselectează elementul :key pentru operațiuni in masă.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Selectează/Deselectează grupul :title pentru operațiuni in masă.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Căutare',
|
||||
'placeholder' => 'Căutare',
|
||||
'indicator' => 'Căutare',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Sumar',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Toate :label',
|
||||
'group' => 'Sumar :group',
|
||||
'page' => 'Această pagină',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Medie',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Numărare',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Suma',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Dezactivați reordonarea',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Activați reordonarea',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtru',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupare',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Operațiuni in masă',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Deschide/închide coloane',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Nu s-au găsit rezultate',
|
||||
|
||||
'description' => 'Creează un :model pentru a începe.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Aplică filtrele',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Elimină filtru',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Elimină toate filtrele',
|
||||
'tooltip' => 'Elimină toate filtrele',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Resetare filtre',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtre',
|
||||
|
||||
'indicator' => 'Filtre active',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Toate',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Toate',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Elemente șterse',
|
||||
|
||||
'only_trashed' => 'Doar elementele șterse',
|
||||
|
||||
'with_trashed' => 'Include elementele șterse',
|
||||
|
||||
'without_trashed' => 'Doar elementele neșterse',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupează după',
|
||||
'placeholder' => 'Grupează după',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Direcție grupare',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Ascendentă',
|
||||
'desc' => 'Descendentă',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Trageți și plasați elementele în ordine.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 element selectat|:count elemente selectate',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Selectare toate :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Deselectare toate',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Sortare după coloană',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Direcție sortare',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Ascendentă',
|
||||
'desc' => 'Descendentă',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
210
vendor/filament/tables/resources/lang/ru/table.php
vendored
Normal file
210
vendor/filament/tables/resources/lang/ru/table.php
vendored
Normal file
@@ -0,0 +1,210 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Столбцы',
|
||||
|
||||
],
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'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' => 'Открыть действия',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Переключить столбцы',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Не найдено :model',
|
||||
|
||||
'description' => 'Создать :model для старта.',
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Удалить фильтр',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Очистить фильтры',
|
||||
'tooltip' => 'Очистить фильтры',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Сбросить',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Фильтры',
|
||||
|
||||
'indicator' => 'Активные фильтры',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Все',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Все',
|
||||
],
|
||||
|
||||
'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' => 'По убыванию',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
226
vendor/filament/tables/resources/lang/sk/table.php
vendored
Normal file
226
vendor/filament/tables/resources/lang/sk/table.php
vendored
Normal file
@@ -0,0 +1,226 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Stĺpce',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'actions' => [
|
||||
'collapse_list' => 'Zobraziť o :count menej',
|
||||
'expand_list' => 'Zobraziť o :count viac',
|
||||
],
|
||||
|
||||
'more_list_items' => 'a ďalších :count',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Označiť/odznačiť všetky položky pre hromadné akcie.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Označiť/odznačiť položku :key pre hromadné akcie.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Označiť/odznačiť skupinu :title pre hromadné akcie.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Hľadať',
|
||||
'placeholder' => 'Hľadať',
|
||||
'indicator' => 'Hľadať',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Sumár',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Všetko',
|
||||
'group' => 'Sumár (:group)',
|
||||
'page' => 'Táto strana',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Priemer',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Počet',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Súčet',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Dokončiť zoraďovanie záznamov',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Zoradiť záznamy',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filter',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Skupina',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Hromadné akcie',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Prepnúť stĺpce',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Žiadny :model',
|
||||
|
||||
'description' => 'Pre pokračovanie vytvorte :model.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Použiť filtre',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Odstrániť filter',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Odstrániť všetky filtre',
|
||||
'tooltip' => 'Odstrániť všetky filtre',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Resetovať',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtre',
|
||||
|
||||
'indicator' => 'Aktívne filtre',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Všetko',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Všetko',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Odstránené záznamy',
|
||||
|
||||
'only_trashed' => 'Iba odstránené záznamy',
|
||||
|
||||
'with_trashed' => 'Spolu s ostránenými záznamami',
|
||||
|
||||
'without_trashed' => 'Bez odstránených záznamov',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Zoskupiť podľa',
|
||||
'placeholder' => 'Zoskupiť podľa',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Smer zoskupenia',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Vzostupne',
|
||||
'desc' => 'Zostupne',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Ťahaním presuňte záznamy do požadovaného poradia.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 vybraná položka|:count vybraných položiek',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Označiť všetkých :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Zrušiť označenie všetkých',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Zoradiť podľa',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Smer zoradenia',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Vzostupne',
|
||||
'desc' => 'Zostupne',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/sl/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/sl/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Graditelj poizvedb',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operator',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Skupine',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjunkcija (ALI)',
|
||||
'or' => 'ALI',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Pravila',
|
||||
|
||||
'item' => [
|
||||
'and' => 'IN',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Brez pravil)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'IN',
|
||||
'or' => 'ALI',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je izpolnjeno',
|
||||
'inverse' => 'Je prazno',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je izpolnjeno',
|
||||
'inverse' => ':attribute je prazno',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je res',
|
||||
'inverse' => 'Ni res',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je res',
|
||||
'inverse' => ':attribute ni res',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je po',
|
||||
'inverse' => 'Ni po',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je po :date',
|
||||
'inverse' => ':attribute ni po :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je pred',
|
||||
'inverse' => 'Ni pred',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je pred :date',
|
||||
'inverse' => ':attribute ni pred :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je datum',
|
||||
'inverse' => 'Ni datum',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je :date',
|
||||
'inverse' => ':attribute ni :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je mesec',
|
||||
'inverse' => 'Ni mesec',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je :month',
|
||||
'inverse' => ':attribute ni :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je leto',
|
||||
'inverse' => 'Ni leto',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je :year',
|
||||
'inverse' => ':attribute ni :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Datum',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Mesec',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Leto',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je enako',
|
||||
'inverse' => 'Ni enako',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je enako :number',
|
||||
'inverse' => ':attribute ni enako :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je največje',
|
||||
'inverse' => 'Je večje kot',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je največje :number',
|
||||
'inverse' => ':attribute je večje kot :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je najmanjše',
|
||||
'inverse' => 'Je manjše kot',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je najmanjše :number',
|
||||
'inverse' => ':attribute je manjše kot :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Povprečje',
|
||||
'summary' => 'Povprečje :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Največ',
|
||||
'summary' => 'Največ :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Najmanj',
|
||||
'summary' => 'Najmanj :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Vsota',
|
||||
'summary' => 'Vsota :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Skupni seštevek',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Število',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ima',
|
||||
'inverse' => 'Nima',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Ima :count :relationship',
|
||||
'inverse' => 'Nima :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ima največ',
|
||||
'inverse' => 'Ima več kot',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Ima največ :count :relationship',
|
||||
'inverse' => 'Ima več kot :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Ima najmanj',
|
||||
'inverse' => 'Ima manj kot',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Ima najmanj :count :relationship',
|
||||
'inverse' => 'Ima manj kot :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je prazno',
|
||||
'inverse' => 'Ni prazno',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship je prazno',
|
||||
'inverse' => ':relationship ni prazno',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Je',
|
||||
'inverse' => 'Ni',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Vsebuje',
|
||||
'inverse' => 'Ne vsebuje',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship je :values',
|
||||
'inverse' => ':relationship ni :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship vsebuje :values',
|
||||
'inverse' => ':relationship ne vsebuje :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' ali ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Vrednost',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Vrednosti',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Število',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je',
|
||||
'inverse' => 'Ni',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je :values',
|
||||
'inverse' => ':attribute ni :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' ali ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Vrednost',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Vrednosti',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Vsebuje',
|
||||
'inverse' => 'Ne vsebuje',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute vsebuje :text',
|
||||
'inverse' => ':attribute ne vsebuje :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Se konča z',
|
||||
'inverse' => 'Se ne konča z',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute se konča z :text',
|
||||
'inverse' => ':attribute se ne konča z :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Je enako',
|
||||
'inverse' => 'Ni enako',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute je enako :text',
|
||||
'inverse' => ':attribute ni enako :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Se začne z',
|
||||
'inverse' => 'Se ne začne z',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute se začne z :text',
|
||||
'inverse' => ':attribute se ne začne z :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Besedilo',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Dodaj pravilo',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Dodaj skupino pravil',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/sl/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/sl/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Stolpci',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Pokaži :count manj',
|
||||
'expand_list' => 'Pokaži :count več',
|
||||
],
|
||||
|
||||
'more_list_items' => 'in še :count več',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Izberi/odznači vse elemente za skupinska dejanja.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Izberi/odznači element :key za skupinska dejanja.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Izberi/odznači skupino :title za skupinska dejanja.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Išči',
|
||||
'placeholder' => 'Išči',
|
||||
'indicator' => 'Išči',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Povzetek',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Vsi :label',
|
||||
'group' => 'Povzetek :group',
|
||||
'page' => 'Ta stran',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Povprečje',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Število',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Vsota',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Zaključi prerazporejanje zapisov',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Prerazporedi zapise',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtriraj',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Združi',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Skupinska dejanja',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Prikaži/skrij stolpce',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Ni :model',
|
||||
|
||||
'description' => 'Začnite z ustvarjanjem :model.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Uporabi filtre',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Odstrani filter',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Odstrani vse filtre',
|
||||
'tooltip' => 'Odstrani vse filtre',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Ponastavi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtri',
|
||||
|
||||
'indicator' => 'Aktivni filtri',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Vsi',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Vsi',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Izbrisani zapisi',
|
||||
|
||||
'only_trashed' => 'Samo izbrisani zapisi',
|
||||
|
||||
'with_trashed' => 'Z izbrisanimi zapisi',
|
||||
|
||||
'without_trashed' => 'Brez izbrisanih zapisov',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Združi po',
|
||||
'placeholder' => 'Združi po',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Smer združevanja',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Naraščajoče',
|
||||
'desc' => 'Padajoče',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Povlecite in spustite zapise, da jih uredite po vrsti.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 izbran zapis|2 izbrana zapisa|:count izbranih zapisov',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Izberi vse :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Odznači vse',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Razvrsti po',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Smer razvrščanja',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Naraščajoče',
|
||||
'desc' => 'Padajoče',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
213
vendor/filament/tables/resources/lang/sq/table.php
vendored
Normal file
213
vendor/filament/tables/resources/lang/sq/table.php
vendored
Normal file
@@ -0,0 +1,213 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Kolonat',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'dhe :count më shumë',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Zgjidh/çzgjidh të gjithë artikujt për veprime në masë.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Zgjidh/çzgjidh artikullin :key për veprime në masë.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Kërko',
|
||||
'placeholder' => 'Kërko',
|
||||
'indicator' => 'Kërko',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Përmbledhje',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Të gjithë :label',
|
||||
'group' => ':group përmbledhje',
|
||||
'page' => 'Kjo faqe',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Mesatare',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Numëro',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Mblidh',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Përfundo rirenditjen e regjistrave',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Rirenditni të dhënat',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtro',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupi',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Veprime me shumicë',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Ndrysho kolonat',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'S\'ka :model',
|
||||
|
||||
'description' => 'Krijo një :model për të filluar.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Hiq filtrin',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Hiqni të gjithë filtrat',
|
||||
'tooltip' => 'Hiqni të gjithë filtrat',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Rivendos',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtrat',
|
||||
|
||||
'indicator' => 'Filtrat aktivë',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Të gjitha',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Të gjitha',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Të dhënat e fshira',
|
||||
|
||||
'only_trashed' => 'Vetëm të dhënat e fshira',
|
||||
|
||||
'with_trashed' => 'Me të dhëna të fshira',
|
||||
|
||||
'without_trashed' => 'Pa të dhëna të fshira',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupo sipas',
|
||||
'placeholder' => 'Grupo sipas',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Drejtimi i grupit',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Në ngjitje',
|
||||
'desc' => 'Duke zbritur',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Tërhiqni dhe lëshoni të dhënat sipas renditjes',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 regjistrim i zgjedhur|:count regjistrime të zgjedhura',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Zgjidhni të gjitha :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Çzgjidh të gjitha',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Ndaj sipas',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Rendit drejtimin',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Në ngjitje',
|
||||
'desc' => 'Duke zbritur',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/sv/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/sv/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Frågebyggare',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operator',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Grupper',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Disjunktion (ELLER)',
|
||||
'or' => 'ELLER',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Regler',
|
||||
|
||||
'item' => [
|
||||
'and' => 'OCH',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Inga regler)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'OCH',
|
||||
'or' => 'ELLER',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är ifyllt',
|
||||
'inverse' => 'Är tomt',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute är ifyllt',
|
||||
'inverse' => ':attribute är tomt',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är sann',
|
||||
'inverse' => 'Är falsk',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute är sann',
|
||||
'inverse' => ':attribute är falsk',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är efter',
|
||||
'inverse' => 'Är inte efter',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute är efter :date',
|
||||
'inverse' => ':attribute är inte efter :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är före',
|
||||
'inverse' => 'Är inte före',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute är före :date',
|
||||
'inverse' => ':attribute är inte före :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är datum',
|
||||
'inverse' => 'Är inte datum',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute är :date',
|
||||
'inverse' => ':attribute är inte :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är månad',
|
||||
'inverse' => 'Är inte månad',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute är :month',
|
||||
'inverse' => ':attribute är inte :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är år',
|
||||
'inverse' => 'Är inte år',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute är :year',
|
||||
'inverse' => ':attribute är inte :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Datum',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Månad',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'År',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är lika med',
|
||||
'inverse' => 'Är inte lika med',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute är lika med :number',
|
||||
'inverse' => ':attribute är inte lika med :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är maximalt',
|
||||
'inverse' => 'Är större än',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute är maximalt :number',
|
||||
'inverse' => ':attribute är större än :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är minst',
|
||||
'inverse' => 'Är mindre än',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute är minst :number',
|
||||
'inverse' => ':attribute är mindre än :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Genomsnitt',
|
||||
'summary' => 'Genomsnitt av :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Max',
|
||||
'summary' => 'Max av :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Min',
|
||||
'summary' => 'Min av :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Summa',
|
||||
'summary' => 'Summa av :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Aggregat',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Nummer',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Har',
|
||||
'inverse' => 'Har inte',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Har :count :relationship',
|
||||
'inverse' => 'Har inte :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Har maximalt',
|
||||
'inverse' => 'Har fler än',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Har maximalt :count :relationship',
|
||||
'inverse' => 'Har fler än :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Har minst',
|
||||
'inverse' => 'Har färre än',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Har minst :count :relationship',
|
||||
'inverse' => 'Har färre än :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är tom',
|
||||
'inverse' => 'Är inte tom',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship är tom',
|
||||
'inverse' => ':relationship är inte tom',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Är',
|
||||
'inverse' => 'Är inte',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Innehåller',
|
||||
'inverse' => 'Innehåller inte',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship är :values',
|
||||
'inverse' => ':relationship är inte :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship innehåller :values',
|
||||
'inverse' => ':relationship innehåller inte :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' eller ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Värde',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Värden',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Antal',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är',
|
||||
'inverse' => 'Är inte',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute är :values',
|
||||
'inverse' => ':attribute är inte :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' eller ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Värde',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Värden',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Innehåller',
|
||||
'inverse' => 'Innehåller inte',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute innehåller :text',
|
||||
'inverse' => ':attribute innehåller inte :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Slutar med',
|
||||
'inverse' => 'Slutar inte med',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute slutar med :text',
|
||||
'inverse' => ':attribute slutar inte med :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Är lika med',
|
||||
'inverse' => 'Är inte lika med',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute är lika med :text',
|
||||
'inverse' => ':attribute är inte lika med :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Börjar med',
|
||||
'inverse' => 'Börjar inte med',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute börjar med :text',
|
||||
'inverse' => ':attribute börjar inte med :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Lägg till regel',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Lägg till regelgrupp',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/sv/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/sv/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Kolumner',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Visa :count färre',
|
||||
'expand_list' => 'Visa :count till',
|
||||
],
|
||||
|
||||
'more_list_items' => 'och :count till',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Markera/avmarkera alla objekt för massåtgärder.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Markera/avmarkera objekt :key för massåtgärder.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Markera/avmarkera gruppen :title för massåtgärder.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Sök',
|
||||
'placeholder' => 'Sök',
|
||||
'indicator' => 'Sök',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Sammanfattning',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Alla :label',
|
||||
'group' => ':group sammanfattning',
|
||||
'page' => 'Denna sida',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Medelvärde',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Antal',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Summa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Sluta ändra ordning på objekt',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Ändra ordning på objekt',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filter',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Gruppera',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Öppna åtgärder',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Växla kolumner',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Inga :model',
|
||||
|
||||
'description' => 'Skapa :model för att komma igång.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Använd filter',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Ta bort filter',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Ta bort alla filter',
|
||||
'tooltip' => 'Ta bort alla filter',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Återställ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filter',
|
||||
|
||||
'indicator' => 'Aktiva filter',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Alla',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Alla',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Raderade objekt',
|
||||
|
||||
'only_trashed' => 'Endast raderade objekt',
|
||||
|
||||
'with_trashed' => 'Med raderade objekt',
|
||||
|
||||
'without_trashed' => 'Utan raderade objekt',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Gruppera',
|
||||
'placeholder' => 'Gruppera efter',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Riktning',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Stigande',
|
||||
'desc' => 'Fallande',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Dra och släpp objekten i önskad ordning.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 objekt valt|:count objekt valda',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Markera alla :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Avmarkera alla',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Sortera efter',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Sorteringsriktning',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Stigande',
|
||||
'desc' => 'Fallande',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
144
vendor/filament/tables/resources/lang/sw/table.php
vendored
Normal file
144
vendor/filament/tables/resources/lang/sw/table.php
vendored
Normal file
@@ -0,0 +1,144 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 'na :count zaidi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Chagua/acha kuchagua vipengee vyote kwa vitendo vingi.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Chagua/acha kuchagua kipengele :key kwa vitendo vingi.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Tafuta',
|
||||
'placeholder' => 'Tafuta',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Maliza kupangilia rekodi upya',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Pangilia rekodi',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Chuja',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Fungua matendo',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Geuza safu',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
'heading' => 'Hakuna rekodi zilizopatikana',
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Toa mchujo',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Toa michujo yote',
|
||||
'tooltip' => 'Toa michujo yote',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Weka upya michujo',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'indicator' => 'Michujo inayotumika',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Zote',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Zote',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Rekodi zilizofutwa',
|
||||
|
||||
'only_trashed' => 'Rekodi zilizofutwa pekee',
|
||||
|
||||
'with_trashed' => 'Pamoja na rekodi zilizofutwa',
|
||||
|
||||
'without_trashed' => 'Bila rekodi zilizofutwa',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Buruta na uangushe rekodi kwa mpangilio.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => 'Rekodi 1 imeshaguliwa|Rekodi :count zimeshaguliwa',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Chagua :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Acha kuchagua zote',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Panga kwa',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Panga mwelekeo',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Kupanda',
|
||||
'desc' => 'Kushuka',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/th/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/th/filters/query-builder.php
vendored
Normal 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 is :month',
|
||||
'inverse' => ':attribute is not :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' => ' or ',
|
||||
],
|
||||
],
|
||||
|
||||
'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' => 'เพิ่มกลุ่มเงื่อนไข',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
228
vendor/filament/tables/resources/lang/th/table.php
vendored
Normal file
228
vendor/filament/tables/resources/lang/th/table.php
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'คอลัมน์',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'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' => 'สรุป :group',
|
||||
'page' => 'หน้านี้',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'เฉลี่ย',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'จำนวน',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'รวม',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'เลิกการจัดลำดับรายการ',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'จัดลำดับรายการ',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'ตัวกรอง',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'จัดกลุ่ม',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'การดำเนินการเป็นกลุ่ม',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'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' => 'ทั้งหมด',
|
||||
],
|
||||
|
||||
'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' => 'เรียงจากมากไปน้อย',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
217
vendor/filament/tables/resources/lang/tr/table.php
vendored
Normal file
217
vendor/filament/tables/resources/lang/tr/table.php
vendored
Normal file
@@ -0,0 +1,217 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Sütunlar',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
'more_list_items' => 've :count daha',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Toplu işlemler için tüm öğeleri seç/seçimi kaldır.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Toplu işlemler için :key öğesini seç/seçimi kaldır.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Toplu işlemler için :title grubunu seç/seçimi kaldır.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Ara',
|
||||
'placeholder' => 'Ara',
|
||||
'indicator' => 'Ara',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Özet',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Tüm :label',
|
||||
'group' => ':group özeti',
|
||||
'page' => 'Bu sayfa',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Ortalama',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Sayı',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Toplam',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Sıralamayı bitir',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Kayıtları sırala',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtrele',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupla',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Toplu işlemler',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Sütunları göster/gizle',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => ':model Yok',
|
||||
|
||||
'description' => 'Başlamak için bir :model oluşturun.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Filtreyi kaldır',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Tüm filtreleri kaldır',
|
||||
'tooltip' => 'Tüm filtreleri kaldır',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Sıfırla',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtreler',
|
||||
|
||||
'indicator' => 'Aktif filtreler',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Tümü',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Tümü',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Silinmiş kayıtlar',
|
||||
|
||||
'only_trashed' => 'Yalnızca silinmiş kayıtlar',
|
||||
|
||||
'with_trashed' => 'Silinmiş kayıtlarla birlikte',
|
||||
|
||||
'without_trashed' => 'Silinmiş kayıtlar olmadan',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Grupla',
|
||||
'placeholder' => 'Grupla',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Grup yönü',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Artan',
|
||||
'desc' => 'Azalan',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Kayıtları sıralamak için sürükleyip bırakın.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 kayıt seçildi|:count kayıt seçildi',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Tüm :count kaydı seç ',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Tüm seçimleri kaldır',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Şuna göre sırala',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Sıralama yönü',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Artan',
|
||||
'desc' => 'Azalan',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/uk/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/uk/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Конструктор запитів',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Оператор',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Групи',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Дизґ\'юнкція (OR)',
|
||||
'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' => 'Додати групу правил',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
227
vendor/filament/tables/resources/lang/uk/table.php
vendored
Normal file
227
vendor/filament/tables/resources/lang/uk/table.php
vendored
Normal file
@@ -0,0 +1,227 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Стовпці',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'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' => 'Підсумок :group ',
|
||||
'page' => 'Ця сторінка',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Середнє',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Кол.',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Сума',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Зберегти порядок',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Змінити порядок',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Фільтр',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Групувати',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Відкрити дії',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'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' => 'Всі',
|
||||
],
|
||||
|
||||
'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' => 'За спаданням',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/uz/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/uz/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'So\'rov yaratuvchi',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Operator',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Guruhlar',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Ajralish (YOKI)',
|
||||
'or' => 'yoki',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Qoidalar',
|
||||
|
||||
'item' => [
|
||||
'and' => 'VA',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Qoidalar yo\'q)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'VA',
|
||||
'or' => 'YOKI',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'To\'ldirilgan bo\'lsa',
|
||||
'inverse' => 'Bo\'sh bo\'lsa',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute to\'lgan bo\'lsa',
|
||||
'inverse' => ':attribute bo\'sh bo\'lsa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Rost bo\'lsa',
|
||||
'inverse' => 'Yolg\'on bo\'lsa',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute rost bo\'lsa',
|
||||
'inverse' => ':attribute yolg\'on bo\'lsa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Keyin',
|
||||
'inverse' => 'Keyin emas',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':date dan keyin :attribute bo\'lsa',
|
||||
'inverse' => ':date :attribute dan keyin bo\'lmasa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Oldin bo\'lsa',
|
||||
'inverse' => 'Oldin bo\'lmasa',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':date dan oldin :attribute bo\'lsa',
|
||||
'inverse' => ':date :attribute dan oldin bo\'lmasa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Sana bo\'lsa',
|
||||
'inverse' => 'Sana bo\'lmasa',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :date bo\'lsa',
|
||||
'inverse' => ':attribute :date bo\'lmasa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Oy bo\'lsa',
|
||||
'inverse' => 'Oy bo\'lmasa',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :month bo\'lsa',
|
||||
'inverse' => ':attribute :month bo\'lmasa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Yil bo\'lsa',
|
||||
'inverse' => 'Yil bo\'lmasa',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :year bo\'lsa',
|
||||
'inverse' => ':attribute :year bo\'lmasa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Sana',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Oy',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Yil',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Teng',
|
||||
'inverse' => 'Teng emas',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute teng :number ga ',
|
||||
'inverse' => ':attribute teng emas :number ga',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Maksimal bo\'lsa',
|
||||
'inverse' => 'Dan katta bo\'lsa',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute maksimal :number',
|
||||
'inverse' => ':attribute :number dan katta',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Minimal',
|
||||
'inverse' => 'Dan kichkina',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute minimal :number',
|
||||
'inverse' => ':attribute :number dan kichkina',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'O\'rtacha',
|
||||
'summary' => 'O\'rtacha :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Maksimal',
|
||||
'summary' => 'Maksimal :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Minimal',
|
||||
'summary' => 'Minimal :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Umumiy natija (SUM)',
|
||||
'summary' => 'Umumiy natija (SUM) :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Agregat',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Raqam',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Mavjud',
|
||||
'inverse' => 'Mavjud emas',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship mavjud :count ta',
|
||||
'inverse' => ':relationship mavjud emas :count',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Maksimalga ega',
|
||||
'inverse' => 'Dan ortiq',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship :count maksimalga ega',
|
||||
'inverse' => ':relationship :count dan ortiq',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Minimalga ega',
|
||||
'inverse' => 'Dan kam',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship :count minimalga ega',
|
||||
'inverse' => ':count :relationship dan ortiq',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Bo\'sh bo\'lsa',
|
||||
'inverse' => 'Bo\'sh bo\'lmasa',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship bo\'sh',
|
||||
'inverse' => ':relationship bo\'sh emas',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Hisoblanadi',
|
||||
'inverse' => 'Hisoblanmaydi',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'O\'z ichiga oladi',
|
||||
'inverse' => 'O\'z ichiga olmaydi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':values :relationship',
|
||||
'inverse' => ':values :relationship emas',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship :values ni o\'z ichiga oladi',
|
||||
'inverse' => ':relationship :values ni o\'z ichiga olmaydi',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' yoki ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Qiymat',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Qiymatlar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Soni',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Hisoblanadi',
|
||||
'inverse' => 'Hisoblanmaydi',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :values hisoblanadi',
|
||||
'inverse' => ':attribute :values hisoblanmaydi',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' yoki ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Qiymat',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Qiymatlar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'O\'z ichiga oladi',
|
||||
'inverse' => 'O\'z ichiga olmagan',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :text ni o\'z ichiga oladi',
|
||||
'inverse' => ':attribute :text o\'z ichiga olmaydi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Bilan tugaydi',
|
||||
'inverse' => 'Bilan tugamaydi',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :text bilan tugaydi',
|
||||
'inverse' => ':attribute :text bilan tugamaydi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Teng',
|
||||
'inverse' => 'Teng emas',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :text ga teng',
|
||||
'inverse' => ':attribute :text ga teng emas',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Bilan boshlanadi',
|
||||
'inverse' => 'Bilan boshlanmaydi',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute :text bilan boshlanadi',
|
||||
'inverse' => ':attribute :text bilan boshlanmaydi',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Matn',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Qoida qo\'shish',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Qoida guruhini qo\'shish',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
224
vendor/filament/tables/resources/lang/uz/table.php
vendored
Normal file
224
vendor/filament/tables/resources/lang/uz/table.php
vendored
Normal file
@@ -0,0 +1,224 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Ustunlar',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => ':counttadan kamroq ko\'rsatish',
|
||||
'expand_list' => ':counttadan ko\'proq ko\'rsatish',
|
||||
],
|
||||
|
||||
'more_list_items' => 'va :counttadan ko\'proq',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Ommaviy amallar uchun tanlash/bekor qilish.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => ':key elementi ommaviy harakatlari uchun tanlash/bekor qilish.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Sarlavha guruhi uchun tanlash/bekor qilish.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Qidirish',
|
||||
'placeholder' => 'Qidirish',
|
||||
'indicator' => 'Qidirish',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Xulosa',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Barcha :labellar',
|
||||
'group' => ':group xulosa',
|
||||
'page' => 'Ushbu sahifa',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'O\'rtacha',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Hisoblash',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Umumiy qiymat (SUM)',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Yozuvlarni qayta tartiblashni tugatish',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Yozuvlarni qayta tartiblash',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Filtrlash',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Guruh',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Ommaviy amallar',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Ustunlarni almashtirish',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => ':model mavjud emas',
|
||||
|
||||
'description' => 'Boshlash uchun :model yarating',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Filtrni o\'chirish',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Barcha filtrlarni olib tashlash',
|
||||
'tooltip' => 'Barcha filtrlarni olib tashlash',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Qayta o\'rnatish',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Filtrlar',
|
||||
|
||||
'indicator' => 'Faol filtrlar',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Barchasi',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Barchasi',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'O\'chirilgan ma\'lumotlar',
|
||||
|
||||
'only_trashed' => 'Faqat o\'chirilgan ma\'lumotlar',
|
||||
|
||||
'with_trashed' => 'O\'chirilgan ma\'lumotlar bilan',
|
||||
|
||||
'without_trashed' => 'O\'chirilgan ma\'lumotlarsiz',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Guruhlash',
|
||||
'placeholder' => 'Guruhlash',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Guruh yo\'nalishi',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Ko\'tarilish (ASC)',
|
||||
'desc' => 'Tushish (DESC)',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Ma\'lumotlarni tartibda sudrab olib tashlang.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1ta ma\'lumot tanlangan|:countta ma\'lumotlar tanlangan',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => ':count - barchasini belgilash',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Barchasini belgilamaslik',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Saralash',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Saralash',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Ko\'tarilish (ASC)',
|
||||
'desc' => 'Tushish (DESC)',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
482
vendor/filament/tables/resources/lang/vi/filters/query-builder.php
vendored
Normal file
482
vendor/filament/tables/resources/lang/vi/filters/query-builder.php
vendored
Normal file
@@ -0,0 +1,482 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Trình tạo truy vấn',
|
||||
|
||||
'form' => [
|
||||
|
||||
'operator' => [
|
||||
'label' => 'Toán tử',
|
||||
],
|
||||
|
||||
'or_groups' => [
|
||||
|
||||
'label' => 'Nhóm',
|
||||
|
||||
'block' => [
|
||||
'label' => 'Hoặc (OR)',
|
||||
'or' => 'HOẶC',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'rules' => [
|
||||
|
||||
'label' => 'Quy tắc',
|
||||
|
||||
'item' => [
|
||||
'and' => 'VÀ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'no_rules' => '(Không có quy tắc)',
|
||||
|
||||
'item_separators' => [
|
||||
'and' => 'VÀ',
|
||||
'or' => 'HOẶC',
|
||||
],
|
||||
|
||||
'operators' => [
|
||||
|
||||
'is_filled' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Đã điền',
|
||||
'inverse' => 'Trống',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute đã điền',
|
||||
'inverse' => ':attribute trống',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'boolean' => [
|
||||
|
||||
'is_true' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Đúng',
|
||||
'inverse' => 'Sai',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute đúng',
|
||||
'inverse' => ':attribute sai',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'date' => [
|
||||
|
||||
'is_after' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Sau ngày',
|
||||
'inverse' => 'Không sau ngày',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute sau ngày :date',
|
||||
'inverse' => ':attribute không sau ngày :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_before' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Trước ngày',
|
||||
'inverse' => 'Không trước ngày',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute trước ngày :date',
|
||||
'inverse' => ':attribute không trước ngày :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_date' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Là ngày',
|
||||
'inverse' => 'Không là ngày',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute là ngày :date',
|
||||
'inverse' => ':attribute không là ngày :date',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_month' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Là tháng',
|
||||
'inverse' => 'Không là tháng',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute là tháng :month',
|
||||
'inverse' => ':attribute không là tháng :month',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_year' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Là năm',
|
||||
'inverse' => 'Không là năm',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute là năm :year',
|
||||
'inverse' => ':attribute không là năm :year',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'date' => [
|
||||
'label' => 'Ngày',
|
||||
],
|
||||
|
||||
'month' => [
|
||||
'label' => 'Tháng',
|
||||
],
|
||||
|
||||
'year' => [
|
||||
'label' => 'Năm',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'number' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Bằng',
|
||||
'inverse' => 'Không bằng',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute bằng :number',
|
||||
'inverse' => ':attribute không bằng :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Là tối đa',
|
||||
'inverse' => 'Lớn hơn',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute là tối đa :number',
|
||||
'inverse' => ':attribute lớn hơn :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Là tối thiểu',
|
||||
'inverse' => 'Nhỏ hơn',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute là tối thiểu :number',
|
||||
'inverse' => ':attribute nhỏ hơn :number',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'aggregates' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Trung bình',
|
||||
'summary' => 'Trung bình :attribute',
|
||||
],
|
||||
|
||||
'max' => [
|
||||
'label' => 'Tối đa',
|
||||
'summary' => 'Tối đa :attribute',
|
||||
],
|
||||
|
||||
'min' => [
|
||||
'label' => 'Tối thiểu',
|
||||
'summary' => 'Tối thiểu :attribute',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Tổng',
|
||||
'summary' => 'Tổng của :attribute',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'aggregate' => [
|
||||
'label' => 'Tổng hợp',
|
||||
],
|
||||
|
||||
'number' => [
|
||||
'label' => 'Số',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'relationship' => [
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Có',
|
||||
'inverse' => 'Không có',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Có :count :relationship',
|
||||
'inverse' => 'Không có :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_max' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Có tối đa',
|
||||
'inverse' => 'Có nhiều hơn',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Có tối đa :count :relationship',
|
||||
'inverse' => 'Có nhiều hơn :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'has_min' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Có tối thiểu',
|
||||
'inverse' => 'Có ít hơn',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => 'Có tối thiểu :count :relationship',
|
||||
'inverse' => 'Có ít hơn :count :relationship',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_empty' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Trống',
|
||||
'inverse' => 'Không trống',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':relationship trống',
|
||||
'inverse' => ':relationship không trống',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'is_related_to' => [
|
||||
|
||||
'label' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => 'Là',
|
||||
'inverse' => 'Không là',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => 'Chứa',
|
||||
'inverse' => 'Không chứa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'single' => [
|
||||
'direct' => ':relationship là :values',
|
||||
'inverse' => ':relationship không là :values',
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
'direct' => ':relationship chứa :values',
|
||||
'inverse' => ':relationship không chứa :values',
|
||||
],
|
||||
|
||||
'values_glue' => [
|
||||
0 => ', ',
|
||||
'final' => ' hoặc ',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Giá trị',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Các giá trị',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'count' => [
|
||||
'label' => 'Số lượng',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'select' => [
|
||||
|
||||
'is' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Là',
|
||||
'inverse' => 'Không phải là',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute là :values',
|
||||
'inverse' => ':attribute không phải là :values',
|
||||
'values_glue' => [
|
||||
', ',
|
||||
'final' => ' hoặc ',
|
||||
],
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'value' => [
|
||||
'label' => 'Giá trị',
|
||||
],
|
||||
|
||||
'values' => [
|
||||
'label' => 'Các giá trị',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'text' => [
|
||||
|
||||
'contains' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Chứa',
|
||||
'inverse' => 'Không chứa',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute chứa :text',
|
||||
'inverse' => ':attribute không chứa :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'ends_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Kết thúc bằng',
|
||||
'inverse' => 'Không kết thúc bằng',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute kết thúc bằng :text',
|
||||
'inverse' => ':attribute không kết thúc bằng :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'equals' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Bằng',
|
||||
'inverse' => 'Không bằng',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute bằng :text',
|
||||
'inverse' => ':attribute không bằng :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'starts_with' => [
|
||||
|
||||
'label' => [
|
||||
'direct' => 'Bắt đầu bằng',
|
||||
'inverse' => 'Không bắt đầu bằng',
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
'direct' => ':attribute bắt đầu bằng :text',
|
||||
'inverse' => ':attribute không bắt đầu bằng :text',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'text' => [
|
||||
'label' => 'Văn bản',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'add_rule' => [
|
||||
'label' => 'Thêm quy tắc',
|
||||
],
|
||||
|
||||
'add_rule_group' => [
|
||||
'label' => 'Thêm nhóm quy tắc',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
227
vendor/filament/tables/resources/lang/vi/table.php
vendored
Normal file
227
vendor/filament/tables/resources/lang/vi/table.php
vendored
Normal file
@@ -0,0 +1,227 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => 'Cột',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'text' => [
|
||||
|
||||
'actions' => [
|
||||
'collapse_list' => 'Hiển thị :count ít hơn',
|
||||
'expand_list' => 'Hiển thị :count nhiều hơn',
|
||||
],
|
||||
|
||||
'more_list_items' => 'và :count cột khác',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'fields' => [
|
||||
|
||||
'bulk_select_page' => [
|
||||
'label' => 'Chọn/bỏ chọn tất cả các mục để thực hiện tác vụ hàng loạt.',
|
||||
],
|
||||
|
||||
'bulk_select_record' => [
|
||||
'label' => 'Chọn/bỏ chọn mục :key để thực hiện tác vụ hàng loạt.',
|
||||
],
|
||||
|
||||
'bulk_select_group' => [
|
||||
'label' => 'Chọn/bỏ chọn nhóm :title để thực hiện các hành động hàng loạt.',
|
||||
],
|
||||
|
||||
'search' => [
|
||||
'label' => 'Tìm kiếm',
|
||||
'placeholder' => 'Tìm kiếm',
|
||||
'indicator' => 'Tìm kiếm',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'summary' => [
|
||||
|
||||
'heading' => 'Tóm tắt',
|
||||
|
||||
'subheadings' => [
|
||||
'all' => 'Tất cả :label',
|
||||
'group' => 'Tóm tắt :group',
|
||||
'page' => 'Trang này',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => 'Trung bình',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => 'Số lượng',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => 'Tổng cộng',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => 'Hoàn thành việc sắp xếp lại bản ghi',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => 'Sắp xếp lại bản ghi',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => 'Lọc',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => 'Nhóm',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => 'Tác vụ hàng loạt',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => 'Chuyển đổi cột',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
|
||||
'heading' => 'Không có :model nào',
|
||||
|
||||
'description' => 'Tạo một :model để bắt đầu.',
|
||||
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
'label' => 'Áp dụng bộ lọc',
|
||||
],
|
||||
|
||||
'remove' => [
|
||||
'label' => 'Xóa bộ lọc',
|
||||
],
|
||||
|
||||
'remove_all' => [
|
||||
'label' => 'Xóa toàn bộ bộ lọc',
|
||||
'tooltip' => 'Xóa toàn bộ bộ lọc',
|
||||
],
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Đặt lại',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'heading' => 'Bộ lọc',
|
||||
|
||||
'indicator' => 'Bộ lọc hoạt động',
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => 'Tất cả',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => 'Tất cả',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => 'Bản ghi đã xoá',
|
||||
|
||||
'only_trashed' => 'Chỉ bản ghi đã xoá',
|
||||
|
||||
'with_trashed' => 'Bao gồm bản ghi đã xóa',
|
||||
|
||||
'without_trashed' => 'Không bao gồm bản ghi đã xóa',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'grouping' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'group' => [
|
||||
'label' => 'Nhóm theo',
|
||||
'placeholder' => 'Nhóm theo',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Hướng nhóm',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Tăng dần',
|
||||
'desc' => 'Giảm dần',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'reorder_indicator' => 'Kéo và thả các bản ghi để sắp xếp lại.',
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '1 bản ghi đã chọn|:count bản ghi đã chọn',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => 'Chọn tất cả :count',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => 'Bỏ chọn tất cả',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'sorting' => [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'column' => [
|
||||
'label' => 'Sắp xếp theo',
|
||||
],
|
||||
|
||||
'direction' => [
|
||||
|
||||
'label' => 'Hướng sắp xếp',
|
||||
|
||||
'options' => [
|
||||
'asc' => 'Tăng dần',
|
||||
'desc' => 'Giảm dần',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
227
vendor/filament/tables/resources/lang/zh_CN/table.php
vendored
Normal file
227
vendor/filament/tables/resources/lang/zh_CN/table.php
vendored
Normal file
@@ -0,0 +1,227 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'column_toggle' => [
|
||||
|
||||
'heading' => '显示字段',
|
||||
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
|
||||
'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' => ':group 分组',
|
||||
'page' => '本页',
|
||||
],
|
||||
|
||||
'summarizers' => [
|
||||
|
||||
'average' => [
|
||||
'label' => '平均',
|
||||
],
|
||||
|
||||
'count' => [
|
||||
'label' => '计数',
|
||||
],
|
||||
|
||||
'sum' => [
|
||||
'label' => '求和',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'disable_reordering' => [
|
||||
'label' => '停止拖放排序',
|
||||
],
|
||||
|
||||
'enable_reordering' => [
|
||||
'label' => '开始拖放排序',
|
||||
],
|
||||
|
||||
'filter' => [
|
||||
'label' => '筛选',
|
||||
],
|
||||
|
||||
'group' => [
|
||||
'label' => '分组',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => '批量操作',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'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' => '所有',
|
||||
],
|
||||
|
||||
'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' => '降序',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
84
vendor/filament/tables/resources/lang/zh_TW/table.php
vendored
Normal file
84
vendor/filament/tables/resources/lang/zh_TW/table.php
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'fields' => [
|
||||
|
||||
'search' => [
|
||||
'label' => '搜尋',
|
||||
'placeholder' => '搜尋',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'filter' => [
|
||||
'label' => '篩選',
|
||||
],
|
||||
|
||||
'open_bulk_actions' => [
|
||||
'label' => '打開動作',
|
||||
],
|
||||
|
||||
'toggle_columns' => [
|
||||
'label' => '顯示/隱藏直列',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'empty' => [
|
||||
'heading' => '未找到資料',
|
||||
],
|
||||
|
||||
'filters' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => '重設篩選',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_select' => [
|
||||
'placeholder' => '全部',
|
||||
],
|
||||
|
||||
'select' => [
|
||||
'placeholder' => '全部',
|
||||
],
|
||||
|
||||
'trashed' => [
|
||||
|
||||
'label' => '已刪除的資料',
|
||||
|
||||
'only_trashed' => '僅顯示已刪除的資料',
|
||||
|
||||
'with_trashed' => '包含已刪除的資料',
|
||||
|
||||
'without_trashed' => '不含已刪除的資料',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'selection_indicator' => [
|
||||
|
||||
'selected_count' => '已選擇 :count 個項目',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'select_all' => [
|
||||
'label' => '選擇全部 :count 項',
|
||||
],
|
||||
|
||||
'deselect_all' => [
|
||||
'label' => '取消選擇全部',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
86
vendor/filament/tables/resources/views/columns/checkbox-column.blade.php
vendored
Normal file
86
vendor/filament/tables/resources/views/columns/checkbox-column.blade.php
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
@php
|
||||
$isDisabled = $isDisabled();
|
||||
$state = (bool) $getState();
|
||||
@endphp
|
||||
|
||||
<div
|
||||
x-data="{
|
||||
error: undefined,
|
||||
|
||||
isLoading: false,
|
||||
|
||||
name: @js($getName()),
|
||||
|
||||
recordKey: @js($recordKey),
|
||||
|
||||
state: @js($state),
|
||||
}"
|
||||
x-init="
|
||||
() => {
|
||||
Livewire.hook('commit', ({ component, commit, succeed, fail, respond }) => {
|
||||
succeed(({ snapshot, effect }) => {
|
||||
$nextTick(() => {
|
||||
if (component.id !== @js($this->getId())) {
|
||||
return
|
||||
}
|
||||
|
||||
if (! $refs.newState) {
|
||||
return
|
||||
}
|
||||
|
||||
const newState = $refs.newState.value === '1' ? true : false
|
||||
|
||||
if (state === newState) {
|
||||
return
|
||||
}
|
||||
|
||||
state = newState
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
"
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class([
|
||||
'fi-ta-checkbox flex items-center',
|
||||
'px-3 py-4' => ! $isInline(),
|
||||
])
|
||||
}}
|
||||
>
|
||||
<input type="hidden" value="{{ $state ? 1 : 0 }}" x-ref="newState" />
|
||||
|
||||
<x-filament::input.checkbox
|
||||
alpine-valid="! error"
|
||||
:disabled="$isDisabled"
|
||||
:x-bind:disabled="$isDisabled ? null : 'isLoading'"
|
||||
x-model="state"
|
||||
x-on:change="
|
||||
isLoading = true
|
||||
|
||||
const response = await $wire.updateTableColumnState(
|
||||
name,
|
||||
recordKey,
|
||||
$event.target.checked,
|
||||
)
|
||||
|
||||
error = response?.error ?? undefined
|
||||
|
||||
isLoading = false
|
||||
"
|
||||
x-tooltip="
|
||||
error === undefined
|
||||
? false
|
||||
: {
|
||||
content: error,
|
||||
theme: $store.theme,
|
||||
}
|
||||
"
|
||||
x-on:click.stop=""
|
||||
:attributes="
|
||||
\Filament\Support\prepare_inherited_attributes($attributes)
|
||||
->merge($getExtraInputAttributes(), escape: false)
|
||||
"
|
||||
/>
|
||||
</div>
|
||||
57
vendor/filament/tables/resources/views/columns/color-column.blade.php
vendored
Normal file
57
vendor/filament/tables/resources/views/columns/color-column.blade.php
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
@php
|
||||
$canWrap = $canWrap();
|
||||
|
||||
$arrayState = $getState();
|
||||
|
||||
if ($arrayState instanceof \Illuminate\Support\Collection) {
|
||||
$arrayState = $arrayState->all();
|
||||
}
|
||||
|
||||
$arrayState = \Illuminate\Support\Arr::wrap($arrayState);
|
||||
@endphp
|
||||
|
||||
<div
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class([
|
||||
'fi-ta-color flex gap-1.5',
|
||||
'flex-wrap' => $canWrap,
|
||||
'px-3 py-4' => ! $isInline(),
|
||||
])
|
||||
}}
|
||||
>
|
||||
@if (count($arrayState))
|
||||
@foreach ($arrayState as $state)
|
||||
@php
|
||||
$itemIsCopyable = $isCopyable($state);
|
||||
$copyableState = $getCopyableState($state) ?? $state;
|
||||
$copyMessage = $getCopyMessage($state);
|
||||
$copyMessageDuration = $getCopyMessageDuration($state);
|
||||
@endphp
|
||||
|
||||
<div
|
||||
@if ($itemIsCopyable)
|
||||
x-on:click="
|
||||
window.navigator.clipboard.writeText(@js($copyableState))
|
||||
$tooltip(@js($copyMessage), {
|
||||
theme: $store.theme,
|
||||
timeout: @js($copyMessageDuration),
|
||||
})
|
||||
"
|
||||
@endif
|
||||
@class([
|
||||
'fi-ta-color-item h-6 w-6 rounded-md',
|
||||
'cursor-pointer' => $itemIsCopyable,
|
||||
])
|
||||
@style([
|
||||
"background-color: {$state}" => $state,
|
||||
])
|
||||
></div>
|
||||
@endforeach
|
||||
@elseif (($placeholder = $getPlaceholder()) !== null)
|
||||
<x-filament-tables::columns.placeholder>
|
||||
{{ $placeholder }}
|
||||
</x-filament-tables::columns.placeholder>
|
||||
@endif
|
||||
</div>
|
||||
67
vendor/filament/tables/resources/views/columns/icon-column.blade.php
vendored
Normal file
67
vendor/filament/tables/resources/views/columns/icon-column.blade.php
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
@php
|
||||
use Filament\Tables\Columns\IconColumn\IconColumnSize;
|
||||
|
||||
$arrayState = $getState();
|
||||
|
||||
if ($arrayState instanceof \Illuminate\Support\Collection) {
|
||||
$arrayState = $arrayState->all();
|
||||
}
|
||||
|
||||
$arrayState = \Illuminate\Support\Arr::wrap($arrayState);
|
||||
@endphp
|
||||
|
||||
<div
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class([
|
||||
'fi-ta-icon flex gap-1.5',
|
||||
'flex-wrap' => $canWrap(),
|
||||
'px-3 py-4' => ! $isInline(),
|
||||
'flex-col' => $isListWithLineBreaks(),
|
||||
])
|
||||
}}
|
||||
>
|
||||
@if (count($arrayState))
|
||||
@foreach ($arrayState as $state)
|
||||
@if ($icon = $getIcon($state))
|
||||
@php
|
||||
$color = $getColor($state) ?? 'gray';
|
||||
$size = $getSize($state) ?? IconColumnSize::Large;
|
||||
@endphp
|
||||
|
||||
<x-filament::icon
|
||||
:icon="$icon"
|
||||
@class([
|
||||
'fi-ta-icon-item',
|
||||
match ($size) {
|
||||
IconColumnSize::ExtraSmall, 'xs' => 'fi-ta-icon-item-size-xs h-3 w-3',
|
||||
IconColumnSize::Small, 'sm' => 'fi-ta-icon-item-size-sm h-4 w-4',
|
||||
IconColumnSize::Medium, 'md' => 'fi-ta-icon-item-size-md h-5 w-5',
|
||||
IconColumnSize::Large, 'lg' => 'fi-ta-icon-item-size-lg h-6 w-6',
|
||||
IconColumnSize::ExtraLarge, 'xl' => 'fi-ta-icon-item-size-xl h-7 w-7',
|
||||
IconColumnSize::TwoExtraLarge, IconColumnSize::ExtraExtraLarge, '2xl' => 'fi-ta-icon-item-size-2xl h-8 w-8',
|
||||
default => $size,
|
||||
},
|
||||
match ($color) {
|
||||
'gray' => 'text-gray-400 dark:text-gray-500',
|
||||
default => 'fi-color-custom text-custom-500 dark:text-custom-400',
|
||||
},
|
||||
is_string($color) ? 'fi-color-' . $color : null,
|
||||
])
|
||||
@style([
|
||||
\Filament\Support\get_color_css_variables(
|
||||
$color,
|
||||
shades: [400, 500],
|
||||
alias: 'tables::columns.icon-column.item',
|
||||
) => $color !== 'gray',
|
||||
])
|
||||
/>
|
||||
@endif
|
||||
@endforeach
|
||||
@elseif (($placeholder = $getPlaceholder()) !== null)
|
||||
<x-filament-tables::columns.placeholder>
|
||||
{{ $placeholder }}
|
||||
</x-filament-tables::columns.placeholder>
|
||||
@endif
|
||||
</div>
|
||||
143
vendor/filament/tables/resources/views/columns/image-column.blade.php
vendored
Normal file
143
vendor/filament/tables/resources/views/columns/image-column.blade.php
vendored
Normal file
@@ -0,0 +1,143 @@
|
||||
@php
|
||||
$state = $getState();
|
||||
|
||||
if ($state instanceof \Illuminate\Support\Collection) {
|
||||
$state = $state->all();
|
||||
}
|
||||
|
||||
$state = \Illuminate\Support\Arr::wrap($state);
|
||||
|
||||
$limit = $getLimit();
|
||||
$limitedState = array_slice($state, 0, $limit);
|
||||
$isCircular = $isCircular();
|
||||
$isSquare = $isSquare();
|
||||
$isStacked = $isStacked();
|
||||
$overlap = $isStacked ? ($getOverlap() ?? 2) : null;
|
||||
$ring = $isStacked ? ($getRing() ?? 2) : null;
|
||||
$height = $getHeight() ?? ($isStacked ? '2rem' : '2.5rem');
|
||||
$width = $getWidth() ?? (($isCircular || $isSquare) ? $height : null);
|
||||
|
||||
$stateCount = count($state);
|
||||
$limitedStateCount = count($limitedState);
|
||||
|
||||
$defaultImageUrl = $getDefaultImageUrl();
|
||||
|
||||
if ((! $limitedStateCount) && filled($defaultImageUrl)) {
|
||||
$limitedState = [null];
|
||||
|
||||
$limitedStateCount = 1;
|
||||
}
|
||||
|
||||
$ringClasses = \Illuminate\Support\Arr::toCssClasses([
|
||||
'ring-white dark:ring-gray-900',
|
||||
match ($ring) {
|
||||
0 => null,
|
||||
1 => 'ring-1',
|
||||
2 => 'ring-2',
|
||||
3 => 'ring',
|
||||
4 => 'ring-4',
|
||||
default => $ring,
|
||||
},
|
||||
]);
|
||||
|
||||
$hasLimitedRemainingText = $hasLimitedRemainingText() && ($limitedStateCount < $stateCount);
|
||||
$isLimitedRemainingTextSeparate = $isLimitedRemainingTextSeparate();
|
||||
|
||||
$limitedRemainingTextSizeClasses = match ($getLimitedRemainingTextSize()) {
|
||||
'xs' => 'text-xs',
|
||||
'sm', null => 'text-sm',
|
||||
'base', 'md' => 'text-base',
|
||||
'lg' => 'text-lg',
|
||||
default => $size,
|
||||
};
|
||||
@endphp
|
||||
|
||||
<div
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class([
|
||||
'fi-ta-image',
|
||||
'px-3 py-4' => ! $isInline(),
|
||||
])
|
||||
}}
|
||||
>
|
||||
@if ($limitedStateCount)
|
||||
<div class="flex items-center gap-x-2.5">
|
||||
<div
|
||||
@class([
|
||||
'flex',
|
||||
'flex-wrap' => $canWrap(),
|
||||
match ($overlap) {
|
||||
0 => null,
|
||||
1 => '-space-x-1',
|
||||
2 => '-space-x-2',
|
||||
3 => '-space-x-3',
|
||||
4 => '-space-x-4',
|
||||
5 => '-space-x-5',
|
||||
6 => '-space-x-6',
|
||||
7 => '-space-x-7',
|
||||
8 => '-space-x-8',
|
||||
default => 'gap-1.5',
|
||||
},
|
||||
])
|
||||
>
|
||||
@foreach ($limitedState as $stateItem)
|
||||
<img
|
||||
src="{{ filled($stateItem) ? $getImageUrl($stateItem) : $defaultImageUrl }}"
|
||||
{{
|
||||
$getExtraImgAttributeBag()
|
||||
->class([
|
||||
'max-w-none object-cover object-center',
|
||||
'rounded-full' => $isCircular,
|
||||
$ringClasses,
|
||||
])
|
||||
->style([
|
||||
"height: {$height}" => $height,
|
||||
"width: {$width}" => $width,
|
||||
])
|
||||
}}
|
||||
/>
|
||||
@endforeach
|
||||
|
||||
@if ($hasLimitedRemainingText && (! $isLimitedRemainingTextSeparate) && $isCircular)
|
||||
<div
|
||||
style="
|
||||
@if ($height) height: {{ $height }}; @endif
|
||||
@if ($width) width: {{ $width }}; @endif
|
||||
"
|
||||
@class([
|
||||
'flex items-center justify-center bg-gray-100 font-medium text-gray-500 dark:bg-gray-800 dark:text-gray-400',
|
||||
'rounded-full' => $isCircular,
|
||||
$limitedRemainingTextSizeClasses,
|
||||
$ringClasses,
|
||||
])
|
||||
@style([
|
||||
"height: {$height}" => $height,
|
||||
"width: {$width}" => $width,
|
||||
])
|
||||
>
|
||||
<span class="-ms-0.5">
|
||||
+{{ $stateCount - $limitedStateCount }}
|
||||
</span>
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
@if ($hasLimitedRemainingText && ($isLimitedRemainingTextSeparate || (! $isCircular)))
|
||||
<div
|
||||
@class([
|
||||
'font-medium text-gray-500 dark:text-gray-400',
|
||||
$limitedRemainingTextSizeClasses,
|
||||
])
|
||||
>
|
||||
+{{ $stateCount - $limitedStateCount }}
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
@elseif (($placeholder = $getPlaceholder()) !== null)
|
||||
<x-filament-tables::columns.placeholder>
|
||||
{{ $placeholder }}
|
||||
</x-filament-tables::columns.placeholder>
|
||||
@endif
|
||||
</div>
|
||||
29
vendor/filament/tables/resources/views/columns/layout/grid.blade.php
vendored
Normal file
29
vendor/filament/tables/resources/views/columns/layout/grid.blade.php
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
@php
|
||||
$columns = $getGridColumns();
|
||||
@endphp
|
||||
|
||||
<div {{ $attributes->merge($getExtraAttributes(), escape: false) }}>
|
||||
<x-filament::grid
|
||||
:default="$columns['default'] ?? 1"
|
||||
:sm="$columns['sm'] ?? null"
|
||||
:md="$columns['md'] ?? null"
|
||||
:lg="$columns['lg'] ?? null"
|
||||
:xl="$columns['xl'] ?? null"
|
||||
:two-xl="$columns['2xl'] ?? null"
|
||||
@class([
|
||||
(($columns['default'] ?? 1) === 1) ? 'gap-1' : 'gap-3',
|
||||
($columns['sm'] ?? null) ? (($columns['sm'] === 1) ? 'sm:gap-1' : 'sm:gap-3') : null,
|
||||
($columns['md'] ?? null) ? (($columns['md'] === 1) ? 'md:gap-1' : 'md:gap-3') : null,
|
||||
($columns['lg'] ?? null) ? (($columns['lg'] === 1) ? 'lg:gap-1' : 'lg:gap-3') : null,
|
||||
($columns['xl'] ?? null) ? (($columns['xl'] === 1) ? 'xl:gap-1' : 'xl:gap-3') : null,
|
||||
($columns['2xl'] ?? null) ? (($columns['2xl'] === 1) ? '2xl:gap-1' : '2xl:gap-3') : null,
|
||||
])
|
||||
>
|
||||
<x-filament-tables::columns.layout
|
||||
:components="$getComponents()"
|
||||
grid
|
||||
:record="$getRecord()"
|
||||
:record-key="$recordKey"
|
||||
/>
|
||||
</x-filament::grid>
|
||||
</div>
|
||||
13
vendor/filament/tables/resources/views/columns/layout/panel.blade.php
vendored
Normal file
13
vendor/filament/tables/resources/views/columns/layout/panel.blade.php
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
<div
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class(['fi-ta-panel rounded-lg bg-gray-50 p-4 ring-1 ring-inset ring-gray-950/5 dark:bg-white/5 dark:ring-white/10'])
|
||||
}}
|
||||
>
|
||||
<x-filament-tables::columns.layout
|
||||
:components="$getComponents()"
|
||||
:record="$getRecord()"
|
||||
:record-key="$recordKey"
|
||||
/>
|
||||
</div>
|
||||
24
vendor/filament/tables/resources/views/columns/layout/split.blade.php
vendored
Normal file
24
vendor/filament/tables/resources/views/columns/layout/split.blade.php
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
<div
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class([
|
||||
'fi-ta-split flex',
|
||||
match ($getFromBreakpoint()) {
|
||||
'sm' => 'flex-col gap-2 sm:flex-row sm:items-center sm:gap-3',
|
||||
'md' => 'flex-col gap-2 md:flex-row md:items-center md:gap-3',
|
||||
'lg' => 'flex-col gap-2 lg:flex-row lg:items-center lg:gap-3',
|
||||
'xl' => 'flex-col gap-2 xl:flex-row xl:items-center xl:gap-3',
|
||||
'2xl' => 'flex-col gap-2 2xl:flex-row 2xl:items-center 2xl:gap-3',
|
||||
default => 'items-center gap-3',
|
||||
},
|
||||
])
|
||||
}}
|
||||
>
|
||||
<x-filament-tables::columns.layout
|
||||
:components="$getComponents()"
|
||||
:record="$getRecord()"
|
||||
:record-key="$recordKey"
|
||||
:row-loop="$getRowLoop()"
|
||||
/>
|
||||
</div>
|
||||
39
vendor/filament/tables/resources/views/columns/layout/stack.blade.php
vendored
Normal file
39
vendor/filament/tables/resources/views/columns/layout/stack.blade.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
@php
|
||||
use Filament\Support\Enums\Alignment;
|
||||
|
||||
$alignment = $getAlignment() ?? Alignment::Start;
|
||||
|
||||
if (! $alignment instanceof Alignment) {
|
||||
$alignment = filled($alignment) ? (Alignment::tryFrom($alignment) ?? $alignment) : null;
|
||||
}
|
||||
@endphp
|
||||
|
||||
<div
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class([
|
||||
'flex flex-col',
|
||||
match ($alignment) {
|
||||
Alignment::Start, Alignment::Left => 'items-start',
|
||||
Alignment::Center => 'items-center',
|
||||
Alignment::End, Alignment::Right => 'items-end',
|
||||
Alignment::Justify, Alignment::Between => null,
|
||||
default => $alignment,
|
||||
},
|
||||
match ($space = $getSpace()) {
|
||||
1 => 'space-y-1',
|
||||
2 => 'space-y-2',
|
||||
3 => 'space-y-3',
|
||||
default => $space,
|
||||
},
|
||||
])
|
||||
}}
|
||||
>
|
||||
<x-filament-tables::columns.layout
|
||||
:components="$getComponents()"
|
||||
:record="$getRecord()"
|
||||
:record-key="$recordKey"
|
||||
:row-loop="$getRowLoop()"
|
||||
/>
|
||||
</div>
|
||||
114
vendor/filament/tables/resources/views/columns/select-column.blade.php
vendored
Normal file
114
vendor/filament/tables/resources/views/columns/select-column.blade.php
vendored
Normal file
@@ -0,0 +1,114 @@
|
||||
@php
|
||||
$canSelectPlaceholder = $canSelectPlaceholder();
|
||||
$isDisabled = $isDisabled();
|
||||
|
||||
$state = $getState();
|
||||
if ($state instanceof \BackedEnum) {
|
||||
$state = $state->value;
|
||||
}
|
||||
$state = strval($state);
|
||||
@endphp
|
||||
|
||||
<div
|
||||
x-data="{
|
||||
error: undefined,
|
||||
|
||||
isLoading: false,
|
||||
|
||||
name: @js($getName()),
|
||||
|
||||
recordKey: @js($recordKey),
|
||||
|
||||
state: @js($state),
|
||||
}"
|
||||
x-init="
|
||||
() => {
|
||||
Livewire.hook('commit', ({ component, commit, succeed, fail, respond }) => {
|
||||
succeed(({ snapshot, effect }) => {
|
||||
$nextTick(() => {
|
||||
if (component.id !== @js($this->getId())) {
|
||||
return
|
||||
}
|
||||
|
||||
if (! $refs.newState) {
|
||||
return
|
||||
}
|
||||
|
||||
let newState = $refs.newState.value
|
||||
|
||||
if (state === newState) {
|
||||
return
|
||||
}
|
||||
|
||||
state = newState
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
"
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class([
|
||||
'fi-ta-select',
|
||||
'px-3 py-4' => ! $isInline(),
|
||||
])
|
||||
}}
|
||||
>
|
||||
<input
|
||||
type="hidden"
|
||||
value="{{ str($state)->replace('"', '\\"') }}"
|
||||
x-ref="newState"
|
||||
/>
|
||||
|
||||
<x-filament::input.wrapper
|
||||
:alpine-disabled="'isLoading || ' . \Illuminate\Support\Js::from($isDisabled)"
|
||||
alpine-valid="error === undefined"
|
||||
x-tooltip="
|
||||
error === undefined
|
||||
? false
|
||||
: {
|
||||
content: error,
|
||||
theme: $store.theme,
|
||||
}
|
||||
"
|
||||
x-on:click.stop=""
|
||||
>
|
||||
<x-filament::input.select
|
||||
:disabled="$isDisabled"
|
||||
:x-bind:disabled="$isDisabled ? null : 'isLoading'"
|
||||
x-model="state"
|
||||
x-on:change="
|
||||
isLoading = true
|
||||
|
||||
const response = await $wire.updateTableColumnState(
|
||||
name,
|
||||
recordKey,
|
||||
$event.target.value,
|
||||
)
|
||||
|
||||
error = response?.error ?? undefined
|
||||
|
||||
if (! error) {
|
||||
state = response
|
||||
}
|
||||
|
||||
isLoading = false
|
||||
"
|
||||
:attributes="\Filament\Support\prepare_inherited_attributes($getExtraInputAttributeBag())"
|
||||
>
|
||||
@if ($canSelectPlaceholder)
|
||||
<option value="">{{ $getPlaceholder() }}</option>
|
||||
@endif
|
||||
|
||||
@foreach ($getOptions() as $value => $label)
|
||||
<option
|
||||
@disabled($isOptionDisabled($value, $label))
|
||||
value="{{ $value }}"
|
||||
>
|
||||
{{ $label }}
|
||||
</option>
|
||||
@endforeach
|
||||
</x-filament::input.select>
|
||||
</x-filament::input.wrapper>
|
||||
</div>
|
||||
54
vendor/filament/tables/resources/views/columns/summaries/icon-count.blade.php
vendored
Normal file
54
vendor/filament/tables/resources/views/columns/summaries/icon-count.blade.php
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
<div
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class(['fi-ta-icon-count-summary grid gap-y-1.5 px-3 py-4'])
|
||||
}}
|
||||
>
|
||||
@if (filled($label = $getLabel()))
|
||||
<p class="text-sm font-medium text-gray-950 dark:text-white">
|
||||
{{ $label }}
|
||||
</p>
|
||||
@endif
|
||||
|
||||
@if ($state = $getState())
|
||||
<div class="grid gap-y-1.5">
|
||||
@foreach ($state as $color => $icons)
|
||||
@php
|
||||
$color = json_decode($color);
|
||||
@endphp
|
||||
|
||||
@foreach ($icons as $icon => $count)
|
||||
@if (filled($icon))
|
||||
<div class="flex items-center justify-end gap-x-1.5">
|
||||
<span
|
||||
class="text-sm text-gray-500 dark:text-gray-400"
|
||||
>
|
||||
{{ $count }}
|
||||
</span>
|
||||
|
||||
<x-filament::icon
|
||||
:icon="$icon"
|
||||
@class([
|
||||
'fi-ta-icon-count-summary-icon h-6 w-6',
|
||||
match ($color) {
|
||||
'gray' => 'text-gray-400 dark:text-gray-500',
|
||||
default => 'fi-color-custom text-custom-500 dark:text-custom-400',
|
||||
},
|
||||
is_string($color) ? 'fi-color-' . $color : null,
|
||||
])
|
||||
@style([
|
||||
\Filament\Support\get_color_css_variables(
|
||||
$color,
|
||||
shades: [400, 500],
|
||||
alias: 'tables::columns.summaries.icon-count.icon',
|
||||
) => $color !== 'gray',
|
||||
])
|
||||
/>
|
||||
</div>
|
||||
@endif
|
||||
@endforeach
|
||||
@endforeach
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
31
vendor/filament/tables/resources/views/columns/summaries/range.blade.php
vendored
Normal file
31
vendor/filament/tables/resources/views/columns/summaries/range.blade.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<div
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class(['fi-ta-range-summary grid gap-y-1 px-3 py-4'])
|
||||
}}
|
||||
>
|
||||
@php
|
||||
$state = $formatState($getState());
|
||||
$from = $state[0] ?? null;
|
||||
$to = $state[1] ?? null;
|
||||
@endphp
|
||||
|
||||
@if (filled($label = $getLabel()))
|
||||
<span class="text-sm font-medium text-gray-950 dark:text-white">
|
||||
{{ $label }}
|
||||
</span>
|
||||
@endif
|
||||
|
||||
@if (filled($from) || filled($to))
|
||||
<span class="text-sm text-gray-500 dark:text-gray-400">
|
||||
{{ $from }}
|
||||
|
||||
@if (filled($from) && filled($to))
|
||||
-
|
||||
@endif
|
||||
|
||||
{{ $to }}
|
||||
</span>
|
||||
@endif
|
||||
</div>
|
||||
17
vendor/filament/tables/resources/views/columns/summaries/text.blade.php
vendored
Normal file
17
vendor/filament/tables/resources/views/columns/summaries/text.blade.php
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
<div
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class(['fi-ta-text-summary grid gap-y-1 px-3 py-4'])
|
||||
}}
|
||||
>
|
||||
@if (filled($label = $getLabel()))
|
||||
<span class="text-sm font-medium text-gray-950 dark:text-white">
|
||||
{{ $label }}
|
||||
</span>
|
||||
@endif
|
||||
|
||||
<span class="text-sm text-gray-500 dark:text-gray-400">
|
||||
{{ $formatState($getState()) }}
|
||||
</span>
|
||||
</div>
|
||||
27
vendor/filament/tables/resources/views/columns/summaries/values.blade.php
vendored
Normal file
27
vendor/filament/tables/resources/views/columns/summaries/values.blade.php
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
<div
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class(['fi-ta-values-summary grid gap-y-1 px-3 py-4'])
|
||||
}}
|
||||
>
|
||||
@if (filled($label = $getLabel()))
|
||||
<span class="text-sm font-medium text-gray-950 dark:text-white">
|
||||
{{ $label }}
|
||||
</span>
|
||||
@endif
|
||||
|
||||
@if ($state = $getState())
|
||||
<ul
|
||||
@class([
|
||||
'list-inside list-disc' => $isBulleted(),
|
||||
])
|
||||
>
|
||||
@foreach ($state as $stateItem)
|
||||
<li class="text-sm text-gray-500 dark:text-gray-400">
|
||||
{{ $formatState($stateItem) }}
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
@endif
|
||||
</div>
|
||||
314
vendor/filament/tables/resources/views/columns/text-column.blade.php
vendored
Normal file
314
vendor/filament/tables/resources/views/columns/text-column.blade.php
vendored
Normal file
@@ -0,0 +1,314 @@
|
||||
@php
|
||||
use Filament\Support\Enums\Alignment;
|
||||
use Filament\Support\Enums\FontFamily;
|
||||
use Filament\Support\Enums\FontWeight;
|
||||
use Filament\Support\Enums\IconPosition;
|
||||
use Filament\Tables\Columns\TextColumn\TextColumnSize;
|
||||
|
||||
$alignment = $getAlignment();
|
||||
$canWrap = $canWrap();
|
||||
$descriptionAbove = $getDescriptionAbove();
|
||||
$descriptionBelow = $getDescriptionBelow();
|
||||
$iconPosition = $getIconPosition();
|
||||
$isBadge = $isBadge();
|
||||
$isBulleted = $isBulleted();
|
||||
$isListWithLineBreaks = $isListWithLineBreaks();
|
||||
$isLimitedListExpandable = $isLimitedListExpandable();
|
||||
$url = $getUrl();
|
||||
|
||||
if (! $alignment instanceof Alignment) {
|
||||
$alignment = filled($alignment) ? (Alignment::tryFrom($alignment) ?? $alignment) : null;
|
||||
}
|
||||
|
||||
$arrayState = $getState();
|
||||
|
||||
if ($arrayState instanceof \Illuminate\Support\Collection) {
|
||||
$arrayState = $arrayState->all();
|
||||
}
|
||||
|
||||
$listLimit = 1;
|
||||
|
||||
if (is_array($arrayState)) {
|
||||
if ($listLimit = $getListLimit()) {
|
||||
$limitedArrayStateCount = (count($arrayState) > $listLimit) ? (count($arrayState) - $listLimit) : 0;
|
||||
|
||||
if (! $isListWithLineBreaks) {
|
||||
$arrayState = array_slice($arrayState, 0, $listLimit);
|
||||
}
|
||||
}
|
||||
|
||||
$listLimit ??= count($arrayState);
|
||||
|
||||
if ((! $isListWithLineBreaks) && (! $isBadge)) {
|
||||
$arrayState = implode(
|
||||
', ',
|
||||
array_map(
|
||||
fn ($value) => $value instanceof \Filament\Support\Contracts\HasLabel ? $value->getLabel() : $value,
|
||||
$arrayState,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
$arrayState = \Illuminate\Support\Arr::wrap($arrayState);
|
||||
@endphp
|
||||
|
||||
<div
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class([
|
||||
'fi-ta-text grid w-full gap-y-1',
|
||||
'px-3 py-4' => ! $isInline(),
|
||||
])
|
||||
}}
|
||||
>
|
||||
@if (count($arrayState))
|
||||
@if (filled($descriptionAbove))
|
||||
<p
|
||||
@class([
|
||||
'text-sm text-gray-500 dark:text-gray-400',
|
||||
'whitespace-normal' => $canWrap,
|
||||
])
|
||||
>
|
||||
{{ $descriptionAbove }}
|
||||
</p>
|
||||
@endif
|
||||
|
||||
<{{ $isListWithLineBreaks ? 'ul' : 'div' }}
|
||||
@class([
|
||||
'flex' => ! $isBulleted,
|
||||
'flex-col' => (! $isBulleted) && $isListWithLineBreaks,
|
||||
'list-inside list-disc' => $isBulleted,
|
||||
'gap-1.5' => $isBadge,
|
||||
'flex-wrap' => $isBadge && (! $isListWithLineBreaks),
|
||||
match ($alignment) {
|
||||
Alignment::Start => 'text-start',
|
||||
Alignment::Center => 'text-center',
|
||||
Alignment::End => 'text-end',
|
||||
Alignment::Left => 'text-left',
|
||||
Alignment::Right => 'text-right',
|
||||
Alignment::Justify, Alignment::Between => 'text-justify',
|
||||
default => $alignment,
|
||||
},
|
||||
match ($alignment) {
|
||||
Alignment::Start, Alignment::Left => 'justify-start',
|
||||
Alignment::Center => 'justify-center',
|
||||
Alignment::End, Alignment::Right => 'justify-end',
|
||||
Alignment::Between, Alignment::Justify => 'justify-between',
|
||||
default => null,
|
||||
} => $isBulleted || (! $isListWithLineBreaks),
|
||||
match ($alignment) {
|
||||
Alignment::Start, Alignment::Left => 'items-start',
|
||||
Alignment::Center => 'items-center',
|
||||
Alignment::End, Alignment::Right => 'items-end',
|
||||
Alignment::Between, Alignment::Justify => 'items-stretch',
|
||||
default => null,
|
||||
} => $isListWithLineBreaks && (! $isBulleted),
|
||||
])
|
||||
@if ($isListWithLineBreaks && $isLimitedListExpandable)
|
||||
x-data="{ isLimited: true }"
|
||||
@endif
|
||||
>
|
||||
@foreach ($arrayState as $state)
|
||||
@if (filled($formattedState = $formatState($state)) &&
|
||||
(! ($isListWithLineBreaks && (! $isLimitedListExpandable) && ($loop->iteration > $listLimit))))
|
||||
@php
|
||||
$color = $getColor($state);
|
||||
$copyableState = $getCopyableState($state) ?? $state;
|
||||
$copyMessage = $getCopyMessage($state);
|
||||
$copyMessageDuration = $getCopyMessageDuration($state);
|
||||
$fontFamily = $getFontFamily($state);
|
||||
$icon = $getIcon($state);
|
||||
$iconColor = $getIconColor($state) ?? $color;
|
||||
$itemIsCopyable = $isCopyable($state);
|
||||
$lineClamp = $getLineClamp($state);
|
||||
$size = $getSize($state);
|
||||
$weight = $getWeight($state);
|
||||
|
||||
$iconClasses = \Illuminate\Support\Arr::toCssClasses([
|
||||
'fi-ta-text-item-icon h-5 w-5',
|
||||
match ($iconColor) {
|
||||
'gray', null => 'text-gray-400 dark:text-gray-500',
|
||||
default => 'text-custom-500',
|
||||
},
|
||||
]);
|
||||
|
||||
$iconStyles = \Illuminate\Support\Arr::toCssStyles([
|
||||
\Filament\Support\get_color_css_variables(
|
||||
$iconColor,
|
||||
shades: [500],
|
||||
alias: 'tables::columns.text-column.item.icon',
|
||||
) => $iconColor !== 'gray',
|
||||
]);
|
||||
@endphp
|
||||
|
||||
<{{ $isListWithLineBreaks ? 'li' : 'div' }}
|
||||
@if ($itemIsCopyable)
|
||||
x-on:click="
|
||||
window.navigator.clipboard.writeText(@js($copyableState))
|
||||
$tooltip(@js($copyMessage), {
|
||||
theme: $store.theme,
|
||||
timeout: @js($copyMessageDuration),
|
||||
})
|
||||
"
|
||||
@endif
|
||||
@if ($isListWithLineBreaks && ($loop->iteration > $listLimit))
|
||||
x-cloak
|
||||
x-show="! isLimited"
|
||||
x-transition
|
||||
@endif
|
||||
@class([
|
||||
'flex' => ! $isBulleted,
|
||||
'max-w-max' => ! ($isBulleted || $isBadge),
|
||||
'w-max' => $isBadge,
|
||||
'cursor-pointer' => $itemIsCopyable,
|
||||
match ($color) {
|
||||
null => 'text-gray-950 dark:text-white',
|
||||
'gray' => 'text-gray-500 dark:text-gray-400',
|
||||
default => 'text-custom-600 dark:text-custom-400',
|
||||
} => $isBulleted,
|
||||
])
|
||||
@style([
|
||||
\Filament\Support\get_color_css_variables(
|
||||
$color,
|
||||
shades: [400, 600],
|
||||
alias: 'tables::columns.text-column.item.container',
|
||||
) => $isBulleted && (! in_array($color, [null, 'gray'])),
|
||||
])
|
||||
>
|
||||
@if ($isBadge)
|
||||
<x-filament::badge
|
||||
:color="$color"
|
||||
:icon="$icon"
|
||||
:icon-position="$iconPosition"
|
||||
>
|
||||
{{ $formattedState }}
|
||||
</x-filament::badge>
|
||||
@else
|
||||
<div
|
||||
@class([
|
||||
'fi-ta-text-item inline-flex items-center gap-1.5',
|
||||
'group/item' => $url,
|
||||
match ($color) {
|
||||
null, 'gray' => null,
|
||||
default => 'fi-color-custom',
|
||||
},
|
||||
is_string($color) ? "fi-color-{$color}" : null,
|
||||
])
|
||||
>
|
||||
@if ($icon && in_array($iconPosition, [IconPosition::Before, 'before']))
|
||||
<x-filament::icon
|
||||
:icon="$icon"
|
||||
:class="$iconClasses"
|
||||
:style="$iconStyles"
|
||||
/>
|
||||
@endif
|
||||
|
||||
<span
|
||||
@class([
|
||||
'fi-ta-text-item-label',
|
||||
'group-hover/item:underline group-focus-visible/item:underline' => $url,
|
||||
'whitespace-normal' => $canWrap,
|
||||
'line-clamp-[--line-clamp]' => $lineClamp,
|
||||
match ($size) {
|
||||
TextColumnSize::ExtraSmall, 'xs' => 'text-xs',
|
||||
TextColumnSize::Small, 'sm', null => 'text-sm leading-6',
|
||||
TextColumnSize::Medium, 'base', 'md' => 'text-base',
|
||||
TextColumnSize::Large, 'lg' => 'text-lg',
|
||||
default => $size,
|
||||
},
|
||||
match ($color) {
|
||||
null => 'text-gray-950 dark:text-white',
|
||||
'gray' => 'text-gray-500 dark:text-gray-400',
|
||||
default => 'text-custom-600 dark:text-custom-400',
|
||||
},
|
||||
match ($weight) {
|
||||
FontWeight::Thin, 'thin' => 'font-thin',
|
||||
FontWeight::ExtraLight, 'extralight' => 'font-extralight',
|
||||
FontWeight::Light, 'light' => 'font-light',
|
||||
FontWeight::Medium, 'medium' => 'font-medium',
|
||||
FontWeight::SemiBold, 'semibold' => 'font-semibold',
|
||||
FontWeight::Bold, 'bold' => 'font-bold',
|
||||
FontWeight::ExtraBold, 'extrabold' => 'font-extrabold',
|
||||
FontWeight::Black, 'black' => 'font-black',
|
||||
default => $weight,
|
||||
},
|
||||
match ($fontFamily) {
|
||||
FontFamily::Sans, 'sans' => 'font-sans',
|
||||
FontFamily::Serif, 'serif' => 'font-serif',
|
||||
FontFamily::Mono, 'mono' => 'font-mono',
|
||||
default => $fontFamily,
|
||||
},
|
||||
])
|
||||
@style([
|
||||
\Filament\Support\get_color_css_variables(
|
||||
$color,
|
||||
shades: [400, 600],
|
||||
alias: 'tables::columns.text-column.item.label',
|
||||
) => ! in_array($color, [null, 'gray']),
|
||||
"--line-clamp: {$lineClamp}" => $lineClamp,
|
||||
])
|
||||
>
|
||||
{{ $formattedState }}
|
||||
</span>
|
||||
|
||||
@if ($icon && in_array($iconPosition, [IconPosition::After, 'after']))
|
||||
<x-filament::icon
|
||||
:icon="$icon"
|
||||
:class="$iconClasses"
|
||||
:style="$iconStyles"
|
||||
/>
|
||||
@endif
|
||||
</div>
|
||||
@endif
|
||||
</{{ $isListWithLineBreaks ? 'li' : 'div' }}>
|
||||
@endif
|
||||
@endforeach
|
||||
|
||||
@if ($limitedArrayStateCount ?? 0)
|
||||
<{{ $isListWithLineBreaks ? 'li' : 'div' }}>
|
||||
@if ($isLimitedListExpandable)
|
||||
<x-filament::link
|
||||
color="gray"
|
||||
tag="button"
|
||||
x-on:click.prevent="isLimited = false"
|
||||
x-show="isLimited"
|
||||
>
|
||||
{{ trans_choice('filament-tables::table.columns.text.actions.expand_list', $limitedArrayStateCount) }}
|
||||
</x-filament::link>
|
||||
|
||||
<x-filament::link
|
||||
color="gray"
|
||||
tag="button"
|
||||
x-cloak
|
||||
x-on:click.prevent="isLimited = true"
|
||||
x-show="! isLimited"
|
||||
>
|
||||
{{ trans_choice('filament-tables::table.columns.text.actions.collapse_list', $limitedArrayStateCount) }}
|
||||
</x-filament::link>
|
||||
@else
|
||||
<span class="text-sm text-gray-500 dark:text-gray-400">
|
||||
{{ trans_choice('filament-tables::table.columns.text.more_list_items', $limitedArrayStateCount) }}
|
||||
</span>
|
||||
@endif
|
||||
</{{ $isListWithLineBreaks ? 'li' : 'div' }}>
|
||||
@endif
|
||||
</{{ $isListWithLineBreaks ? 'ul' : 'div' }}>
|
||||
|
||||
@if (filled($descriptionBelow))
|
||||
<p
|
||||
@class([
|
||||
'text-sm text-gray-500 dark:text-gray-400',
|
||||
'whitespace-normal' => $canWrap,
|
||||
])
|
||||
>
|
||||
{{ $descriptionBelow }}
|
||||
</p>
|
||||
@endif
|
||||
@elseif (($placeholder = $getPlaceholder()) !== null)
|
||||
<x-filament-tables::columns.placeholder>
|
||||
{{ $placeholder }}
|
||||
</x-filament-tables::columns.placeholder>
|
||||
@endif
|
||||
</div>
|
||||
142
vendor/filament/tables/resources/views/columns/text-input-column.blade.php
vendored
Normal file
142
vendor/filament/tables/resources/views/columns/text-input-column.blade.php
vendored
Normal file
@@ -0,0 +1,142 @@
|
||||
@php
|
||||
use Filament\Support\Enums\Alignment;
|
||||
|
||||
$isDisabled = $isDisabled();
|
||||
$state = $getState();
|
||||
$mask = $getMask();
|
||||
|
||||
$alignment = $getAlignment() ?? Alignment::Start;
|
||||
|
||||
if (! $alignment instanceof Alignment) {
|
||||
$alignment = filled($alignment) ? (Alignment::tryFrom($alignment) ?? $alignment) : null;
|
||||
}
|
||||
|
||||
if (filled($mask)) {
|
||||
$type = 'text';
|
||||
} else {
|
||||
$type = $getType();
|
||||
}
|
||||
@endphp
|
||||
|
||||
<div
|
||||
x-data="{
|
||||
error: undefined,
|
||||
|
||||
isEditing: false,
|
||||
|
||||
isLoading: false,
|
||||
|
||||
name: @js($getName()),
|
||||
|
||||
recordKey: @js($recordKey),
|
||||
|
||||
state: @js($state),
|
||||
}"
|
||||
x-init="
|
||||
() => {
|
||||
Livewire.hook('commit', ({ component, commit, succeed, fail, respond }) => {
|
||||
succeed(({ snapshot, effect }) => {
|
||||
$nextTick(() => {
|
||||
if (component.id !== @js($this->getId())) {
|
||||
return
|
||||
}
|
||||
|
||||
if (isEditing) {
|
||||
return
|
||||
}
|
||||
|
||||
if (! $refs.newState) {
|
||||
return
|
||||
}
|
||||
|
||||
let newState = $refs.newState.value
|
||||
|
||||
if (state === newState) {
|
||||
return
|
||||
}
|
||||
|
||||
state = newState
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
"
|
||||
{{
|
||||
$attributes
|
||||
->merge($getExtraAttributes(), escape: false)
|
||||
->class([
|
||||
'fi-ta-text-input',
|
||||
'px-3 py-4' => ! $isInline(),
|
||||
])
|
||||
}}
|
||||
>
|
||||
<input
|
||||
type="hidden"
|
||||
value="{{ str($state)->replace('"', '\\"') }}"
|
||||
x-ref="newState"
|
||||
/>
|
||||
|
||||
<x-filament::input.wrapper
|
||||
:alpine-disabled="'isLoading || ' . \Illuminate\Support\Js::from($isDisabled)"
|
||||
alpine-valid="error === undefined"
|
||||
x-tooltip="
|
||||
error === undefined
|
||||
? false
|
||||
: {
|
||||
content: error,
|
||||
theme: $store.theme,
|
||||
}
|
||||
"
|
||||
x-on:click.stop=""
|
||||
>
|
||||
{{-- format-ignore-start --}}
|
||||
<x-filament::input
|
||||
:disabled="$isDisabled"
|
||||
:input-mode="$getInputMode()"
|
||||
:placeholder="$getPlaceholder()"
|
||||
:step="$getStep()"
|
||||
:type="$type"
|
||||
:x-bind:disabled="$isDisabled ? null : 'isLoading'"
|
||||
x-model="state"
|
||||
x-on:blur="isEditing = false"
|
||||
x-on:focus="isEditing = true"
|
||||
:attributes="
|
||||
\Filament\Support\prepare_inherited_attributes(
|
||||
$getExtraInputAttributeBag()
|
||||
->merge([
|
||||
'x-on:change' . ($type === 'number' ? '.debounce.1s' : null) => '
|
||||
isLoading = true
|
||||
|
||||
const response = await $wire.updateTableColumnState(
|
||||
name,
|
||||
recordKey,
|
||||
$event.target.value,
|
||||
)
|
||||
|
||||
error = response?.error ?? undefined
|
||||
|
||||
if (! error) {
|
||||
state = response
|
||||
}
|
||||
|
||||
isLoading = false
|
||||
',
|
||||
'x-mask' . ($mask instanceof \Filament\Support\RawJs ? ':dynamic' : '') => filled($mask) ? $mask : null,
|
||||
])
|
||||
->class([
|
||||
match ($alignment) {
|
||||
Alignment::Start => 'text-start',
|
||||
Alignment::Center => 'text-center',
|
||||
Alignment::End => 'text-end',
|
||||
Alignment::Left => 'text-left',
|
||||
Alignment::Right => 'text-right',
|
||||
Alignment::Justify, Alignment::Between => 'text-justify',
|
||||
default => $alignment,
|
||||
},
|
||||
])
|
||||
)
|
||||
"
|
||||
/>
|
||||
{{-- format-ignore-end --}}
|
||||
</x-filament::input.wrapper>
|
||||
</div>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user