forked from spmeesseman/vscode-taskexplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.nls.json
71 lines (71 loc) · 5.04 KB
/
package.nls.json
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
{
"description": "Extension to add support for vscode and npm tasks.",
"displayName": "Task support for VS Code Explorer",
"config.taskExplorer.debug": "Turn on logging.",
"config.taskExplorer.debugLevel": "Set debug verbosity (1 - Low / 5 - High).",
"config.taskExplorer.keepTermOnStop": "Keep terminal open when stopping a task.",
"config.taskExplorer.groupDashed": "If script names contain dashes, break them into grouped nodes according to similar fist parts.",
"config.taskExplorer.exclude": "Configure global glob patterns for folders and files that should be excluded from script detection.",
"config.taskExplorer.includeAnt": "Configure global glob patterns for locating Apache Ant files not named b(B)uild.xml.",
"config.taskExplorer.enableNpm": "Enable/show npm scripts as tasks.",
"config.taskExplorer.enableWorkspace": "Enable/show vscode tasks.",
"config.taskExplorer.enableGradle": "Enable/show gradle tasks.",
"config.taskExplorer.enableGrunt": "Enable/show grunt tasks.",
"config.taskExplorer.enableGulp": "Enable/show gulp tasks.",
"config.taskExplorer.enableAnt": "Enable/show ant targets as tasks.",
"config.taskExplorer.enableAppPublisher": "Enable/show app-publsiher tasks.",
"config.taskExplorer.enableBatch": "Enable/show batch scripts as tasks.",
"config.taskExplorer.enablePerl": "Enable/show perl scripts as tasks.",
"config.taskExplorer.enablePython": "Enable/show python scripts as tasks.",
"config.taskExplorer.enableRuby": "Enable/show ruby scripts as tasks.",
"config.taskExplorer.enableBash": "Enable/show bash/sh scripts as tasks.",
"config.taskExplorer.enableNsis": "Enable/show nullsoft installer scripts as tasks.",
"config.taskExplorer.enablePowershell": "Enable/show powershell scripts as tasks.",
"config.taskExplorer.enableMake": "Enable/show makefiles as tasks.",
"config.taskExplorer.enableTsc": "Enable/show tsc node with npm tasks.",
"config.taskExplorer.enableAnsiconForAnt": "Enable ansicon output colorization for ant tasks.",
"config.taskExplorer.enableSideBar": "Add a task explorer to the the sidebar.",
"config.taskExplorer.numLastTasks": "Number of tasks to store in the 'last tasks' pseudo-folder.",
"config.taskExplorer.enableExplorerView": "Add a task explorer tray in the Explorer sidebar view.",
"config.taskExplorer.pathToAnsicon": "The path to the ansicon program, if not registered in system path",
"config.taskExplorer.pathToAnt": "The path to the ant program, if not registered in system path",
"config.taskExplorer.pathToAppPublisher": "The path to the app-publisher program, if not registered in system path",
"config.taskExplorer.pathToBash": "The path to the bash/sh program (on Windows, if not registered in system path)",
"config.taskExplorer.pathToGradle": "The path to the gradle program, if not registered in system path.",
"config.taskExplorer.pathToMake": "The path to the make program, if not registered in system path.",
"config.taskExplorer.pathToNsis": "The path to the nsis program, if not registered in system path.",
"config.taskExplorer.pathToPerl": "The path to the perl program, if not registered in system path.",
"config.taskExplorer.pathToPython": "The path to the python program, if not registered in system path.",
"config.taskExplorer.pathToRuby": "The path to the ruby program, if not registered in system path.",
"config.taskExplorer.pathToPowershell": "The path to the powershell program, if not registered in system path.",
"config.taskExplorer.showLastTasks": "Show the 'last tasks' as a node in the task tree.",
"config.taskExplorer.showRunningTask": "Show the last ran running task in the status bar.",
"taskExplorer.parseError": "Task Explorer task detection: failed to parse the file {0}",
"taskdef.task.fileName": "The ant file that target was found in. Can be omitted.",
"taskdef.task.script": "The target/script name.",
"taskdef.task.path": "The relative path to the folder that contains the task file. Can be omitted.",
"taskdef.task.uri": "The uri of the task file. Can be omitted.",
"taskdef.task.treeItem": "The tree item that the task is associated with. Can be omitted.",
"taskdef.script.scriptType": "The type of script (bash, batch, pythin, etc...).",
"taskdef.script.cmdLine": "The command line used to execute the script in a shell.",
"taskdef.script.scriptFile": "Boolean to display filename as the script target. Set to true.",
"taskdef.script.requiresArgs": "Boolean to indicate if the script requires command line args.",
"view.name": "Task Explorer",
"command.refresh": "Refresh",
"command.run": "Run",
"command.restart": "Restart",
"command.runLastTask": "Run last task",
"command.addToExcludes": "Add to excludes list",
"command.stop": "Stop",
"command.pause": "Pause",
"command.debug": "Debugging ",
"command.open": "Open",
"command.openTerminal": "Open Terminal",
"command.runInstall": "Run npm install",
"command.runAudit": "Run npm audit",
"command.runAuditFix": "Run npm audit fix",
"command.runUpdate": "Run npm update",
"command.runUpdatePackage": "Run npm update [package]",
"command.runSelectedScript": "Run Script",
"command.showOutput": "Show the log output window"
}