Translation input.

This commit is contained in:
Dirk Baeumer 2016-03-18 21:59:11 +01:00
parent a0a22c8a51
commit 633c9d11a0
429 changed files with 2147 additions and 464 deletions

View file

@ -6,36 +6,36 @@
{
"schema.json": "使用架构描述 JSON 文件。参见 json-schema.org 了解详细信息。",
"schema.json.$schema": "验证此文档的架构",
"schema.json.additionalItems": "对于阵列,仅适用于项目被设置为一个阵列。如果是一个架构,则在项目阵列指定项目后,由此架构进行验证。如果为 false则其他项目将导致验证失败。",
"schema.json.additionalProperties": "是一个架构或者是一个布尔。如果是一个架构,则用于验证所有与 \"properties\" 或 \"patternProperties\" 不匹配的属性。如果为 false则任何与上述两者不匹配的属性都将导致此架构失败。",
"schema.json.allOf": "架构的阵列,所有必须匹配。",
"schema.json.anyOf": "架构的阵列,必须至少有一个匹配。",
"schema.json.additionalItems": "对于数组,仅适用于项目被设置为一个数组。如果是一个架构,则在项目数组指定项目后,由此架构进行验证。如果为 false则其他项目将导致验证失败。",
"schema.json.additionalProperties": "架构或布尔。如果是架构,则用于验证与 \"properties\" 或 \"patternProperties\" 不匹配的所有属性。如果是 false则与两者均不匹配的任何属性都将导致此架构失败。",
"schema.json.allOf": "架构的数组,全部都必须匹配。",
"schema.json.anyOf": "架构的数组,必须至少有一个匹配。",
"schema.json.default": "默认值。由建议使用。",
"schema.json.definitions": "不用于验证。将你希望使用 $ref 内嵌引用的子架构放在此处",
"schema.json.dependencies": "属性名称到属性名称阵列或架构的映射。属性名称阵列指的是密钥中的属性名称。这取决于为保证有效而显示在对象中的阵列中的属性。如果该值是一个架构,则该架构仅应用于该对象(如果密钥中的属性存在于对象上)。",
"schema.json.definitions": "不用于验证。将你希望使用 $ref 内嵌引用的子架构放在此处",
"schema.json.dependencies": "属性名称到属性名称数组或架构的映射。属性名称数组指的是键中的属性名称。这取决于为保证有效而显示在对象中的数组中的属性。如果该值是一个架构,则该架构仅应用于该对象(如果键中的属性存在于对象上)。",
"schema.json.description": "元素的详细描述。用于悬停菜单和建议。",
"schema.json.enum": "一组有效的文字值",
"schema.json.exclusiveMaximum": "使最大的属性成为专有属性。",
"schema.json.exclusiveMininum": "使最小的属性成为专有属性。",
"schema.json.format": "描述值预期格式。",
"schema.json.format": "描述值应采用的格式。",
"schema.json.id": "架构的唯一标识符。",
"schema.json.items": "用于阵列。可以是一个用于验证每个元素的架构,或按顺序验证每个项目的架构阵列(第一个架构将验证第一个元素,第二个架构将验证第二个元素,依此类推)。",
"schema.json.maxItems": "一个阵列内的项目的最大数量。包含。",
"schema.json.items": "用于数组。可以是一个用于验证每个元素的架构,或按顺序验证每个项目的架构数组(第一个架构将验证第一个元素,第二个架构将验证第二个元素,依此类推)。",
"schema.json.maxItems": "一个数组内可以包含的项目的最大数量。包含。",
"schema.json.maxLength": "字符串的最大长度。",
"schema.json.maxProperties": "一个对象可以拥有的属性的最大数量。包含。",
"schema.json.maximum": "最大数值,默认包含。",
"schema.json.minItems": "一个阵列内的项目的最小数量。包含。",
"schema.json.minItems": "一个数组内可以包含的项目的最小数量。包含。",
"schema.json.minLength": "字符串的最小长度。",
"schema.json.minProperties": "一个对象可以拥有的属性的最小数量。包含。",
"schema.json.minimum": "最小数值,默认包含。",
"schema.json.multipleOf": "一个可以除尽当前值的数字(即没有余数)",
"schema.json.multipleOf": "一个可以除尽当前值的数 (即,没有余数)",
"schema.json.not": "必须不能匹配的架构。",
"schema.json.oneOf": "架构的阵列,正好有一个必须匹配。",
"schema.json.oneOf": "架构的数组,正好有一个必须匹配。",
"schema.json.pattern": "匹配字符串的正则表达式。不是隐含固定的。",
"schema.json.patternProperties": "属性名称的正则表达式与架构的映射,用于匹配属性。",
"schema.json.properties": "属性名称与每个属性架构的映射。",
"schema.json.required": "字符串的阵列,列出了此对象需要的所有属性的名称。",
"schema.json.required": "字符串的数组,列出了此对象需要的所有属性的名称。",
"schema.json.title": "元素的描述性标题",
"schema.json.type": "一个基本架构类型(数字、整数、null、数组、对象、布尔值、字符串)的字符串或一个指定这些类型子集的字符串的阵列。",
"schema.json.uniqueItems": "阵列中所有项目是否必须唯一。默认为 false。"
"schema.json.type": "一个基本架构类型(数字、整数、null、数组、对象、布尔值、字符串)的字符串或一个指定这些类型子集的字符串的数组。",
"schema.json.uniqueItems": "数组中所有项目是否必须唯一。默认为 false。"
}

View file

@ -23,15 +23,15 @@
"UnexpectedEndOfComment": "意外的注释结尾",
"UnexpectedEndOfNumber": "意外的数字结尾",
"UnexpectedEndOfString": "意外的字符串结尾",
"ValueExpected": "预期的值",
"additionalItemsWarning": "根据架构,阵列项目过多。预期为 {0} 或更少",
"ValueExpected": "需要值",
"additionalItemsWarning": "根据架构,数组项目过多。预期为 {0} 或更少",
"enumWarning": "值不是一个可接受的值。有效值为: {0}",
"exclusiveMaximumWarning": "值超过了最大值 {0}(不含)",
"exclusiveMinimumWarning": "值低于最小值 {0}(不含)",
"maxItemsWarning": "阵列拥有的项目过多。预期为 {0} 或更少",
"maxItemsWarning": "数组拥有的项目过多。预期为 {0} 或更少",
"maxLengthWarning": "字符串短于最大长度 ",
"maximumWarning": "值超过了最大值 {0}",
"minItemsWarning": "阵列拥有的项目过少。预期为 {0} 或更多",
"minItemsWarning": "数组拥有的项目过少。预期为 {0} 或更多",
"minLengthWarning": "字符串短于最小长度 ",
"minimumWarning": "值低于最小值 {0}",
"multipleOfWarning": "值不能被 {0} 整除",
@ -40,5 +40,5 @@
"patternWarning": "字符串不匹配“{0}”的模式",
"typeArrayMismatchWarning": "错误类型。预期为 {0} 的一种",
"typeMismatchWarning": "错误类型。预期为“{0}”",
"uniqueItemsWarning": "阵列有重复的项目"
"uniqueItemsWarning": "数组有重复的项目"
}

View file

@ -0,0 +1,11 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"assocDescriptionFile": "将所有匹配其文件名内的 glob 模式的文件映像到具有给定 ID 的语言。",
"assocDescriptionPath": "将所有匹配其完整路径内的 glob 模式的文件映像到具有给定 ID 的语言。",
"assocLabelFile": "带扩展名的文件",
"assocLabelPath": "带路径的文件"
}

View file

@ -4,6 +4,6 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"noPHP": "无法验证 php 文件。找到 php 程序。使用 \"php.validate.executablePath\" 设置来配置 \"php\" 的位置",
"noPHP": "无法验证 php 文件。到 php 程序。使用 \"php.validate.executablePath\" 设置来配置 \"php\" 的位置",
"unknownReason": "使用路径运行 php 失败: {0}。原因未知。"
}

View file

@ -4,8 +4,8 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"noServerFound": "路径 {0} 指向有效的 tsserver 安装。将禁用 TypeScript 语言功能。",
"serverCouldNotBeStarted": "TypeScript 语言服务器不能启动。错误消息为: {0}",
"noServerFound": "路径 {0} 指向有效的 tsserver 安装。将禁用 TypeScript 语言功能。",
"serverCouldNotBeStarted": "无法启动 TypeScript 语言服务器。错误消息为: {0}",
"serverDied": "在过去 5 分钟内TypeScript 语言服务意外中止 5 次。请考虑启用 bug 报告。",
"serverDiedAfterStart": "TypeScript 语言服务在其启动后已中止 5 次。服务不会重启。请启用 bug 报告。"
}

View file

@ -0,0 +1,14 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"cmdCreate": "创建 jsconfig.json 文件...",
"hint.tooltip": "创建一个项目就可以获得更好的 IntelliSense、更好的符号搜索以及更多内容。",
"hintCreate": "创建一个项目,体验更好的 IntelliSense 和代码导航。",
"hintExclude": "“{0}” 属于大型项目。为了提高性能,排除包含许多文件的文件夹,例如: {1}...",
"large.label": "配置排除",
"large.tooltip": "一个项目中包含过多文件可能会导致糟糕的性能。排除具有很多文件的文件夹,例如: {0}...",
"open": "配置排除..."
}

View file

@ -5,8 +5,13 @@
// Do not edit this file. It is machine generated.
{
"altKey": "Alt",
"altKey.long": "Alt",
"cmdKey": "命令",
"cmdKey.long": "命令",
"ctrlKey": "Ctrl",
"ctrlKey.long": "控件",
"shiftKey": "Shift",
"windowsKey": "Windows"
"shiftKey.long": "Shift",
"windowsKey": "Windows",
"windowsKey.long": "Windows"
}

View file

@ -4,9 +4,11 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"acceptSuggestionOnEnter": "控制是否应接受建议 \"Enter\" (\"Tab\" 除外)。帮助避免“插入新行”或“接受建议”之间的歧义。",
"autoClosingBrackets": "控制编辑器是否应在打开括号后自动将其关闭",
"cursorBlinking": "控制光标闪烁动画,接受的值为“闪烁”、“可见”和“隐藏”",
"cursorStyle": "控制光标样式,接受的值为“块”和“行”",
"detectIndentation": "当打开文件时,将基于文件内容检测 \"editor.tabSize\" 和 \"editor.insertSpaces\"。",
"editorConfigurationTitle": "编辑器配置",
"folding": "控制编辑器是否启用代码折叠",
"fontFamily": "控制字体系列。",
@ -16,7 +18,8 @@
"glyphMargin": "控制字形边距的可见性",
"hideCursorInOverviewRuler": "控制光标是否应隐藏在概述标尺中。",
"ignoreTrimWhitespace": "控制差异编辑器是否将对前导空格或尾随空格的更改显示为差异",
"insertSpaces": "控制编辑器是否将为选项卡插入空格。接受的值:“自动”、true、false。如果设置为“自动”则会在打开文件时猜测值。",
"insertSpaces": "按 \"Tab\" 时插入空格。",
"insertSpaces.errorMessage": "应为 \"boolean\"。注意,值 \"auto\" 已由 \"editor.detectIndentation\" 设置替换。",
"lineHeight": "控制行高。",
"lineNumbers": "控制行号的可见性",
"mouseWheelScrollSensitivity": "要对鼠标滚轮滚动事件的 \"deltaX\" 和 \"deltaY\" 使用的乘数 ",
@ -31,7 +34,8 @@
"selectionHighlight": "控制编辑器是否应突出显示选项的近似匹配",
"sideBySide": "控制差异编辑器是否显示并行差异或内联差异",
"suggestOnTriggerCharacters": "控制键入触发器字符时是否应自动显示建议",
"tabSize": "控制选项卡的呈现大小(以字符为单位)。接受的值:“自动”、2、4、6 等。如果设置为“自动”,则会在打开文件时猜测值。",
"tabSize": "一个选项卡等于的空格数。",
"tabSize.errorMessage": "应为 \"number\"。注意值“auto”已由 \"editor.detectIndentation\" 设置替换。",
"wordSeparators": "执行文字相关的导航或操作时将用作文字分隔符的字符",
"wrappingColumn": "控制在多少个字符后编辑器会自动换到下一行。将其设置为 0 则将打开视区宽度换行 ",
"wrappingIndent": "控制换行的行的缩进。可以是“无”、“相同”或“缩进”。"

