-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.nls.json
More file actions
64 lines (64 loc) · 5.15 KB
/
Copy pathpackage.nls.json
File metadata and controls
64 lines (64 loc) · 5.15 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": "Compare folders by contents, present the files that have differences and display the diffs side by side",
"ext.icon.description": "compare folders icon",
"ext.configuration.title": "Compare Folders",
"ext.config.folderLeft.description": "Default setting for left folder",
"ext.config.folderRight.description": "Default setting for right folder",
"ext.config.compareContent.description": "Compare content",
"ext.config.ignoreLineEnding.description": "Ignore crlf/lf line ending differences",
"ext.config.ignoreWhiteSpaces.description": "Ignore white spaces at the beginning and ending of a line (similar to 'diff -b')",
"ext.config.ignoreAllWhiteSpaces.description": "Ignore all white space differences (similar to 'diff -w')",
"ext.config.ignoreEmptyLines.description": "Ignore differences caused by empty lines (similar to 'diff -B')",
"ext.config.ignoreFileNameCase.description": "If true fileName / FileName / FiLE naMe will consider as same file and will be compared",
"ext.config.ignoreExtension.description": "Pairs of extensions to be considered the same file (e.g. [index.js, index.ts]). Each extension can appear **only once**",
"ext.config.includeFilter.description": "Include filters",
"ext.config.excludeFilter.description": "Exclude filters",
"ext.config.respectGitIgnore.description": "Include / Exclude files based on .gitignore",
"ext.config.diffViewTitle.enum.nameOnly": "eg. file-name.txt",
"ext.config.diffViewTitle.enum.comparedPath": "eg. file-name.txt ↔ path/to/compared/file-name.txt",
"ext.config.diffViewTitle.enum.fullPath": "eg. c://file-name.txt ↔ c://path/to/compared/file-name.txt",
"ext.config.diffViewTitle.description": "Specifies how the diff view's title looks",
"ext.config.diffLayout.enum.localCompared": "eg. left: local file, right: compared file",
"ext.config.diffLayout.enum.comparedLocal": "eg. left: compared file, right: local file",
"ext.config.diffLayout.description": "Specifies which file will be in the left and the right sides of the diff view",
"ext.config.defaultDiffViewMode.enum.tree": "Presents files and folders in a hierarchical tree structure, allowing for a more organized and nested view",
"ext.config.defaultDiffViewMode.enum.list": "Displays files and folders in a simple, flat list format",
"ext.config.showIdentical.description": "Show identical files",
"ext.config.showFileCount.description": "Show the number of files in each view section",
"ext.config.useDiffMerge.description": "Use Diff & Merge extension as diff view",
"ext.config.warnBeforeDelete.description": "Show a warning message before deleting files",
"ext.config.warnBeforeTake.description": "Show a warning message before taking/replacing files",
"ext.config.ignoreStrings.description": "List of strings to ignore when comparing file contents. Files that differ only by these strings are treated as identical. Only applies when compareContent is enabled. Note: binary files will be compared normally regardless of this setting. May be slow on large files.",
"ext.config.fileParsingRules.description": "Rules for parsing specific file patterns with external tools",
"ext.config.fileParsingRules.pattern.description": "Glob pattern to match files (e.g., '*.json', '**/*.xml')",
"ext.config.fileParsingRules.command.description": "Command to execute for parsing files",
"ext.config.fileParsingRules.args.description": "Arguments to pass to the command. Use '{file}' as placeholder for the file path",
"ext.config.fileParsingRules.workingDirectory.description": "Working directory for the command (optional)",
"ext.config.fileParsingRules.timeout.description": "Parsing timeout in milliseconds (default: 30000)",
"ext.config.fileParsingRules.env.description": "Environment variables to set for the command (optional)",
"ext.command.pickFromRecent.title": "Pick from recent compares",
"ext.command.clearRecent.title": "Clear Recent Compares",
"ext.command.copyToCompared.title": "Copy to Compared Folder",
"ext.command.copyToMy.title": "Copy to My Folder",
"ext.command.deleteFile.title": "Delete File",
"ext.command.dismissDifference.title": "Dismiss Difference",
"ext.command.excludeFromComparison.title": "Exclude from Comparison",
"ext.command.viewParsedDiff.title": "View Parsed Diff",
"ext.command.takeMyFile.title": "Take My File",
"ext.command.takeComparedFile.title": "Take Compared File",
"ext.command.chooseFolders.title": "Choose Folders and Compare",
"ext.command.compareAgainstWorkspace.title": "Compare a Folder Against Workspace",
"ext.command.choose2Folders.title": "Choose 2 Folders and Compare",
"ext.command.refresh.title": "Refresh",
"ext.command.swapSides.title": "Swap Sides",
"ext.command.viewAsList.title": "View as List",
"ext.command.viewAsTree.title": "View as Tree",
"ext.command.compareSelected.title": "[Compare Folders] Compare selected folders",
"ext.command.category": "CompareFolders",
"ext.viewContainer.title": "Compare Folders",
"ext.view.differences.name": "Differences",
"ext.view.onlyInMy.name": "Only in my folder",
"ext.view.onlyInCompared.name": "Only in compared folder",
"ext.view.identicals.name": "Identical files"
}