-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.nls.json
More file actions
127 lines (126 loc) · 9.71 KB
/
package.nls.json
File metadata and controls
127 lines (126 loc) · 9.71 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"manifest.ext.name": "Paths-LE",
"manifest.ext.description": "File path extraction and analysis from JavaScript, TypeScript, JSON, HTML, CSS, TOML, CSV, and ENV files",
"manifest.command.category": "Paths-LE",
"manifest.command.extract.title": "Extract Paths",
"manifest.command.dedupe.title": "Deduplicate Paths",
"manifest.command.sort.title": "Sort Paths",
"manifest.command.settings.title": "Open Settings",
"manifest.command.settings.export.title": "Export Settings",
"manifest.command.settings.import.title": "Import Settings",
"manifest.command.settings.reset.title": "Reset Settings",
"manifest.command.help.title": "Help & Troubleshooting",
"manifest.command.createTestFixture.title": "Create Test Fixture",
"manifest.settings.title": "Paths-LE Settings",
"manifest.settings.copy.clipboard.desc": "Copy extracted paths to clipboard",
"manifest.settings.dedupe.desc": "Remove duplicate paths",
"manifest.settings.notifications.level.desc": "Notification level",
"manifest.settings.notifications.level.option.all": "Show all notifications",
"manifest.settings.notifications.level.option.important": "Show only important notifications",
"manifest.settings.notifications.level.option.silent": "Show no notifications",
"manifest.settings.open.new-file.desc": "Open results in new file",
"manifest.settings.open.side-by-side.desc": "Open results side by side",
"manifest.settings.safety.enabled.desc": "Enable safety checks",
"manifest.settings.safety.warn.file-size.desc": "File size warning threshold (bytes)",
"manifest.settings.safety.warn.large-output.desc": "Large output warning threshold (lines)",
"manifest.settings.safety.warn.many-documents.desc": "Many documents warning threshold",
"manifest.settings.parse-errors.desc": "Show parse errors",
"manifest.settings.statusbar.enabled.desc": "Show status bar item",
"manifest.settings.telemetry.desc": "Enable telemetry logging",
"manifest.settings.analysis.enabled.desc": "Enable path analysis",
"manifest.settings.analysis.includeValidation.desc": "Include validation in analysis",
"manifest.settings.analysis.includePatterns.desc": "Include pattern analysis",
"manifest.settings.validation.enabled.desc": "Enable path validation",
"manifest.settings.validation.checkExistence.desc": "Check if paths exist",
"manifest.settings.validation.checkPermissions.desc": "Check path permissions",
"manifest.settings.performance.enabled.desc": "Enable performance monitoring and optimization",
"manifest.settings.performance.max-duration.desc": "Maximum processing duration in milliseconds before warning",
"manifest.settings.performance.max-memory.desc": "Maximum memory usage in bytes before warning",
"manifest.settings.performance.max-cpu.desc": "Maximum CPU usage in milliseconds before warning",
"manifest.settings.performance.min-throughput.desc": "Minimum throughput in paths per second before warning",
"manifest.settings.performance.max-cache.desc": "Maximum cache size in entries before cleanup",
"manifest.settings.keyboard.shortcuts.enabled.desc": "Enable keyboard shortcuts",
"manifest.settings.keyboard.extract.shortcut.desc": "Keyboard shortcut for extracting paths",
"manifest.settings.keyboard.analyze.shortcut.desc": "Keyboard shortcut for analyzing paths",
"manifest.settings.presets.enabled.desc": "Enable presets",
"manifest.settings.presets.default.desc": "Default preset to use",
"manifest.settings.presets.default.option.minimal": "Minimal preset",
"manifest.settings.presets.default.option.balanced": "Balanced preset",
"manifest.settings.presets.default.option.comprehensive": "Comprehensive preset",
"manifest.settings.presets.default.option.performance": "Performance preset",
"manifest.settings.presets.default.option.validation": "Validation preset",
"manifest.settings.resolution.symlinks.desc": "Resolve symlinks to their canonical paths for better monorepo support",
"manifest.settings.resolution.symlinks.markdown": "**⚠️ SECURITY WARNING**: Enabling this setting may expose sensitive file system paths in extracted output. Only enable in trusted environments. Resolves symlinks to their canonical paths for better monorepo support.",
"manifest.settings.resolution.workspace.desc": "Resolve paths relative to workspace folders in monorepos",
"manifest.settings.resolution.workspace.markdown": "**⚠️ SECURITY WARNING**: Enabling this setting may expose sensitive file system paths in extracted output. Only enable in trusted environments. Resolves paths relative to workspace folders in monorepos.",
"manifest.capability.untrusted-workspaces.desc": "Limited functionality in untrusted workspaces",
"runtime.statusbar.text": "$(file-directory) Paths-LE",
"runtime.statusbar.tooltip": "Paths-LE: File Path Extraction",
"runtime.sort.no-editor": "No active editor found",
"runtime.sort.pick.placeholder": "Select sort order",
"runtime.sort.pick.alpha-asc": "Alphabetical (A → Z)",
"runtime.sort.pick.alpha-desc": "Alphabetical (Z → A)",
"runtime.sort.pick.length-asc": "By Length (Short → Long)",
"runtime.sort.pick.length-desc": "By Length (Long → Short)",
"runtime.sort.success": "Sorted {0} paths ({1})",
"runtime.sort.error": "Sorting failed: {0}",
"runtime.dedupe.no-editor": "No active editor found",
"runtime.dedupe.success": "Removed {0} duplicate paths ({1} remaining)",
"runtime.dedupe.error": "Deduplication failed: {0}",
"runtime.error.unknown-fallback": "Unknown error occurred",
"runtime.error.parsing": "Error parsing paths: {0}",
"runtime.error.validation": "Validation error: {0}",
"runtime.error.file-system": "File system error: {0}",
"runtime.error.configuration": "Configuration error: {0}",
"runtime.error.performance": "Performance error: {0}",
"runtime.error.unknown": "Unknown error: {0}",
"runtime.warning.large-file": "Large file detected ({0}). Processing may take time.",
"runtime.warning.memory-usage": "High memory usage detected ({0}). Consider reducing file size.",
"runtime.warning.performance": "Performance threshold exceeded. Processing may be slow.",
"runtime.info.extraction-complete": "Extraction complete. Found {0} paths.",
"runtime.info.analysis-complete": "Analysis complete. Generated report with {0} sections.",
"runtime.info.validation-complete": "Validation complete. Validated {0} paths.",
"runtime.progress.extracting": "Extracting paths...",
"runtime.progress.analyzing": "Analyzing paths...",
"runtime.progress.validating": "Validating paths...",
"runtime.status.extracting": "Extracting paths from {0}",
"runtime.status.analyzing": "Analyzing {0} paths",
"runtime.status.validating": "Validating {0} paths",
"runtime.recovery.retry": "Retrying operation...",
"runtime.recovery.fallback": "Using fallback method...",
"runtime.recovery.skip": "Skipping problematic entry...",
"runtime.recovery.abort": "Aborting operation due to errors",
"runtime.performance.duration": "Duration: {0}",
"runtime.performance.memory": "Memory: {0}",
"runtime.performance.throughput": "Throughput: {0} paths/second",
"runtime.performance.cpu": "CPU: {0}",
"runtime.safety.file-size-warning": "File size ({0}) exceeds threshold. Continue?",
"runtime.safety.output-size-warning": "Output size ({0} lines) exceeds threshold. Continue?",
"runtime.safety.many-documents-warning": "Will open {0} documents. Continue?",
"runtime.confirmation.continue": "Continue",
"runtime.confirmation.cancel": "Cancel",
"runtime.canonical.resolving": "Resolving canonical paths...",
"runtime.canonical.resolved": "Resolved {0} canonical paths",
"runtime.canonical.fallback": "Canonical resolution failed, using original paths",
"runtime.canonical.security-warning": "⚠️ Canonical path resolution enabled - sensitive paths may be exposed",
"runtime.canonical.disabled": "Canonical path resolution disabled for security",
"runtime.confirmation.yes": "Yes",
"runtime.confirmation.no": "No",
"runtime.format.javascript.description": "JavaScript/TypeScript files with import/require/export statements",
"runtime.format.json.description": "JSON configuration files with nested paths",
"runtime.format.html.description": "HTML files with src, href, and other path attributes",
"runtime.format.css.description": "CSS files with url() and @import statements",
"runtime.format.toml.description": "TOML configuration files",
"runtime.format.csv.description": "CSV data files with path columns",
"runtime.format.dotenv.description": "Environment variable files with path values",
"runtime.info.package-filtered": "Filtered {0} package imports (e.g., 'react', 'lodash')",
"runtime.info.data-url-filtered": "Filtered {0} data: URLs",
"runtime.info.javascript-url-filtered": "Filtered {0} javascript: URLs",
"runtime.help.title": "Paths-LE Help",
"runtime.help.quick-start": "1. Open a JavaScript, TypeScript, JSON, HTML, CSS, TOML, CSV, or ENV file\n2. Run \"Paths-LE: Extract Paths\"\n3. View extracted file paths in results",
"runtime.help.commands": "**Extract Paths**: Extract from current document\n**Sort Paths**: Sort alphabetically or by length\n**Deduplicate Paths**: Remove duplicate paths\n**Settings**: Configure options",
"runtime.help.formats": "**Supported**: JavaScript, TypeScript, JSON, HTML, CSS, TOML, CSV, ENV\n**Path Types**: Import/require statements, file references, asset paths, configuration paths",
"runtime.help.troubleshooting": "**No paths found?** Check file format and path syntax\n**Performance issues?** Enable safety settings for large files\n**Need help?** Check Output panel for details",
"runtime.help.settings": "Access via Command Palette: \"Paths-LE: Open Settings\"\nKey settings: Copy to clipboard, deduplication, analysis, validation, performance monitoring",
"runtime.help.support": "GitHub Issues: https://github.com/OffensiveEdge/paths-le/issues"
}