View file

@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"invalid": "无效的“contributes.{0}”。应为阵列。",
"invalid": "无效的“contributes.{0}”。应为数组。",
"invalid.empty": "“contributes.{0}”的值为空",
"opt.aliases": "属性“{0}”可以省略,其类型必须是 \"string[]\"",
"opt.configuration": "属性“{0}”可以省略,其类型必须是“字符串”",

View file

@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"indentAutoMigrate": "请更新设置: \"editor.detectIndentation\" 替换 \"editor.tabSize\": \"auto\" 或 \"editor.insertSpaces\": \"auto\""
}

View file

@ -7,6 +7,6 @@
"DefineKeybindingAction": "定义键绑定",
"defineKeybinding.initial": "按所需组合键,然后按 ENTER",
"defineKeybinding.kbLayoutErrorMessage": "在当前键盘布局下无法生成此组合键。",
"defineKeybinding.kbLayoutInfoMessage": "对于当前键盘布局,按",
"defineKeybinding.kbLayoutInfoMessage": "对于当前键盘布局,按 ",
"defineKeybinding.start": "定义键绑定"
}

View file

@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"label.closeButton": "关闭 ",
"label.closeButton": "关闭",
"label.find": "查找",
"label.matchesLocation": "第 {0} 个(共 {1} 个)",
"label.nextMatchButton": "下一个匹配",

View file

@ -6,6 +6,11 @@
{
"foldAction.label": "折叠",
"foldAllAction.label": "全部折叠",
"foldLevel1Action.label": "折叠级别 1",
"foldLevel2Action.label": "折叠级别 2",
"foldLevel3Action.label": "折叠级别 3",
"foldLevel4Action.label": "折叠级别 4",
"foldLevel5Action.label": "折叠级别 5",
"unfoldAction.label": "展开",
"unfoldAllAction.label": "全部展开"
}

View file

@ -4,9 +4,12 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"changeIndentationSize": "更改当前文件的制表符大小",
"configuredTabSize": "已配置制表符大小",
"detectIndentation": "检查内容中的缩进",
"indentUsingSpaces": "使用空格的缩进",
"indentUsingTabs": "使用 \"Tab\" 的缩进",
"indentationToSpaces": "将缩进转换为空白",
"indentationToTabs": "将缩进转换为制表符",
"selectTabWidth": "选择当前文件的制表符大小"
"selectTabWidth": "选择当前文件的制表符大小",
"toggleRenderWhitespace": "切换呈现空格"
}

View file

@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"hint": "{0},提示"
}

View file

@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"renameAriaLabel": "重命名输入。键入新名称并按 \"Enter\" 提交。"
}

View file

@ -4,8 +4,13 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"ariaCurrentSuggestion": "{0},建议",
"ariaCurrentSuggestionWithDetails": "{0}(建议)具有详细信息",
"goback": "返回",
"readMore": "阅读更多...{0}",
"suggestWidget.loading": "正在加载...",
"suggestWidget.noSuggestions": "无建议。"
"suggestWidget.noSuggestions": "无建议。",
"suggestionAriaAccepted": "{0},已接受",
"suggestionAriaLabel": "{0},建议",
"suggestionWithDetailsAriaLabel": "{0}(建议)具有详细信息"
}

View file

@ -56,6 +56,39 @@
"tags.img": "img 元素表示图像。",
"tags.input": "input 元素表示键入的数据字段,通常带有允许用户编辑数据的表单控件。",
"tags.ins": "ins 元素表示添加到文档中。",
"tags.ion.checkbox": "该复选框与 HTML 复选框相比没什么不同,除了它的样式不一样。该复选框的行为类似于任何 AngularJS 复选框。",
"tags.ion.content": "ionContent 指令提供易于使用的内容区域,该区域可配置为使用 Ionic 的自定义滚动视图,或浏览器的内置溢出滚动。",
"tags.ion.deletebutton": "ionItem 的子级",
"tags.ion.footerbar": "在某些内容下方添加固定页脚栏。如果使用了”栏-子页脚“,也可以添加子页脚(位置略高)。",
"tags.ion.headerbar": "在某些内容上方添加固定标题栏。如果使用了”栏-副标题“,也可以添加副标题(位置稍低)。",
"tags.ion.infinitescroll": "ionContent 或 ionScrol 的子级。ionInfiniteScroll 指令允许你在用户到达页面的底部或邻近页面底部的任何时候调用函数。",
"tags.ion.input": "ionInput 仅供文本类型输入。Ionic 使用组件内的实际 <input type=\"text\"> HTML 元素,换行 Ionic 以更好地处理用户体验和交互性。 ",
"tags.ion.item": "ionList 的子级。",
"tags.ion.list": "该列表几乎在任何移动应用中都是被广泛使用的界面元素,并且内容范围可以涵盖从基本的文本到按钮、切换组件、图标以及缩略图。",
"tags.ion.modalview": "Modal 是一个内容窗格,可以临时查看用户的主视图。通常用于做出选择或编辑项。",
"tags.ion.navbackbutton": "ionNavBar 的子级。 在 ionNavBar 内创建一个返回按钮。该按钮在用户在当前导航堆栈能够返回时出现。",
"tags.ion.navbar": "如果你有 ionNavView 指令,你也可以创建 <ion-nav-bar>,它将创建随着应用程序状态改变而更新的 topbar。",
"tags.ion.navbuttons": "ionNavView 的子级。使用 ionNavButtons 设置来自 ionView 内部的 ionNavBar 上的按钮。",
"tags.ion.navtitle": "ionNavView 的子级。ionNavTitle 指令用于将 ionNavBar 标题文本替换为 ionView 模板中的自定义 HTML。",
"tags.ion.navview": "ionNavView 指令用于呈现你的应用程序中的模板。每个模板属于状态的一部分。状态通常映射到 URL并且使用 angular-ui-router 以编程方式进行定义。",
"tags.ion.optionbutton": "ionItem 的子级。在列表项内创建一个选项按钮,该按钮在用户向左滑动项时可见。",
"tags.ion.pane": "一个适应内容的简单容器,没有副作用。将”窗格“类添加到该元素。",
"tags.ion.popoverview": "Popover 是浮动在应用内容上方的视图。Popover 为呈现或收集用户信息提供了一个简单的方式。",
"tags.ion.radio": "radio ionRirective 与 HTML radio 输入相比没什么不同除了它的样式不一样。ionRadio 的行为类似于 AngularJS radio 输入。",
"tags.ion.refresher": "ionContent 或 ionScrol 的子级。允许你将 “下拉以刷新”添加到 \"scrollView\"。将其放置为你的 ionContent 或 ionScroll 元素的第一个子级。",
"tags.ion.reorderbutton": "ionItem 的子级。",
"tags.ion.scroll": "为所有内部内容创建可滚动容器。",
"tags.ion.sidemenu": "ionSideMenus 的子级。用于存放侧菜单的容器,是 ionSideMenuContent 指令的同级。",
"tags.ion.sidemenucontent": "ionSideMenus 的子级。用于存放主要可见内容的容器,是一个或多个 ionSideMenu 指令的同级。",
"tags.ion.sidemenus": "侧菜单的容器元素和主要内容。允许将主要内容区从一侧拖动到另一侧来切换左侧和/或右侧菜单。",
"tags.ion.slide": "ionSlideBox 的子级。显示幻灯片盒内的幻灯片。",
"tags.ion.slidebox": "Slide Box (幻灯片盒)是一个多页容器,其中每一页都可相互之间进行滑动或拖动。",
"tags.ion.spinner": "ionSpinner 指令提供各种动态微调框。",
"tags.ion.tab": "ionTabs 的子级。包含表的内容。 该内容仅在给定的表已选定时存在。",
"tags.ion.tabs": "支持多标签界面,该界面包含标签栏和一组可以通过标签浏览的”页面“。",
"tags.ion.title": "ion-title 是设置 ionNavbar 的磁贴的组件",
"tags.ion.toggle": "切换是将给定的模型绑定到布尔的动画开关。允许拖动开关中心。另外,切换的行为类似于任何 AngularJS 复选框。",
"tags.ion.view": "ionNavView 的子级。用于存放视图内容以及任何可导航信息和标题栏信息的容器。",
"tags.kbd": "kbd 元素表示用户输入(通常是键盘输入,尽管该元素可能还用于表示语音命令等其他输入)。",
"tags.label": "label 元素表示用户界面中的标题。该标题可与特定表单控件(称为 label 元素的标记控件)关联,方法是使用 for 属性,或将表单控件放在 label 元素自身内。",
"tags.legend": "legend 元素表示该 legend 元素的父 fieldset 元素(如果有)的其余内容的标题。",

View file

@ -3,4 +3,9 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{}
{
"activationError": "激活扩展“{0}”失败: {1}。",
"failedDep1": "无法激活扩展”{1}“。原因: 无法激活依赖关系”{0}“。",
"failedDep2": "无法激活扩展”{0}“。原因: 依赖关系多于 10 级(最可能是依赖关系循环)。",
"unknownDep": "无法激活扩展”{1}“。原因:未知依赖关系”{0}“。"
}

View file

@ -3,4 +3,27 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{}
{
"extensionDescription.activationEvents1": "属性“{0}”可以省略或其类型必须是 \"string[]\"",
"extensionDescription.activationEvents2": "必须同时指定或同时省略属性”{0}“和”{1}“",
"extensionDescription.empty": "已获得空扩展说明",
"extensionDescription.engines": "属性”{0}“为必需且其类型必须为 \"object\"",
"extensionDescription.engines.vscode": "属性“{0}”是必需的,其类型必须是“字符串”",
"extensionDescription.extensionDependencies": "属性“{0}”可以省略或其类型必须是 \"string[]\"",
"extensionDescription.main1": "属性“{0}”可以省略,或者其类型必须是“字符串”",
"extensionDescription.main2": "应在扩展文件夹({1})中包含 \"main\" ({0})。这可能会使扩展不可移植。",
"extensionDescription.main3": "必须同时指定或同时省略属性”{0}“和”{1}“",
"extensionDescription.name": "属性“{0}”是必需的,其类型必须是“字符串”",
"extensionDescription.publisher": "属性“{0}”是必需的,其类型必须是“字符串”",
"extensionDescription.version": "属性“{0}”是必需的,其类型必须是“字符串”",
"vscode.extension.activationEvents": "VS Code 扩展的激活事件。",
"vscode.extension.categories": "VS Code 库用于对扩展进行分类的类别。",
"vscode.extension.contributes": "由此包表示的 VS Code 扩展的所有贡献。",
"vscode.extension.displayName": "VS Code 库中使用的扩展的显示名称。",
"vscode.extension.extensionDependencies": "其他扩展的依赖关系。扩展的 ID 始终是 ${publisher}.${name}。例如: vscode.csharp。",
"vscode.extension.galleryBanner": "VS Code 商城使用的横幅。",
"vscode.extension.galleryBanner.color": "VS Code 商城页标题上的横幅颜色。",
"vscode.extension.galleryBanner.theme": "横幅中使用的字体颜色主题。",
"vscode.extension.publisher": "VS Code 扩展的发布服务器。",
"vscode.extension.scripts.prepublish": "包作为 VS Code 扩展发布前执行的脚本。"
}

