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