Welcome to mirror list, hosted at ThFree Co, Russian Federation.

jsonSchema_v2.i18n.json « electron-browser « tasks « parts « workbench « vs « src « chs « i18n - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae02f6db03298ee2b169aa25a056be68c129ce68 (plain)
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
{
	"": [
		"--------------------------------------------------------------------------------------------",
		"Copyright (c) Microsoft Corporation. All rights reserved.",
		"Licensed under the MIT License. See License.txt in the project root for license information.",
		"--------------------------------------------------------------------------------------------",
		"Do not edit this file. It is machine generated."
	],
	"JsonSchema.shell": "指定命令是 shell 命令还是外部程序。如果省略,默认值是 false。",
	"JsonSchema.tasks.isShellCommand.deprecated": "isShellCommand 属性已被弃用。请改为使用任务的 type 属性和选项中的 shell 属性。另请参阅 1.14 发行说明。",
	"JsonSchema.tasks.dependsOn.string": "此任务依赖的另一任务。",
	"JsonSchema.tasks.dependsOn.array": "此任务依赖的其他任务。",
	"JsonSchema.tasks.presentation": "配置用于显示任务输出和读取输入的面板。",
	"JsonSchema.tasks.presentation.echo": "控制是否将执行的命令显示到面板中。默认值为“true”。",
	"JsonSchema.tasks.presentation.focus": "控制面板是否获取焦点。默认值为“false”。如果设置为“true”,面板也会显示。",
	"JsonSchema.tasks.presentation.reveal.always": "总是在此任务执行时显示终端。",
	"JsonSchema.tasks.presentation.reveal.silent": "仅在任务没有关联问题匹配程序且在执行时发生错误时显示终端。",
	"JsonSchema.tasks.presentation.reveal.never": "不要在此任务执行时显示终端。",
	"JsonSchema.tasks.presentation.reveals": "控制是否显示运行此任务的面板。默认值为“always”。",
	"JsonSchema.tasks.presentation.instance": "控制是否在任务间共享面板。同一个任务使用相同面板还是每次运行时新创建一个面板。",
	"JsonSchema.tasks.terminal": "terminal 属性已被弃用。请改为使用 presentation",
	"JsonSchema.tasks.group.kind": "任务的执行组。",
	"JsonSchema.tasks.group.isDefault": "定义此任务是否为组中的默认任务。",
	"JsonSchema.tasks.group.defaultBuild": "将此任务标记为默认生成任务。",
	"JsonSchema.tasks.group.defaultTest": "将此任务标记为默认测试任务。",
	"JsonSchema.tasks.group.build": "将此任务标记为可通过“运行生成任务”命令获取的生成任务。",
	"JsonSchema.tasks.group.test": "将此任务标记为可通过“运行测试任务”命令获取的测试任务。",
	"JsonSchema.tasks.group.none": "将任务分配为没有组",
	"JsonSchema.tasks.group": "定义此任务属于的执行组。它支持 \"build\" 以将其添加到生成组,也支持 \"test\" 以将其添加到测试组。",
	"JsonSchema.tasks.type": "定义任务是被作为进程运行还是在 shell 中作为命令运行。",
	"JsonSchema.commandArray": "执行的 Shell 命令。数组项将使用空格连接",
	"JsonSchema.command.quotedString.value": "实际命令值",
	"JsonSchema.tasks.quoting.escape": "使用 Shell 的转义字符来转义文本 (如,PowerShell 下的 ` 和 bash 下的 \\ )",
	"JsonSchema.tasks.quoting.strong": "使用 Shell 的强引用字符来引用参数 (如,在 PowerShell 和 bash 下的 \" )。",
	"JsonSchema.tasks.quoting.weak": "使用 Shell 的弱引用字符来引用参数 (如,在 PowerShell 和 bash 下的 ' )。",
	"JsonSchema.command.quotesString.quote": "如何引用命令值。",
	"JsonSchema.command": "要执行的命令。可以是外部程序或 shell 命令。",
	"JsonSchema.args.quotedString.value": "实际参数值",
	"JsonSchema.args.quotesString.quote": "如何引用参数值。",
	"JsonSchema.tasks.args": "在调用此任务时传递给命令的参数。",
	"JsonSchema.tasks.label": "任务的用户界面标签",
	"JsonSchema.version": "配置的版本号。",
	"JsonSchema.tasks.identifier": "用于在 launch.json 或 dependsOn 子句中引用任务的用户定义标识符。",
	"JsonSchema.tasks.taskLabel": "任务标签",
	"JsonSchema.tasks.taskName": "任务名称",
	"JsonSchema.tasks.taskName.deprecated": "任务的 name 属性已被弃用。请改为使用 label 属性。",
	"JsonSchema.tasks.background": "已执行的任务是否保持活动状态并在后台运行。",
	"JsonSchema.tasks.promptOnClose": "当 VS 代码与运行的任务一起关闭时是否提示用户。",
	"JsonSchema.tasks.matchers": "要使用的问题匹配程序。可以是字符串或问题匹配程序定义,或字符串和问题匹配程序数组。",
	"JsonSchema.customizations.customizes.type": "要自定义的任务类型",
	"JsonSchema.tasks.customize.deprecated": "customize 属性已被弃用。请参阅 1.14 发行说明了解如何迁移到新的任务自定义方法",
	"JsonSchema.tasks.showOputput.deprecated": "showOutput 属性已被弃用。请改为使用 presentation 属性内的 reveal 属性。另请参阅 1.14 发行说明。",
	"JsonSchema.tasks.echoCommand.deprecated": "isBuildCommand 属性已被弃用。请改为使用 presentation 属性内的 echo 属性。另请参阅 1.14 发行说明。",
	"JsonSchema.tasks.suppressTaskName.deprecated": "suppressTaskName 属性已被弃用。请改为在任务中内嵌命令及其参数。另请参阅 1.14 发行说明。",
	"JsonSchema.tasks.isBuildCommand.deprecated": "isBuildCommand 属性已被弃用。请改为使用 group 属性。另请参阅 1.14 发行说明。",
	"JsonSchema.tasks.isTestCommand.deprecated": "isTestCommand 属性已被弃用。请改为使用 group 属性。另请参阅 1.14 发行说明。",
	"JsonSchema.tasks.taskSelector.deprecated": "taskSelector 属性已被弃用。请改为在任务中内嵌命令及其参数。另请参阅 1.14 发行说明。",
	"JsonSchema.windows": "Windows 特定的命令配置",
	"JsonSchema.mac": "Mac 特定的命令配置",
	"JsonSchema.linux": "Linux 特定的命令配置"
}