forked from asciidoctor/asciidoctor-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.nls.json
75 lines (68 loc) · 7.91 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
72
73
74
75
{
"displayName": "AsciiDoc",
"description": "Provides rich language support for AsciiDoc.",
"asciidoc.exportAsPDF.title": "Export Document as PDF",
"asciidoc.pasteImage.title": "Paste Image",
"asciidoc.preview.title": "Open Preview",
"asciidoc.preview.refresh.title": "Refresh Preview",
"asciidoc.preview.toggleLock.title": "Toggle Preview Locking",
"asciidoc.previewSide.title": "Open Preview to the Side",
"asciidoc.saveHTML.title": "Save HTML Document",
"asciidoc.saveDocbook.title": "Save to DocBook",
"asciidoc.showLockedPreviewToSide.title": "Open Locked Preview to the Side",
"asciidoc.showPreviewSecuritySelector.title": "Manage Preview Security Settings",
"asciidoc.showAsciidoctorExtensionsTrustModeSelector.title": "Manage Asciidoctor.js Extensions Trust Mode",
"asciidoc.showSource.title": "Show Source",
"asciidoc.preview.asciidoctorAttributes.desc": "Sets Asciidoctor attributes used in the preview. Attributes need to be written as an object of type {string: string}.",
"asciidoc.preview.refreshInterval.desc": "Interval in milliseconds between two consecutive updates of the preview. The value 0 means it will only update the preview on save.",
"asciidoc.preview.preservePreviewWhenHidden.desc": "Whether to keep the AsciiDoc preview in memory even when it's hidden (such as when switching tabs). If enabled, the preview will reload more quickly when restored from the background at the expense of increased memory usage. This setting only affects a hidden/background AsciiDoc preview; closing the preview will always discard it entirely, regardless of this setting.",
"asciidoc.preview.style.desc": "An URL or a local path to CSS style sheets to use from the preview. Relative paths are interpreted relative to the folder open in the Explorer. If there is no open folder, they are interpreted relative to the location of the AsciiDoc file. All `\\` need to be written as `\\\\`.",
"asciidoc.preview.useEditorStyle.desc": "Uses VS Code editor style instead of the default Asciidoctor style.",
"asciidoc.preview.fontFamily.desc": "Controls the font family used in the preview.",
"asciidoc.preview.fontSize.desc": "Controls the font size in pixels used in the preview.",
"asciidoc.preview.lineHeight.desc": "Controls the line height used in the preview. This number is relative to the font size.",
"asciidoc.preview.scrollEditorWithPreview.desc": "When the preview is scrolled, updates the view of the editor.",
"asciidoc.preview.scrollPreviewWithEditor.desc": "When the editor is scrolled, updates the view of the preview.",
"asciidoc.preview.markEditorSelection.desc": "Marks the current editor selection in the preview.",
"asciidoc.preview.doubleClickToSwitchToEditor.desc": "Double click in the preview to switch to the editor.",
"asciidoc.preview.openLinksToAsciidocFiles.desc": "Controls how links to other AsciiDoc files in the preview should be opened.",
"asciidoc.preview.openLinksToAsciidocFiles.inPreview": "Try to open links in the editor",
"asciidoc.preview.openLinksToAsciidocFiles.inEditor": "Try to open links in the preview",
"asciidoc.pdf.title": "PDF",
"asciidoc.pdf.engine.desc": "Controls the PDF engine used to export as PDF.",
"asciidoc.pdf.engine.asciidoctorPdf.desc": "asciidoctor-pdf CLI",
"asciidoc.pdf.engine.wkhtmltopdf.desc": "wkhtmltopdf CLI",
"asciidoc.pdf.asciidoctorPdfCommandPath.desc": "External `asciidoctor-pdf` command to execute. It accepts a full path to the binary, for instance: `/path/to/asciidoctor-pdf`. If the value is empty, use `asciidoctor-pdf` or, if not available, `bundle exec asciidoctor-pdf` (from the extension global storage).",
"asciidoc.pdf.asciidoctorPdfCommandArgs.desc": "List of arguments, for instance: `-a`, `pdf-themesdir=resources/themes`, `-a`, `pdf-theme=basic`. Please note that the argument key and value should be added separately (i.e., two items). By default, it passes the following arguments: `--quiet` and `--base-dir` with the full directory path to the AsciiDoc document.",
"asciidoc.pdf.wkhtmltopdfCommandPath.desc": "External `wkhtmltopdf` command to execute. It accepts a full path to the binary, for instance: `/path/to/wkhtmltopdf`. If the value is empty, use either `wkhtmltopdf` on Linux/macOS or `wkhtmltopdf.exe` on Windows.",
"asciidoc.pdf.wkhtmltopdfCommandArgs.desc": "List of arguments, for instance: `--orientation`, `Landscape`. Please note that the argument key and value should be added separately (i.e., two items). By default, it passes the following arguments: `--enable-local-file-access`, `--encoding`, `utf-8`, `--javascript-delay`, `1000`, `--footer-center` (if enabled) and `cover` (if it has a cover page).",
"asciidoc.extensions.title": "Extensions",
"asciidoc.extensions.enableKroki.desc": "Enables Kroki extension to generate diagrams.",
"asciidoc.extensions.registerWorkspaceExtensions.desc": "Enables Asciidoctor.js extensions registration from the workspace directory `.asciidoctor/lib`.",
"asciidoc.common.title": "General",
"asciidoc.useWorkspaceRootAsBaseDirectory.desc": "When in a workspace, uses the workspace root path as the base directory.",
"asciidoc.debug.title": "Debug",
"asciidoc.debug.trace.desc": "Enables debug logging for this extension.",
"asciidoc.debug.enableErrorDiagnostics.desc": "Provides error diagnostics.",
"asciidoc.trace.desc": "**Deprecated**: Enables debug logging for the AsciiDoc extension.",
"asciidoc.trace.deprecationMessage": "This setting has been replaced by `#asciidoc.debug.trace#` and no longer has any effect.",
"asciidoc.enableErrorDiagnostics.desc": "**Deprecated**: Provides error diagnostics.",
"asciidoc.enableErrorDiagnostics.deprecationMessage": "This setting has been replaced by `#asciidoc.debug.enableErrorDiagnostics#` and no longer has any effect.",
"asciidoc.wkhtmltopdf_path.desc": "**Deprecated**: Full path for the `wkhtmltopdf` binary/executable.",
"asciidoc.wkhtmltopdf_path.deprecationMessage": "This setting has been replaced by `#asciidoc.pdf.wkhtmltopdfCommandPath#` + `#asciidoc.pdf.wkhtmltopdfCommandArgs#` and no longer has any effect.",
"asciidoc.asciidoctorpdf_command.desc": "**Deprecated**: Full path for the `asciidoctor-pdf` binary/executable.",
"asciidoc.asciidoctorpdf_command.deprecationMessage": "This setting has been replaced by `#asciidoc.pdf.asciidoctorPdfCommandPath#` + `#asciidoc.pdf.asciidoctorPdfCommandArgs#` and no longer has any effect.",
"asciidoc.use_asciidoctorpdf.desc": "**Deprecated**: Use `asciidoctor-pdf` instead of the integrated renderer.",
"asciidoc.use_asciidoctorpdf.deprecationMessage": "This setting has been replaced by `#asciidoc.pdf.engine#` and no longer has any effect.",
"asciidoc.preview.attributes.desc": "**Deprecated**: Set attributes to be used in the preview. Attributes need to be written as an object of type {string: string}",
"asciidoc.preview.attributes.deprecationMessage": "This setting has been replaced by `#asciidoc.preview.asciidoctorAttributes#` and no longer has any effect.",
"asciidoc.preview.openAsciiDocLinks.desc": "**Deprecated**: How should clicking on links to AsciiDoc files be handled in the preview.",
"asciidoc.preview.openAsciiDocLinks.deprecationMessage": "This setting has been replaced by `#asciidoc.preview.openLinksToAsciidocFiles#` and no longer has any effect.",
"asciidoc.preview.openAsciiDocLinks.inEditor": "Try to open links in the editor",
"asciidoc.preview.openAsciiDocLinks.inPreview": "Try to open links in the preview",
"asciidoc.useWorkspaceRoot.desc": "**Deprecated:** When in a workspace, uses the workspace root path as the base directory.",
"asciidoc.useWorkspaceRoot.deprecationMessage": "This setting has been replaced by `#asciidoc.useWorkspaceRootAsBaseDirectory#` and no longer has any effect.",
"asciidoc.use_kroki.desc": "**Deprecated:** Enables Kroki integration to generate diagrams.",
"asciidoc.use_kroki.deprecationMessage": "This setting has been replaced by `#asciidoc.extensions.enableKroki#` and no longer has any effect.",
"asciidoc.antora.enableAntoraSupport.desc": "Enable [Antora](https://antora.org/) support"
}