-
Notifications
You must be signed in to change notification settings - Fork 325
/
package.nls.zh-cn.json
65 lines (65 loc) · 6.43 KB
/
package.nls.zh-cn.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
{
"ext.displayName": "Markdown All in One",
"ext.description": "使用 Markdown 所需要的一切(快捷键,目录,自动预览以及更多功能)",
"command.toc.create.title": "创建目录",
"command.toc.update.title": "更新目录",
"command.toc.addSecNumbers.title": "添加/更新章节序号",
"command.toc.removeSecNumbers.title": "删除章节序号",
"command.printToHtml.title": "将当前文档打印为 HTML",
"command.printToHtmlBatch.title": "批量打印文档为 HTML(选择文件夹)",
"command.editing.toggleCodeSpan.title": "触发代码块",
"command.editing.toggleMath.title": "触发数学环境",
"command.editing.toggleMathReverse.title": "触发数学环境(反向)",
"command.editing.toggleList.title": "触发列表",
"command.editing.toggleCodeBlock.title": "触发代码块",
"config.title": "Markdown All in One",
"config.completion.enabled": "是否启用自动补全。",
"config.completion.respectVscodeSearchExclude": "进行自动补全时是否考虑 VS Code 的 `#search.exclude#` 设置。(`node_modules`,`bower_components` 和 `*.code-search` 将**总是被排除**,不受此选项影响。)",
"config.completion.root": "路径自动补全的根路径。",
"config.italic.indicator.description": "使用 `*` 或 `_` 包围斜体文本。",
"config.bold.indicator.description": "用 `**` 或 `__` 来括住粗体字。",
"config.katex.macros.description": "自定义 KaTeX 宏。",
"config.list.indentationSize.description": "Markdown 列表的缩进大小(包括目录列表)。",
"config.list.indentationSize.enumDescriptions.adaptive": "参考 **CommonMark Spec**,根据上下文判断缩进大小,并尝试**将子级的左端对齐父级的内容的左端**。比如:\n\n```markdown\n- Parent\n - Sublist\n\n1. Parent\n 1. Sublist\n\n10. Parent with longer marker\n 1. Sublist\n```",
"config.list.indentationSize.enumDescriptions.inherit": "使用当前文档设置的缩进量(请查看 VS Code 状态栏)。比如:(`tabSize: 4`)\n\n```markdown\n- Parent\n - Sublist\n\n1. Parent\n 1. Sublist\n\n10. Parent with longer marker\n 1. Sublist\n```",
"config.list.toggle.candidate-markers.description": "可选的列表标记,调整时将循环使用这些标记",
"config.math.enabled": "启用基本的数学支持(由 KaTeX 提供)。",
"config.orderedList.autoRenumber.description": "自动更正有序列表的标号。",
"config.orderedList.marker.description": "有序列表标记。",
"config.orderedList.marker.enumDescriptions.one": "总是使用 `1.` 作为有序列表标记。",
"config.orderedList.marker.enumDescriptions.ordered": "使用递增数字作为有序列表标记。",
"config.preview.autoShowPreviewToSide.description": "自动在另一栏显示预览。",
"config.print.absoluteImgPath.description": "将图片路径转换为绝对路径。",
"config.print.imgToBase64.description": "在打印为 HTML 时将图片转换为 base64。",
"config.print.includeVscodeStylesheets": "输出 HTML 时引用 VS Code 自带的 Markdown 样式,使其与 VS Code 中的预览保持接近。",
"config.print.onFileSave.description": "Markdown 文档保存后自动打印为 HTML。",
"config.print.theme": "输出的 HTML 的样式主题(只影响代码块)。",
"config.print.validateUrls.description": "启用/禁用打印 HTML 时的 URL 验证。",
"config.syntax.decorations.description": "(**已弃用**)改用 `#markdown.extension.theming.decoration.renderCodeSpan#`。请在 <https://github.com/yzhang-gh/vscode-markdown/issues/888> 查看细节。",
"config.syntax.decorationFileSizeLimit.description": "如果文件大于这个尺寸(byte/B), 我们不再渲染语法装饰器。",
"config.syntax.plainTheme.description": "(**实验性**)请在 <https://github.com/yzhang-gh/vscode-markdown/issues/185> 报告问题。",
"config.tableFormatter.enabled.description": "启用 [GitHub Flavored Markdown](https://github.github.com/gfm/) 表格格式化。",
"config.tableFormatter.normalizeIndentation.description": "使位于列表内的表格的缩进长度为制表符长度(`tabSize`)。",
"config.tableFormatter.delimiterRowNoPadding.description": "使表格的分隔线 `---` 填满整个单元格。",
"config.theming.decoration.renderCodeSpan.description": "在[行内代码 (code span)](https://spec.commonmark.org/0.29/#code-spans) 周围显示边框。",
"config.theming.decoration.renderHardLineBreak.description": "(**实验性**)",
"config.theming.decoration.renderLink.description": "(**实验性**)",
"config.theming.decoration.renderParagraph.description": "(**实验性**)",
"config.theming.decoration.renderStrikethrough.description": "显示[删除线 (strikethrough)](https://github.github.com/gfm/#strikethrough-extension-)。",
"config.theming.decoration.renderTrailingSpace.description": "为[行](https://spec.commonmark.org/0.29/#line)末端的空格 (U+0020) 字符添加底纹背景。",
"config.toc.levels.description": "目录级别的范围。例如 `2..5` 表示在目录中只包含 2 到 5 级标题。",
"config.toc.omittedFromToc.description": "在指定文件的目录中省略这些标题。\n示例:\n{ \"README.md\": [\"# Introduction\"] }",
"config.toc.orderedList.description": "使用有序列表,即:\n1. ...\n2. ...",
"config.toc.plaintext.description": "使用纯文本目录。",
"config.toc.slugifyMode.description": "生成标题 ID 的方法。该设置影响**目录**、**代码自动补全**、**打印**中**指向标题的链接**。",
"config.toc.unorderedList.marker.description": "在目录中使用 `-`,`*` 或 `+` (仅对于**无序**列表)。",
"config.toc.updateOnSave.description": "保存时自动更新目录。",
"config.extraLangIds.description": "支持的其他语言列表(如rmd, quarto),默认为空。",
"ui.exporting.messageCustomCssNotFound": "自定义样式 '{0}' 未找到。",
"ui.exporting.messageExportingInProgress": "将 '{0}' 打印到 {1} …",
"ui.exporting.messageRevertingToImagePaths": "已使用图像路径而不是 base64 编码。",
"ui.general.messageNoValidMarkdownFile": "未选中有效的 Markdown 文件。",
"ui.general.messageUnableToReadFile": "无法读取文件 '{0}'。",
"ui.welcome.buttonDismiss": "忽略",
"ui.welcome.buttonOpenLocal": "阅读"
}