-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.nls.ko.json
More file actions
64 lines (64 loc) · 5.41 KB
/
Copy pathpackage.nls.ko.json
File metadata and controls
64 lines (64 loc) · 5.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"ext.displayName": "폴더 비교 (Compare Folders)",
"ext.description": "내용으로 폴더를 비교하고, 차이가 있는 파일을 표시하며, 나란히 변경 사항을 표시합니다",
"ext.icon.description": "폴더 비교 아이콘",
"ext.configuration.title": "폴더 비교",
"ext.config.folderLeft.description": "왼쪽 폴더의 기본 설정",
"ext.config.folderRight.description": "오른쪽 폴더의 기본 설정",
"ext.config.compareContent.description": "내용 비교",
"ext.config.ignoreLineEnding.description": "CRLF/LF 줄 바꿈 차이 무시",
"ext.config.ignoreWhiteSpaces.description": "줄의 시작과 끝에 있는 공백 무시 ('diff -b'와 유사)",
"ext.config.ignoreAllWhiteSpaces.description": "모든 공백 차이 무시 ('diff -w'와 유사)",
"ext.config.ignoreEmptyLines.description": "빈 줄로 인한 차이 무시 ('diff -B'와 유사)",
"ext.config.ignoreFileNameCase.description": "true인 경우 fileName / FileName / FiLE naMe을 동일한 파일로 간주하고 비교합니다",
"ext.config.ignoreExtension.description": "동일한 파일로 간주할 확장자 쌍 (예: [index.js, index.ts]). 각 확장자는 **한 번만** 나타날 수 있습니다",
"ext.config.includeFilter.description": "포함 필터",
"ext.config.excludeFilter.description": "제외 필터",
"ext.config.respectGitIgnore.description": ".gitignore를 기반으로 파일 포함 / 제외",
"ext.config.diffViewTitle.enum.nameOnly": "예: file-name.txt",
"ext.config.diffViewTitle.enum.comparedPath": "예: file-name.txt ↔ path/to/compared/file-name.txt",
"ext.config.diffViewTitle.enum.fullPath": "예: c://file-name.txt ↔ c://path/to/compared/file-name.txt",
"ext.config.diffViewTitle.description": "차이점 뷰의 제목 표시 방식 지정",
"ext.config.diffLayout.enum.localCompared": "예: 왼쪽: 로컬 파일, 오른쪽: 비교된 파일",
"ext.config.diffLayout.enum.comparedLocal": "예: 왼쪽: 비교된 파일, 오른쪽: 로컬 파일",
"ext.config.diffLayout.description": "차이점 뷰의 왼쪽 및 오른쪽에 표시될 파일 지정",
"ext.config.defaultDiffViewMode.enum.tree": "파일 및 폴더를 계층적 트리 구조로 표시하여 더 체계적이고 중첩된 뷰 제공",
"ext.config.defaultDiffViewMode.enum.list": "파일 및 폴더를 단순한 평면 목록 형식으로 표시",
"ext.config.showIdentical.description": "동일한 파일 표시",
"ext.config.showFileCount.description": "각 뷰 섹션에 파일 수 표시",
"ext.config.useDiffMerge.description": "차이점 뷰로 Diff & Merge 확장 사용",
"ext.config.warnBeforeDelete.description": "파일을 삭제하기 전에 경고 메시지 표시",
"ext.config.warnBeforeTake.description": "파일을 가져오거나 교체하기 전에 경고 메시지 표시",
"ext.config.ignoreStrings.description": "파일 내용을 비교할 때 무시할 문자열 목록. 이 문자열만 다른 파일은 동일한 것으로 처리됩니다. 내용 비교가 활성화된 경우에만 적용됩니다. 참고: 이 설정에 관계없이 이진 파일은 정상적으로 비교됩니다. 대용량 파일의 경우 느릴 수 있습니다.",
"ext.config.fileParsingRules.description": "외부 도구를 사용하여 특정 파일 패턴을 구문 분석하기 위한 규칙",
"ext.config.fileParsingRules.pattern.description": "파일을 일치시킬 Glob 패턴 (예: '*.json', '**/*.xml')",
"ext.config.fileParsingRules.command.description": "파일을 구문 분석하기 위해 실행할 명령",
"ext.config.fileParsingRules.args.description": "명령에 전달할 인수. 파일 경로의 자리 표시자로 '{file}'을 사용하세요",
"ext.config.fileParsingRules.workingDirectory.description": "명령에 대한 작업 디렉토리 (선택 사항)",
"ext.config.fileParsingRules.timeout.description": "구문 분석 시간 초과(밀리초) (기본값: 30000)",
"ext.config.fileParsingRules.env.description": "명령에 설정할 환경 변수 (선택 사항)",
"ext.command.pickFromRecent.title": "최근 비교에서 선택",
"ext.command.clearRecent.title": "최근 비교 지우기",
"ext.command.copyToCompared.title": "비교된 폴더로 복사",
"ext.command.copyToMy.title": "내 폴더로 복사",
"ext.command.deleteFile.title": "파일 삭제",
"ext.command.dismissDifference.title": "차이점 무시",
"ext.command.excludeFromComparison.title": "비교에서 제외",
"ext.command.viewParsedDiff.title": "구문 분석된 Diff 보기",
"ext.command.takeMyFile.title": "내 파일 가져오기",
"ext.command.takeComparedFile.title": "비교된 파일 가져오기",
"ext.command.chooseFolders.title": "폴더 선택 및 비교",
"ext.command.compareAgainstWorkspace.title": "작업 영역과 폴더 비교",
"ext.command.choose2Folders.title": "2개의 폴더 선택 및 비교",
"ext.command.refresh.title": "새로 고침",
"ext.command.swapSides.title": "양쪽 바꾸기",
"ext.command.viewAsList.title": "목록으로 보기",
"ext.command.viewAsTree.title": "트리로 보기",
"ext.command.compareSelected.title": "[폴더 비교] 선택한 폴더 비교",
"ext.command.category": "폴더 비교",
"ext.viewContainer.title": "폴더 비교",
"ext.view.differences.name": "차이점",
"ext.view.onlyInMy.name": "내 폴더에만 있음",
"ext.view.onlyInCompared.name": "비교된 폴더에만 있음",
"ext.view.identicals.name": "동일한 파일"
}