View file

@ -3,4 +3,10 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{}
{
"notSemver": "扩展版本与 semver 不兼容。",
"versionMismatch": "扩展与 Code {0} 不兼容。扩展需要: {1}。",
"versionSpecificity1": "\"engines.vscode\" ({0}) 中指定的版本不够具体。对于 1.0.0 之前的 vscode 版本,请至少定义主要和次要想要的版本。例如: ^0.10.0、0.10.x、0.11.0 等。",
"versionSpecificity2": "\"engines.vscode\" ({0}) 中指定的版本不够具体。对于 1.0.0 之后的 vscode 版本,请至少定义主要想要的版本。例如: ^1.10.0、1.10.x、1.x.x、2.x.x 等。",
"versionSyntax": "无法分析 \"engines.vscode\" 值 {0}。例如请使用: ^0.10.0、^1.2.3、^0.11.0、^0.10.x 等。"
}

View file

@ -6,36 +6,36 @@
{
"schema.json": "使用架构描述 JSON 文件。参见 json-schema.org 了解详细信息。",
"schema.json.$schema": "验证此文档的架构",
"schema.json.additionalItems": "用于阵列,仅适用于项目被设置为阵列时。如果是一个架构,则在项目阵列指定项目后,由此架构进行验证。如果为 false则其他项目将导致验证失败。",
"schema.json.additionalItems": "对于数组,仅适用于项目被设置为一个数组。如果是一个架构,则在项目数组指定项目后,由此架构进行验证。如果为 false则其他项目将导致验证失败。",
"schema.json.additionalProperties": "架构或布尔。如果是架构,则将用于验证与 \"properties\" 或 \"patternProperties\" 不匹配的所有属性。如果是 false则与两者均不匹配的任何属性都将导致此架构失败。",
"schema.json.allOf": "架构的阵列,全部都必须匹配。",
"schema.json.anyOf": "架构的阵列,必须至少有一个匹配。",
"schema.json.allOf": "架构的数组,全部都必须匹配。",
"schema.json.anyOf": "架构的数组,必须至少有一个匹配。",
"schema.json.default": "默认值。由建议使用。",
"schema.json.definitions": "不用于验证。将你希望使用 $ref 内联引用的子架构放在此处。",
"schema.json.dependencies": "属性名称到属性名称阵列或架构的映射。属性名称阵列指的是命名的关键属性,具体取决于为保证有效将显示在对象中的阵列中的属性。如果该值是一个架构,则在关键属性存在于对象上时,该架构仅应用于对象。",
"schema.json.definitions": "不用于验证。将你希望使用 $ref 内嵌引用的子架构放在此处",
"schema.json.dependencies": "属性名称到属性名称数组或架构的映射。属性名称数组指的是键中的属性名称。这取决于为保证有效而显示在对象中的数组中的属性。如果该值是一个架构,则该架构仅应用于该对象(如果键中的属性存在于对象上)。",
"schema.json.description": "元素的详细描述。用于悬停菜单和建议。",
"schema.json.enum": "一组有效的文字值",
"schema.json.exclusiveMaximum": "使最大的属性成为专有属性。",
"schema.json.exclusiveMininum": "使最小的属性成为专有属性。",
"schema.json.format": "描述值应采用的格式。",
"schema.json.id": "架构的唯一标识符。",
"schema.json.items": "用于阵列。可以是一个用于验证每个元素的架构,或是按顺序验证每个项目的架构阵列 (第一个架构将验证第一个元素,第二个架构将验证第二个元素,依此类推)。",
"schema.json.maxItems": "一个阵列内可以包含的项目的最大数量。包含。",
"schema.json.maxLength": "字符串最大长度。",
"schema.json.items": "用于数组。可以是一个用于验证每个元素的架构,或按顺序验证每个项目的架构数组(第一个架构将验证第一个元素,第二个架构将验证第二个元素,依此类推)。",
"schema.json.maxItems": "一个数组内可以包含的项目的最大数量。包含。",
"schema.json.maxLength": "字符串最大长度。",
"schema.json.maxProperties": "一个对象可以拥有的属性的最大数量。包含。",
"schema.json.maximum": "最大数值,默认包含。",
"schema.json.minItems": "一个阵列内可以包含的项目的最小数量。包含。",
"schema.json.minLength": "一个字符串的最小长度。",
"schema.json.minItems": "一个数组内可以包含的项目的最小数量。包含。",
"schema.json.minLength": "字符串的最小长度。",
"schema.json.minProperties": "一个对象可以拥有的属性的最小数量。包含。",
"schema.json.minimum": "最小数值,默认包含。",
"schema.json.multipleOf": "一个可以除尽当前值的数 (即,没有余数)",
"schema.json.not": "必须不能匹配的架构。",
"schema.json.oneOf": "架构的阵列,正好有一个必须匹配。",
"schema.json.oneOf": "架构的数组,正好有一个必须匹配。",
"schema.json.pattern": "匹配字符串的正则表达式。不是隐含固定的。",
"schema.json.patternProperties": "属性名称的正则表达式与架构的映射,用于匹配属性。",
"schema.json.properties": "属性名称与每个属性架构的映射。",
"schema.json.required": "字符串的阵列,这些字符串列出了此对象需要的所有属性的名字。",
"schema.json.required": "字符串的数组,列出了此对象需要的所有属性的名称。",
"schema.json.title": "元素的描述性标题",
"schema.json.type": "一个基本架构类型(数字、整数、null、阵列、对象、布尔值、字符串)的字符串或一个指定这些类型子集的字符串阵列。",
"schema.json.uniqueItems": "阵列中所有项目是否必须唯一。默认为 false。"
"schema.json.type": "一个基本架构类型(数字、整数、null、数组、对象、布尔值、字符串)的字符串或一个指定这些类型子集的字符串的数组。",
"schema.json.uniqueItems": "数组中所有项目是否必须唯一。默认为 false。"
}

View file

@ -8,7 +8,7 @@
"contributes.jsonValidation.fileMatch": "要匹配的文件模式,例如 \"package.json\" 或 \"*.launch\"。",
"contributes.jsonValidation.url": "到扩展文件夹('./')的架构 URL (\"http:\"、\"https:\")或相对路径。",
"invalid.fileMatch": "必须定义 \"configuration.jsonValidation.fileMatch\" ",
"invalid.jsonValidation": "configuration.jsonValidation 必须是阵列",
"invalid.jsonValidation": "configuration.jsonValidation 必须是数组",
"invalid.url": "configuration.jsonValidation.url 必须是 URL 或相对路径",
"invalid.url.fileschema": "configuration.jsonValidation.url 是无效的相对 URL: {0}",
"invalid.url.schema": "configuration.jsonValidation.url 必须以 \"http:\"、\"https:\" 或 \"./\" 开头以引用位于扩展中的架构。"

View file

@ -12,6 +12,7 @@
"emptySettingsHeader": "将设置放入此文件中以覆盖默认设置",
"emptySettingsHeader1": "将设置放入此文件中以覆盖默认值和用户设置。",
"fail.createSettings": "无法创建“{0}”({1})。",
"neverShowAgain": "不再显示",
"openFolderFirst": "首先打开文件夹以创建工作区设置",
"openGlobalKeybindings": "打开键盘快捷方式",
"openGlobalSettings": "打开用户设置",

View file

@ -9,17 +9,24 @@
"changeEndOfLine": "更改行尾序列",
"changeIndentation": "更改缩进",
"changeMode": "更改语言模式",
"defaultEncoding": "默认编码",
"configureAssociations": "配置文件关联...",
"configureAssociationsExt": "“{0}”的配置文件关联...",
"configuredLanguage": "已配置语言",
"defaultEncoding": "配置的编码",
"disableTabMode": "禁用辅助功能模式",
"endOfLineCarriageReturnLineFeed": "CRLF",
"endOfLineLineFeed": "LF",
"gotoLine": "转到行",
"indentConvert": "转换文件",
"indentView": "更改视图",
"indentation": "缩进",
"languagesPicks": "语言",
"multiSelection": "{0} 选择",
"multiSelectionRange": "{0} 选择(已选择 {1} 个字符)",
"noEditor": "此时没有处于活动状态的文本编辑器",
"noFileEditor": "此时无活动文件",
"noWritableCodeEditor": "活动代码编辑器为只读模式。",
"persistFileAssociations": "你可以将文件名配置为从 **files.associations** 部分的语言关联。",
"pickAction": "选择操作",
"pickEncodingForReopen": "选择文件编码以重新打开文件",
"pickEncodingForSave": "选择用于保存的文件编码",

View file

@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"compareLabels": "{0} ↔ {1}"
}

View file

@ -12,7 +12,7 @@
"changeNow": "立即更改",
"continue": "继续",
"editFile": "编辑“{0}”",
"exists": "请删除“{1}”中的别名“{0}”,然后重试此操作。",
"exists": "请删除“{1}”中的别名引用“{0}”,然后重试此操作。",
"install": "在 PATH 中安装 \"code\" 命令",
"later": "稍后",
"laterInfo": "请记住,你始终可以从命令面板运行“{0}”操作。",

View file

@ -4,8 +4,6 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"autoSaveError": "无法写入设置。请将 **files.autoSave: \"afterDelay\"** 添加到 settings.json。",
"autoSaveInfo": "已启用的 **File | Auto Save** 菜单选项已成为值为 **afterDelay** 的 **files.autoSave** 设置。",
"copy": "复制",
"cut": "剪切",
"paste": "粘贴",

View file

@ -77,6 +77,7 @@
"miToggleMenuBar": "切换菜单栏(&&B)",
"miToggleOutput": "切换输出(&&O)",
"miTogglePanel": "切换面板(&&P)",
"miToggleRenderWhitespace": "切换呈现空格(&&R)",
"miToggleSidebar": "切换侧边栏(&&T)",
"miToggleWordWrap": "切换自动换行(&&W)",
"miTwitter": "在 Twitter 上加入我们(&&J)",

View file

@ -9,6 +9,7 @@
"appStalled": "窗口不再响应",
"appStalledDetail": "可以重新打开或关闭窗,或者保持等待。",
"close": "关闭",
"hiddenMenuBar": "你仍可以通过按 **Alt** 键访问菜单栏。",
"ok": "确定",
"pathNotExistDetail": "磁盘上似乎不再存在路径“{0}”。",
"pathNotExistTitle": "路径不存在",

View file

@ -3,4 +3,6 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{}
{
"extensionTestError": "路径 {0} 未指向有效的扩展测试运行程序。"
}

