forked from APerricone/harbourCodeExtension
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.nls.json
More file actions
76 lines (76 loc) · 4.9 KB
/
package.nls.json
File metadata and controls
76 lines (76 loc) · 4.9 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
{
"harbour.validating": "Every time a file is opened or saved the executable is called to validate the code(Lint)",
"harbour.compilerExecutable": "complete path of the harbour executable",
"harbour.extraOptions": "other options to pass to harbour compiler",
"harbour.extraIncludePaths": "Extra include paths to use during the compilation (for include)",
"harbour.warningLevel": "Warning level",
"harbour.decorator": "Enables the decoration of correspondents if/endif, for/next, while/endwhile, etc etc",
"harbour.workspaceDepth": "Depth of sub-folder of workspace where looking for sources",
"harbour.initialConfigurations": "Launch Program",
"harbour.configurationSnippetsDesc": "Start and debug a harbour program with debug symbols",
"harbour.configurationSnippets": "Launch ${2:Program}",
"harbour.configurationSnippetsDesc2": "Debug a running harbour program with debug symbols specifying the process",
"harbour.configurationSnippets2": "Attach ${2:Program}",
"harbour.configurationSnippetsDesc3": "Debug a running harbour program with debug symbols, choosing the process",
"harbour.configurationSnippets3": "Select process and attach",
"harbour.launch.workspaceRoot": "Attribute 'workspaceRoot' is deprecated, use 'sourcePaths' instead",
"harbour.launch.program": "Absolute path of executable",
"harbour.launch.workingDir": "Working directory",
"harbour.launch.env": "Environment variables passed to the program.",
"harbour.launch.arguments": "Arguments to pass to executable",
"harbour.launch.stopOnEntry": "Automatically stop after launch",
"harbour.launch.sourcePaths": "Directories where search for source files",
"harbour.launch.terminalType": "Type of terminal to use to run the application",
"harbour.launch.port": "Port used by debugger, It must be the same value of DBG_PORT in debugger code line 6",
"harbour.dbgError1": "Unable to start {0} in {1}, check that all path exists",
"harbour.prematureExit": "Exit early with code {0}",
"harbour.dbgNoModule": "Module not found",
"harbour.dbgNoLine": "Invalid line",
"harbour.dbgError.all": "Stop on all errors",
"harbour.dbgError.notSeq": "Stop only on out-of-sequence errors",
"harbour.validation.NoExe": "Unable to start {0}, check the 'harbour.compilerExecutable' value",
"harbour.dbgCodeCmd": "Harbour: Get debugger code",
"harbour.task.input": "file to compile",
"harbour.task.output": "output type",
"harbour.task.ctype": "Type of C output",
"harbour.task.HBMK2.input": "file to build",
"harbour.task.HBMK2.output": "output file name",
"harbour.task.HBMK2.extraArgs": "Free extra arguments",
"harbour.task.HBMK2.debug": "if true includes the libray for debugging on VSCode",
"harbour.task.HBMK2.platform": "default target platform",
"harbour.task.HBMK2.compiler": "override C compiler",
"harbour.task.HBMK2.setupBatch": "A batch or a shell script that set up the hbmk2 environment",
"harbour.task.portableName": "Generate Harbour Portable Object (hrb)",
"harbour.task.cCodeName": "Generate C file",
"harbour.task.HBMK2.provideName": "build {0}",
"harbour.task.HBMK2.provideName2": "build current file",
"harbour.task.HBMK2.provideName3": "build current file for debugging",
"harbour.task.HBMK2.errorBatch": "Unable to start setup batch",
"harbour.task.HBMK2.setup": "setting up the enviroment...",
"harbour.task.HBMK2.start": "Start HBMK2",
"harbour.attach.process": "process id to connect",
"harbour.formatter.cmd": "Harbour: setup code style",
"harbour.formatter.title": "Harbour: setup code style",
"harbour.formatter.indent": "Indents",
"harbour.formatter.indent.funcBody": "Indent function body",
"harbour.formatter.indent.local": "Indent local, private etc inside function body",
"harbour.formatter.indent.logical": "Indent after if",
"harbour.formatter.indent.cycle": "Indent after for, while",
"harbour.formatter.indent.switch": "Indent after switch, do case",
"harbour.formatter.indent.case": "Indent after case body",
"harbour.formatter.replace": "Replacements",
"harbour.formatter.replace.not": "replace .not. with !",
"harbour.formatter.replace.asterisk": "replace start line comment",
"harbour.formatter.replace.amp": "replace comment &&",
"harbour.formatter.case": "Case",
"harbour.formatter.case.commands": "case of command",
"harbour.formatter.case.knowFunction": "case of know function",
"harbour.formatter.case.unknowFunction": "case of unknow function",
"harbour.formatter.case.directives": "case of precompile directives #",
"harbour.formatter.enum.value.ignore": "ignore",
"harbour.formatter.enum.value.use": "use {0}",
"harbour.formatter.enum.value.upperCase": "UPPER CASE",
"harbour.formatter.enum.value.lowerCase": "lower case",
"harbour.formatter.enum.value.title": "Title",
"harbour.formatter.enum.value.asDefine": "as definition"
}