-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.nls.json
More file actions
43 lines (43 loc) · 3.65 KB
/
Copy pathpackage.nls.json
File metadata and controls
43 lines (43 loc) · 3.65 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
{
"editor.openEmu": "Open Emulator",
"editor.runAsm": "Run ASM code",
"editor.debugAsm": "Debug ASM code",
"command.cleanalldianose": "MASM/TASM: Clean all diagnose information generated by the extension",
"config.assembler.description": "use TASM or MASM to operate your assembly codes\n\n should be the key of #masmtasm.ASM.actions#",
"config.emulator.description": "DOS environment emulator",
"config.emulator.jsdos": "Use jsdos(wasm version of dosbox), run in worker",
"config.emulator.jsdosX": "Use jsdos(wasm version of dosbox-x), run in worker",
"config.emulator.dosbox": "Use DOSBox",
"config.emulator.dosboxX": "Use DOSBox-x",
"config.emulator.player": "Use MSDOS-player",
"config.savefirst": "Save the file before Open dosbox, run and debug ASM codes",
"config.boxrun.description": "What to do after run code in dosbox",
"config.boxrun.enum1": "do nothing, manually input exit or click 'x' or press 'Ctrl+F9' to exit",
"config.boxrun.enum2": "exit DOSBox automatically",
"config.boxrun.enum3": "pause and then exit",
"config.boxrun.choose": "use choose command to decide keep dosbox or not",
"config.boxconfig.description": "configuration for DOSBox, use format like the default value, see [dosbox](https://www.dosbox.com/wiki/Dosbox.conf),Please don't set `autoexec` here",
"config.boxXconfig.description": "configuration for DOSBox-X, use format like the default value, see [dosbox-x](https://dosbox-x.com/wiki/), Please don't set `autoexec `here",
"config.hover": "Display Hover information or not, restart VSCode to apply",
"config.cpp-docs.links": "Links for fetch hover data from [cppdocs](https://github.com/MicrosoftDocs/cpp-docs). \"{vid}\" will be replaced as `Visual Studio Code Language ID`,\"{mid}\" will be replaced as `MLCP language code`, see [vscode-loc](https://github.com/microsoft/vscode-loc)",
"config.PLF": "Experimental programmatic language features like outline,jump to definition/reference. Restart needed",
"config.format.align.description": "Align code in different ways",
"config.format.align.enum.indent.label": "Indent only",
"config.format.align.enum.label.label": "Align to label",
"config.format.align.enum.segment.label": "Align within segment",
"config.format.align.enum.indent.md": "Indent the code with fixed size.\n\n```asm\nL1:\n mov ax, 1\n mov bx, 2\nLabel2:\n mov cx, 3\n mov dx, 4\n```",
"config.format.align.enum.label.md": "Align the code to its label\n\n```asm\nL1:\n mov ax, 1\n mov bx, 2\nLabel2:\n mov cx, 3\n mov dx, 4\n```",
"config.format.align.enum.segment.md": "Align the code within segment\n\n```asm\nL1:\n mov ax, 1\n mov bx, 2\nLabel2:\n mov cx, 3\n mov dx, 4\n```",
"config.format.casing.description": "Format the casing of identifiers\n\n`lower` - all lower case\n\n`upper` - all upper case\n\n`title` - title case\n\n`off` - do not change the casing",
"config.format.casing.instruction": "Instructions, e.g. `MOV` `JMP` `PUSH`",
"config.format.casing.directive": "Directives, e.g. `INCLUDE` `END` `PROC`",
"config.format.casing.register": "Registers, e.g. `AX` `SI` `CS`",
"config.format.casing.operator": "Operators, e.g. `HIGH` `LOW` `PTR`",
"config.format.alignOperand.description": "Align operands",
"config.format.alignTrailingComment.description": "Align trailing comments",
"config.format.alignSingleLineComment.description": "Align single line comments",
"config.format.spaceAfterComma.description": "Add space after comma",
"config.format.spaceAfterComma.enum.always": "Always keep a space after comma",
"config.format.spaceAfterComma.enum.never": "Remove space after comma",
"config.format.spaceAfterComma.enum.off": "Do not change the space after comma"
}