View file

@ -29,6 +29,7 @@
"renameFunctionBreakpoint": "重命名函数断点",
"renameWatchExpression": "重命名表达式",
"restartDebug": "重启",
"run": "运行",
"selectConfig": "选择配置",
"startDebug": "开始",
"stepIntoDebug": "单步调试",

View file

@ -5,7 +5,7 @@
// Do not edit this file. It is machine generated.
{
"DebugTaskNotFound": "找不到 preLaunchTask“{0}”。",
"NewLaunchConfig": "请设置启动配置文件以调试应用程序。",
"NewLaunchConfig": "请设置应用程序的启动配置文件。",
"continue": "继续",
"debugAdapterCrash": "调试适配器进程已意外终止",
"debugNoThread": "未从 ID 为 {0} 的调试适配器获取线程。",

View file

@ -10,7 +10,7 @@
"app.launch.json.version": "此文件格式的版本。",
"debugNoType": "不可省略调试适配器“类型”,其类型必须是“字符串”。",
"duplicateDebuggerType": "调试类型“{0}”已注册,且具有属性“{1}”,正在忽略属性“{1}”。",
"selectDebug": "选择调试环境",
"selectDebug": "选择环境",
"vscode.extension.contributes.debuggers": "用于调试适配器。",
"vscode.extension.contributes.debuggers.args": "要传递给适配器的可选参数。",
"vscode.extension.contributes.debuggers.configurationAttributes": "用于验证 \"launch.json\" 的 JSON 架构配置。",

View file

@ -6,6 +6,7 @@
{
"debugAdapterBinNotFound": "路径 {0} 上找不到 DebugAdapter bin 文件夹。",
"debugAdapterCrash": "调试适配器进程已意外终止",
"moreInfo": "详细信息",
"noDebugAdapterExtensionInstalled": "没有为“{0}”调试安装扩展。",
"stoppingDebugAdapter": "{0}。正在停止调试适配器。",
"unableToLaunchDebugAdapter": "无法从 {0} 启动调试适配器。"

View file

@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"extensionsCategory": "扩展"
}

View file

@ -8,7 +8,7 @@
"installExtension": "安装扩展",
"restartNow": "立即重启",
"restartNow2": "立即重启",
"showExtensionTips": "显示扩展提示",
"showExtensionRecommendations": "显示扩展建议",
"showInstalledExtensions": "显示已安装扩展",
"showOutdatedExtensions": "显示过时扩展",
"success-installed": "已成功安装“{0}”。请重启以启用它。",

View file

@ -18,7 +18,7 @@
"noExtensionsInstalled": "找不到扩展",
"noExtensionsToInstall": "找不到扩展",
"noOutdatedExtensions": "找不到过时扩展",
"noSuggestedExtensions": "没有建议的扩展",
"noRecommendedExtensions": "没有推荐的扩展",
"nowInstalling": "正在安装“{0}”...",
"outdatedExtensionsHandlerAriaLabel": "键入以缩小过时扩展列表的范围",
"readme": "自述文件",

View file

@ -4,8 +4,11 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"extension": "扩展",
"issue": "问题",
"issues": "问题",
"extensions": "扩展",
"extensionsInstalling": "扩展(正在安装 {0}...)",
"multipleIssues": "扩展({0} 个问题)",
"multipleUpdates": "扩展({0} 个可用更新)",
"oneIssue": "扩展(1 个问题)",
"oneUpdate": "扩展(1 个可用更新)",
"uninstall": "卸载"
}

View file

@ -4,12 +4,11 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"extensionsCategory": "扩展",
"galleryExtensionsCommands": "安装库扩展",
"localExtensionsCommands": "显示本地扩展",
"outdatedExtensionsCommands": "更新过时扩展",
"reloadNow": "立即重启",
"success": "已成功安装扩展,请重启以启用它们。",
"successSingle": "已成功安装 {0} 。请重启以启用它。",
"suggestedExtensionsCommands": "显示扩展提示"
"suggestedExtensionsCommands": "显示扩展建议"
}

View file

@ -12,7 +12,6 @@
"closeOtherFiles": "关闭其他文件",
"closeOtherLabel": "关闭其他文件",
"compareFiles": "比较文件",
"compareLabels": "{0} ↔ {1}",
"compareSource": "选择以进行比较",
"compareWith": "与“{0}”比较",
"confirmDeleteMessageFile": "是否确定要永久删除“{0}”?",

View file

@ -4,6 +4,7 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"associations": "配置语言的文件关联(如: \"*.extension\": \"html\")。这些关联的优先级高于已安装语言的默认关联。",
"autoSave": "控制已更新文件的自动保存。接受的值:“{0}”、“{1}”、“{2}”。如果设置为“{3}”,则可在 \"files.autoSaveDelay\" 中配置延迟。",
"autoSaveDelay": "控制延迟(以秒为单位),在该延迟后将自动保存更新后的文件。仅在 \"files.autoSave\" 设置为“{0}”时适用。",
"binaryFileEditor": "二进制文件编辑器",
@ -23,5 +24,6 @@
"textFileEditor": "文本文件编辑器",
"trimTrailingWhitespace": "启用后,将在保存文件时剪裁尾随空格。",
"view": "查看",
"watcherExclude": "配置文件路径的 glob 模式以从文件监视排除。更改此设置要求重启。如果在启动时遇到 Code 消耗大量 CPU 时间,则可以排除大型文件夹以减少初始加载。",
"workingFilesPicker": "按名称打开工作文档"
}

View file

@ -6,6 +6,7 @@
{
"git": "GIT",
"openChange": "打开更改",
"openFile": "打开文件",
"openInEditor": "切换到编辑器视图",
"stageSelectedLines": "暂存选定行",
"switchToChangesView": "切换到更改视图"

View file

@ -9,6 +9,7 @@
"canNotRun": "无法从此处运行命令“{0}”。",
"commandLabel": "{0}: {1}",
"entryAriaLabel": "{0},命令",
"entryAriaLabelWithKey": "{0}、{1} ,命令",
"noCommandsMatching": "没有匹配的命令",
"showTriggerActions": "显示所有命令"
}

View file

@ -5,7 +5,7 @@
// Do not edit this file. It is machine generated.
{
"_constructor": "构造函数({0})",
"array": "阵列({0})",
"array": "数组({0})",
"boolean": "布尔值({0})",
"cannotRunGotoSymbol": "首先打开文本文件以转到符号",
"cannotRunGotoSymbolInFile": "很遗憾,我们没有该文件的任何符号信息",
@ -17,7 +17,7 @@
"gotoSymbol": "转到符号...",
"gotoSymbolHandlerAriaLabel": "键入以减少当前活动编辑器的符号",
"interface": "接口({0})",
"key": "密钥({0})",
"key": "({0})",
"method": "方法({0})",
"modules": "模块({0})",
"namespace": "命名空间({0})",

View file

@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"exclude": "配置全局模式以在搜索中排除文件和文件夹。从 file.exclude 设置中继承所有 glob 模式。",
"exclude": "配置 glob 模式以在搜索中排除文件和文件夹。从 file.exclude 设置中继承所有 glob 模式。",
"exclude.boolean": "匹配文件路径所依据的 glob 模式。设置为 true 或 false 可启用或禁用该模式。",
"exclude.when": "对匹配文件的同级文件的其他检查。使用 $(basename) 作为匹配文件名的变量。",
"findInFolder": "在文件夹中查找",

View file

@ -29,7 +29,7 @@
"noResultsIncludes": "“{0}”中未找到任何结果 - ",
"noResultsIncludesExcludes": "在“{0}”中找不到结果(“{1}”除外) - ",
"openSettings.message": "打开设置",
"patternDescription": "使用全局模式",
"patternDescription": "使用 Glob 模式",
"patternHelpInclude": "要匹配的模式。例如,****/*.js** 与所有 JavaScript 文件匹配,或 **myFolder/**** 与包含所有子级的文件夹匹配。\n\n**Reference**:\n***** 匹配 0 个或更多字符\n**?** 匹配 1 个字符\n****** 匹配零个或更多目录\n**[a-z]** 匹配一系列字符\n**{a,b}** 匹配任何一种模式)",
"regexp.validationFailure": "表达式与所有内容相匹配",
"rerunSearch.message": "再次搜索",

View file

@ -0,0 +1,16 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"dotnetBuild": "创建用于使用 dotnet 生成编译的 tasks.json 文件。",
"grunt": "为 Grunt 创建一个 tasks.json 文件。如果存在 jake 文件,则将自动检测任务。",
"gulp": "为 Grunt 创建一个 tasks.json 文件。如果存在 jake 文件,则将自动检测任务。",
"jake": "为 Jake 创建一个 tasks.json 文件。如果存在 jake 文件,则将自动检测任务。",
"msbuild": "创建用于使用 msbuild 编译的 tasks.json 文件。",
"tsc.config": "创建用于编译 TypeScript 项目的 tasks.json 文件。",
"tsc.openFile": "创建用于编译当前打开的 TypeScript 文件的 tasks.json 文件。",
"tsc.specificFile": "创建用于编译特定的 TypeScript 文件的 tasks.json 文件。",
"tsc.watch": "创建用于编译观看模式的 TypeScript 文件的 tasks.json 文件。"
}

View file

@ -7,7 +7,7 @@
"BuildAction.label": "运行生成任务",
"CleanAction.label": "运行清理任务",
"CloseMessageAction.label": "关闭",
"ConfigureTaskRunnerAction.autoDetect": "自动检测任务系统失败。查看任务输出了解详细信息",
"ConfigureTaskRunnerAction.autoDetect": "自动检测系统任务失败。请使用默认模板。有关详细信息,请参阅任务输出。",
"ConfigureTaskRunnerAction.failed": "无法在 \".vscode\" 文件夹中创建 \"tasks.json\" 文件。查看任务输出了解详细信息。",
"ConfigureTaskRunnerAction.label": "配置任务运行程序",
"JsonSchema.args": "传递到命令的其他参数。",
@ -15,7 +15,7 @@
"JsonSchema.echoCommand": "控制是否将已执行的命令回显到输出。默认值为 false。",
"JsonSchema.linux": "Linux 特定的生成配置",
"JsonSchema.mac": "Mac 特定的生成配置",
"JsonSchema.matchers": "要使用的问题匹配程序。可以是字符串或问题匹配程序定义,或字符串和问题匹配程序阵列。",
"JsonSchema.matchers": "要使用的问题匹配程序。可以是字符串或问题匹配程序定义,或字符串和问题匹配程序数组。",
"JsonSchema.options": "其他命令选项",
"JsonSchema.options.cwd": "已执行程序或脚本的当前工作目录。如果省略,则使用代码的当前工作区根。",
"JsonSchema.options.env": "已执行程序或 shell 的环境。如果省略,则使用父进程的环境。",
@ -35,7 +35,7 @@
"JsonSchema.problemMatcher.fileLocation": "定义应如何解释问题模式中报告的文件名。",
"JsonSchema.problemMatcher.owner": "代码内问题的所有者。如果指定了基准,则可省略。如果省略,并且未指定基准,则默认值为“外部”。",
"JsonSchema.problemMatcher.pattern": "问题模式或预定义问题模式的名称。如果指定了基准,则可以省略。",
"JsonSchema.problemMatcher.severity": "捕获问题的默认严重性。如果模式未定义严重性的匹配组,则使用 \"Is\"。",
"JsonSchema.problemMatcher.severity": "捕获问题的默认严重性。如果模式未定义严重性的匹配组,则使用。",
"JsonSchema.problemMatcher.watchedBegin": "一个正则表达式,发出受监视任务开始执行(通过文件监视触发)的信号。",
"JsonSchema.problemMatcher.watchedEnd": "一个正则表达式,发出受监视任务结束执行的信号。",
"JsonSchema.problemMatcher.watching.activeOnStart": "如果设置为 true则当任务开始时观察程序处于活动模式。这相当于发出与 beginPattern 匹配的行。",
@ -49,7 +49,7 @@
"JsonSchema.tasks": "任务配置。通常是外部任务运行程序中已定义任务的扩充。",
"JsonSchema.tasks.args": "造调用此任务时传递给命令的其他参数。",
"JsonSchema.tasks.build": "将此任务映射到代码的默认生成命令。",
"JsonSchema.tasks.matchers": "要使用的问题匹配程序。可以是字符串或问题匹配程序定义,或字符串和问题匹配程序阵列。",
"JsonSchema.tasks.matchers": "要使用的问题匹配程序。可以是字符串或问题匹配程序定义,或字符串和问题匹配程序数组。",
"JsonSchema.tasks.showOutput": "控制是否显示正在运行的任务的输出。如果省略,则使用全局定义的值。",
"JsonSchema.tasks.suppressTaskName": "控制是否将任务名作为参数添加到命令。如果省略,则使用全局定义的值。",
"JsonSchema.tasks.taskName": "任务名称",

