feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
+45
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => '연결',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 연결',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => '기록',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'associate' => [
|
||||
'label' => '연결',
|
||||
],
|
||||
|
||||
'associate_another' => [
|
||||
'label' => '계속 연결',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'associated' => [
|
||||
'title' => '연결 완료',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => '추가',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 추가',
|
||||
|
||||
'fields' => [
|
||||
|
||||
'record_id' => [
|
||||
'label' => '기록',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'attach' => [
|
||||
'label' => '추가',
|
||||
],
|
||||
|
||||
'attach_another' => [
|
||||
'label' => '계속 추가',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'attached' => [
|
||||
'title' => '추가 완료',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => '만들기',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 만들기',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'create' => [
|
||||
'label' => '만들기',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => '계속 만들기',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => '생성 완료',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => '삭제',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => '삭제 :label',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => '삭제',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => '삭제 완료',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => '선택한 항목 삭제',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 선택한 항목 삭제',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => '선택한 항목 삭제',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => '삭제 완료',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => ':total 중 :count개 삭제됨',
|
||||
'missing_authorization_failure_message' => ':count개를 삭제할 권한이 없습니다.',
|
||||
'missing_processing_failure_message' => ':count개를 삭제할 수 없습니다.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => '삭제 실패',
|
||||
'missing_authorization_failure_message' => ':count개를 삭제할 권한이 없습니다.',
|
||||
'missing_processing_failure_message' => ':count개를 삭제할 수 없습니다.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => '분리',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 분리',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => '분리',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => '분리 완료',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => '선택한 항목 분리',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 선택한 항목 분리',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'detach' => [
|
||||
'label' => '선택한 항목 분리',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'detached' => [
|
||||
'title' => '분리 완료',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => '분리',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 분리',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => '분리',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => '분리 완료',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => '선택한 항목 분리',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => '선택한 :label 분리',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'dissociate' => [
|
||||
'label' => '분리',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'dissociated' => [
|
||||
'title' => '분리 완료',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => '수정',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 수정',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => '저장',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => '저장 완료',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+77
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => '내보내기',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 내보내기',
|
||||
|
||||
'form' => [
|
||||
|
||||
'columns' => [
|
||||
|
||||
'label' => '열',
|
||||
|
||||
'form' => [
|
||||
|
||||
'is_enabled' => [
|
||||
'label' => ':column 활성화됨',
|
||||
],
|
||||
|
||||
'label' => [
|
||||
'label' => ':column 라벨',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'export' => [
|
||||
'label' => '내보내기',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => '내보내기 완료',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_csv' => [
|
||||
'label' => '.csv 다운로드',
|
||||
],
|
||||
|
||||
'download_xlsx' => [
|
||||
'label' => '.xlsx 다운로드',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => '내보내기가 너무 큽니다',
|
||||
'body' => '한 번에 1개 이상의 행을 내보낼 수 없습니다.|한 번에 :count개 이상의 행을 내보낼 수 없습니다.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => '내보내기 시작됨',
|
||||
'body' => '내보내기가 시작되었으며 1개의 행이 백그라운드에서 처리됩니다.|내보내기가 시작되었으며 :count개의 행이 백그라운드에서 처리됩니다.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'file_name' => '내보내기-:export_id-:model',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => '영구 삭제',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 영구 삭제',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => '삭제',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => '삭제 완료',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => '선택한 항목 영구 삭제',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => '선택한 :label 영구 삭제',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'delete' => [
|
||||
'label' => '삭제',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'deleted' => [
|
||||
'title' => '삭제 완료',
|
||||
],
|
||||
|
||||
'deleted_partial' => [
|
||||
'title' => ':total 중 :count개 삭제됨',
|
||||
'missing_authorization_failure_message' => ':count개를 삭제할 권한이 없습니다.',
|
||||
'missing_processing_failure_message' => ':count개를 삭제할 수 없습니다.',
|
||||
],
|
||||
|
||||
'deleted_none' => [
|
||||
'title' => '삭제 실패',
|
||||
'missing_authorization_failure_message' => ':count개를 삭제할 권한이 없습니다.',
|
||||
'missing_processing_failure_message' => ':count개를 삭제할 수 없습니다.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'trigger' => [
|
||||
'label' => '작업',
|
||||
],
|
||||
|
||||
];
|
||||
+81
@@ -0,0 +1,81 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => ':label 가져오기',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 가져오기',
|
||||
|
||||
'form' => [
|
||||
|
||||
'file' => [
|
||||
'label' => '파일',
|
||||
'placeholder' => 'CSV 파일 업로드',
|
||||
'rules' => [
|
||||
'duplicate_columns' => '{0} 파일에 빈 열 헤더가 두 개 이상 있으면 안 됩니다.|{1,*} 파일에 중복된 열 헤더가 있으면 안 됩니다: :columns.',
|
||||
],
|
||||
],
|
||||
|
||||
'columns' => [
|
||||
'label' => '열',
|
||||
'placeholder' => '열을 선택하세요',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_example' => [
|
||||
'label' => '예시 CSV 파일 다운로드',
|
||||
],
|
||||
|
||||
'import' => [
|
||||
'label' => '가져오기',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'completed' => [
|
||||
|
||||
'title' => '가져오기 완료',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'download_failed_rows_csv' => [
|
||||
'label' => '실패한 행에 대한 정보 다운로드|실패한 행들에 대한 정보 다운로드',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'max_rows' => [
|
||||
'title' => '업로드된 CSV 파일이 너무 큽니다',
|
||||
'body' => '한 번에 1개의 행만 가져올 수 있습니다.|한 번에 :count개 이상의 행은 가져올 수 없습니다.',
|
||||
],
|
||||
|
||||
'started' => [
|
||||
'title' => '가져오기 시작됨',
|
||||
'body' => '가져오기가 시작되었으며 1개의 행이 백그라운드에서 처리됩니다.|가져오기가 시작되었으며 :count개의 행이 백그라운드에서 처리됩니다.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'example_csv' => [
|
||||
'file_name' => ':importer-example',
|
||||
],
|
||||
|
||||
'failure_csv' => [
|
||||
'file_name' => 'import-:import_id-:csv_name-failed-rows',
|
||||
'error_header' => '오류',
|
||||
'system_error' => '시스템 오류가 발생했습니다. 지원팀에 문의하세요.',
|
||||
'column_mapping_required_for_new_record' => '새 레코드를 생성하려면 :attribute 열이 파일의 열과 매핑되어야 합니다.',
|
||||
],
|
||||
|
||||
];
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'confirmation' => '이 작업을 수행하시겠습니까?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => '취소',
|
||||
],
|
||||
|
||||
'confirm' => [
|
||||
'label' => '확인',
|
||||
],
|
||||
|
||||
'submit' => [
|
||||
'label' => '제출',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'throttled' => [
|
||||
'title' => '너무 많은 시도',
|
||||
'body' => ':seconds초 후에 다시 시도해 주세요.',
|
||||
],
|
||||
|
||||
];
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => '복제',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 복제',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'replicate' => [
|
||||
'label' => '복제',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'replicated' => [
|
||||
'title' => '복제 완료',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => '복원',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 복원',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => '복원',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => '복원 완료',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multiple' => [
|
||||
|
||||
'label' => '선택한 항목 복원',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => '선택한 :label 복원',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'restore' => [
|
||||
'label' => '복원',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'restored' => [
|
||||
'title' => '복원 완료',
|
||||
],
|
||||
|
||||
'restored_partial' => [
|
||||
'title' => ':total 중 :count개 복원됨',
|
||||
'missing_authorization_failure_message' => ':count개를 복원할 권한이 없습니다.',
|
||||
'missing_processing_failure_message' => ':count개를 복원할 수 없습니다.',
|
||||
],
|
||||
|
||||
'restored_none' => [
|
||||
'title' => '복원 실패',
|
||||
'missing_authorization_failure_message' => ':count개를 복원할 권한이 없습니다.',
|
||||
'missing_processing_failure_message' => ':count개를 복원할 수 없습니다.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'single' => [
|
||||
|
||||
'label' => '보기',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => ':label 보기',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'close' => [
|
||||
'label' => '닫기',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user