[增添]添加了datasource的setting数据库以及默认值
This commit is contained in:
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',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user