View file

@ -10,6 +10,6 @@
"ConfigurationParser.noCommand": "错误: 未提供任何有效的命令名称。",
"ConfigurationParser.noName": "错误: 声明范围内的问题匹配程序必须具有名称:\n{0}\n",
"ConfigurationParser.noTaskName": "错误: 任务必须提供 taskName 属性。将忽略该任务。\n{0}\n",
"ConfigurationParser.noargs": "错误: 命令参数必须是字符串阵列。提供的值为:\n{0}",
"ConfigurationParser.noargs": "错误: 命令参数必须是字符串数组。提供的值为:\n{0}",
"ConfigurationParser.unknownMatcherKind": "警告: 已定义的问题匹配程序未知。受支持的类型为 string | ProblemMatcher | (string | ProblemMatcher)[]。\n{0}\n"
}

View file

@ -7,7 +7,7 @@
"error.cannotloadtheme": "无法加载 {0}",
"error.cannotparse": "问题分析 plist 文件: {0}",
"invalid.path.1": "“contributes.{0}.path”({1})应包含在扩展的文件夹({2})内。这可能会使扩展不可移植。",
"reqarray": "扩展点“{0}”必须是阵列。 ",
"reqarray": "扩展点“{0}”必须是数组。 ",
"reqpath": "“contributes.{0}.path”中应为字符串。提供的值: {1}",
"vscode.extension.contributes.themes": "用于 textmate 颜色主题。",
"vscode.extension.contributes.themes.label": "颜色主题的标签在 UI 中的显示形式。",

View file

@ -4,9 +4,9 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"pluginHostProcess.crash": "扩展主机意外终止。请重新加载窗口以恢复。",
"pluginHostProcess.error": "扩展主机的错误: {0}",
"extensionHostProcess.crash": "扩展主机意外终止。请重新加载窗口以恢复。",
"extensionHostProcess.error": "扩展主机出现错误: {0}",
"extensionHostProcess.startupFailDebug": "扩展未在 10 秒内启动,可能在第一行已停止,需要调试器才能继续。",
"pluginHostProcess.startupFail": "扩展主机未在 10 秒内启动,这可能是一个问题。",
"pluginHostProcess.startupFailDebug": "扩展主机未在 10 秒内启动,可能在第一行时停止,需要调试程序才可继续。",
"reloadWindow": "重新加载窗口"
}

View file

@ -7,7 +7,7 @@
"schema.json": "使用結構描述來描述 JSON 檔案。如需詳細資訊,請參閱 json-schema.org。",
"schema.json.$schema": "用來驗證此文件的結構描述",
"schema.json.additionalItems": "用於陣列 (只有在項目設為陣列時)。若其為結構描述,此結構描述會驗證項目陣列所指定的項目之後的項目。若其為 False則額外的項目會導致驗證失敗。",
"schema.json.additionalProperties": "為結構描述或布林值。若為結構描述,將會用於驗證所有不符合 'properties' 或 'patternProperties' 的屬性。若為 False則所有不符合這兩項其中之一的屬性都會導致此結構描述失敗。",
"schema.json.additionalProperties": "為結構描述或布林值。若為結構描述,將會用以驗證所有不符合 'properties' 或 'patternProperties' 的屬性。若為 false則所有不符合這兩項其中之一的屬性都會導致此結構描述失敗。",
"schema.json.allOf": "結構描述的陣列,必須全部符合。",
"schema.json.anyOf": "結構描述的陣列,其中必須至少有一個符合。",
"schema.json.default": "預設值。供建議使用。",

View file

@ -0,0 +1,11 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"assocDescriptionFile": "將檔案名稱符合 Glob 模式的所有檔案,對應至具有指定識別碼的語言。",
"assocDescriptionPath": "將完整路徑符合 Glob 模式的所有檔案,對應至具有指定識別碼的語言。",
"assocLabelFile": "檔案副檔名",
"assocLabelPath": "檔案路徑"
}

View file

@ -0,0 +1,14 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"cmdCreate": "建立 jsconfig.json 檔案...",
"hint.tooltip": "擁有專案,並擁有更好的 IntelliSense、符號搜尋等更多功能。",
"hintCreate": "擁有專案並體驗更好的 IntelliSense 和程式碼瀏覽。",
"hintExclude": "'{0}' 是大型專案。如需更好的效能,請排除含有大量檔案的資料夾,如: {1}...",
"large.label": "設定排除",
"large.tooltip": "專案中有太多檔案可能會降低效能。請排除含有大量檔案的資料夾,如: {0}...",
"open": "設定排除..."
}

View file

@ -5,8 +5,13 @@
// Do not edit this file. It is machine generated.
{
"altKey": "Alt",
"cmdKey": "命令",
"altKey.long": "Alt",
"cmdKey": "Command",
"cmdKey.long": "Command",
"ctrlKey": "Ctrl",
"ctrlKey.long": "Control",
"shiftKey": "Shift",
"windowsKey": "Windows"
"shiftKey.long": "Shift",
"windowsKey": "Windows",
"windowsKey.long": "Windows"
}

View file

@ -4,19 +4,22 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"acceptSuggestionOnEnter": "控制除了 'Tab' 外,是否也藉由按下 'Enter' 接受建議。如此可避免混淆要插入新行或接受建議。",
"autoClosingBrackets": "控制編輯器是否應在左括號後自動插入右括號",
"cursorBlinking": "控制游標閃爍動畫,接受的值為 'blink'、'visible' 和 'hidden'",
"cursorStyle": "控制游標樣式,接受的值為 'block' 和 'line'",
"detectIndentation": "開啟檔案時,會依據檔案內容來偵測 `editor.tabSize` 及 `editor.insertSpaces`。",
"editorConfigurationTitle": "編輯器組態",
"folding": "控制編輯器是否已啟用程式碼摺疊",
"folding": "控制編輯器是否已啟用程式碼摺疊功能",
"fontFamily": "控制字型家族。",
"fontLigatures": "啟用連字字型",
"fontSize": "控制字型大小。",
"formatOnType": "控制編輯器是否應在輸入一行後自動格式化",
"glyphMargin": "控制是否顯示字符邊界",
"hideCursorInOverviewRuler": "控制游標是否應隱藏在概觀尺規中。",
"ignoreTrimWhitespace": "控制差異編輯器是否將開頭或尾端空白字元的變更顯示為差異",
"insertSpaces": "控制編輯器是否會插入空格來取代 Tab。接受的值: [自動]、True、False。如果設定為 [自動],會在開啟檔案時猜測該值。",
"ignoreTrimWhitespace": "控制 Diff 編輯器是否將開頭或尾端空白字元的變更顯示為差異",
"insertSpaces": "按 Tab 時插入空格。",
"insertSpaces.errorMessage": "必須是 'boolean'。請注意,值 \"auto\" 已由 `editor.detect Indentation` 設定取代。",
"lineHeight": "控制行高。",
"lineNumbers": "控制是否顯示行號",
"mouseWheelScrollSensitivity": "滑鼠滾輪捲動事件的 'deltaX' 與 'deltaY' 所使用的乘數",
@ -29,9 +32,10 @@
"rulers": "要在其中顯示垂直尺規的資料行",
"scrollBeyondLastLine": "控制編輯器是否會捲動到最後一行之後",
"selectionHighlight": "控制編輯器是否應反白顯示與選取範圍相似的符合項",
"sideBySide": "控制差異編輯器要並排或內嵌顯示差異",
"sideBySide": "控制 Diff 編輯器要並排或內嵌顯示差異",
"suggestOnTriggerCharacters": "控制輸入觸發字元時,是否應自動顯示建議",
"tabSize": "控制字元中 Tab 鍵的呈現大小。接受的值: [自動]、2、4、6 等等。如果設定為 [自動],會在開啟檔案時猜測該值。",
"tabSize": "與 Tab 相等的空格數量。",
"tabSize.errorMessage": "必須是 'number'。請注意,值 \"auto\" 已由 `editor.detectIndentation` 設定取代。",
"wordSeparators": "執行文字相關導覽或作業時將作為文字分隔符號的字元",
"wrappingColumn": "控制編輯器會在幾個字元後換行至下一行。將此項目設為 0 會開啟檢視區寬度換行",
"wrappingIndent": "控制換行的縮排。可以是 [無]、[相同] 或 [縮排]。"

View file

@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"indentAutoMigrate": "請更新您的設定: `editor.detect Indentation` 會取代 `editor.tabSize`: \"auto\" 或 `editor.insertSpaces`: \"auto\""
}

View file

@ -7,14 +7,14 @@
"ShowAccessibilityHelpAction": "顯示協助工具說明",
"experimentalScreenReaderOptsOn": "因為 editor.experimentalScreenReader 設定索引鍵的緣故,所以已開啟實驗螢幕助讀程式支援。",
"experimentalScreenReaderSessionOff": "實驗螢幕助讀程式支援已關閉。請按 {0} 以針對此工作階段加以開啟,或將 editor.experimentalScreenReader 設定為 True 以針對所有工作階段加以開啟。",
"experimentalScreenReaderSessionOffNoKb": "實驗螢幕助讀程式支援已關閉。目前無法透過按鍵組合觸發命令 {0}。請將 editor.experimentalScreenReader 設定為 True以針對所有工作階段加以開啟。",
"experimentalScreenReaderSessionOffNoKb": "實驗螢幕助讀程式支援已關閉。目前無法透過按鍵繫結關係觸發命令 {0}。請將 editor.experimentalScreenReader 設定為 True以針對所有工作階段加以開啟。",
"experimentalScreenReaderSessionOn": "此工作階段的實驗螢幕助讀程式支援已開啟。按 {0} 可切換此行為。",
"experimentalScreenReaderSessionOnNoKb": "此工作階段的實驗螢幕助讀程式支援已開啟。目前無法透過按鍵組合觸發命令 {0}。",
"experimentalScreenReaderSessionOnNoKb": "此工作階段的實驗螢幕助讀程式支援已開啟。目前無法透過按鍵繫結關係觸發命令 {0}。",
"introMsg": "感謝您試用 VSCode 的實驗協助工具選項。",
"outroMsg": "您可以按 Esc 鍵來解除此工具提示並返回編輯器。",
"status": "狀態:",
"tabFocusModeOffMsg": "在此編輯器中按 Tab 鍵會插入定位字元。按 {0} 可切換此行為。",
"tabFocusModeOffMsgNoKb": "在此編輯器中按 Tab 鍵會將焦點移至下一個可設定焦點的元素。目前無法透過按鍵組合觸發命令 {0}。",
"tabFocusModeOffMsgNoKb": "在此編輯器中按 Tab 鍵會將焦點移至下一個可設定焦點的元素。目前無法透過按鍵繫結關係觸發命令 {0}。",
"tabFocusModeOnMsg": "在此編輯器中按 Tab 鍵會將焦點移至下一個可設定焦點的元素。按 {0} 可切換此行為。",
"tabFocusModeOnMsgNoKb": "在此編輯器中按 Tab 鍵會將焦點移至下一個可設定焦點的元素。目前無法透過按鍵組合觸發命令 {0}。"
"tabFocusModeOnMsgNoKb": "在此編輯器中按 Tab 鍵會將焦點移至下一個可設定焦點的元素。目前無法透過按鍵繫結關係觸發命令 {0}。"
}

View file

@ -4,9 +4,9 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"DefineKeybindingAction": "定義按鍵組合",
"DefineKeybindingAction": "定義按鍵繫結關係",
"defineKeybinding.initial": "按下所需的按鍵組合,再按 ENTER 鍵",
"defineKeybinding.kbLayoutErrorMessage": "您無法在目前的鍵盤配置下產生此按鍵組合。",
"defineKeybinding.kbLayoutInfoMessage": "針對您目前的鍵盤配置,請按 ",
"defineKeybinding.start": "定義按鍵組合"
"defineKeybinding.start": "定義按鍵繫結關係"
}

View file

@ -6,6 +6,11 @@
{
"foldAction.label": "摺疊",
"foldAllAction.label": "全部摺疊",
"foldLevel1Action.label": "摺疊層級 1",
"foldLevel2Action.label": "摺疊層級 2",
"foldLevel3Action.label": "摺疊層級 3",
"foldLevel4Action.label": "摺疊層級 4",
"foldLevel5Action.label": "摺疊層級 5",
"unfoldAction.label": "展開",
"unfoldAllAction.label": "全部展開"
}

View file

@ -4,9 +4,12 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"changeIndentationSize": "變更目前檔案的定位點大小",
"configuredTabSize": "已設定的定位點大小",
"detectIndentation": "偵測內容中的縮排",
"indentUsingSpaces": "使用空格鍵進行縮排",
"indentUsingTabs": "使用 Tab 進行縮排",
"indentationToSpaces": "將縮排轉換成空格",
"indentationToTabs": "將縮排轉換成定位點",
"selectTabWidth": "選取目前檔案的定位點大小"
"selectTabWidth": "選取目前檔案的定位點大小",
"toggleRenderWhitespace": "切換轉譯空白字元"
}

View file

@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"hint": "{0},提示"
}

View file

@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"renameAriaLabel": "為輸入重新命名。請鍵入新名稱,然後按 Enter 以認可。"
}

View file

@ -4,8 +4,13 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"ariaCurrentSuggestion": "{0},建議",
"ariaCurrentSuggestionWithDetails": "{0},建議,有詳細資料",
"goback": "返回",
"readMore": "進一步了解...{0}",
"suggestWidget.loading": "正在載入...",
"suggestWidget.noSuggestions": "無建議。"
"suggestWidget.noSuggestions": "無建議。",
"suggestionAriaAccepted": "{0},接受",
"suggestionAriaLabel": "{0},建議",
"suggestionWithDetailsAriaLabel": "{0},建議,有詳細資料"
}

View file

@ -8,7 +8,7 @@
"invalid.path.0": "`contributes.{0}.path` 中的預期字串。提供的值: {1}",
"invalid.path.1": "要包含在擴充功能資料夾 ({2}) 中的預期 `contributes.{0}.path` ({1})。這可能會使擴充功能無法移植。",
"invalid.scopeName": "`contributes.{0}.scopeName` 中的預期字串。提供的值: {1}",
"vscode.extension.contributes.grammars": "提供 textmate Tokenizer。",
"vscode.extension.contributes.grammars": "提供 textmate 權杖化工具。",
"vscode.extension.contributes.grammars.language": "要予以提供此語法的語言識別碼。",
"vscode.extension.contributes.grammars.path": "tmLanguage 檔案的路徑。此路徑是擴充功能資料夾的相對路徑,而且一般會以 './syntaxes/' 開頭。",
"vscode.extension.contributes.grammars.scopeName": "tmLanguage 檔案所使用的 textmate 範圍名稱。"

View file

@ -56,6 +56,39 @@
"tags.img": "img 元素代表影像。",
"tags.input": "input 元素代表具類型資料欄位,通常會有允許使用者編輯資料的表單控制項。",
"tags.ins": "ins 元素代表新增至文件。",
"tags.ion.checkbox": "核取方塊除了樣式以外,與 HTML 核取方塊輸入並無差異。核取方塊的行為與任何 AngularJS 核取方塊皆同。",
"tags.ion.content": "ionContent 指示詞提供易於使用的內容區域,可將其設定為使用 Ionic 的自訂捲動檢視,或瀏覽器的內建溢位捲動。",
"tags.ion.deletebutton": "ionItem 的子系",
"tags.ion.footerbar": "在某些內容下方加入固定的頁尾列。如果套用 \"bar-subfooter\" 類別,則也可以是子頁尾 (較高)。",
"tags.ion.headerbar": "在某些內容上方加入固定的頁首列。如果套用 \"bar-subheader\" 類別,則也可以是子頁首 (較低)。",
"tags.ion.infinitescroll": "ionContent 或 ionScroll 的子系。每當使用者到達頁面的底部或接近頁面的底部時ionInfiniteScroll 指示詞可讓您呼叫函式。",
"tags.ion.input": "ionInput 僅適用於文字類型的輸入。Ionic 在元件內使用實際的 <input type=\"text\"> HTML 元素搭配 Ionic 文繞圖,更能夠處理使用者經驗和互動功能。",
"tags.ion.item": "ionList 的子系。",
"tags.ion.list": "List 是在幾乎所有行動應用程式中廣泛使用的介面元素,從基本文字到按鈕、切換按鈕、圖示和縮圖等均涵蓋在內。",
"tags.ion.modalview": "Modal 是可以暫時移至使用者主要檢視的內容窗格。通常用於進行選擇或編輯項目。",
"tags.ion.navbackbutton": "ionNavBar 的子系。可在 ionNavBar 內建立 [返回] 按鈕。當用戶能夠返回目前的瀏覽堆疊時,[返回] 按鈕就會出現。",
"tags.ion.navbar": "如果您有 ionNavView 指示詞,也可以建立 <ion-nav-bar>,這將會建立隨著應用程式狀態變更而更新的頂端列。 ",
"tags.ion.navbuttons": "ionNavView 的子系。使用 ionNavButtons 從 ionView 中設定 ionNavBar 上的按鈕。",
"tags.ion.navtitle": "ionNavView 的子系。ionNavTitle 指示詞從 ionView 範本中以自訂 HTML 取代 ionNavBar 標題文字。",
"tags.ion.navview": "ionNavView 指示詞在應用程式中用於轉譯範本。每個範本都是狀態的一部分。狀態通常對應到 URL並使用 angular-ui-router 以程式設計方式定義。",
"tags.ion.optionbutton": "ionItem 的子系。在清單項目內建立選項按鈕,當該使用者將項目撥動至左側時,就可以看見該按鈕。",
"tags.ion.pane": "符合內容的簡單容器,而且無副作用。將 \"pane\" 類別加入元素中。",
"tags.ion.popoverview": "Popover 是浮動於應用程序內容上方的檢視。Popover 提供了呈現或集中使用者資訊的簡易方式。",
"tags.ion.radio": "選項 ionRirective 除了樣式以外,與 HTML 選項輸入並無差異。ionRadio 的行為與 AngularJS 選項輸入相同。",
"tags.ion.refresher": "ionContent 或 ionScroll 的子系。可讓您將 pull-to-refresh 加入 scrollView。請將其當作 ionContent 或 ionScroll 元素的第一個子系。",
"tags.ion.reorderbutton": "ionItem 的子系。",
"tags.ion.scroll": "為內部所有內容建立可捲動的容器。",
"tags.ion.sidemenu": "ionSideMenus 的子系。適用於側邊功能表的容器,與 ionSideMenuContent 指示詞同層級。",
"tags.ion.sidemenucontent": "ionSideMenus 的子系。適用於主要可見內容的容器,與一或多個 ionSideMenu 指示詞同層級。",
"tags.ion.sidemenus": "適用於側邊功能表和主要內容的容器元素。將主要內容區域從一側拖向另一側,即可切換左側和 (或) 右側功能表。",
"tags.ion.slide": "ionSlideBox 的子系。在滑動方塊內顯示分頁。",
"tags.ion.slidebox": "滑動方塊為多頁面容器,每個頁面都可在其間撥動或拖曳。",
"tags.ion.spinner": "ionSpinner 指示詞提供多種動畫式微調按鈕。",
"tags.ion.tab": "ionTabs 的子系。包含索引標籤的內容。只有在選取了特定索引標籤時,內容才會存在。",
"tags.ion.tabs": "透過索引標籤列和一組可在其間切換索引標籤的「頁面」,提供多標籤介面。",
"tags.ion.title": "ion-title 是會設定 ionNavbar 標題的元件",
"tags.ion.toggle": "切換按鈕是動畫開關,可將指定模型繫結到布林值。允許拖曳開關兩極。除此之外,切換按鈕的行為與任何 AngularJS 核取方塊皆同。",
"tags.ion.view": "ionNavView 的子系。用來檢視內容及任何瀏覽和頁首列資訊的容器。",
"tags.kbd": "kbd 元素代表使用者輸入 (一般是鍵盤輸入,不過也可以用來代表其他輸入,例如語音命令)。",
"tags.label": "label 元素代表使用者介面中的標題。透過使用 for 屬性,或將表單控制項放入 label 元素本身,標題就可以與特定表單控制項 (稱為 label 元素的已標示控制項) 建立關聯。",
"tags.legend": "legend 元素代表 legend 元素的父 fieldset 元素 (如果有的話) 其餘內容的標題。",

View file

@ -3,4 +3,9 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{}
{
"activationError": "啟動擴充功能 `{0}` 失敗: {1}。",
"failedDep1": "擴充功能 `{1}` 無法啟動。原因: 相依性 `{0}` 無法啟動。",
"failedDep2": "擴充功能 `{0}` 無法啟動。原因: 相依性超過 10 個層級 (很可能是相依性迴圈)。",
"unknownDep": "擴充功能 `{1}` 無法啟動。原因: 未知的相依性 `{0}`。"
}

View file

@ -3,4 +3,27 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{}
{
"extensionDescription.activationEvents1": "屬性 `{0}` 可以省略或必須屬於 `string[]` 類型",
"extensionDescription.activationEvents2": "屬性 `{0}` 和 `{1}` 必須同時指定或同時忽略",
"extensionDescription.empty": "得到空白擴充功能描述",
"extensionDescription.engines": "屬性 '{0}' 為強制項目且必須屬於 `object` 類型",
"extensionDescription.engines.vscode": "屬性 '{0}' 為強制項目且必須屬於 `string` 類型",
"extensionDescription.extensionDependencies": "屬性 `{0}` 可以省略或必須屬於 `string[]` 類型",
"extensionDescription.main1": "屬性 `{0}` 可以省略或必須屬於 `string` 類型",
"extensionDescription.main2": "`main` ({0}) 必須包含在擴充功能的資料夾 ({1}) 中。這可能會使擴充功能無法移植。",
"extensionDescription.main3": "屬性 `{0}` 和 `{1}` 必須同時指定或同時忽略",
"extensionDescription.name": "屬性 '{0}' 為強制項目且必須屬於 `string` 類型",
"extensionDescription.publisher": "屬性 '{0}' 為強制項目且必須屬於 `string` 類型",
"extensionDescription.version": "屬性 '{0}' 為強制項目且必須屬於 `string` 類型",
"vscode.extension.activationEvents": "VS Code 擴充功能的啟動事件。",
"vscode.extension.categories": "VS Code 資源庫用來將擴充功能歸類的分類。",
"vscode.extension.contributes": "此封裝所代表的所有 VS Code 擴充功能比重。",
"vscode.extension.displayName": "VS Code 資源庫中使用的擴充功能顯示名稱。",
"vscode.extension.extensionDependencies": "其它擴充功能的相依性。擴充功能識別碼一律為 ${發行者}.${名稱}。例如: vscode.csharp。",
"vscode.extension.galleryBanner": "用於 VS Code Marketplace 的橫幅。",
"vscode.extension.galleryBanner.color": "VS Code Marketplace 頁首的橫幅色彩。",
"vscode.extension.galleryBanner.theme": "橫幅中使用的字型色彩佈景主題。",
"vscode.extension.publisher": "VS Code 擴充功能的發行者。",
"vscode.extension.scripts.prepublish": "在封裝作為 VS Code 擴充功能發行前所執行的指令碼。"
}

View file

@ -3,4 +3,10 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{}
{
"notSemver": "擴充功能版本與 semver 不相容。",
"versionMismatch": "擴充功能與 Code {0} 不相容。擴充功能需要: {1}。",
"versionSpecificity1": "在 `engines.vscode` ({0}) 中指定的版本不夠具體。對於 1.0.0 之前的 vscode 版本,請至少定義所需的主要和次要版本。 例如 ^0.10.0、0.10.x、0.11.0 等。",
"versionSpecificity2": "在 `engines.vscode` ({0}) 中指定的版本不夠具體。對於 1.0.0 之後的 vscode 版本,請至少定義所需的主要和次要版本。 例如 ^1.10.0、1.10.x、1.x.x、2.x.x 等。",
"versionSyntax": "無法剖析 'engines.vscode` 值 {0}。例如,請使用:^0.10.0、^1.2.3、^0.11.0、^0.10.x 等。"
}

View file

@ -7,7 +7,7 @@
"schema.json": "使用結構描述來描述 JSON 檔案。如需詳細資訊,請參閱 json-schema.org。",
"schema.json.$schema": "結構描述,用來驗證此文件",
"schema.json.additionalItems": "用於陣列 (只有在項目設為陣列時)。如果為結構描述,這個結構描述會驗證項目陣列所指定的項目之後的項目。如果為 False則額外的項目會導致驗證失敗。",
"schema.json.additionalProperties": "結構描述或布林值。如果為結構描述,將會用於驗證所有不符合 'properties' 或 'patternProperties' 的屬性。如果為 False所有不符合這兩項中任何一項的屬性,都會導致此結構描述失敗。",
"schema.json.additionalProperties": "為結構描述或布林值。若為結構描述,將會用以驗證所有不符合 'properties' 或 'patternProperties' 的屬性。若為 false則所有不符合這兩項其中之一的屬性,都會導致此結構描述失敗。",
"schema.json.allOf": "結構描述的陣列,必須全部符合。",
"schema.json.anyOf": "結構描述的陣列,其中至少一個必須符合。",
"schema.json.default": "預設值。供建議使用。",

View file

@ -12,6 +12,7 @@
"emptySettingsHeader": "將您的設定放入此檔案中以覆寫預設值",
"emptySettingsHeader1": "將您的設定放入此檔案中以覆寫預設值和使用者設定。",
"fail.createSettings": "無法建立 '{0}' ({1})。",
"neverShowAgain": "不要再顯示",
"openFolderFirst": "先開啟資料夾以建立工作區設定",
"openGlobalKeybindings": "開啟鍵盤快速鍵",
"openGlobalSettings": "開啟使用者設定",

View file

@ -4,10 +4,10 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"binaryDiffEditor": "二進位差異編輯器",
"binaryDiffEditor": "二進位 Diff 編輯器",
"iframeEditor": "IFrame 編輯器",
"reload": "重新載入",
"textDiffEditor": "文字差異編輯器",
"textDiffEditor": "文字 Diff 編輯器",
"textEditor": "文字編輯器",
"viewSource": "檢視原始檔"
}

View file

@ -9,17 +9,24 @@
"changeEndOfLine": "變更行尾順序",
"changeIndentation": "變更縮排",
"changeMode": "變更語言模式",
"defaultEncoding": "預設編碼",
"configureAssociations": "設定檔案關聯...",
"configureAssociationsExt": "為 '{0}' 設定檔案關聯...",
"configuredLanguage": "設定的語言",
"defaultEncoding": "設定的編碼",
"disableTabMode": "停用協助工具模式",
"endOfLineCarriageReturnLineFeed": "CRLF",
"endOfLineLineFeed": "LF",
"gotoLine": "移至行",
"indentConvert": "轉換檔案",
"indentView": "變更檢視",
"indentation": "縮排",
"languagesPicks": "語言",
"multiSelection": "{0} 個選取項目",
"multiSelectionRange": "{0} 個選取項目 (已選取 {1} 個字元)",
"noEditor": "目前沒有使用中的文字編輯器",
"noFileEditor": "目前沒有使用中的檔案",
"noWritableCodeEditor": "使用中的程式碼編輯器為唯讀。",
"persistFileAssociations": "您可以從 **files.associations** 區段將檔案名稱設定為語言關聯",
"pickAction": "選取動作",
"pickEncodingForReopen": "選取檔案的編碼以重新開啟檔案",
"pickEncodingForSave": "選取用來儲存的檔案編碼",

View file

@ -12,5 +12,5 @@
"readonlyEditorAriaLabel": "唯讀文字比較編輯器。",
"readonlyEditorWithInputAriaLabel": "{0}。唯讀文字比較編輯器。",
"sideBySideDiffLabel": "切換至並排檢視",
"textDiffEditor": "文字差異編輯器"
"textDiffEditor": "文字 Diff 編輯器"
}

View file

@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"compareLabels": "{0} ↔ {1}"
}

View file

@ -12,7 +12,7 @@
"changeNow": "立即變更",
"continue": "繼續",
"editFile": "編輯 '{0}'",
"exists": "請移除 '{1}' 中的 '{0}' 別名,然後重試此動作。",
"exists": "請移除 '{1}' 中參考 '{0}' 的別名,然後重試此動作。",
"install": "在 PATH 中安裝 'code' 命令",
"later": "稍後",
"laterInfo": "請記住,您一律可以從命令選擇區執行 '{0}' 動作。",

View file

@ -4,8 +4,6 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"autoSaveError": "無法寫入設定。請將 **files.autoSave: \"afterDelay\"** 加入 settings.json 中。",
"autoSaveInfo": "啟用的 [檔案] | [自動儲存] 功能表選項變成值為 **afterDelay** 的 **files.autoSave** 設定。",
"copy": "複製",
"cut": "剪下",
"paste": "貼上",

View file

@ -77,6 +77,7 @@
"miToggleMenuBar": "切換功能表列(&B)",
"miToggleOutput": "切換輸出(&O)",
"miTogglePanel": "切換面板(&P)",
"miToggleRenderWhitespace": "切換轉譯空白字元(&R)",
"miToggleSidebar": "切換提要欄位(&T)",
"miToggleWordWrap": "切換自動換行(&W)",
"miTwitter": "加入我們的 Twitter(&J)",

View file

@ -9,6 +9,7 @@
"appStalled": "視窗已沒有回應",
"appStalledDetail": "您可以重新開啟或關閉視窗,或是繼續等候。",
"close": "關閉",
"hiddenMenuBar": "您仍然可以按 **Alt** 鍵來存取功能表列。",
"ok": "確定",
"pathNotExistDetail": "磁碟上似乎已沒有路徑 '{0}'。",
"pathNotExistTitle": "路徑不存在",

View file

@ -3,4 +3,6 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{}
{
"extensionTestError": "路徑 {0} 並未指向有效的擴充功能測試執行器。"
}

View file

@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"activateBreakpoints": "啟中斷點",
"activateBreakpoints": "啟中斷點",
"addConditionalBreakpoint": "加入條件式中斷點",
"addFunctionBreakpoint": "加入函式中斷點",
"addToWatchExpressions": "加入監看",
@ -29,6 +29,7 @@
"renameFunctionBreakpoint": "重新命名函式中斷點",
"renameWatchExpression": "重新命名運算式",
"restartDebug": "重新啟動",
"run": "執行",
"selectConfig": "選取組態",
"startDebug": "開始",
"stepIntoDebug": "逐步執行",

View file

@ -5,7 +5,7 @@
// Do not edit this file. It is machine generated.
{
"DebugTaskNotFound": "找不到 preLaunchTask '{0}'。",
"NewLaunchConfig": "請設定啟動組態檔以偵錯您的應用程式。",
"NewLaunchConfig": "請為您的應用程式設定啟動組態檔。",
"continue": "繼續",
"debugAdapterCrash": "偵錯配接器處理序已意外終止",
"debugNoThread": "未從識別碼為 {0} 的偵錯配接器取得執行緒。",

View file

@ -10,7 +10,7 @@
"app.launch.json.version": "此檔案格式的版本。",
"debugNoType": "偵錯配接器 'type' 不能省略且必須屬於 'string' 類型。",
"duplicateDebuggerType": "偵錯類型 '{0}' 已註冊並具有屬性 '{1}',即將略過屬性 '{1}'。",
"selectDebug": "選取偵錯環境",
"selectDebug": "選取環境",
"vscode.extension.contributes.debuggers": "提供偵錯配接器。",
"vscode.extension.contributes.debuggers.args": "要傳遞至配接器的選擇性引數。",
"vscode.extension.contributes.debuggers.configurationAttributes": "JSON 結構描述組態,用於驗證 'launch.json'。",

View file

@ -6,6 +6,7 @@
{
"debugAdapterBinNotFound": "在路徑 {0} 中找不到 DebugAdapter bin 資料夾。",
"debugAdapterCrash": "偵錯配接器處理序已意外終止",
"moreInfo": "詳細資訊",
"noDebugAdapterExtensionInstalled": "未針對 '{0}' 偵錯安裝擴充功能。",
"stoppingDebugAdapter": "{0}。正在停止偵錯配接器。",
"unableToLaunchDebugAdapter": "無法從 {0} 啟動偵錯配接器。"

View file

@ -0,0 +1,8 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"extensionsCategory": "擴充功能"
}

View file

@ -8,7 +8,7 @@
"installExtension": "安裝擴充功能",
"restartNow": "立即重新啟動",
"restartNow2": "立即重新啟動",
"showExtensionTips": "顯示擴充功能提示",
"showExtensionRecommendations": "顯示擴充功能建議",
"showInstalledExtensions": "顯示安裝的擴充功能",
"showOutdatedExtensions": "顯示過期的擴充功能",
"success-installed": "已成功安裝 '{0}'。請重新啟動加以啟用。",

View file

@ -18,7 +18,7 @@
"noExtensionsInstalled": "找不到擴充功能",
"noExtensionsToInstall": "找不到擴充功能",
"noOutdatedExtensions": "找不到過期的擴充功能",
"noSuggestedExtensions": "沒有建議的擴充功能",
"noRecommendedExtensions": "沒有建議的擴充功能",
"nowInstalling": "正在安裝 '{0}'...",
"outdatedExtensionsHandlerAriaLabel": "輸入以縮小過期的擴充功能清單範圍",
"readme": "讀我檔案",

View file

@ -4,8 +4,11 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"extension": "擴充功能",
"issue": "問題",
"issues": "問題",
"extensions": "擴充功能",
"extensionsInstalling": "擴充功能 (有 {0} 個正在安裝...)",
"multipleIssues": "擴充功能 (有 {0} 個問題)",
"multipleUpdates": "擴充功能 (有 {0} 項更新可用)",
"oneIssue": "擴充功能 (有 1 個問題)",
"oneUpdate": "擴充功能 (有 1 項更新可用)",
"uninstall": "解除安裝"
}

View file

@ -4,12 +4,11 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"extensionsCategory": "擴充功能",
"galleryExtensionsCommands": "安裝資源庫擴充功能",
"localExtensionsCommands": "顯示本機擴充功能",
"outdatedExtensionsCommands": "更新過期的擴充功能",
"reloadNow": "立即重新啟動",
"success": "已成功安裝擴充功能。請重新啟動加以啟用。",
"successSingle": "已成功安裝 {0}。請重新啟動加以啟用。",
"suggestedExtensionsCommands": "顯示擴充功能提示"
"suggestedExtensionsCommands": "顯示擴充功能建議"
}

View file

@ -12,7 +12,6 @@
"closeOtherFiles": "關閉其他檔案",
"closeOtherLabel": "關閉其他檔案",
"compareFiles": "比較檔案",
"compareLabels": "{0} ↔ {1}",
"compareSource": "選取用以比較",
"compareWith": "與 '{0}' 比較",
"confirmDeleteMessageFile": "您確定要永久刪除 '{0}' 嗎?",

View file

@ -4,6 +4,7 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"associations": "將檔案關聯設定為語言 (例如 \"*.extension\": \"html\")。這些語言優先於已安裝語言的預設關聯。",
"autoSave": "控制已變更檔案的自動儲存功能。接受的值: \"{0}\"、\"{1}\"、\"{2}\"。如果設定為 \"{3}\",您可以在 \"files.autoSaveDelay\" 中設定延遲時間。",
"autoSaveDelay": "控制經過這段延遲時間後會自動儲存已變更檔案的毫秒數。僅適用於 \"files.autoSave\" 設定為 \"{0}\" 時。",
"binaryFileEditor": "二進位檔案編輯器",
@ -23,5 +24,6 @@
"textFileEditor": "文字檔編輯器",
"trimTrailingWhitespace": "若啟用,將在您儲存檔案時修剪尾端空白。",
"view": "檢視",
"watcherExclude": "將檔案路徑的 Glob 模式設定為從檔案監控排除。需要重新啟動才能變更此設定。當您發現 Code 在啟動時使用大量 CPU 時間時,可以排除較大的資料夾以降低初始負載。",
"workingFilesPicker": "開啟工作檔案 (依名稱)"
}

View file

@ -6,6 +6,7 @@
{
"git": "Git",
"openChange": "開啟變更",
"openFile": "開啟檔案",
"openInEditor": "切換至編輯器檢視",
"stageSelectedLines": "將選取的行分段",
"switchToChangesView": "切換至變更檢視"

View file

@ -9,6 +9,7 @@
"canNotRun": "無法從這裡執行命令 '{0}'。",
"commandLabel": "{0}: {1}",
"entryAriaLabel": "{0},命令",
"entryAriaLabelWithKey": "{0}、{1}、命令",
"noCommandsMatching": "沒有相符的命令",
"showTriggerActions": "顯示所有命令"
}

View file

@ -0,0 +1,16 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"dotnetBuild": "建立使用 dotnet 組建進行編譯的 tasks.json。",
"grunt": "為 Grunt 建立 tasks.json 檔案。若 jake 檔案存在,則會自動偵測工作。",
"gulp": "為 gulp 建立 tasks.json 檔案。若 gulp 檔案存在,則會自動偵測工作。",
"jake": "為 Jake 建立 tasks.json 檔案。若 jake 檔案存在,則會自動偵測工作。",
"msbuild": "建立使用 msbuild 進行編譯的 tasks.json。",
"tsc.config": "建立編譯 TypeScript 專案的 tasks.json。",
"tsc.openFile": "建立編譯開啟中 TypeScript 檔案的 tasks.json。",
"tsc.specificFile": "建立編譯特定 TypeScript 檔案的 tasks.json。",
"tsc.watch": "建立在監看模式中編譯 TypeScript 專案的 tasks.json。"
}

View file

@ -7,7 +7,7 @@
"BuildAction.label": "執行建置工作",
"CleanAction.label": "執行清除工作",
"CloseMessageAction.label": "關閉",
"ConfigureTaskRunnerAction.autoDetect": "自動偵測工作系統失敗。如需詳細資訊,請參閱工作輸出",
"ConfigureTaskRunnerAction.autoDetect": "自動偵測工作系統失敗。正在使用預設範本。如需詳細資料,請參閱工作輸出。",
"ConfigureTaskRunnerAction.failed": "無法在 '.vscode' 資料夾中建立 'tasks.json' 檔案。如需詳細資訊,請參閱工作輸出。",
"ConfigureTaskRunnerAction.label": "設定工作執行器",
"JsonSchema.args": "傳遞至命令的其他引數。",
@ -35,7 +35,7 @@
"JsonSchema.problemMatcher.fileLocation": "定義問題模式中所回報檔案名稱的解譯方式。",
"JsonSchema.problemMatcher.owner": "Code 內的問題擁有者。如果指定基底,則可以省略。如果省略且未指定基底,預設為 [外部]。",
"JsonSchema.problemMatcher.pattern": "問題模式或已預先定義問題模式的名稱。如果已指定基底,則可以省略。",
"JsonSchema.problemMatcher.severity": "擷取項目問題的預設嚴重性。如果模式未定義嚴重性的符合群組,則會使用。",
"JsonSchema.problemMatcher.severity": "擷取項目問題的預設嚴重性。如果模式未定義嚴重性的符合群組,就會加以使用。",
"JsonSchema.problemMatcher.watchedBegin": "規則運算式,指示監看的工作開始執行 (透過檔案監看觸發)。",
"JsonSchema.problemMatcher.watchedEnd": "規則運算式,指示監看的工作結束執行。",
"JsonSchema.problemMatcher.watching.activeOnStart": "如果設定為 True監控程式在工作啟動時處於主動模式。這相當於發出符合 beginPattern 的行",

View file

@ -7,13 +7,13 @@
"invalid.keybindings": "`contributes.{0}` 無效: {1}",
"keybindings.json.command": "所要執行命令的名稱",
"keybindings.json.key": "按鍵或按鍵順序 (以空格分隔)",
"keybindings.json.title": "按鍵組合組態",
"keybindings.json.title": "按鍵繫結關係組態",
"keybindings.json.when": "按鍵為使用中時的條件。",
"nonempty": "必須是非空白值。",
"optstring": "屬性 `{0}` 可以省略或必須屬於 `string` 類型",
"requirestring": "屬性 '{0}' 為強制項目且必須屬於 `string` 類型",
"vscode.extension.contributes.keybindings": "提供按鍵組合。",
"vscode.extension.contributes.keybindings.command": "觸發按鍵組合時所要執行命令的識別碼。",
"vscode.extension.contributes.keybindings": "提供按鍵繫結關係。",
"vscode.extension.contributes.keybindings.command": "觸發按鍵繫結關係時所要執行命令的識別碼。",
"vscode.extension.contributes.keybindings.key": "按鍵或按鍵順序 (以加號分隔按鍵並以空格分隔順序,例如 Ctrl+O 和 Ctrl+L L 進行同步選取",
"vscode.extension.contributes.keybindings.linux": "Linux 特定按鍵或按鍵順序。",
"vscode.extension.contributes.keybindings.mac": "Mac 特定按鍵或按鍵順序。",

View file

@ -4,9 +4,9 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"pluginHostProcess.crash": "擴充功能主機意外終止。請重新載入視窗以復原。",
"pluginHostProcess.error": "擴充功能主機的錯誤: {0}",
"extensionHostProcess.crash": "延伸主機意外終止。請重新載入視窗以復原。",
"extensionHostProcess.error": "延伸主機發生錯誤: {0}",
"extensionHostProcess.startupFailDebug": "延伸主機未於 10 秒內開始,可能在第一行就已停止,並需要偵錯工具才能繼續。",
"pluginHostProcess.startupFail": "擴充功能主機 10 秒內未啟動,可能發生問題。",
"pluginHostProcess.startupFailDebug": "擴充功能主機 10 秒內未啟動,可能在第一行停止並需要偵錯工具才能繼續。",
"reloadWindow": "重新載入視窗"
}

View file

@ -0,0 +1,11 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"assocDescriptionFile": "Ordnet alle Dateien, deren Dateinamen mit dem Globmuster übereinstimmen, der Sprache mit der angegebenen ID zu.",
"assocDescriptionPath": "Ordnet alle Dateien, deren vollständiger Pfad mit dem Globmuster übereinstimmt, der Sprache mit der angegebenen ID zu.",
"assocLabelFile": "Dateien mit Erweiterung",
"assocLabelPath": "Dateien mit Pfad"
}

View file

@ -0,0 +1,14 @@
/*---------------------------------------------------------------------------------------------
* 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.
{
"cmdCreate": "Datei \"jsconfig.json\" erstellen...",
"hint.tooltip": "Verwenden Sie ein Projekt und bessere IntelliSense-Funktionen, bessere Symbolsuche und vieles mehr.",
"hintCreate": "Verwenden Sie ein Projekt, und nutzen Sie bessere IntelliSense- und Codenavigationsfunktionen.",
"hintExclude": "\"{0}\" ist ein großes Projekt. Schließen Sie Ordner mit vielen Dateien aus, um eine bessere Leistung zu erzielen, beispielsweise: {1}...",
"large.label": "Auszuschließende Elemente konfigurieren",
"large.tooltip": "Zu viele Dateien in einem Projekt führen ggf. zu schlechter Leistung. Schließen Sie Ordner mit vielen Dateien aus, beispielsweise: {0}...",
"open": "Auszuschließende Elemente konfigurieren..."
}

Some files were not shown because too many files have changed in this diff Show more