diff --git a/build/lib/i18n.js b/build/lib/i18n.js index 50bf713c0ac..c62dd2b1c47 100644 --- a/build/lib/i18n.js +++ b/build/lib/i18n.js @@ -210,7 +210,7 @@ function processCoreBundleFormat(json, emitter) { messages = JSON.parse(content); } else { - // log(`No localized messages found for module ${module}. Using default messages.`); + log("No localized messages found for module " + module + ". Using default messages."); messages = defaultMessages[module]; statistics[language.iso639_2] = statistics[language.iso639_2] + Object.keys(messages).length; } @@ -225,7 +225,7 @@ function processCoreBundleFormat(json, emitter) { } var message = messages[key]; if (!message) { - // log(`No localized message found for key ${key} in module ${module}. Using default message.`); + log("No localized message found for key " + key + " in module " + module + ". Using default message."); message = defaultMessages[module][key]; statistics[language.iso639_2] = statistics[language.iso639_2] + 1; } diff --git a/build/lib/i18n.ts b/build/lib/i18n.ts index 25f4725b43d..f9487bcc6cf 100644 --- a/build/lib/i18n.ts +++ b/build/lib/i18n.ts @@ -237,7 +237,7 @@ function processCoreBundleFormat(json: BundledFormat, emitter: any) { let content = stripComments(fs.readFileSync(i18nFile, 'utf8')); messages = JSON.parse(content); } else { - // log(`No localized messages found for module ${module}. Using default messages.`); + log(`No localized messages found for module ${module}. Using default messages.`); messages = defaultMessages[module]; statistics[language.iso639_2] = statistics[language.iso639_2] + Object.keys(messages).length; } @@ -251,7 +251,7 @@ function processCoreBundleFormat(json: BundledFormat, emitter: any) { } let message: string = messages[key]; if (!message) { - // log(`No localized message found for key ${key} in module ${module}. Using default message.`); + log(`No localized message found for key ${key} in module ${module}. Using default message.`); message = defaultMessages[module][key]; statistics[language.iso639_2] = statistics[language.iso639_2] + 1; } diff --git a/i18n/chs/src/vs/base/browser/ui/actionbar/actionbar.i18n.json b/i18n/chs/src/vs/base/browser/ui/actionbar/actionbar.i18n.json new file mode 100644 index 00000000000..4ecb2c803f4 --- /dev/null +++ b/i18n/chs/src/vs/base/browser/ui/actionbar/actionbar.i18n.json @@ -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. +{ + "titleLabel": "{0} ({1})" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/base/browser/ui/findinput/findInput.i18n.json b/i18n/chs/src/vs/base/browser/ui/findinput/findInput.i18n.json new file mode 100644 index 00000000000..8bedca33733 --- /dev/null +++ b/i18n/chs/src/vs/base/browser/ui/findinput/findInput.i18n.json @@ -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. +{ + "caseDescription": "区分大小写", + "defaultLabel": "输入", + "regexDescription": "使用正则表达式", + "wordsDescription": "全字匹配" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/base/browser/ui/messagelist/messageList.i18n.json b/i18n/chs/src/vs/base/browser/ui/messagelist/messageList.i18n.json new file mode 100644 index 00000000000..c192951d72a --- /dev/null +++ b/i18n/chs/src/vs/base/browser/ui/messagelist/messageList.i18n.json @@ -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. +{ + "alertErrorMessage": "错误: {0}", + "alertInfoMessage": "信息: {0}", + "alertWarningMessage": "警告: {0}", + "close": "关闭", + "error": "错误", + "info": "信息", + "warning": "警告" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json b/i18n/chs/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json new file mode 100644 index 00000000000..78d092b6cdc --- /dev/null +++ b/i18n/chs/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingAudioSupport": "抱歉,不支持音频文件播放。", + "missingVideoSupport": "抱歉,不支持视频文件播放。", + "nativeBinaryError": "文件无法在编辑器中显示,因为它是二进制文件、非常大或使用不支持的文本编码。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/base/browser/ui/toolbar/toolbar.i18n.json b/i18n/chs/src/vs/base/browser/ui/toolbar/toolbar.i18n.json new file mode 100644 index 00000000000..b98312c5557 --- /dev/null +++ b/i18n/chs/src/vs/base/browser/ui/toolbar/toolbar.i18n.json @@ -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. +{ + "more": "更多" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/base/common/errors.i18n.json b/i18n/chs/src/vs/base/common/errors.i18n.json new file mode 100644 index 00000000000..14e3831b3f6 --- /dev/null +++ b/i18n/chs/src/vs/base/common/errors.i18n.json @@ -0,0 +1,25 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "error.connection.unknown": "出现未知连接错误。您的 Internet 连接已断开,或者您连接的服务器已脱机。", + "error.connection.unknown.verbose": "未知连接错误 ({0})", + "error.defaultMessage": "出现未知错误。有关详细信息,请参阅日志。", + "error.http": "{0} (HTTP {1})", + "error.http.verbose": "{0} (HTTP {1}: {2})", + "error.moreErrors": "{0} 个(共 {1} 个错误)", + "error.permission": "权限被拒绝", + "error.permission.verbose": "权限被拒绝 (HTTP {0})", + "illegalArgumentError": "非法参数: {0}", + "illegalArgumentError2": "非法参数", + "illegalStateError": "非法状态: {0}", + "illegalStateError2": "非法状态", + "loaderError": "无法加载需要的文件。您的 Internet 连接已断开,或者您连接的服务器已脱机。请刷新浏览器并重试。", + "loaderErrorNative": "未能加载所需文件。请重启应用程序重试。详细信息: {0}", + "message": "{0}。错误代码: {1}", + "nodeExceptionMessage": "发生了系统错误({0})", + "notImplementedError": "未实施", + "stackTrace.format": "{0}: {1}" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/base/common/json.i18n.json b/i18n/chs/src/vs/base/common/json.i18n.json new file mode 100644 index 00000000000..01e6bbf44d6 --- /dev/null +++ b/i18n/chs/src/vs/base/common/json.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "CloseBraceExpected": "需要右大括号", + "CloseBracketExpected": "需要右方括号", + "ColonExpected": "需要冒号", + "CommaExpected": "需要逗号", + "EOFExpected": "需要内容结尾", + "InvalidNumberFormat": "数字格式无效", + "PropertyExpected": "需要属性名", + "UnknownSymbol": "符号无效", + "ValeExpected": "需要值", + "ValueExpected": "需要值" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/base/common/severity.i18n.json b/i18n/chs/src/vs/base/common/severity.i18n.json new file mode 100644 index 00000000000..db3981b4756 --- /dev/null +++ b/i18n/chs/src/vs/base/common/severity.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sev.error": "错误", + "sev.info": "信息", + "sev.warning": "警告" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/base/common/strings.i18n.json b/i18n/chs/src/vs/base/common/strings.i18n.json new file mode 100644 index 00000000000..13406134d57 --- /dev/null +++ b/i18n/chs/src/vs/base/common/strings.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "diff.days": "{0} 天", + "diff.days.month": "一个月前", + "diff.days.verbose": "{0} 天前", + "diff.days.week": "一周前", + "diff.days.yesterday": "昨天", + "diff.hour.verbose": "1 小时前", + "diff.hours": "{0} 小时", + "diff.hours.verbose": "{0} 小时前", + "diff.minute.verbose": "1 分钟前", + "diff.minutes": "{0} 分钟", + "diff.minutes.verbose": "{0} 分钟前", + "diff.seconds": "{0} 秒", + "diff.seconds.verbose": "刚才", + "format.date": "{0}-{1}-{2} {3}:{4}:{5}", + "format.time": "{0}:{1}:{2}" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/browser/view/viewImpl.i18n.json b/i18n/chs/src/vs/editor/browser/view/viewImpl.i18n.json new file mode 100644 index 00000000000..9d5691d3e42 --- /dev/null +++ b/i18n/chs/src/vs/editor/browser/view/viewImpl.i18n.json @@ -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. +{ + "editorViewAccessibleLabel": "编辑器内容" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/common/config/commonEditorConfig.i18n.json b/i18n/chs/src/vs/editor/common/config/commonEditorConfig.i18n.json new file mode 100644 index 00000000000..28e222ab0b5 --- /dev/null +++ b/i18n/chs/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "autoClosingBrackets": "控制编辑器是否应在打开括号后自动将其关闭", + "cursorBlinking": "控制光标闪烁动画,接受的值为“闪烁”、“可见”和“隐藏”", + "cursorStyle": "控制光标样式,接受的值为“块”和“行”", + "editorConfigurationTitle": "编辑器配置", + "folding": "控制编辑器是否启用代码折叠", + "fontFamily": "控制字体系列。", + "fontLigatures": "启用字体连写", + "fontSize": "控制字体大小。", + "formatOnType": "控制编辑器是否应在键入后自动设置行的格式", + "glyphMargin": "控制字形边距的可见性", + "hideCursorInOverviewRuler": "控制光标是否应隐藏在概述标尺中。", + "ignoreTrimWhitespace": "控制差异编辑器是否将对前导空格或尾随空格的更改显示为差异", + "insertSpaces": "控制编辑器是否将为选项卡插入空格。接受的值:“自动”、true、false。如果设置为“自动”,则会在打开文件时猜测值。", + "lineHeight": "控制行高。", + "lineNumbers": "控制行号的可见性", + "mouseWheelScrollSensitivity": "要对鼠标滚轮滚动事件的 \"deltaX\" 和 \"deltaY\" 使用的乘数 ", + "overviewRulerLanes": "控制可在概述标尺同一位置显示的效果数量", + "quickSuggestions": "控制键入时是否应显示快速建议", + "quickSuggestionsDelay": "控制延迟多少毫秒后将显示快速建议", + "referenceInfos": "控制编辑器是否显示支持它的模式的参考信息", + "renderWhitespace": "控制编辑器是否应呈现空白字符", + "roundedSelection": "控制选项是否有圆角", + "rulers": "显示垂直标尺的列", + "scrollBeyondLastLine": "控制编辑器是否将滚动超出最后一行", + "selectionHighlight": "控制编辑器是否应突出显示选项的近似匹配", + "sideBySide": "控制差异编辑器是否显示并行差异或内联差异", + "suggestOnTriggerCharacters": "控制键入触发器字符时是否应自动显示建议", + "tabSize": "控制选项卡的呈现大小(以字符为单位)。接受的值:“自动”、2、4、6 等。如果设置为“自动”,则会在打开文件时猜测值。", + "wordSeparators": "执行文字相关的导航或操作时将用作文字分隔符的字符", + "wrappingColumn": "控制在多少个字符后编辑器会自动换到下一行。将其设置为 0 则将打开视区宽度换行 ", + "wrappingIndent": "控制换行的行的缩进。可以是“无”、“相同”或“缩进”。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/common/controller/cursor.i18n.json b/i18n/chs/src/vs/editor/common/controller/cursor.i18n.json new file mode 100644 index 00000000000..8f4a734409e --- /dev/null +++ b/i18n/chs/src/vs/editor/common/controller/cursor.i18n.json @@ -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. +{ + "corrupt.commands": "执行命令时出现意外异常。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/common/model/textModelWithTokens.i18n.json b/i18n/chs/src/vs/editor/common/model/textModelWithTokens.i18n.json new file mode 100644 index 00000000000..78434c3bc46 --- /dev/null +++ b/i18n/chs/src/vs/editor/common/model/textModelWithTokens.i18n.json @@ -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. +{ + "mode.tokenizationSupportFailed": "标记输入时模式失败。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json b/i18n/chs/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json new file mode 100644 index 00000000000..b28bff20614 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.clipboard.copyLabel": "复制", + "actions.clipboard.cutLabel": "剪切", + "actions.clipboard.pasteLabel": "粘贴" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/codelens/browser/codelens.i18n.json b/i18n/chs/src/vs/editor/contrib/codelens/browser/codelens.i18n.json new file mode 100644 index 00000000000..ef8f2de0775 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/codelens/browser/codelens.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "n_references": "{0} 个引用", + "one_reference": "1 个引用", + "unknown_reference": "- 引用" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/comment/common/comment.i18n.json b/i18n/chs/src/vs/editor/contrib/comment/common/comment.i18n.json new file mode 100644 index 00000000000..ce9731e8e29 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/comment/common/comment.i18n.json @@ -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. +{ + "comment.block": "切换块注释", + "comment.line": "切换行注释", + "comment.line.add": "添加行注释", + "comment.line.remove": "删除行注释" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json b/i18n/chs/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json new file mode 100644 index 00000000000..73baa574779 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json @@ -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. +{ + "action.showContextMenu.label": "显示编辑器上下文菜单" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/find/browser/find.i18n.json b/i18n/chs/src/vs/editor/contrib/find/browser/find.i18n.json new file mode 100644 index 00000000000..13de256bac1 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/find/browser/find.i18n.json @@ -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. +{ + "addSelectionToNextFindMatch": "将选择添加到下一个查找匹配项", + "findNextMatchAction": "查找下一个", + "findPreviousMatchAction": "查找上一个", + "moveSelectionToNextFindMatch": "将上次选择移动到下一个查找匹配项", + "selectAllOccurencesOfFindMatch": "选择所有找到的查找匹配项", + "startFindAction": "查找", + "startReplace": "替换" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/find/browser/findWidget.i18n.json b/i18n/chs/src/vs/editor/contrib/find/browser/findWidget.i18n.json new file mode 100644 index 00000000000..b25ed369ae0 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/find/browser/findWidget.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "label.closeButton": "关闭 ", + "label.find": "查找", + "label.matchesLocation": "第 {0} 个(共 {1} 个)", + "label.nextMatchButton": "下一个匹配", + "label.noResults": "无结果", + "label.previousMatchButton": "上一个匹配", + "label.replace": "替换", + "label.replaceAllButton": "全部替换", + "label.replaceButton": "替换", + "label.toggleReplaceButton": "切换替换模式", + "label.toggleSelectionFind": "在选定内容中查找", + "placeholder.find": "查找", + "placeholder.replace": "替换", + "title.matchesCountLimit": "仅前 999 个结果突出显示,但所有查找操作均针对整个文本。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/format/common/format.i18n.json b/i18n/chs/src/vs/editor/contrib/format/common/format.i18n.json new file mode 100644 index 00000000000..3ec5cd9442e --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/format/common/format.i18n.json @@ -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. +{ + "formatAction.label": "格式代码" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json b/i18n/chs/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json new file mode 100644 index 00000000000..85fd59283de --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.goToDecl.label": "转到定义", + "actions.goToDeclToSide.label": "打开侧边的定义", + "actions.gotoTypeDecl.label": "转到类型定义", + "actions.previewDecl.label": "查看定义", + "multipleResults": "单击此处显示找到的 {0} 个定义。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json b/i18n/chs/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json new file mode 100644 index 00000000000..480732ef883 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json @@ -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. +{ + "markerAction.next.label": "转到下一个错误或警告", + "markerAction.previous.label": "转到上一个错误或警告", + "quickfix.multiple.label": "建议的修正:", + "quickfix.single.label": "建议的修正:" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json b/i18n/chs/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json new file mode 100644 index 00000000000..f37c4060b5b --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json @@ -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. +{ + "modesContentHover.loading": "正在加载..." +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json b/i18n/chs/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json new file mode 100644 index 00000000000..85488250dd7 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "InPlaceReplaceAction.next.label": "替换为下一个值", + "InPlaceReplaceAction.previous.label": "替换为上一个值" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json b/i18n/chs/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json new file mode 100644 index 00000000000..4959334d465 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lines.copyDown": "向下复制行", + "lines.copyUp": "向上复制行", + "lines.delete": "删除行", + "lines.indent": "行缩进", + "lines.insertAfter": "在下面插入行", + "lines.insertBefore": "在上面插入行", + "lines.moveDown": "向下移动行", + "lines.moveUp": "向上移动行", + "lines.outdent": "行减少缩进", + "lines.trimTrailingWhitespace": "裁剪尾随空格" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/links/browser/links.i18n.json b/i18n/chs/src/vs/editor/contrib/links/browser/links.i18n.json new file mode 100644 index 00000000000..6c558f37adf --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/links/browser/links.i18n.json @@ -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. +{ + "invalid.url": "无效的 URI: 无法打开 {0}", + "label": "打开链接", + "links.navigate": "Ctrl + 单击以跟踪链接", + "links.navigate.mac": "Cmd + 单击以跟踪链接" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json b/i18n/chs/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json new file mode 100644 index 00000000000..0bc0e1541aa --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "mutlicursor.insertAbove": "在上面添加光标", + "mutlicursor.insertAtEndOfEachLineSelected": "从所选行创建多个光标", + "mutlicursor.insertBelow": "在下面添加光标" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json b/i18n/chs/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json new file mode 100644 index 00000000000..af6d0f3a465 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json @@ -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. +{ + "parameterHints.trigger.label": "触发参数提示" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json b/i18n/chs/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json new file mode 100644 index 00000000000..8aacced2d57 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json @@ -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. +{ + "quickfix.trigger.label": "快速修复" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json b/i18n/chs/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json new file mode 100644 index 00000000000..2e0d546dd97 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickFixSelectionWidget.loading": "正在加载...", + "QuickFixSelectionWidget.noSuggestions": "无修复建议。", + "treeAriaLabel": "快速修复" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json b/i18n/chs/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json new file mode 100644 index 00000000000..edb7754898d --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json @@ -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. +{ + "label": "转到行..." +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json b/i18n/chs/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json new file mode 100644 index 00000000000..f59f50a904e --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "GotoLineAction.label": "转到行...", + "gotoLineActionInput": "输入行号,后跟可选的冒号以及要导航到的列号", + "gotoLineLabelEmptyWithLineAndColumnLimit": "输入要导航到的介于 1 到 {0} 之间的列", + "gotoLineLabelEmptyWithLineLimit": "输入要导航到的介于 1 到 {0} 之间的行号", + "gotoLineLabelValidLine": "转到行 {0}", + "gotoLineLabelValidLineAndColumn": "转到行 {0} 和列 {1}" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json b/i18n/chs/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json new file mode 100644 index 00000000000..499e42404d0 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json @@ -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. +{ + "label": "命令面板" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json b/i18n/chs/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json new file mode 100644 index 00000000000..3828245e56b --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickCommandAction.label": "命令面板", + "quickCommandActionInput": "输入你想要执行的操作的名称" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json b/i18n/chs/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json new file mode 100644 index 00000000000..a2da59fe212 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json @@ -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. +{ + "label": "转到符号..." +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json b/i18n/chs/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json new file mode 100644 index 00000000000..7fc73b54c07 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json @@ -0,0 +1,20 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickOutlineAction.label": "转到符号...", + "_constructor": "构造函数({0})", + "call": "调用({0})", + "class": "类({0})", + "function": "函数({0})", + "interface": "接口({0})", + "method": "方法({0})", + "modules": "模块({0})", + "property": "属性({0})", + "quickOutlineActionInput": "输入你想要导航到的标识符的名称", + "symbols": "符号({0})", + "variable": "变量({0})", + "variable2": "变量({0})" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json b/i18n/chs/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json new file mode 100644 index 00000000000..88bec9e8da7 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -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. +{ + "labelLoading": "正在加载...", + "noResults": "无结果", + "references.action.label": "查找所有引用", + "references.action.name": "显示引用" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json b/i18n/chs/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json new file mode 100644 index 00000000000..74411184d68 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingPreviewMessage": "无可用预览", + "peekView.alternateTitle": "引用", + "referenceCount": "{0} 个引用", + "referencesCount": "{0} 个引用", + "treeAriaLabel": "引用" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/rename/browser/rename2.i18n.json b/i18n/chs/src/vs/editor/contrib/rename/browser/rename2.i18n.json new file mode 100644 index 00000000000..b51b8e5a691 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/rename/browser/rename2.i18n.json @@ -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. +{ + "rename.label": "重命名符号" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/rename/browser/renameModel.i18n.json b/i18n/chs/src/vs/editor/contrib/rename/browser/renameModel.i18n.json new file mode 100644 index 00000000000..ec5f3a01190 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/rename/browser/renameModel.i18n.json @@ -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. +{ + "cannotLoadFile": "无法加载文件 {0}" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json b/i18n/chs/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json new file mode 100644 index 00000000000..e6089cc95a1 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json @@ -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. +{ + "smartSelect.jumpBracket": "转到括号" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json b/i18n/chs/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json new file mode 100644 index 00000000000..6109b7602b0 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "smartSelect.grow": "扩大选择", + "smartSelect.shrink": "缩小选择" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/suggest/browser/suggest.i18n.json b/i18n/chs/src/vs/editor/contrib/suggest/browser/suggest.i18n.json new file mode 100644 index 00000000000..2f25ac54821 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/suggest/browser/suggest.i18n.json @@ -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. +{ + "suggest.trigger.label": "触发建议" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json b/i18n/chs/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json new file mode 100644 index 00000000000..0612bab3c5c --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json @@ -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. +{ + "goback": "返回", + "readMore": "阅读更多...{0}", + "suggestWidget.loading": "正在加载...", + "suggestWidget.noSuggestions": "无建议。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json b/i18n/chs/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json new file mode 100644 index 00000000000..2db56859a73 --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json @@ -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. +{ + "toggle.tabfocusmode": "切换使用 Tab 键,设置焦点" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json b/i18n/chs/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json new file mode 100644 index 00000000000..3ebf52a28ce --- /dev/null +++ b/i18n/chs/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json @@ -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. +{ + "label.close": "关闭" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/css/common/css.contribution.i18n.json b/i18n/chs/src/vs/languages/css/common/css.contribution.i18n.json new file mode 100644 index 00000000000..774c10f45c7 --- /dev/null +++ b/i18n/chs/src/vs/languages/css/common/css.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "cssConfigurationTitle": "CSS 配置", + "lint": "控制 CSS 验证和问题严重性。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/css/common/cssWorker.i18n.json b/i18n/chs/src/vs/languages/css/common/cssWorker.i18n.json new file mode 100644 index 00000000000..f0be6a87468 --- /dev/null +++ b/i18n/chs/src/vs/languages/css/common/cssWorker.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "css.quickfix.rename": "重命名为“{0}”", + "literal.fontface": "@font-face", + "literal.keyframes": "@keyframes {0}" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/css/common/parser/cssErrors.i18n.json b/i18n/chs/src/vs/languages/css/common/parser/cssErrors.i18n.json new file mode 100644 index 00000000000..621cffa2813 --- /dev/null +++ b/i18n/chs/src/vs/languages/css/common/parser/cssErrors.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.colon": "应输入冒号", + "expected.comma": "应输入逗号", + "expected.condt": "应输入条件", + "expected.dot": "应输入圆点", + "expected.expression": "应输入表达式", + "expected.ident": "应输入标识符", + "expected.lcurly": "应输入 {", + "expected.lparen": "应输入 (", + "expected.lsquare": "应输入 [", + "expected.number": "应输入数字", + "expected.operator": "应输入运算符", + "expected.pagedirordecl": "应输入页面指令或声明", + "expected.percentage": "应输入百分比", + "expected.propvalue": "应输入属性值", + "expected.rcurly": "应输入 }", + "expected.rparent": "应输入 )", + "expected.rsquare": "应输入 ]", + "expected.ruleorselector": "应输入 at-rule 或选择器", + "expected.selector": "应输入选择器", + "expected.semicolon": "应输入分号", + "expected.stringliteral": "应输入字面字符串", + "expected.term": "应输入术语", + "expected.uri": "应输入 URI", + "expected.uriorstring": "应输入 uri 或字符串", + "expected.varname": "应输入变量名", + "expected.varvalue": "应输入变量值", + "unknown.atrule": "未知 at-rule", + "unknown.keyword": "未知关键字" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/css/common/services/intelliSense.i18n.json b/i18n/chs/src/vs/languages/css/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..4820d759dab --- /dev/null +++ b/i18n/chs/src/vs/languages/css/common/services/intelliSense.i18n.json @@ -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. +{ + "css.builtin.hsl": "使用色调、饱和度和亮度值创建颜色。", + "css.builtin.hsla": "使用色调、饱和度、亮度和 Alpha 值创建颜色。", + "css.builtin.rgb": "使用红色、绿色和蓝色值创建颜色。", + "css.builtin.rgba": "使用红色、绿色、蓝色和 Alpha 值创建颜色。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/css/common/services/lint.i18n.json b/i18n/chs/src/vs/languages/css/common/services/lint.i18n.json new file mode 100644 index 00000000000..33bef197372 --- /dev/null +++ b/i18n/chs/src/vs/languages/css/common/services/lint.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "keyframes.standardrule.missing": "定义关键帧时始终定义标准规则 \"@keyframes\"。", + "keyframes.vendorspecific.missing": "始终包括所有供应商特定规则: 缺少: {0}", + "namelist.concatenated": "{0},“{1}”", + "namelist.single": "“{0}”", + "property.standard.missing": "还应定义兼容性的标准属性“{0}”", + "property.vendorspecific.missing": "始终包括所有供应商特定属性: 缺少: {0}" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/css/common/services/lintRules.i18n.json b/i18n/chs/src/vs/languages/css/common/services/lintRules.i18n.json new file mode 100644 index 00000000000..925b5d5909e --- /dev/null +++ b/i18n/chs/src/vs/languages/css/common/services/lintRules.i18n.json @@ -0,0 +1,26 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "enableValidation": "启用或禁用所有验证", + "rule.avoidFloat": "避免使用“float”。浮动会带来脆弱的 CSS,如果布局的某一方面更改,将很容易破坏 CSS。", + "rule.avoidIdSelector": "选择器不应包含 ID,因为这些规则与 HTML 的耦合过于紧密。", + "rule.avoidImportant": "避免使用 !important。它表明整个 CSS 的特异性已经失去控制且需要重构。", + "rule.colorFunction": "参数数量无效", + "rule.duplicateDeclarations": "不要使用重复的样式定义", + "rule.emptyRuleSets": "不要使用空规则集", + "rule.fontFaceProperties": "@font-face 规则必须定义 \"src\" 和 \"font-family\" 属性", + "rule.hexColor": "十六进制颜色必须由三个或六个十六进制数字组成", + "rule.ieHack": "仅当支持 IE7 及更低版本时,才需要 IE hack", + "rule.importDirective": "Import 语句不会并行加载", + "rule.propertyIgnoredDueToDisplay": "因显示而忽略属性。例如,使用 \"display: inline\"时,宽度、高度、上边距、下边距和 float 属性将不起作用", + "rule.standardvendorprefix.all": "使用供应商特定前缀时,还应包括标准属性", + "rule.universalSelector": "已知通配选择符 (*) 慢", + "rule.unknownProperty": "未知的属性。", + "rule.unknownVendorSpecificProperty": "未知的供应商特定属性。", + "rule.vendorprefixes.all": "使用供应商特定前缀时,确保同时包括所有其他供应商特定属性", + "rule.withHeightAndBorderPadding": "使用边距或边框时,不要使用宽度或高度", + "rule.zeroWidthUnit": "零不需要单位" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/javascript/common/javascript.contribution.i18n.json b/i18n/chs/src/vs/languages/javascript/common/javascript.contribution.i18n.json new file mode 100644 index 00000000000..650338e6492 --- /dev/null +++ b/i18n/chs/src/vs/languages/javascript/common/javascript.contribution.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "始终包含当前文档的所有内容。", + "compilationSettings": "控制 JavaScript 验证如何运行。", + "jsConfigurationTitle": "JavaScript 配置", + "lint": "控制验证的各个方面。", + "lint.comparisonOperatorsNotStrict": "使用“!==”和“===”,而不使用“!=”和“==”。", + "lint.curlyBracketsMustNotBeOmitted": "不要省略花括号。", + "lint.emptyBlocksWithoutComment": "空白块应有注释。", + "lint.forcedTypeConversion": "请勿通过分配重新声明某个变量。", + "lint.functionsInsideLoops": "循环中的函数。", + "lint.missingSemicolon": "缺少分号。", + "lint.mixedTypesArithmetics": "仅对算术运算使用数字。", + "lint.newOnLowercaseFunctions": "用作构造函数的具有小写名称的函数。", + "lint.newOnReturningFunctions": "用作构造函数的具有 return 语句的函数。", + "lint.parametersDontMatchSignature": "参数与函数签名不匹配", + "lint.primitivesInInstanceOf": "请勿使用具有基元类型的 instanceof。", + "lint.redeclaredVariables": "请勿重新声明变量并更改其类型。", + "lint.semicolonsInsteadOfBlocks": "分号而不是块。", + "lint.tripleSlashReferenceAlike": "查找输入错误的三斜线引用。", + "lint.undeclaredVariables": "请勿使用未声明的变量。", + "lint.unknownModule": "请勿要求未知模块。", + "lint.unknownProperty": "请勿使用未知属性。", + "lint.unknownTypeOfResults": "“typeof”操作符的意外输出。", + "lint.unusedFunctions": "未使用的本地函数。", + "lint.unusedVariables": "未使用的本地变量。", + "semanticValidation": "为 JavaScript 文件运行 linter 检查 - 替代 validate.lint.* 设置。", + "suggestSettings": "控制 JavaScript IntelliSense 如何运行。", + "syntaxValidation": "检查 JavaScript 文件中是否存在语法错误。", + "useCodeSnippetsOnMethodSuggest": "完成函数的参数签名。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json b/i18n/chs/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json new file mode 100644 index 00000000000..d4b8df8a604 --- /dev/null +++ b/i18n/chs/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.bower.default": "默认 bower.json", + "json.bower.error.repoaccess": "对 Bower 存储库发出的请求失败: {0}", + "json.bower.package.hover": "{0}" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json b/i18n/chs/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json new file mode 100644 index 00000000000..fda31d07a44 --- /dev/null +++ b/i18n/chs/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.nugget.error.repoaccess": "对 NuGet 存储库发出的请求失败: {0}", + "json.nugget.package.hover": "{0}", + "json.nugget.version.hover": "最新版本: {0}", + "json.nugget.versiondescription.suggest": "包的当前最新版本", + "json.project.default": "默认 project.json" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/json/common/json.contribution.i18n.json b/i18n/chs/src/vs/languages/json/common/json.contribution.i18n.json new file mode 100644 index 00000000000..943860d065c --- /dev/null +++ b/i18n/chs/src/vs/languages/json/common/json.contribution.i18n.json @@ -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. +{ + "jsonConfiguration.fileMatch": "包含解析 JSON 文件到架构时要匹配“*”的文件模式。", + "jsonConfiguration.fileMatches": "解析 JSON 文件到架构时要匹配的文件模式数组。", + "jsonConfiguration.schema": "给定 URL 的架构定义。仅需要提供架构用于避免访问架构 URL。", + "jsonConfiguration.schemaPath": "当前目录中的架构的 URL 或相对路径", + "jsonConfiguration.schemas": "将架构关联到当前项目中的 JSON 文件", + "jsonConfigurationDescription": "用于配置 JSON 设置和架构。", + "jsonConfigurationTitle": "JSON 配置" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/json/common/json.i18n.json b/i18n/chs/src/vs/languages/json/common/json.i18n.json new file mode 100644 index 00000000000..79d4a2ffd12 --- /dev/null +++ b/i18n/chs/src/vs/languages/json/common/json.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "array": "数组", + "boolean": "布尔值", + "number": "数字", + "object": "对象", + "string": "字符串", + "undefined": "未定义" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/json/common/jsonIntellisense.i18n.json b/i18n/chs/src/vs/languages/json/common/jsonIntellisense.i18n.json new file mode 100644 index 00000000000..846960940db --- /dev/null +++ b/i18n/chs/src/vs/languages/json/common/jsonIntellisense.i18n.json @@ -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. +{ + "json.suggest.default": "默认值" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/json/common/jsonSchemaService.i18n.json b/i18n/chs/src/vs/languages/json/common/jsonSchemaService.i18n.json new file mode 100644 index 00000000000..ad49ab7accd --- /dev/null +++ b/i18n/chs/src/vs/languages/json/common/jsonSchemaService.i18n.json @@ -0,0 +1,169 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "app.plugin.json.activationEvents": "插件的激活事件", + "app.plugin.json.contributes": "此插件的贡献", + "app.plugin.json.contributes.language": "插件的语言贡献", + "app.plugin.json.contributes.language.aliases": "此语言的名称别名", + "app.plugin.json.contributes.language.extensions": "关联到此语言的文件扩展名", + "app.plugin.json.contributes.language.filenames": "关联到此语言的文件名", + "app.plugin.json.contributes.language.id": "此语言的 ID", + "app.plugin.json.dependencies": "插件依赖关系", + "app.plugin.json.mainModule": "主 JavaScript 文件的相对路径", + "app.plugin.json.pluginId": "唯一的插件 id", + "app.plugin.json.scripts": "插件提供的脚本", + "app.plugin.json.scripts.compile": "用于编译此插件的命令行", + "bower.json.authors": "创作包内容的人员列表。", + "bower.json.dependencies": "使用包名称的简单哈希指定依赖项到 semver 兼容标识符或 URL。", + "bower.json.description": "通过简短说明帮助用户识别和搜索你的包。", + "bower.json.devDependencies": "仅包开发需要的依赖项,例如测试框架或生成文档。", + "bower.json.exportsOverride": "grunt-bower-task 用于指定自定义安装位置。", + "bower.json.homepage": "可了解有关包的详细信息的 URL。如果未指定,返回 GitHub 项目并且它是一个 GitHub 端点。", + "bower.json.ignore": "安装包时,Bower 要忽略的文件列表。", + "bower.json.invalidPatternName": "以 _ 开头的任何属性有效。", + "bower.json.keywords": "用于根据关键字搜索。有助于更轻松地查找你的包,而不必知道其名称。", + "bower.json.license": "SPDX 许可证标识符或许可证的路径/URL", + "bower.json.main": "使用你的包所需的主作用文件。", + "bower.json.moduleType": "此包显示的模块类型", + "bower.json.packagename": "你的包的名称。", + "bower.json.private": "如果你将它设置为 true,它将拒绝发布它。这是防止意外发布专用存储库的方法。", + "bower.json.repository": "可在其中找到源代码的存储库。", + "bower.json.resolutions": "如果包之间发生冲突,自动解析的依赖项版本。", + "bower.json.title": "Bower 配置文件的 JSON 架构", + "bower.json.version": "语义版本号。", + "global.json.projects": "与此文件相关的项目文件夹的列表。", + "global.json.sources": "与此文件相关的源文件夹的列表。", + "global.json.title": "ASP.NET 全局配置文件的 JSON 架构", + "jsconfig.json.compilerOptions": "指导 JavaScript 语言服务如何验证 .js 文件", + "jsconfig.json.compilerOptions.charset": "输入文件的字符集", + "jsconfig.json.compilerOptions.decorators": "对 ES7 修饰器启用实验支持。", + "jsconfig.json.compilerOptions.diagnostics": "显示诊断信息。", + "jsconfig.json.compilerOptions.locale": "将用于显示错误消息的区域设置,如 zh-cn。", + "jsconfig.json.compilerOptions.mapRoot": "指定调试器应放置映射文件的位置而不是生成的位置", + "jsconfig.json.compilerOptions.module": "解析所依据的模块代码生成: \"commonjs\"、\"amd\"、\"system\" 或 \"umd\"。", + "jsconfig.json.compilerOptions.noLib": "请勿包括默认库文件(lib.d.ts)。", + "jsconfig.json.compilerOptions.target": "指定 ECMAScript 目标版本: \"ES3\" (默认)、\"ES5\" 或 \"ES6\" (实验)。", + "jsconfig.json.exclude": "列出不应包括的文件和文件夹。\"files\" 属性存在时,不实现此属性。", + "jsconfig.json.files": "如果 jsconfig.json 中不存在 \"files\" 属性,则语言服务默认包括所有文件(包括目录和子目录)。指定了 \"files\" 属性时,仅包括这些文件。", + "jsconfig.json.title": "JavaScript 配置文件的 JSON 架构", + "json.schema.unabletoload": "无法从 '{0}': {1} 加载架构。", + "package.json.bugs": "应该将问题上报到的项目问题跟踪程序的 URL 和/或电子邮件地址。对于遇到与你的包有关的问题的人员,这些内容十分有用。", + "package.json.bugs.email": "应向其报告问题的电子邮件地址。", + "package.json.bugs.url": "项目的问题跟踪程序的 url。", + "package.json.bundleDependencies": "将在发布包时捆绑的包名的数组。", + "package.json.bundledDependencies": "将在发布包时捆绑的包名的数组。", + "package.json.config": "\"config\" 哈希可以用于设置在包脚本中使用并且在各个升级间保持的配置参数。", + "package.json.contributors": "为此包做出贡献的人员的列表。", + "package.json.dependency": "使用包名的简单哈希指定依赖关系到版本范围。版本范围是具有一个或多个空格分隔描述符的字符串。还可以使用 tarball 或 git URL 标识依赖关系。", + "package.json.descr": "这可帮助人们发现你的包,因为它会在“npm 搜索”中列出。", + "package.json.description": "此包的 NPM 配置。", + "package.json.directories.bin": "如果指定 \"bin\" 目录,则该文件夹中的所有文件都会用作 \"bin\" 哈希。", + "package.json.directories.doc": "将标记文件置于此处。最后可能会在某天很好地显示这些文件。", + "package.json.directories.example": "将示例脚本置于此处。它可能会在某天通过某种明智的方式公开。", + "package.json.directories.lib": "告诉人们库的批量处于何处。无需以任何方式对 lib 文件夹执行任何特殊操作,但是它是有用的数据信息。", + "package.json.directories.man": "充满手册页的文件夹。可有效用于通过浏览文件夹生成 \"man\" 数组。", + "package.json.files": "\"files\" 字段是要包含在项目中的文件的数组。如果在数组中对某个文件夹命名,则它将也包含该文件夹中的文件。", + "package.json.homepage": "项目主页的 url。", + "package.json.keywords": "这可帮助人们发现你的包,因为它会在“npm 搜索”中列出。", + "package.json.license": "应为你的包指定许可证,以便人们知道如何允许他们使用该包,以及你对该包施加的任何限制。", + "package.json.licenses": "应为你的包指定许可证,以便人们知道如何允许他们使用该包,以及你对该包施加的任何限制。", + "package.json.main": "主字段是你的程序的主入口点的模块 ID。", + "package.json.maintainers": "维护此包的人员的列表。", + "package.json.man": "指定单个文件或文件名数组以备 man 程序进行查找。", + "package.json.name": "包的名称。", + "package.json.person": "受邀创建或维护此包的人员", + "package.json.preferGlobal": "如果你的包主要是应在全局安装的命令行应用程序,请将此值设置为 true 以在进行本地安装时提供警告。", + "package.json.private": "如果设置为 true,则 npm 会拒绝发布它。", + "package.json.repository": "指定你的代码所处的位置。对于要做出贡献的人员,这十分有用。", + "package.json.scripts": "\"scripts\" 成员是在包生命周期中各个时间运行的脚本命令的对象哈希。键是生命周期事件,值是当时运行的命令。", + "package.json.underscore": "以 _ 开头的任何属性有效。", + "package.json.version": "版本必须可由 node-semver (作为依赖项与 npm 捆绑)分析。", + "project.json.authors": "应用程序的设计者", + "project.json.bundleExclude": "要从发布输出(kpm 捆绑)中排除的文件的列表。", + "project.json.code": "指定需要编译的所有代码文件的 glob 模式。(数据类型: 具有 glob 模式的字符串或数组)。例如: [ 'Folder1*.cs', 'Folder2*.cs' ]", + "project.json.commands": "可用于该应用程序的命令", + "project.json.compilationOptions": "传递到 Roslyn 的编译选项", + "project.json.configurations": "配置是编译设置的命名组。运行时中内置了 2 个默认值,即 \"Debug\" 和 \"Release\"。", + "project.json.dependencies": "应用程序的依赖项。每次登录指定名称和 Nuget 包的版本。", + "project.json.dependency.name": "该依赖项版本。", + "project.json.dependency.type": "依赖项类型。只在生成时存在 'build' 依赖项", + "project.json.description": "应用程序的说明", + "project.json.exclude": "指示要从编译排除的所有代码文件的 glob 模式。(数据类型: 具有 glob 模式的字符串或数组)。", + "project.json.frameworks": "将生成的目标框架和特定于配置的依赖项。", + "project.json.preprocess": "指示要预处理的所有代码文件的 glob 模式。(数据类型: 具有 glob 模式的字符串)。", + "project.json.resources": "指示要作为资源编译的所有文件的 glob 模式。", + "project.json.script": "命令行脚本或脚本。\r\rAvailable variables:\r%project:Directory% - The project directory\r%project:Name% - The project name\r%project:Version% - 项目版本", + "project.json.scripts": "不同阶段要执行的脚本。", + "project.json.shared": "指定要与相关项目共享的代码文件的 glob 模式。例如: [ 'Folder1*.cs', 'Folder2*.cs' ]", + "project.json.title": "ASP.NET project.json 文件的 JSON 架构", + "project.json.version": "应用程序的版本。例如: 1.2.0.0", + "project.json.webroot": "通过指定 project.json 文件中的 Webroot 属性,指定 Web 服务器根(aka 公共文件夹)。在 Visual Studio 中,此文件夹将用于获取 IIS 的根权限。应将静态文件放置在此处。", + "schema.json": "使用架构描述 JSON 文件。参见 json-schema.org 了解详细信息。", + "schema.json.$schema": "验证此文档的架构", + "schema.json.additionalItems": "用于阵列,仅适用于项目被设置为一个数组。如果是一个架构,则在项目数组指定项目后,由此架构进行验证。如果为 false,则其他项目将导致验证失败。", + "schema.json.additionalProperties": "是一个架构或者是一个布尔值。如果是一个架构,则用于验证所有与 'properties' or 'patternProperties' 不匹配的属性。如果为 false,则任何与上述两者不匹配的属性将导致此架构失败。", + "schema.json.allOf": "架构的数组,所有必须匹配。", + "schema.json.anyOf": "架构的数组,必须至少有一个匹配。", + "schema.json.default": "默认值。由建议使用。", + "schema.json.definitions": "不用于验证。将您希望使用 $ref 内嵌引用的子架构放在此处。", + "schema.json.dependencies": "属性名称到属性名称数组或架构的映射。属性名称数组指的是命名的关键属性。这取决于为保证有效将显示在对象中的数组中的属性。如果该值是一个架构,则该架构仅应用于对象,如果关键属性存在于对象上。", + "schema.json.description": "元素的详细描述。用于悬停菜单和建议。", + "schema.json.enum": "一组有效的文字值", + "schema.json.exclusiveMaximum": "使最大的属性成为专有属性。", + "schema.json.exclusiveMininum": "使最小的属性成为专有属性。", + "schema.json.id": "架构的唯一标识符。", + "schema.json.items": "用于数组。可以是一个用于验证每个元素的架构,或按顺序验证每个项目的架构数组 (第一个架构将验证第一个元素,第二个架构将验证第二个元素,依此类推)。", + "schema.json.maxItems": "一个数组内的项目的最大数量。包含。", + "schema.json.maxLength": "字符串最大长度。", + "schema.json.maxProperties": "一个对象可以拥有的属性的最大数量。包含。", + "schema.json.maximum": "最大数值,默认包含。", + "schema.json.minItems": "一个数组内的项目的最小数量。包含。", + "schema.json.minLength": "一个字符串的最小长度。", + "schema.json.minProperties": "一个对象可以拥有的属性的最小数量。包含。", + "schema.json.minimum": "最小数值,默认包含。", + "schema.json.multipleOf": "一个可以除尽当前值的数 (即,没有余数)", + "schema.json.not": "必须不能匹配的架构。", + "schema.json.oneOf": "架构的数组,正好有一个必须匹配。", + "schema.json.pattern": "匹配字符串的正则表达式。不是隐含固定的。", + "schema.json.patternProperties": "属性名称的正则表达式与架构的映射,用于匹配属性。", + "schema.json.properties": "属性名称与每个属性架构的映射。", + "schema.json.required": "字符串的数组,这些字符串列出了此对象需要的所有属性的名字。", + "schema.json.title": "元素的描述性标题", + "schema.json.type": "一个基本架构类型 (数字、整数、空、数组、对象、布尔值、字符串) 的字符串或一个指定这些类型子集的字符串的数组。", + "schema.json.uniqueItems": "数组中所有项目是否必须唯一。默认为 false。", + "snippetSchema.json": "用户代码片段配置", + "snippetSchema.json.body": "代码片段内容。使用 \"${id}\"、\"${id:label}\"、\"${1:label}\" 作为变量,并使用 \"$0\" 和 \"$1\" 表示光标位置", + "snippetSchema.json.description": "代码片段描述。", + "snippetSchema.json.prefix": "在 Intellisense 中选择代码片段时将使用的前缀", + "tsconfig.json.compilerOptions": "向 TypeScript 编译器指示如何编译 .ts 文件", + "tsconfig.json.compilerOptions.charset": "输入文件的字符集", + "tsconfig.json.compilerOptions.declaration": "生成相应的 d.ts 文件。", + "tsconfig.json.compilerOptions.diagnostics": "显示诊断信息。", + "tsconfig.json.compilerOptions.emitBOM": "在输出文件开头发出 UTF-8 字节顺序标记(BOM)。", + "tsconfig.json.compilerOptions.inlineSourceMap": "发出单个文件以及源映射而不是单独的文件。", + "tsconfig.json.compilerOptions.inlineSources": "随单个文件中的源映射一起发出源;需要设置 --inlineSourceMap。", + "tsconfig.json.compilerOptions.listFiles": "编译的文件部分的打印名称。", + "tsconfig.json.compilerOptions.locale": "将用于显示错误消息的区域设置,如 zh-cn。", + "tsconfig.json.compilerOptions.mapRoot": "指定调试器应放置映射文件的位置而不是生成的位置", + "tsconfig.json.compilerOptions.module": "指定模块代码生成: \"CommonJS\"、\"Amd\"、\"System\" 或 \"UMD\"。", + "tsconfig.json.compilerOptions.newLine": "指定发出文件时要使用的行序列结尾: \"CRLF\" (dos)或 \"LF\" (unix)。", + "tsconfig.json.compilerOptions.noEmit": "不发出输出。", + "tsconfig.json.compilerOptions.noEmitHelpers": "请勿生成自定义 helper 函数,如编译输出中的 __extends。", + "tsconfig.json.compilerOptions.noEmitOnError": "如果报告了任何类型检查错误,请勿发出输出。", + "tsconfig.json.compilerOptions.noImplicitAny": "有关带隐式 \"any\" 类型的表达式和声明的警告。", + "tsconfig.json.compilerOptions.noLib": "请勿包括默认库文件(lib.d.ts)。", + "tsconfig.json.compilerOptions.out": "连接输出并将其发出到单个文件。", + "tsconfig.json.compilerOptions.outDir": "将输出结构重定向到目录。", + "tsconfig.json.compilerOptions.preserveConstEnums": "请勿清除生成代码中的常量枚举声明。", + "tsconfig.json.compilerOptions.removeComments": "请勿将注释发到输出中。", + "tsconfig.json.compilerOptions.rootDir": "指定输入文件的根目录。与 --outDir 一起用于控制输出目录结构。", + "tsconfig.json.compilerOptions.sourceMap": "生成相应的 \".map\" 文件。", + "tsconfig.json.compilerOptions.sourceRoot": "指定调试器应放置 TypeScript 文件的位置而不是源位置。", + "tsconfig.json.compilerOptions.suppressImplicitAnyIndexErrors": "抑制缺少索引签名的索引对象的 noImplicitAny 错误。", + "tsconfig.json.compilerOptions.target": "指定 ECMAScript 目标版本: \"ES3\" (默认)、\"ES5\" 或 \"ES6\" (实验)。", + "tsconfig.json.files": "如果 tsconfig.json 中不存在 \"files\" 属性,则编译器默认为包括包含目录和子目录中的所有文件。指定 \"files\" 属性时,仅包括这些文件。", + "tsconfig.json.title": "TypeScript 编译器的配置文件的 JSON 架构" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/json/common/parser/jsonParser.i18n.json b/i18n/chs/src/vs/languages/json/common/parser/jsonParser.i18n.json new file mode 100644 index 00000000000..64176e2f085 --- /dev/null +++ b/i18n/chs/src/vs/languages/json/common/parser/jsonParser.i18n.json @@ -0,0 +1,44 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ColonExpected": "需要冒号", + "DisallowedExtraPropWarning": "不允许使用属性 {0}。", + "DoubleQuotesExpected": "属性关键字必须用双引号括起来", + "DuplicateKeyWarning": "重复对象键", + "End of file expected": "预期的文件结尾", + "ExpectedCloseBrace": "需要逗号或右大括号", + "ExpectedCloseBracket": "需要逗号或右中括号", + "Invalid symbol": "预期的 JSON 对象、数组或文本", + "InvalidEscapeCharacter": "字符串中的转义字符无效", + "InvalidNumberFormat": "数字格式无效", + "InvalidUnicode": "字符串中的 Unicode 序列无效", + "MaxPropWarning": "对象拥有比 {0} 限制更多的属性", + "MinPropWarning": "对象拥有比 {0} 需要的数量更少的属性", + "MissingRequiredPropWarning": "缺少属性“{0}”", + "PropertyExpected": "预期的属性", + "RequiredDependentPropWarning": "对象缺少属性 {1} 要求的属性 {0}", + "UnexpectedEndOfComment": "意外的注释结尾", + "UnexpectedEndOfNumber": "意外的数字结尾", + "UnexpectedEndOfString": "意外的字符串结尾", + "ValueExpected": "需要值", + "additionalItemsWarning": "根据架构,数组项目过多。预期为 {0} 或更少", + "enumWarning": "值不是一个可接受的值。有效值为: {0}", + "exclusiveMaximumWarning": "值超过了 {0} 的专有最大值", + "exclusiveMinimumWarning": "值低于 {0} 的专有最小值", + "maxItemsWarning": "数组拥有的项目过多。预期为 {0} 或更少", + "maxLengthWarning": "字符串比最大长度短", + "maximumWarning": "值超过了 {0} 的最大值", + "minItemsWarning": "数组拥有的项目过少。预期为 {0} 或更多", + "minLengthWarning": "字符串比最小长度短", + "minimumWarning": "值低于 {0} 的最小值", + "multipleOfWarning": "值不能被 {0} 整除", + "notSchemaWarning": "匹配不允许的架构。", + "oneOfWarning": "当只有一个必须验证时,匹配多个架构。", + "patternWarning": "字符串不匹配“{0}”的模式", + "typeArrayMismatchWarning": "错误类型。预期为 {0} 的一种", + "typeMismatchWarning": "错误类型。预期为“{0}”", + "uniqueItemsWarning": "数组有重复的项目" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/less/common/less.contribution.i18n.json b/i18n/chs/src/vs/languages/less/common/less.contribution.i18n.json new file mode 100644 index 00000000000..f17f404d79e --- /dev/null +++ b/i18n/chs/src/vs/languages/less/common/less.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lessConfigurationTitle": "LESS 配置", + "lessLint": "控制 LESS 验证和问题严重性。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/less/common/services/intelliSense.i18n.json b/i18n/chs/src/vs/languages/less/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..f3827cec390 --- /dev/null +++ b/i18n/chs/src/vs/languages/less/common/services/intelliSense.i18n.json @@ -0,0 +1,60 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "less.builtin.abs": "数字的绝对值", + "less.builtin.acos": "反余弦 - 余弦函数的反函数", + "less.builtin.alpha": "返回“@color”的 \"Alpha\" 通道", + "less.builtin.argb": "创建 #AARRGGBB", + "less.builtin.asin": "反正弦 - 正弦函数的反函数", + "less.builtin.atan": "反正切 - 正切函数的反函数", + "less.builtin.blue": "返回“@color”的“蓝色”通道", + "less.builtin.ceil": "向上取整到整数", + "less.builtin.color": "将字符串分析为颜色", + "less.builtin.contrast": "如果“@color1 > 43% luma”,则返回“@darkcolor”,否则返回“@lightcolor”,请参阅注释", + "less.builtin.convert": "将数字从一种类型转换为另一种类型", + "less.builtin.cos": "余弦函数", + "less.builtin.darken": "返回亮度暗 10% 点的 \"@color\"", + "less.builtin.data-uri": "内联一个资源并回退到 \"url()\"", + "less.builtin.desaturate": "返回饱和度降低 10% 点的 \"@color\"", + "less.builtin.e": "转义字符串内容", + "less.builtin.escape": "对字符串进行 URL 编码", + "less.builtin.extract": "返回列表中指定位置上的值", + "less.builtin.fade": "返回透明度为 50% 的“@color”", + "less.builtin.fadein": "返回透明度降低 10% 点的 \"@color\"", + "less.builtin.fadeout": "返回透明度增加 10% 点的 \"@color\"", + "less.builtin.floor": "向下取整到整数", + "less.builtin.green": "返回“@color”的“绿色”通道", + "less.builtin.greyscale": "返回灰色的 100% 不饱和色", + "less.builtin.hsl": "创建颜色", + "less.builtin.hsla": "创建颜色", + "less.builtin.hsv": "创建颜色", + "less.builtin.hsva": "创建颜色", + "less.builtin.hsvhue": "返回 HSV 空间中“@color”的“色调”通道", + "less.builtin.hsvsaturation": "返回 HSV 空间中“@color”的“饱和度”通道", + "less.builtin.hsvvalue": "返回 HSV 空间中“@color”的“值”通道", + "less.builtin.hue": "返回 HSL 空间中“@color”的“色调”通道", + "less.builtin.length": "返回值列表中元素的数量", + "less.builtin.lighten": "返回亮度增加 10% 点的 \"@color\"", + "less.builtin.lightness": "返回 HSL 空间中“@color”的“亮度”通道", + "less.builtin.luma": "返回“@color”的 \"luma\" 值(感知亮度)", + "less.builtin.max": "返回一个或多个值中的最小值", + "less.builtin.min": "返回一个或多个值中的最小值", + "less.builtin.mix": "返回“@color1”和“@color2”的混合色", + "less.builtin.mod": "第一个参数对第二个参数进行取模运算", + "less.builtin.percentage": "转换为 %,例如 0.5 > 50%", + "less.builtin.pi": "返回 pi", + "less.builtin.pow": "第一个参数的第二参数次方", + "less.builtin.red": "返回“@color”的“红色”通道", + "less.builtin.replace": "字符串替换", + "less.builtin.round": "将数字取整到多个位置", + "less.builtin.saturate": "返回饱和度增加 10% 点的 \"@color\"", + "less.builtin.saturation": "返回 HSL 空间中“@color”的“饱和度”通道", + "less.builtin.sin": "正弦函数", + "less.builtin.spin": "返回色调增加 10 度的“@color”", + "less.builtin.sqrt": "计算数字的平方根", + "less.builtin.tan": "正切函数", + "less.builtin.unit": "删除或更改维度单位" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/markdown/common/markdown.contribution.i18n.json b/i18n/chs/src/vs/languages/markdown/common/markdown.contribution.i18n.json new file mode 100644 index 00000000000..ae5676d1622 --- /dev/null +++ b/i18n/chs/src/vs/languages/markdown/common/markdown.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "markdownConfigurationTitle": "标记预览配置", + "styles": "标记预览中供使用的 CSS 样式表的 URL 或本地路径列表。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/sass/common/parser/sassErrors.i18n.json b/i18n/chs/src/vs/languages/sass/common/parser/sassErrors.i18n.json new file mode 100644 index 00000000000..24f80eae654 --- /dev/null +++ b/i18n/chs/src/vs/languages/sass/common/parser/sassErrors.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.from": "应输入 \"from\"", + "expected.in": "应输入 \"in\"", + "expected.through": "应输入 \"through\" 或 \"to\" " +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/sass/common/sass.contribution.i18n.json b/i18n/chs/src/vs/languages/sass/common/sass.contribution.i18n.json new file mode 100644 index 00000000000..efa20412e05 --- /dev/null +++ b/i18n/chs/src/vs/languages/sass/common/sass.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sassConfigurationTitle": "Sass 配置", + "sassLint": "控制 Sass 验证和问题严重性。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/sass/common/services/intelliSense.i18n.json b/i18n/chs/src/vs/languages/sass/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..297b858bb04 --- /dev/null +++ b/i18n/chs/src/vs/languages/sass/common/services/intelliSense.i18n.json @@ -0,0 +1,81 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sass.builtin.abs": "返回数字的绝对值。", + "sass.builtin.adjust-color": "增加或减少颜色的一个或多个组成部分。", + "sass.builtin.adjust-hue": "更改颜色的色调。", + "sass.builtin.alpha": "获取颜色的不透明组件。", + "sass.builtin.append": "追加一个值到列表的末尾。", + "sass.builtin.blue": "获得颜色的蓝色组件。", + "sass.builtin.call": "动态调用 Sass 函数。", + "sass.builtin.ceil": "将数字向上取整到下一个整数。", + "sass.builtin.change-color": "更改颜色的一个或多个属性。", + "sass.builtin.comparable": "返回两个数字是否可以相加、相减或进行比较。", + "sass.builtin.complement": "返回颜色的补色。", + "sass.builtin.darken": "使颜色变暗。", + "sass.builtin.desaturate": "使颜色变得更不饱和。", + "sass.builtin.fade-in": "使颜色变得更不透明。", + "sass.builtin.feature-exists": "返回当前 Sass 运行时中是否存在某个功能。", + "sass.builtin.floor": "将数字向下取整到上一个整数。", + "sass.builtin.function-exists": "返回是否存在具有给定名称的函数。", + "sass.builtin.global-variable-exists": "返回全局范围内是否存在具有给定名称的变量。", + "sass.builtin.grayscale": "将颜色转换为灰度。", + "sass.builtin.green": "获取颜色的绿色组件。", + "sass.builtin.hue": "获取颜色的色调组件。", + "sass.builtin.ie-hex-str": "将颜色转换为 IE 筛选器理解的格式。", + "sass.builtin.index": "返回列表中值的位置。", + "sass.builtin.inspect": "返回值的字符串表示形式,即该值在 Sass 中的表现形式。", + "sass.builtin.invert": "返回颜色的反色。", + "sass.builtin.is-superselector": "返回 $super 是否匹配 $sub 匹配的所有元素,甚或更多元素。", + "sass.builtin.join": "将两个列表联接为一个列表。", + "sass.builtin.keywords": "返回传递到使用变量参数的函数的关键字。", + "sass.builtin.length": "返回列表的长度。", + "sass.builtin.lighten": "使颜色变亮。", + "sass.builtin.lightness": "获取颜色的亮度组件。", + "sass.builtin.list-separator": "返回列表的分隔符。", + "sass.builtin.map-get": "返回映射中与给定键关联的值。", + "sass.builtin.map-has-key": "返回映射是否有一个与给定键关联的值。", + "sass.builtin.map-keys": "返回映射中所有键的列表。", + "sass.builtin.map-merge": "将两个映射合并为一个新映射。", + "sass.builtin.map-remove": "返回删除了键的新映射。", + "sass.builtin.map-values": "返回映射中所有值的列表。", + "sass.builtin.max": "查找几个数字中的最大值。", + "sass.builtin.min": "发现几个数字中的最小值。", + "sass.builtin.mix": "混合两种颜色。", + "sass.builtin.mixin-exists": "返回是否存在具有给定名称的 mixin。", + "sass.builtin.nth": "返回列表中的特定项。", + "sass.builtin.opacify": "使颜色变得更不透明。", + "sass.builtin.percentage": "将没有单位的数字转换为百分比。", + "sass.builtin.quote": "向字符串添加引号。", + "sass.builtin.random": "返回随机数字。", + "sass.builtin.red": "获取颜色的红色组件。", + "sass.builtin.rgba": "更改颜色的 Alpha 组件。", + "sass.builtin.round": "将数字取整到最近的整数。", + "sass.builtin.saturate": "使颜色变得更饱和。", + "sass.builtin.saturation": "获取颜色的饱和度组件。", + "sass.builtin.scale-color": "流动缩放颜色的一个或多个属性。", + "sass.builtin.selector-append": "将一个选择器追加到另一个选择器,两者之间不留空格。", + "sass.builtin.selector-extend": "使用 $selector 中的 $extender 扩展 $extendee。", + "sass.builtin.selector-nest": "将一个选择器嵌套在另一个选择器下面,如它们在样式表中的嵌套方式。", + "sass.builtin.selector-parse": "将选择器分析为由 & 返回的格式。", + "sass.builtin.selector-replace": "使用 $selector 中的 $replacement 替换 $original。", + "sass.builtin.selector-unify": "统一两个选择器,以生成一个匹配这两个选择器所匹配的元素的选择器。", + "sass.builtin.set-nth": "替换列表中的第 n 个项。", + "sass.builtin.simple-selectors": "返回组成复合选择器的单个选择器。", + "sass.builtin.str-index": "返回 $string 中 $substring 首次出现的索引。", + "sass.builtin.str-insert": "在 $index 将 $insert 插入到 $string 中。", + "sass.builtin.str-length": "返回字符串中字符的数量。", + "sass.builtin.str-slice": "从 $string 中提取子字符串。", + "sass.builtin.to-lower-case": "将字符串转换为小写。", + "sass.builtin.to-upper-case": "将字符串转换为大写。", + "sass.builtin.transparentize": "使颜色变得更透明。", + "sass.builtin.type-of": "返回值的类型。", + "sass.builtin.unit": "返回与数字关联的单位。", + "sass.builtin.unitless": "返回数字是否有单位。", + "sass.builtin.unquote": "从字符串中删除引号。", + "sass.builtin.variable-exists": "返回当前范围内是否存在具有给定名称的变量。", + "sass.builtin.zip": "将多个列表合并为一个多维列表。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/typescript/common/features/quickFix.i18n.json b/i18n/chs/src/vs/languages/typescript/common/features/quickFix.i18n.json new file mode 100644 index 00000000000..76599fd95bf --- /dev/null +++ b/i18n/chs/src/vs/languages/typescript/common/features/quickFix.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "typescript.quickfix.addAsGlobal": "将“{0}”标记为全局", + "typescript.quickfix.rename": "重命名为“{0}”", + "typescript.quickfix.typeDefinitions": "下载类型定义 {0}" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/typescript/common/lint/lint.i18n.json b/i18n/chs/src/vs/languages/typescript/common/lint/lint.i18n.json new file mode 100644 index 00000000000..853560d2382 --- /dev/null +++ b/i18n/chs/src/vs/languages/typescript/common/lint/lint.i18n.json @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "javascript.comparisonOperatorNotStrict": "使用“!==”和“===”,而不使用“!=”和“==”。", + "javascript.functionInsideLoop": "循环中的函数。", + "javascript.missingSemicolon": "缺少分号。", + "javascript.newOnLowercaseFunctions": "用作构造函数的具有小写名称的函数。", + "javascript.reservedKeyword": "请勿使用保留的关键字。", + "javascript.semicolonInsteadOfBlock": "分号而不是块。", + "javascript.typeofCannotBeCompared": "“typeof”操作符的意外输出。", + "javascript.typescriptSpecific": "请勿在 JavaScript 中使用特定于 TypeScript 的语言构造。", + "layout.curlyBracketsMustNotBeOmitted": "不要省略花括号。", + "layout.emptyblock": "空白块应有注释。", + "typescript.looksLikeTripleSlash": "是否意味着“/// ”?", + "typescript.missingReturnType": "缺少返回类型。", + "typescript.unusedFunction": "未使用的本地函数。", + "typescript.unusedImport": "未使用的导入。", + "typescript.unusedLocalVariable": "未使用的本地变量。", + "typescript.unusedPrivateMember": "未使用的私有成员。", + "typescript.variableUsedBeforeDeclared": "变量在声明之前使用。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/typescript/common/typescript.contribution.i18n.json b/i18n/chs/src/vs/languages/typescript/common/typescript.contribution.i18n.json new file mode 100644 index 00000000000..51f73adb5b5 --- /dev/null +++ b/i18n/chs/src/vs/languages/typescript/common/typescript.contribution.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "始终包含当前文档的所有内容。", + "baseUrl": "允许配置用于解析模块引用(http://requirejs.org/docs/api.html#config-baseUrl)的基本 URL。此选项仅适用于使用异步模块定义(\"module\": \"amd\")的项目。", + "compilationSettings": "控制 TypeScript 验证如何运行。", + "lint": "控制验证的各个方面。", + "lint.comparisonOperatorsNotStrict": "使用“!==”和“===”,而不使用“!=”和“==”。", + "lint.curlyBracketsMustNotBeOmitted": "不要省略花括号。", + "lint.emptyBlocksWithoutComment": "空白块应有注释。", + "lint.functionsInsideLoops": "循环中的函数。", + "lint.functionsWithoutReturnType": "请勿省略函数的返回类型批注。", + "lint.missingSemicolon": "缺少分号。", + "lint.newOnLowercaseFunctions": "用作构造函数的具有小写名称的函数。", + "lint.reservedKeywords": "请勿使用保留的关键字。", + "lint.semicolonsInsteadOfBlocks": "分号而不是块。", + "lint.tripleSlashReferenceAlike": "查找输入错误的三斜线引用。", + "lint.typeScriptSpecifics": "请勿在 JavaScript 中使用特定于 TypeScript 的语言构造。", + "lint.unknownTypeOfResults": "“typeof”操作符的意外输出。", + "lint.unusedFunctions": "未使用的本地函数。", + "lint.unusedMembers": "未使用的私有成员。", + "lint.unusedVariables": "未使用的本地变量。", + "module": "指定正使用的模块系统。", + "noImplicitAny": "强制执行任何类型的声明。", + "noLib": "请勿使用针对 DOM 和浏览器环境的键入。", + "scope": "当具有多个验证设置时,定义这些设置将应用的子文件夹。", + "suggestSettings": "控制 TypeScript IntelliSense 如何运行。", + "target": "指定使用哪个版本的 ECMA 脚本。", + "tsConfigurationTitle": "TypeScript 配置", + "useCodeSnippetsOnMethodSuggest": "完成函数的参数签名。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/typescript/common/typescriptMode.i18n.json b/i18n/chs/src/vs/languages/typescript/common/typescriptMode.i18n.json new file mode 100644 index 00000000000..42078d1678a --- /dev/null +++ b/i18n/chs/src/vs/languages/typescript/common/typescriptMode.i18n.json @@ -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. +{ + "err.tooMuchData": "很抱歉,但 VS 代码的 JavaScript 源文件太多。请考虑使用 jsconfig.json 中的 exclude 属性。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/platform/configuration/common/configurationRegistry.i18n.json b/i18n/chs/src/vs/platform/configuration/common/configurationRegistry.i18n.json new file mode 100644 index 00000000000..9a966847d5f --- /dev/null +++ b/i18n/chs/src/vs/platform/configuration/common/configurationRegistry.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "invalid.properties": "configuration.properties 必须是对象", + "invalid.title": "configuration.title 必须是字符串", + "invalid.type": "如果进行设置,\"configuration.type\" 必须设置为对象", + "vscode.extension.contributes.configuration": "用于配置字符串。", + "vscode.extension.contributes.configuration.properties": "配置属性的描述。", + "vscode.extension.contributes.configuration.title": "设置摘要。此标签将在设置文件中用作分隔注释。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json b/i18n/chs/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json new file mode 100644 index 00000000000..8c1d64db137 --- /dev/null +++ b/i18n/chs/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "first.chord": "已按下({0})。正在等待同时按下第二个键...", + "missing.chord": "组合键({0}, {1})不是命令。", + "unboundCommands": "以下是其他可用命令:" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/electron-main/main.i18n.json b/i18n/chs/src/vs/workbench/electron-main/main.i18n.json new file mode 100644 index 00000000000..93e501877e0 --- /dev/null +++ b/i18n/chs/src/vs/workbench/electron-main/main.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expired": "已过期", + "expiredDetail": "此预发行版 {0} 已过期。\n\n请访问 {1} 以下载当前版本。", + "newWindow": "新建窗口", + "openWebSite": "打开网站", + "quit": "退出" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json b/i18n/chs/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json new file mode 100644 index 00000000000..f249ca6eda1 --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json @@ -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. +{ + "globalConsoleActionMacLinux": "打开新终端", + "globalConsoleActionWin": "打开新命令提示符", + "scopedConsoleActionMacLinux": "在终端中打开", + "scopedConsoleActionWin": "在命令提示符中打开" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/feedback/browser/feedback.i18n.json b/i18n/chs/src/vs/workbench/parts/feedback/browser/feedback.i18n.json new file mode 100644 index 00000000000..ebc321d794b --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/feedback/browser/feedback.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "character left": "剩余字符", + "characters left": "剩余字符", + "commentsHeader": "注释", + "feedbackSending": "正在发送", + "feedbackSendingError": "重试", + "feedbackSent": "谢谢", + "frownCaption": "忧伤", + "label.sendASmile": "通过 Tweet 向我们发送反馈。", + "other ways to contact us": "联系我们的其他方式", + "request a missing feature": "请求缺失功能", + "sendFeedback": "Tweet 反馈", + "sentiment": "您的体验如何?", + "smileCaption": "愉快", + "submit a bug": "提交 bug", + "tell us why?": "告诉我们原因?", + "tweet": "Tweet" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/files/browser/fileActions.i18n.json b/i18n/chs/src/vs/workbench/parts/files/browser/fileActions.i18n.json new file mode 100644 index 00000000000..b480c4989de --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -0,0 +1,62 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "addToWorkingFiles": "将活动文件添加到工作文件", + "closeAllFiles": "关闭所有文件", + "closeAllLabel": "关闭所有文件", + "closeFile": "关闭文件", + "closeLabel": "关闭文件", + "closeOtherFiles": "关闭其他文件", + "closeOtherLabel": "关闭其他文件", + "compareFiles": "比较文件", + "compareLabels": "{0} ↔ {1}", + "compareSource": "选择以进行比较", + "compareWith": "与“{0}”比较", + "confirmDeleteMessageFile": "是否确定要永久删除“{0}”?", + "confirmDeleteMessageFolder": "是否确定要永久删除“{0}”及其内容?", + "confirmMoveTrashMessageFile": "是否确实要删除“{0}”?", + "confirmMoveTrashMessageFolder": "是否确实要删除“{0}”及其内容?", + "confirmOverwrite": "目标文件夹中已存在具有相同名称的文件或文件夹。是否要替换它?", + "copyFile": "复制", + "createNewFile": "新建文件", + "createNewFolder": "新建文件夹", + "delete": "删除", + "deleteButtonLabel": "删除(&&D)", + "deleteButtonLabelRecycleBin": "移动到回收站(&&M)", + "deleteButtonLabelTrash": "移动到回收站(&&M)", + "duplicateFile": "重复", + "emptyFileNameError": "必须提供文件或文件夹名。", + "fileNameExistsError": "此位置已存在文件或文件夹 **{0}**。请选择其他名称。", + "filePathTooLongError": "名称 **{0}** 导致路径太长。请选择更短的名称。", + "focusWorkingFiles": "关注工作文件", + "globalCompareFile": "比较活动文件与...", + "importFiles": "导入文件", + "invalidFileNameError": "名称 **{0}** 作为文件或文件夹名无效。请选择其他名称。", + "irreversible": "此操作不可逆!", + "newFile": "新建文件", + "newFolder": "新建文件夹", + "noFileOpen": "当前没有要关闭的已打开文件。", + "noWorkingFiles": "当前没有工作文件。", + "openFileToAdd": "首先打开文件以将其添加到工作文件。", + "openFileToCompare": "首先打开文件以将其与另外一个文件比较。", + "openNextWorkingFile": "打开下一个工作文件", + "openPreviousWorkingFile": "打开上一个工作文件", + "openToSide": "打开到侧边", + "pasteFile": "粘贴", + "permDelete": "永久删除", + "refresh": "刷新", + "rename": "重命名", + "replaceButtonLabel": "替换(&&R)", + "retry": "重试", + "revert": "还原文件", + "save": "保存", + "saveAll": "全部保存", + "saveFiles": "保存已更新文件", + "unableToFileToCompare": "无法将所选文件与“{0}”进行比较。", + "undoBin": "可以从回收站还原。", + "undoTrash": "可以从回收站还原。", + "warningFileDirty": "正在保存文件“{0}”,请稍后重试。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json b/i18n/chs/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json new file mode 100644 index 00000000000..7e7100e2edd --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "createNewBranch": "创建新分支", + "dupeBranchName": "分支名称已存在。", + "invalidBranchName": "无效的分支名称。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json b/i18n/chs/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json new file mode 100644 index 00000000000..1814492c299 --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "git": "GIT", + "openChange": "打开更改", + "openInEditor": "切换到编辑器视图", + "stageSelectedLines": "暂存选定行", + "switchToChangesView": "切换到更改视图" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/chs/src/vs/workbench/parts/git/browser/gitActions.i18n.json new file mode 100644 index 00000000000..8e7e7d6f46b --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -0,0 +1,51 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "authFailed": "在 GIT 远程上进行身份验证失败。", + "branch": "分支", + "branch2": "分支", + "checkout": "签出", + "cleanChangesLabel": "清理更改(&&C)", + "commitAll": "全部提交", + "commitAll2": "全部提交", + "commitStaged": "提交已暂存的", + "commitStaged2": "提交已暂存的", + "confirmPublishMessage": "是否确定要将“{0}”发布到“{1}”?", + "confirmPublishMessageButton": "发布(&&P)", + "confirmUndo": "是否确实要清理“{0}”中的更改?", + "confirmUndoAllMultiple": "{0} 个文件中存在未暂存的更改。\n\n此操作是不可逆的!", + "confirmUndoAllOne": "{0} 个文件中存在未暂存的更改。\n\n此操作是不可逆的!", + "confirmUndoMessage": "是否确定要清理所有更改?", + "currentBranch": "当前分支“{0}”是最新的。", + "currentBranchPlural": "当前分支“{0}”是“{3}”之后的 {1} 个提交和之前的 {2} 个提交。", + "currentBranchPluralSingle": "当前分支“{0}”是“{3}”之后的 {1} 个提交和之前的 {2} 个提交。", + "currentBranchSingle": "当前分支“{0}”是“{3}”之后的 {1} 个提交和之前的 {2} 个提交。", + "currentBranchSinglePlural": "当前分支“{0}”是“{3}”之后的 {1} 个提交和之前的 {2} 个提交。", + "currentlyDetached": "无法在分离模式中同步。", + "dirtyChanges": "同步前,请提交、撤销或存储你的更改。", + "dirtyTreeCheckout": "无法签出。请首先提交你的工作或进行分段。", + "dirtyTreePull": "无法请求。请首先提交你的工作或进行分段。", + "init": "初始化", + "irreversible": "此操作不可逆!", + "noUpstream": "当前分支“{0}”没有配置上游分支。", + "openChange": "打开更改", + "openFile": "打开文件", + "publish": "发布", + "publishPickMessage": "选取要将分支“{0}”发布到的远程:", + "pull": "拉", + "pullWithRebase": "拉取(变基)", + "push": "推送", + "refresh": "刷新", + "stageAllChanges": "全部暂存", + "stageChanges": "暂存", + "sync": "同步", + "synchronizing": "正在同步...", + "undoAllChanges": "全部清理", + "undoChanges": "清理", + "undoLastCommit": "撤消上次提交", + "unstage": "取消暂存", + "unstageAllChanges": "取消全部暂存" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/git/browser/gitServices.i18n.json b/i18n/chs/src/vs/workbench/parts/git/browser/gitServices.i18n.json new file mode 100644 index 00000000000..3799fa1d8ba --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "badConfigFile": "Git {0}", + "cancel": "取消", + "cantOpen": "无法打开此 git 资源。", + "cantOpenResource": "无法打开此 git 资源。", + "changesFromIndex": "{0} - 对索引的更改", + "changesFromTree": "{0} - 对 {1} 的更改", + "checkNativeConsole": "运行 GIT 操作存在问题。请审阅输出或使用控制台检查你的存储库的状态。", + "configureUsernameEmail": "请配置 GIT 用户名和电子邮件。", + "gitIndexChanges": "{0} - 对索引的更改", + "gitIndexChangesRenamed": "{0} - 已重命名 - 索引更改", + "gitMergeChanges": "{0} - 合并更改", + "showOutput": "显示输出", + "unmergedChanges": "提交更改前,你应首先解决未合并的更改。", + "workingTreeChanges": "{0} - 对工作树的更改" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json b/i18n/chs/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json new file mode 100644 index 00000000000..e704d14e6fb --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "commitMessage": "消息(按 {0} 提交)", + "commitMessageAriaLabel": "GIT: 键入提交信息并按 {0} 以提交", + "needMessage": "请提供提交消息。您可以始终按下“{0}”以提交更改。如果存在任何暂存的更改,将仅提交这些更改;否则,提交所有更改。", + "nothingToCommit": "在有一些更改要提交时,键入提交信息,并按下“{0}”以提交更改。如果存在任何暂存的更改,将仅提交这些更改;否则,提交所有更改。", + "showOutput": "显示 GIT 输出", + "treeAriaLabel": "GIT 更改视图" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json b/i18n/chs/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json new file mode 100644 index 00000000000..2e5d1003ebe --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "added-char": "A", + "allChanges": "更改", + "ariaLabelChanges": "更改,GIT", + "ariaLabelMerge": "合并,GIT", + "ariaLabelStagedChanges": "暂存的更改,GIT", + "copied-char": "C", + "deleted-char": "D", + "fileStatusAriaLabel": "文件夹 {1} 中的文件 {0} 具有状态: {2},GIT", + "ignored-char": "!", + "mergeChanges": "合并更改", + "modified-char": "M", + "outsideOfWorkspace": "此文件位于当前工作区之外。", + "renamed-char": "R", + "stagedChanges": "暂存的更改", + "title-conflict-added-by-them": "冲突: 已由他们添加", + "title-conflict-added-by-us": "冲突: 已由我们添加", + "title-conflict-both-added": "冲突: 二者均已添加", + "title-conflict-both-deleted": "冲突: 二者均已删除", + "title-conflict-both-modified": "冲突: 二者均已修改", + "title-conflict-deleted-by-them": "冲突: 已由他们删除", + "title-conflict-deleted-by-us": "冲突: 已由我们删除", + "title-deleted": "已删除", + "title-ignored": "已忽略", + "title-index-added": "已添加到索引", + "title-index-copied": "已在索引中复制", + "title-index-deleted": "已在索引中删除", + "title-index-modified": "已在索引中修改", + "title-index-renamed": "已在索引中重新命名", + "title-modified": "已修改", + "title-untracked": "未跟踪的", + "untracked-char": "U" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json b/i18n/chs/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json new file mode 100644 index 00000000000..ef9aad1db38 --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json @@ -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. +{ + "markdownPreviewNoFile": "首先打开 Markdown 文件以显示预览。", + "openPreview": "打开预览", + "openPreviewSideBySide": "打开侧边的预览", + "toggleMarkdownPreview": "切换预览" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/output/browser/outputActions.i18n.json b/i18n/chs/src/vs/workbench/parts/output/browser/outputActions.i18n.json new file mode 100644 index 00000000000..4d312c924f7 --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/output/browser/outputActions.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "clearOutput": "清除输出", + "switchToOutput.label": "切换到输出", + "toggleOutput": "切换输出" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json b/i18n/chs/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json new file mode 100644 index 00000000000..66d4191e111 --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json @@ -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. +{ + "QuickCommandsAction.label": "显示编辑器命令", + "actionNotEnabled": "在当前上下文中没有启用命令“{0}”。", + "canNotRun": "无法从此处运行命令“{0}”。", + "commandLabel": "{0}: {1}", + "entryAriaLabel": "{0},命令", + "noCommandsMatching": "没有匹配的命令", + "showTriggerActions": "显示所有命令" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json b/i18n/chs/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json new file mode 100644 index 00000000000..2ce547d0e46 --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json @@ -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. +{ + "cannotRunGotoLine": "首先打开文本文件以转到行", + "gotoLine": "转到行...", + "gotoLineColumnLabel": "转到行 {0} 和列 {1}", + "gotoLineHandlerAriaLabel": "键入要导航到的行号。", + "gotoLineLabel": "转至行 {0}", + "gotoLineLabelEmpty": "键入要导航到的行号", + "gotoLineLabelEmptyWithLimit": "键入要导航到的介于 1 和 {0} 之间的行号" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json b/i18n/chs/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json new file mode 100644 index 00000000000..c69c28afa2a --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "_constructor": "构造函数({0})", + "array": "阵列({0})", + "boolean": "布尔值({0})", + "cannotRunGotoSymbol": "首先打开文本文件以转到符号", + "cannotRunGotoSymbolInFile": "很遗憾,我们没有该文件的任何符号信息", + "class": "类({0})", + "entryAriaLabel": "{0},符号", + "enum": "枚举({0})", + "file": "文件({0})", + "function": "函数({0})", + "gotoSymbol": "转到符号...", + "gotoSymbolHandlerAriaLabel": "键入以减少当前活动编辑器的符号", + "interface": "接口({0})", + "key": "密钥({0})", + "method": "方法({0})", + "modules": "模块({0})", + "namespace": "命名空间({0})", + "noSymbolsFound": "找不到符号", + "noSymbolsMatching": "没有匹配的符号", + "number": "编号({0})", + "object": "对象({0})", + "package": "包({0})", + "property": "属性({0})", + "rule": "规则({0})", + "string": "字符串({0})", + "symbols": "符号({0})", + "variable": "变量({0})" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json b/i18n/chs/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json new file mode 100644 index 00000000000..bb283f1306c --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "editorCommands": "编辑器命令", + "entryAriaLabel": "{0},选取器帮助", + "globalCommands": "全局命令" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json b/i18n/chs/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json new file mode 100644 index 00000000000..da3864233aa --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json @@ -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. +{ + "fileAndTypeResults": "文件和符号结果" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json b/i18n/chs/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json new file mode 100644 index 00000000000..2bd571f7312 --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "entryAriaLabel": "{0},文件选取器", + "searchResults": "搜索结果" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json b/i18n/chs/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json new file mode 100644 index 00000000000..ec761e73a75 --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json @@ -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. +{ + "entryAriaLabel": "{0},符号选取器", + "noSymbolsMatching": "没有匹配的符号", + "noSymbolsWithoutInput": "键入以搜索符号", + "symbols": "符号结果" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/search/browser/search.contribution.i18n.json b/i18n/chs/src/vs/workbench/parts/search/browser/search.contribution.i18n.json new file mode 100644 index 00000000000..4ea549b74bd --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/search/browser/search.contribution.i18n.json @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "exclude": "配置全局模式以在搜索中排除文件和文件夹。从 file.exclude 设置中继承所有 glob 模式。", + "exclude.boolean": "匹配文件路径所依据的 glob 模式。设置为 true 或 false 可启用或禁用该模式。", + "exclude.when": "对匹配文件的同级文件的其他检查。使用 $(basename) 作为匹配文件名的变量。", + "findInFolder": "在文件夹中查找", + "name": "搜索", + "openAnythingHandlerDescription": "按名称打开文件和符号", + "openSymbolDescriptionNormal": "按名称打开符号", + "searchConfigurationTitle": "搜索配置", + "showSearchViewlet": "显示搜索", + "showTriggerActions": "显示所有符号", + "view": "查看" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json b/i18n/chs/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json new file mode 100644 index 00000000000..2dbd7dfb708 --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ClearSearchResultsAction.label": "清理搜索结果", + "CollapseAllAction.label": "折叠", + "ConfigureGlobalExclusionsAction.label": "打开设置", + "RefreshAction.label": "刷新", + "RemoveAction.label": "删除", + "SelectOrRemoveAction.removeLabel": "删除", + "SelectOrRemoveAction.selectLabel": "选择", + "ariaSearchResultsStatus": "搜索 {1} 文件中返回的 {0} 个结果", + "defaultLabel": "输入", + "fileMatchAriaLabel": "文件夹 {2} 的文件 {1} 中有 {0} 个匹配,搜索结果", + "findInFolder": "在文件夹中查找", + "findPlaceHolder": "按 Enter 进行搜索,按 Esc 取消", + "globLabel": "{1} 时为 {0}", + "global.searchScope.folders": "通过设置排除的文件", + "label.Search": "搜索: 键入搜索术语,然后按 Enter 进行搜索或按 Escape 取消", + "label.excludes": "搜索排除模式", + "label.global.excludes": "配置的搜索排除模式", + "label.includes": "搜索包含模式", + "moreSearch": "切换搜索详细信息", + "noMatches": "无匹配", + "noResultsExcludes": "除“{0}”外,未找到任何结果 - ", + "noResultsFound": "找不到结果。查看设置中配置的排除项 - ", + "noResultsIncludes": "“{0}”中未找到任何结果 - ", + "noResultsIncludesExcludes": "在“{0}”中找不到结果(“{1}”除外) - ", + "openSettings.message": "打开设置", + "patternDescription": "使用全局模式", + "patternHelpInclude": "要匹配的模式。例如,****/*.js** 与所有 JavaScript 文件匹配,或 **myFolder/**** 与包含所有子级的文件夹匹配。\n\n**Reference**:\n***** 匹配 0 个或更多字符\n**?** 匹配 1 个字符\n****** 匹配零个或更多目录\n**[a-z]** 匹配一系列字符\n**{a,b}** 匹配任何一种模式)", + "regexp.validationFailure": "表达式与所有内容相匹配", + "rerunSearch.message": "再次搜索", + "rerunSearchInAll.message": "在所有文件中再次搜索", + "searchCanceled": "在找到结果前取消了搜索 - ", + "searchMatch": "已找到 {0} 个匹配项", + "searchMatches": "已找到 {0} 个匹配项", + "searchMaxResultsWarning": "结果集仅包含所有匹配项的子集。请使你的搜索更加具体,减少结果。", + "searchResultAria": "{0},搜索结果", + "searchScope.excludes": "要排除的文件", + "searchScope.includes": "要包含的文件", + "treeAriaLabel": "搜索结果" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/services/message/browser/messageService.i18n.json b/i18n/chs/src/vs/workbench/services/message/browser/messageService.i18n.json new file mode 100644 index 00000000000..0b5cb3c2ef7 --- /dev/null +++ b/i18n/chs/src/vs/workbench/services/message/browser/messageService.i18n.json @@ -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. +{ + "closeMessages": "关闭通知消息" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json b/i18n/chs/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json new file mode 100644 index 00000000000..53ce96f5b20 --- /dev/null +++ b/i18n/chs/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "pluginHostProcess.crash": "扩展主机意外终止。请重新加载窗口以恢复。", + "pluginHostProcess.error": "扩展主机的错误: {0}", + "pluginHostProcess.startupFail": "扩展主机未在 10 秒内启动,这可能是一个问题。", + "pluginHostProcess.startupFailDebug": "扩展主机未在 10 秒内启动,可能在第一行时停止,需要调试程序才可继续。", + "reloadWindow": "重新加载窗口" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/base/browser/ui/actionbar/actionbar.i18n.json b/i18n/cht/src/vs/base/browser/ui/actionbar/actionbar.i18n.json new file mode 100644 index 00000000000..4ecb2c803f4 --- /dev/null +++ b/i18n/cht/src/vs/base/browser/ui/actionbar/actionbar.i18n.json @@ -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. +{ + "titleLabel": "{0} ({1})" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/base/browser/ui/findinput/findInput.i18n.json b/i18n/cht/src/vs/base/browser/ui/findinput/findInput.i18n.json new file mode 100644 index 00000000000..87fea66f6ee --- /dev/null +++ b/i18n/cht/src/vs/base/browser/ui/findinput/findInput.i18n.json @@ -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. +{ + "caseDescription": "大小寫須相符", + "defaultLabel": "輸入", + "regexDescription": "使用規則運算式", + "wordsDescription": "全字拼寫須相符" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/base/browser/ui/messagelist/messageList.i18n.json b/i18n/cht/src/vs/base/browser/ui/messagelist/messageList.i18n.json new file mode 100644 index 00000000000..58cefa0b307 --- /dev/null +++ b/i18n/cht/src/vs/base/browser/ui/messagelist/messageList.i18n.json @@ -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. +{ + "alertErrorMessage": "錯誤: {0}", + "alertInfoMessage": "資訊: {0}", + "alertWarningMessage": "警告: {0}", + "close": "關閉", + "error": "錯誤", + "info": "資訊", + "warning": "警告" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json b/i18n/cht/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json new file mode 100644 index 00000000000..a7b9c69d402 --- /dev/null +++ b/i18n/cht/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingAudioSupport": "抱歉,不支援播放音訊檔案。", + "missingVideoSupport": "抱歉,不支援播放視訊檔案。", + "nativeBinaryError": "檔案為二進位檔、非常大或使用不支援的文字編碼,所以無法顯示於編輯器中。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/base/browser/ui/toolbar/toolbar.i18n.json b/i18n/cht/src/vs/base/browser/ui/toolbar/toolbar.i18n.json new file mode 100644 index 00000000000..09e83c4c980 --- /dev/null +++ b/i18n/cht/src/vs/base/browser/ui/toolbar/toolbar.i18n.json @@ -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. +{ + "more": "其他" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/base/common/errors.i18n.json b/i18n/cht/src/vs/base/common/errors.i18n.json new file mode 100644 index 00000000000..52d7992f5dd --- /dev/null +++ b/i18n/cht/src/vs/base/common/errors.i18n.json @@ -0,0 +1,25 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "error.connection.unknown": "發生未知的連接錯誤。可能是您已經沒有連線到網際網路,或是您連接的伺服器已離線。", + "error.connection.unknown.verbose": "未知的連接錯誤 ({0})", + "error.defaultMessage": "發生未知的錯誤。如需詳細資訊,請參閱記錄檔。", + "error.http": "{0} (HTTP {1})", + "error.http.verbose": "{0} (HTTP {1}: {2})", + "error.moreErrors": "{0} (總計 {1} 個錯誤)", + "error.permission": "權限被拒絕", + "error.permission.verbose": "權限被拒絕 (HTTP {0})", + "illegalArgumentError": "不合法的狀態: {0}", + "illegalArgumentError2": "不合法的引數", + "illegalStateError": "不合法的狀態: {0}", + "illegalStateError2": "不合法的狀態", + "loaderError": "無法載入需要的檔案。可能是您已經沒有連線到網際網路,或是您連接的伺服器已離線。請重新整理瀏覽器,再試一次。", + "loaderErrorNative": "無法載入必要的檔案。請重新啟動該應用程式,然後再試一次。詳細資料: {0}", + "message": "{0}。錯誤碼: {1}", + "nodeExceptionMessage": "發生系統錯誤 ({0})", + "notImplementedError": "未實作", + "stackTrace.format": "{0}: {1}" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/base/common/json.i18n.json b/i18n/cht/src/vs/base/common/json.i18n.json new file mode 100644 index 00000000000..01562e84bc5 --- /dev/null +++ b/i18n/cht/src/vs/base/common/json.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "CloseBraceExpected": "必須是右大括弧", + "CloseBracketExpected": "必須是右中括號", + "ColonExpected": "必須是冒號", + "CommaExpected": "必須是逗號", + "EOFExpected": "必須是內容結尾", + "InvalidNumberFormat": "編號格式無效", + "PropertyExpected": "必須是屬性名稱", + "UnknownSymbol": "符號無效", + "ValeExpected": "必須是值", + "ValueExpected": "必須是值" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/base/common/severity.i18n.json b/i18n/cht/src/vs/base/common/severity.i18n.json new file mode 100644 index 00000000000..a1314783490 --- /dev/null +++ b/i18n/cht/src/vs/base/common/severity.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sev.error": "錯誤", + "sev.info": "資訊", + "sev.warning": "警告" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/base/common/strings.i18n.json b/i18n/cht/src/vs/base/common/strings.i18n.json new file mode 100644 index 00000000000..4c4650e3fd0 --- /dev/null +++ b/i18n/cht/src/vs/base/common/strings.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "diff.days": "{0} 天", + "diff.days.month": "一個月前", + "diff.days.verbose": "{0} 天前", + "diff.days.week": "一週前", + "diff.days.yesterday": "昨天", + "diff.hour.verbose": "1 小時之前", + "diff.hours": "{0} 小時", + "diff.hours.verbose": "{0} 小時前", + "diff.minute.verbose": "1 分鐘前", + "diff.minutes": "{0} 分", + "diff.minutes.verbose": "{0} 分鐘前", + "diff.seconds": "{0} 秒", + "diff.seconds.verbose": "現在", + "format.date": "{0}-{1}-{2} {3}:{4}:{5}", + "format.time": "{0}:{1}:{2}" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/browser/view/viewImpl.i18n.json b/i18n/cht/src/vs/editor/browser/view/viewImpl.i18n.json new file mode 100644 index 00000000000..f48289922ad --- /dev/null +++ b/i18n/cht/src/vs/editor/browser/view/viewImpl.i18n.json @@ -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. +{ + "editorViewAccessibleLabel": "編輯器內容" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/common/config/commonEditorConfig.i18n.json b/i18n/cht/src/vs/editor/common/config/commonEditorConfig.i18n.json new file mode 100644 index 00000000000..7a7794dad0e --- /dev/null +++ b/i18n/cht/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "autoClosingBrackets": "控制編輯器是否應在左括號後自動插入右括號", + "cursorBlinking": "控制游標閃爍動畫,接受的值為 'blink'、'visible' 和 'hidden'", + "cursorStyle": "控制游標樣式,接受的值為 'block' 和 'line'", + "editorConfigurationTitle": "編輯器組態", + "folding": "控制編輯器是否已啟用程式碼摺疊", + "fontFamily": "控制字型家族。", + "fontLigatures": "啟用連字字型", + "fontSize": "控制字型大小。", + "formatOnType": "控制編輯器是否應在輸入一行後自動格式化", + "glyphMargin": "控制是否顯示字符邊界", + "hideCursorInOverviewRuler": "控制游標是否應隱藏在概觀尺規中。", + "ignoreTrimWhitespace": "控制差異編輯器是否將開頭或尾端空白字元的變更顯示為差異", + "insertSpaces": "控制編輯器是否會插入空格來取代 Tab。接受的值: [自動]、True、False。如果設定為 [自動],會在開啟檔案時猜測該值。", + "lineHeight": "控制行高。", + "lineNumbers": "控制是否顯示行號", + "mouseWheelScrollSensitivity": "滑鼠滾輪捲動事件的 'deltaX' 與 'deltaY' 所使用的乘數", + "overviewRulerLanes": "控制可在概觀尺規中相同位置顯示的裝飾項目數", + "quickSuggestions": "控制輸入時是否應顯示快速建議", + "quickSuggestionsDelay": "控制延遲顯示快速建議的毫秒數", + "referenceInfos": "控制編輯器是否會顯示支援編輯器的模式之參考資訊", + "renderWhitespace": "控制編輯器是否應顯示空白字元", + "roundedSelection": "控制選取範圍是否有圓角", + "rulers": "要在其中顯示垂直尺規的資料行", + "scrollBeyondLastLine": "控制編輯器是否會捲動到最後一行之後", + "selectionHighlight": "控制編輯器是否應反白顯示與選取範圍相似的符合項", + "sideBySide": "控制差異編輯器要並排或內嵌顯示差異", + "suggestOnTriggerCharacters": "控制輸入觸發字元時,是否應自動顯示建議", + "tabSize": "控制字元中 Tab 鍵的呈現大小。接受的值: [自動]、2、4、6 等等。如果設定為 [自動],會在開啟檔案時猜測該值。", + "wordSeparators": "執行文字相關導覽或作業時將作為文字分隔符號的字元", + "wrappingColumn": "控制編輯器會在幾個字元後換行至下一行。將此項目設為 0 會開啟檢視區寬度換行", + "wrappingIndent": "控制換行的縮排。可以是 [無]、[相同] 或 [縮排]。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/common/controller/cursor.i18n.json b/i18n/cht/src/vs/editor/common/controller/cursor.i18n.json new file mode 100644 index 00000000000..0894e4872e1 --- /dev/null +++ b/i18n/cht/src/vs/editor/common/controller/cursor.i18n.json @@ -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. +{ + "corrupt.commands": "執行命令時發生未預期的例外狀況。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/common/model/textModelWithTokens.i18n.json b/i18n/cht/src/vs/editor/common/model/textModelWithTokens.i18n.json new file mode 100644 index 00000000000..0e0c1c7212e --- /dev/null +++ b/i18n/cht/src/vs/editor/common/model/textModelWithTokens.i18n.json @@ -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. +{ + "mode.tokenizationSupportFailed": "將輸入語彙基元化時,模式失敗。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json b/i18n/cht/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json new file mode 100644 index 00000000000..8b8ce2003ad --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.clipboard.copyLabel": "複製", + "actions.clipboard.cutLabel": "剪下", + "actions.clipboard.pasteLabel": "貼上" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/codelens/browser/codelens.i18n.json b/i18n/cht/src/vs/editor/contrib/codelens/browser/codelens.i18n.json new file mode 100644 index 00000000000..52328e909df --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/codelens/browser/codelens.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "n_references": "{0} 個參考", + "one_reference": "1 個參考", + "unknown_reference": "- 個參考" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/comment/common/comment.i18n.json b/i18n/cht/src/vs/editor/contrib/comment/common/comment.i18n.json new file mode 100644 index 00000000000..e0e66c67548 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/comment/common/comment.i18n.json @@ -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. +{ + "comment.block": "切換區塊註解", + "comment.line": "切換行註解", + "comment.line.add": "加入行註解", + "comment.line.remove": "移除行註解" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json b/i18n/cht/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json new file mode 100644 index 00000000000..90809e4802b --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json @@ -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. +{ + "action.showContextMenu.label": "顯示編輯器內容功能表" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/find/browser/find.i18n.json b/i18n/cht/src/vs/editor/contrib/find/browser/find.i18n.json new file mode 100644 index 00000000000..fd2e9770176 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/find/browser/find.i18n.json @@ -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. +{ + "addSelectionToNextFindMatch": "將選取項目加入下一個找到的相符項", + "findNextMatchAction": "尋找下一個", + "findPreviousMatchAction": "尋找上一個", + "moveSelectionToNextFindMatch": "將最後一個選擇項目移至下一個找到的相符項", + "selectAllOccurencesOfFindMatch": "選取所有找到的相符項出現處", + "startFindAction": "尋找", + "startReplace": "取代" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/find/browser/findWidget.i18n.json b/i18n/cht/src/vs/editor/contrib/find/browser/findWidget.i18n.json new file mode 100644 index 00000000000..8998452bad8 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/find/browser/findWidget.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "label.closeButton": "關閉", + "label.find": "尋找", + "label.matchesLocation": "{0} / {1}", + "label.nextMatchButton": "下一個相符項", + "label.noResults": "沒有結果", + "label.previousMatchButton": "上一個符合項", + "label.replace": "取代", + "label.replaceAllButton": "全部取代", + "label.replaceButton": "取代", + "label.toggleReplaceButton": "切換取代模式", + "label.toggleSelectionFind": "在選取範圍中尋找", + "placeholder.find": "尋找", + "placeholder.replace": "取代", + "title.matchesCountLimit": "只會將前 999 筆結果醒目提示,但所有尋找作業會在完整文字上執行。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/format/common/format.i18n.json b/i18n/cht/src/vs/editor/contrib/format/common/format.i18n.json new file mode 100644 index 00000000000..2b299139b69 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/format/common/format.i18n.json @@ -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. +{ + "formatAction.label": "格式化程式碼" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json b/i18n/cht/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json new file mode 100644 index 00000000000..76045aadbcf --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.goToDecl.label": "移至定義", + "actions.goToDeclToSide.label": "在一側開啟定義", + "actions.gotoTypeDecl.label": "移至類型定義", + "actions.previewDecl.label": "預覽定義", + "multipleResults": "按一下以顯示找到的 {0} 個定義。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json b/i18n/cht/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json new file mode 100644 index 00000000000..ebcab48dcbd --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json @@ -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. +{ + "markerAction.next.label": "移至下一個錯誤或警告", + "markerAction.previous.label": "移至上一個錯誤或警告", + "quickfix.multiple.label": "建議的修正程式: ", + "quickfix.single.label": "建議的修正程式: " +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json b/i18n/cht/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json new file mode 100644 index 00000000000..08e865d8b15 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json @@ -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. +{ + "modesContentHover.loading": "正在載入..." +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json b/i18n/cht/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json new file mode 100644 index 00000000000..4fad64f67e5 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "InPlaceReplaceAction.next.label": "以下一個值取代", + "InPlaceReplaceAction.previous.label": "以上一個值取代" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json b/i18n/cht/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json new file mode 100644 index 00000000000..569746a20c0 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lines.copyDown": "將行向下複製", + "lines.copyUp": "將行向上複製", + "lines.delete": "刪除行", + "lines.indent": "縮排行", + "lines.insertAfter": "在下方插入行", + "lines.insertBefore": "在上方插入行", + "lines.moveDown": "下移一行", + "lines.moveUp": "上移一行", + "lines.outdent": "凸排行", + "lines.trimTrailingWhitespace": "修剪尾端空白" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/links/browser/links.i18n.json b/i18n/cht/src/vs/editor/contrib/links/browser/links.i18n.json new file mode 100644 index 00000000000..d99428d0648 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/links/browser/links.i18n.json @@ -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. +{ + "invalid.url": "URI 無效: 無法開啟 {0}", + "label": "開啟連結", + "links.navigate": "按住 CTRL 並按一下按鍵以追蹤連結", + "links.navigate.mac": "按住 Cmd 並按一下按鍵以追蹤連結" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json b/i18n/cht/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json new file mode 100644 index 00000000000..a3f5c2a660c --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "mutlicursor.insertAbove": "在上方加入游標", + "mutlicursor.insertAtEndOfEachLineSelected": "從選取的行建立多個游標", + "mutlicursor.insertBelow": "在下方加入游標" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json b/i18n/cht/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json new file mode 100644 index 00000000000..be94bfc3770 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json @@ -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. +{ + "parameterHints.trigger.label": "觸發參數提示" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json b/i18n/cht/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json new file mode 100644 index 00000000000..e838688b779 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json @@ -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. +{ + "quickfix.trigger.label": "Quick Fix" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json b/i18n/cht/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json new file mode 100644 index 00000000000..1189e8ad4c0 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickFixSelectionWidget.loading": "正在載入...", + "QuickFixSelectionWidget.noSuggestions": "沒有修正建議。", + "treeAriaLabel": "Quick Fix" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json b/i18n/cht/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json new file mode 100644 index 00000000000..264035d48f2 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json @@ -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. +{ + "label": "移至行..." +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json b/i18n/cht/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json new file mode 100644 index 00000000000..f145c2bb075 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "GotoLineAction.label": "移至行...", + "gotoLineActionInput": "輸入行號,後接選擇性的冒號和資料行數字,以瀏覽至", + "gotoLineLabelEmptyWithLineAndColumnLimit": "輸入介於 1 和 {0} 之間要瀏覽至的資料行", + "gotoLineLabelEmptyWithLineLimit": "輸入介於 1 到 {0} 之間要瀏覽至的行號", + "gotoLineLabelValidLine": "移至第 {0} 行", + "gotoLineLabelValidLineAndColumn": "移至行 {0} 和資料行 {1}" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json b/i18n/cht/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json new file mode 100644 index 00000000000..39956c63ece --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json @@ -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. +{ + "label": "命令選擇區" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json b/i18n/cht/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json new file mode 100644 index 00000000000..77bfb75c2ee --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickCommandAction.label": "命令選擇區", + "quickCommandActionInput": "輸入您想要執行的動作名稱" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json b/i18n/cht/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json new file mode 100644 index 00000000000..faac34cc22c --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json @@ -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. +{ + "label": "移至符號..." +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json b/i18n/cht/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json new file mode 100644 index 00000000000..0f2701940a8 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json @@ -0,0 +1,20 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickOutlineAction.label": "移至符號...", + "_constructor": "建構函式 ({0})", + "call": "呼叫 ({0})", + "class": "類別 ({0})", + "function": "函式 ({0})", + "interface": "介面 ({0})", + "method": "方法 ({0})", + "modules": "模組 ({0})", + "property": "屬性 ({0})", + "quickOutlineActionInput": "請輸入您想要瀏覽至的識別項名稱", + "symbols": "符號 ({0})", + "variable": "變數 ({0})", + "variable2": "變數 ({0})" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json b/i18n/cht/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json new file mode 100644 index 00000000000..010dbdc2586 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -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. +{ + "labelLoading": "正在載入...", + "noResults": "沒有結果", + "references.action.label": "尋找所有參考", + "references.action.name": "顯示參考" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json b/i18n/cht/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json new file mode 100644 index 00000000000..4f5c8d20f7c --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingPreviewMessage": "無可用的預覽", + "peekView.alternateTitle": "參考", + "referenceCount": "{0} 個參考", + "referencesCount": "{0} 個參考", + "treeAriaLabel": "參考" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/rename/browser/rename2.i18n.json b/i18n/cht/src/vs/editor/contrib/rename/browser/rename2.i18n.json new file mode 100644 index 00000000000..037bb6ff8fe --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/rename/browser/rename2.i18n.json @@ -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. +{ + "rename.label": "重新命名符號" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/rename/browser/renameModel.i18n.json b/i18n/cht/src/vs/editor/contrib/rename/browser/renameModel.i18n.json new file mode 100644 index 00000000000..6a9211f8850 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/rename/browser/renameModel.i18n.json @@ -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. +{ + "cannotLoadFile": "無法載入檔案 {0}" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json b/i18n/cht/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json new file mode 100644 index 00000000000..1f0f5396a7c --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json @@ -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. +{ + "smartSelect.jumpBracket": "移至方括弧" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json b/i18n/cht/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json new file mode 100644 index 00000000000..a72697babba --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "smartSelect.grow": "展開選取", + "smartSelect.shrink": "縮小選取" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/suggest/browser/suggest.i18n.json b/i18n/cht/src/vs/editor/contrib/suggest/browser/suggest.i18n.json new file mode 100644 index 00000000000..a43ef74dcf1 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/suggest/browser/suggest.i18n.json @@ -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. +{ + "suggest.trigger.label": "觸發建議" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json b/i18n/cht/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json new file mode 100644 index 00000000000..0cbcb074aaa --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json @@ -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. +{ + "goback": "返回", + "readMore": "進一步了解...{0}", + "suggestWidget.loading": "正在載入...", + "suggestWidget.noSuggestions": "無建議。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json b/i18n/cht/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json new file mode 100644 index 00000000000..5b6ec5f28ad --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json @@ -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. +{ + "toggle.tabfocusmode": "切換使用 TAB 鍵來設定焦點" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json b/i18n/cht/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json new file mode 100644 index 00000000000..8b7662c4c93 --- /dev/null +++ b/i18n/cht/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json @@ -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. +{ + "label.close": "關閉" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/css/common/css.contribution.i18n.json b/i18n/cht/src/vs/languages/css/common/css.contribution.i18n.json new file mode 100644 index 00000000000..958ce4962cc --- /dev/null +++ b/i18n/cht/src/vs/languages/css/common/css.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "cssConfigurationTitle": "CSS 組態", + "lint": "控制 CSS 驗證和問題嚴重性。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/css/common/cssWorker.i18n.json b/i18n/cht/src/vs/languages/css/common/cssWorker.i18n.json new file mode 100644 index 00000000000..866201b22aa --- /dev/null +++ b/i18n/cht/src/vs/languages/css/common/cssWorker.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "css.quickfix.rename": "重新命名為 '{0}'", + "literal.fontface": "@font-face", + "literal.keyframes": "@keyframes {0}" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/css/common/parser/cssErrors.i18n.json b/i18n/cht/src/vs/languages/css/common/parser/cssErrors.i18n.json new file mode 100644 index 00000000000..3221940d8cf --- /dev/null +++ b/i18n/cht/src/vs/languages/css/common/parser/cssErrors.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.colon": "必須是冒號", + "expected.comma": "必須是逗點", + "expected.condt": "必須是條件", + "expected.dot": "必須是點", + "expected.expression": "必須是運算式", + "expected.ident": "必須是識別項", + "expected.lcurly": "必須是 {", + "expected.lparen": "必須是 (", + "expected.lsquare": "必須是 [", + "expected.number": "必須是數目", + "expected.operator": "必須是運算子", + "expected.pagedirordecl": "頁面指示詞或預期的宣告", + "expected.percentage": "必須是百分比", + "expected.propvalue": "必須是屬性值", + "expected.rcurly": "必須是 }", + "expected.rparent": "必須是 )", + "expected.rsquare": "必須是 ]", + "expected.ruleorselector": "必須是 at-rule 或選取器", + "expected.selector": "必須是選取器", + "expected.semicolon": "必須是分號", + "expected.stringliteral": "必須是字串常值", + "expected.term": "必須是字詞", + "expected.uri": "必須是 URI", + "expected.uriorstring": "必須是 URI 或字串", + "expected.varname": "必須是變數名稱", + "expected.varvalue": "必須是變數值", + "unknown.atrule": "未知的 at-rule", + "unknown.keyword": "未知的關鍵字" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/css/common/services/intelliSense.i18n.json b/i18n/cht/src/vs/languages/css/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..a8c21015e26 --- /dev/null +++ b/i18n/cht/src/vs/languages/css/common/services/intelliSense.i18n.json @@ -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. +{ + "css.builtin.hsl": "從色調、飽和以及光度值建立色彩。", + "css.builtin.hsla": "從色調、飽和、光度以及 Alpha 值建立色彩。", + "css.builtin.rgb": "從紅色、綠色以及藍色值建立色彩。", + "css.builtin.rgba": "從紅色、綠色、藍色以及 Alpha 值建立色彩。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/css/common/services/lint.i18n.json b/i18n/cht/src/vs/languages/css/common/services/lint.i18n.json new file mode 100644 index 00000000000..58f7d12ab1b --- /dev/null +++ b/i18n/cht/src/vs/languages/css/common/services/lint.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "keyframes.standardrule.missing": "定義主要畫面格時,一律定義標準規則 '@keyframes'。", + "keyframes.vendorspecific.missing": "一律包含所有的廠商特定規則: 遺漏: {0}", + "namelist.concatenated": "{0},'{1}'", + "namelist.single": "'{0}'", + "property.standard.missing": "也定義標準的屬性 '{0}' 的相容性", + "property.vendorspecific.missing": "一律包含所有的廠商特定屬性: 遺漏:{0}" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/css/common/services/lintRules.i18n.json b/i18n/cht/src/vs/languages/css/common/services/lintRules.i18n.json new file mode 100644 index 00000000000..f42f1ff521b --- /dev/null +++ b/i18n/cht/src/vs/languages/css/common/services/lintRules.i18n.json @@ -0,0 +1,26 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "enableValidation": "啟用或停用所有驗證", + "rule.avoidFloat": "避免使用 'float'。浮動會使 CSS 脆弱,在版面配置的任一層面改變時容易中斷。", + "rule.avoidIdSelector": "選取器不應包含 ID,因為這些規則與 HTML 結合過於緊密。", + "rule.avoidImportant": "避免使用 !important。這表示整個 CSS 的明確性皆失控,需要重構。", + "rule.colorFunction": "無效的參數數目", + "rule.duplicateDeclarations": "請勿使用重複的樣式定義", + "rule.emptyRuleSets": "請勿使用空白規則集", + "rule.fontFaceProperties": "@font-face 規則必須定義 'src' 和 'font-family' 屬性", + "rule.hexColor": "十六進位色彩必須由三個或六個十六進位數字組成", + "rule.ieHack": "只有在支援 IE7 及更舊的版本時才需要 IE Hack", + "rule.importDirective": "Import 陳述式不會平行載入", + "rule.propertyIgnoredDueToDisplay": "屬性因顯示而忽略。例如,若為 'display: inline',則 width、height、margin-top、margin-bottom 以及 float 屬性就不會有任何作用。", + "rule.standardvendorprefix.all": "在使用廠商專屬的前置詞時,也包括標準屬性。", + "rule.universalSelector": "已知通用選取器 (*) 速度緩慢", + "rule.unknownProperty": "未知的屬性。", + "rule.unknownVendorSpecificProperty": "未知的廠商專屬屬性。", + "rule.vendorprefixes.all": "在使用廠商專屬的前置詞時,請確定也包括其他所有的廠商特定屬性。", + "rule.withHeightAndBorderPadding": "使用填補或框線時不要使用寬度或高度。", + "rule.zeroWidthUnit": "零不需要任何單位" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/javascript/common/javascript.contribution.i18n.json b/i18n/cht/src/vs/languages/javascript/common/javascript.contribution.i18n.json new file mode 100644 index 00000000000..30b32854e62 --- /dev/null +++ b/i18n/cht/src/vs/languages/javascript/common/javascript.contribution.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "永遠包含目前文件中的所有文字。", + "compilationSettings": "控制 JavaScript 驗證的運作方式。", + "jsConfigurationTitle": "JavaScript 組態", + "lint": "控制驗證的各個層面。", + "lint.comparisonOperatorsNotStrict": "使用 '!==' 和 '===' 而非 '!=' 和 '=='。", + "lint.curlyBracketsMustNotBeOmitted": "不要提供大括號。", + "lint.emptyBlocksWithoutComment": "空白區塊應該有註解。", + "lint.forcedTypeConversion": "不要根據指派重複宣告變數類型。", + "lint.functionsInsideLoops": "迴圈內的函式。", + "lint.missingSemicolon": "遺漏分號。", + "lint.mixedTypesArithmetics": "僅使用數字進行數學運算。", + "lint.newOnLowercaseFunctions": "具有小寫名稱的函式當成建構函式使用。", + "lint.newOnReturningFunctions": "具有 return 陳述式的函式當成建構函式使用。", + "lint.parametersDontMatchSignature": "參數不符合函式簽章", + "lint.primitivesInInstanceOf": "不要使用具有基本型別的 instanceof。", + "lint.redeclaredVariables": "不要重複宣告變數並變更其類型。", + "lint.semicolonsInsteadOfBlocks": "分號而非區塊。", + "lint.tripleSlashReferenceAlike": "尋找輸入錯誤的三斜線參考。", + "lint.undeclaredVariables": "不要使用未宣告的變數。", + "lint.unknownModule": "不需要未知的模組。", + "lint.unknownProperty": "不要使用未知的屬性。", + "lint.unknownTypeOfResults": "'typeof' 運算子的非預期輸出。", + "lint.unusedFunctions": "未使用的區域函式。", + "lint.unusedVariables": "未使用的區域變數。", + "semanticValidation": "傳回 JavaScript 檔案的 linter 檢查 - 覆寫 validate.lint.* 設定。", + "suggestSettings": "控制 JavaScript IntelliSense 的運作方式。", + "syntaxValidation": "查看 JavaScript 檔案是否有語法錯誤。", + "useCodeSnippetsOnMethodSuggest": "使用其參數簽章完成函式。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json b/i18n/cht/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json new file mode 100644 index 00000000000..1a20acdc1dd --- /dev/null +++ b/i18n/cht/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.bower.default": "預設 bower.json", + "json.bower.error.repoaccess": "對 Bower 儲存機制的要求失敗: {0}", + "json.bower.package.hover": "{0}" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json b/i18n/cht/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json new file mode 100644 index 00000000000..6e75b1d6b6b --- /dev/null +++ b/i18n/cht/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.nugget.error.repoaccess": "對 NuGet 儲存機制的要求失敗: {0}", + "json.nugget.package.hover": "{0}", + "json.nugget.version.hover": "最新版本: {0}", + "json.nugget.versiondescription.suggest": "此套件目前的最新版本", + "json.project.default": "預設 project.json" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/json/common/json.contribution.i18n.json b/i18n/cht/src/vs/languages/json/common/json.contribution.i18n.json new file mode 100644 index 00000000000..a5226298c4f --- /dev/null +++ b/i18n/cht/src/vs/languages/json/common/json.contribution.i18n.json @@ -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. +{ + "jsonConfiguration.fileMatch": "可含有 '*' 的檔案模式;在將 JSON 檔案解析為結構描述時可用來比對。", + "jsonConfiguration.fileMatches": "在將 JSON 檔案解析為結構描述時,用來比對的檔案模式陣列。", + "jsonConfiguration.schema": "指定 URL 的結構描述定義。您只需要提供結構描述,以避免存取結構描述 URL。", + "jsonConfiguration.schemaPath": "前往結構描述的 URL,或在目前目錄中前往結構描述的相對路徑", + "jsonConfiguration.schemas": "將結構描述與目前專案中的 JSON 檔案建立關聯", + "jsonConfigurationDescription": "用來設定 JSON 設定和結構描述。", + "jsonConfigurationTitle": "JSON 組態" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/json/common/json.i18n.json b/i18n/cht/src/vs/languages/json/common/json.i18n.json new file mode 100644 index 00000000000..021a844a665 --- /dev/null +++ b/i18n/cht/src/vs/languages/json/common/json.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "array": "陣列", + "boolean": "布林值", + "number": "數字", + "object": "物件", + "string": "字串", + "undefined": "未定義" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/json/common/jsonIntellisense.i18n.json b/i18n/cht/src/vs/languages/json/common/jsonIntellisense.i18n.json new file mode 100644 index 00000000000..e51e1e6275c --- /dev/null +++ b/i18n/cht/src/vs/languages/json/common/jsonIntellisense.i18n.json @@ -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. +{ + "json.suggest.default": "預設值" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/json/common/jsonSchemaService.i18n.json b/i18n/cht/src/vs/languages/json/common/jsonSchemaService.i18n.json new file mode 100644 index 00000000000..8453cddde44 --- /dev/null +++ b/i18n/cht/src/vs/languages/json/common/jsonSchemaService.i18n.json @@ -0,0 +1,169 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "app.plugin.json.activationEvents": "外掛程式的啟用事件", + "app.plugin.json.contributes": "這項外掛程式的比重", + "app.plugin.json.contributes.language": "外掛程式的語言比重", + "app.plugin.json.contributes.language.aliases": "這個語言的別名名稱", + "app.plugin.json.contributes.language.extensions": "與這個語言相關聯的副檔名", + "app.plugin.json.contributes.language.filenames": "與這個語言相關聯的檔名", + "app.plugin.json.contributes.language.id": "這個語言的 ID", + "app.plugin.json.dependencies": "外掛程式相依性", + "app.plugin.json.mainModule": "主要 JavaScript 檔案的相對路徑", + "app.plugin.json.pluginId": "不重複的外掛程式 ID", + "app.plugin.json.scripts": "外掛程式提供的指令碼", + "app.plugin.json.scripts.compile": "要編譯此外掛程式的命令列", + "bower.json.authors": "撰寫封裝之內容的人員清單。", + "bower.json.dependencies": "相依性的指定,採用封裝名稱的簡易雜湊到 semver 相容的識別碼或 URL。", + "bower.json.description": "利用簡短的描述協助使用者識別及搜尋您的封裝。", + "bower.json.devDependencies": "唯有開發封裝時才需要的相依性,如測試架構或建置文件。", + "bower.json.exportsOverride": "grunt-bower-task 用來指定自訂安裝位置。", + "bower.json.homepage": "用來深入瞭解封裝的 URL。如果您未指定 URL 且是 GitHub 端點,將回復為 GitHub 專案。", + "bower.json.ignore": "在安裝封裝時要忽略的 Bower 檔案清單。", + "bower.json.invalidPatternName": "所有開頭為 _ 的屬性均適用。", + "bower.json.keywords": "用於關鍵字搜尋。有助於讓使用者不需要知道封裝名稱即可輕易地探索到封裝。", + "bower.json.license": "SPDX 授權識別碼,或授權的路徑/URL。", + "bower.json.main": "使用封裝所需的主要作用檔案。", + "bower.json.moduleType": "此封裝公開的模組類型", + "bower.json.packagename": "封裝的名稱。", + "bower.json.private": "如果設定為 true,它將會拒絕發行。這是避免意外發行私人儲存機制的方法。", + "bower.json.repository": "原始程式碼所在的儲存機制。", + "bower.json.resolutions": "封裝之間發生衝突時,用來自動解決衝突的相依性版本。", + "bower.json.title": "Bower 組態檔的 JSON 結構描述", + "bower.json.version": "語意式版本號碼。", + "global.json.projects": "與這個檔案相關的專案資料夾清單。", + "global.json.sources": "與這個檔案相關的來源資料夾清單。", + "global.json.title": "ASP.NET 全域組態檔的 JSON 結構描述", + "jsconfig.json.compilerOptions": "指示 JavaScript 語言服務如何驗證 .js 檔案", + "jsconfig.json.compilerOptions.charset": "輸入檔的字元集", + "jsconfig.json.compilerOptions.decorators": "啟用 ES7 裝飾項目的實驗支援。", + "jsconfig.json.compilerOptions.diagnostics": "顯示診斷資訊。", + "jsconfig.json.compilerOptions.locale": "用來顯示錯誤訊息的地區設定,例如 zh-TW。", + "jsconfig.json.compilerOptions.mapRoot": "指定偵錯工具應尋找對應檔的位置,而不尋找產生的位置。", + "jsconfig.json.compilerOptions.module": "要解析的模組程式碼產生: 'commonjs'、'amd'、'system' 或 'umd'。", + "jsconfig.json.compilerOptions.noLib": "不要包含預設程式庫檔 (lib.d.ts)。", + "jsconfig.json.compilerOptions.target": "指定 ECMAScript 目標版本: 'ES3' (預設值)、'ES5' 或 'ES6' (實驗)。", + "jsconfig.json.exclude": "列出不應納入的檔案與資料夾。存在 'files' 屬性時,不允許此屬性。", + "jsconfig.json.files": "如果 jsconfig.json 中沒有出現 'files' 屬性,語言服務預設會包含所有內含目錄與子目錄的檔案。指定 'files' 屬性時,只會包含那些檔案。", + "jsconfig.json.title": "JavaScript 組態檔的 JSON 結構描述", + "json.schema.unabletoload": "無法從 '{0}': {1} 載入結構描述。", + "package.json.bugs": "專案問題追蹤器的 URL 及 (或) 接收回報問題的電子郵件地址。對於您的封裝出現問題的人員而言,這些內容很實用。", + "package.json.bugs.email": "接收回報問題的電子郵件地址。", + "package.json.bugs.url": "專案問題追踨器的 URL。", + "package.json.bundleDependencies": "發行封裝時會一併附上的封裝名稱陣列。", + "package.json.bundledDependencies": "發行封裝時會一併附上的封裝名稱陣列。", + "package.json.config": "'config' 雜湊可用以設定各種升級之間皆存在的封裝指令碼中,所用的組態參數。", + "package.json.contributors": "參與這個封裝的人員清單。", + "package.json.dependency": "相依性會利用封裝名稱的簡式雜湊,指定範圍的版本。版本範圍為一個字串,其有一或多個以空格分隔的描述元。相依性也可利用 Tarball 或 Git URL 加以識別。", + "package.json.descr": "其有助於探索您封裝的人員,因為其列於 'npm search' 中。", + "package.json.description": "這個封裝的 NPM 組態。", + "package.json.directories.bin": "若指定了 'bin' 目錄,則所有位於該資料夾中的所有檔案,都會用為 'bin' 雜湊。", + "package.json.directories.doc": "將 Markdown 檔案置於此處。最後有可能有天能以不錯的方式顯示。", + "package.json.directories.example": "將指令碼範例置於此處。有可能某天能用更聰明的方式公開。", + "package.json.directories.lib": "告知人員大部分程式庫的所在位置。程式庫資料夾其實沒進行什麼特別的動作,但其為實用的中繼資訊。", + "package.json.directories.man": "擁有許多手冊頁 (man page) 的資料夾。瀏覽資料夾可產生 'man' 陣列。", + "package.json.files": "'files' 欄位為一檔案陣列,內含於您的專案中。如果已命名陣列中的資料夾,則其也會包含該資料夾內的檔案。", + "package.json.homepage": "進入專案首頁的 URL。", + "package.json.keywords": "其有助於探索您封裝的人員,因為其列於 'npm search' 中。", + "package.json.license": "您應該為您的封裝指定授權,人員才能了解允許他們使用的方式為何,以及您設有什麼限制。", + "package.json.licenses": "您應該為您的封裝指定授權,人員才能了解允許他們使用的方式為何,以及您設有什麼限制。", + "package.json.main": "此主要欄位是模組 ID,而該模組 ID 為進入您程式的主要進入點。", + "package.json.maintainers": "維護這個封裝的人員清單。", + "package.json.man": "指定單一檔案或檔名陣列,以供說明文件程式進行尋找。", + "package.json.name": "封裝的名稱。", + "package.json.person": "參與建立或維護這個封裝的人員", + "package.json.preferGlobal": "如果您的封裝主要為命令列應用程式,而應進行全域安裝,則請將此值設定為 True 以在它進行本機安裝時發出警告。", + "package.json.private": "若設定為 True,npm 將會拒絶發行這個封裝。", + "package.json.repository": "指定程式碼所在的位置。其對於希望參與的人員來說很實用。", + "package.json.scripts": "'scripts' 成員是指令碼命令的物件雜湊,其在封裝的生命週期內會執行多次。機碼為生命週期事件,而值則為當時要執行的命令。", + "package.json.underscore": "所有開頭為 _ 的屬性均適用。", + "package.json.version": "版本必須可以由節點 semver 剖析,其與 npm 組合在一起為相依性。", + "project.json.authors": "應用程式作者", + "project.json.bundleExclude": "排除在發行輸出之外的檔案清單 (kpm 套件組合)。", + "project.json.code": "用來指定所有需要編譯之程式碼檔案的 Glob 模式 (資料類型: 採用 Glob 模式的字串或陣列)。例如: [ 'Folder1*.cs', 'Folder2*.cs' ]", + "project.json.commands": "此應用程式可以使用的命令", + "project.json.compilationOptions": "傳遞到 Roslyn 的編譯選項", + "project.json.configurations": "組態為內含編譯設定的已命名群組。執行階段中內建有 2 個預設值: 'Debug' 及 'Release'。", + "project.json.dependencies": "應用程式的相依性。每個項目都會指定 Nuget 套件的名稱及版本。", + "project.json.dependency.name": "相依性的版本。", + "project.json.dependency.type": "相依性的類型。只有在建置時才會有 'build' 相依性", + "project.json.description": "應用程式的描述", + "project.json.exclude": "用來指定要排除在編譯之外的所有程式碼檔案的 Glob 模式 (資料類型: 採用 Glob 模式的字串或陣列)。", + "project.json.frameworks": "要建置的目標架構,以及組態特有的相依性。", + "project.json.preprocess": "用來指定要前處理之所有程式碼檔案的 Glob 模式 (資料類型: 採用 Glob 模式的字串)。", + "project.json.resources": "用來指定需要以資源形式編譯之所有檔案的 Glob 模式。", + "project.json.script": "一或多個命令列指令碼。\r\r可用變數:\r%project:Directory% - 專案目錄\r%project:Name% - 專案名稱\r%project:Version% - 專案版本", + "project.json.scripts": "要在各個階段中執行的指令碼。", + "project.json.shared": "用來指定與相依專案共用之程式碼檔案的 Glob 模式。範例 : [ 'Folder1*.cs', 'Folder2*.cs' ]", + "project.json.title": "ASP.NET project.json 檔案的 JSON 結構描述", + "project.json.version": "應用程式的版本。範例: 1.2.0.0", + "project.json.webroot": "在 project.json 檔案中指定 webroot 屬性可指定 Web 伺服器根目錄 (亦稱為公用資料夾)。在 Visual Studio 中,此資料夾將用來當做 IIS 的根目錄。您應將靜態檔案放置於此處。", + "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.default": "預設值。供建議使用。", + "schema.json.definitions": "不用於驗證。將您要利用 $ref 內嵌參考的子結構描述置於此", + "schema.json.dependencies": "屬性名稱對屬性名稱陣列或結構描述的對應。屬性名稱陣列表示索引鍵中的命名屬性若要有效,陣列中的屬性必須出現在物件中。如果值是結構描述,則只有在索引鍵中的屬性存在物件上時才會將結構描述套用到該物件。", + "schema.json.description": "元素的詳細描述。用於暫留功能表和建議。", + "schema.json.enum": "有效常值的集合", + "schema.json.exclusiveMaximum": "將最大值屬性設為排除。", + "schema.json.exclusiveMininum": "將最小值屬性設為排除。", + "schema.json.id": "結構描述的唯一識別項。", + "schema.json.items": "用於陣列。可以是用來比對驗證每個元素的結構描述,或是用來依序比對驗證每個項目的結構描述陣列 (第一個結構描述驗證第一個元素,第二個結構描述驗證第二個元素,依此類推)。", + "schema.json.maxItems": "可包含在陣列中的最大項目數目。包含。", + "schema.json.maxLength": "字串的最大長度。", + "schema.json.maxProperties": "物件可以有的最大屬性數目。包含。", + "schema.json.maximum": "最大數值,預設為包含。", + "schema.json.minItems": "可包含在陣列中的最小項目數目。包含。", + "schema.json.minLength": "字串的最小長度。", + "schema.json.minProperties": "物件可以有的最小屬性數目。包含。", + "schema.json.minimum": "最小數值,預設為包含。", + "schema.json.multipleOf": "應該會整除目前值的數字 (即沒有餘數)", + "schema.json.not": "不能相符的結構描述。", + "schema.json.oneOf": "結構描述的陣列,其中剛好一個必須符合。", + "schema.json.pattern": "用來比對字串的規則運算式。它未隱含錨定。", + "schema.json.patternProperties": "屬性名稱的規則運算式對結構描述的對應,用於比對屬性。", + "schema.json.properties": "每個屬性的屬性名稱對結構描述對應。", + "schema.json.required": "這個字串陣列會列出這個物件需要之所有屬性的名稱。", + "schema.json.title": "元素的描述性標題。", + "schema.json.type": "可以是其中一個基本結構描述類型 (數字、整數、null、陣列、物件、布林值、字串) 的字串,或是指定這些類型子集的字串陣列。", + "schema.json.uniqueItems": "是否陣列中的所有項目都必須是唯一的。預設為 false。", + "snippetSchema.json": "使用者程式碼片段組態", + "snippetSchema.json.body": "程式碼片段內容。請為變數使用 '${id}'、'${id:label}'、'${1:label}',而為游標位置使用 '$0'、'$1'", + "snippetSchema.json.description": "程式碼片段描述。", + "snippetSchema.json.prefix": "在 Intellisense 中選取程式碼片段時要使用的前置詞", + "tsconfig.json.compilerOptions": "指示 TypeScript 編譯器如何編譯 .ts 檔案", + "tsconfig.json.compilerOptions.charset": "輸入檔的字元集", + "tsconfig.json.compilerOptions.declaration": "產生相對應的 d.ts 檔案。", + "tsconfig.json.compilerOptions.diagnostics": "顯示診斷資訊。", + "tsconfig.json.compilerOptions.emitBOM": "在輸出檔的開頭發出 UTF-8 位元組順序標記 (BOM)。", + "tsconfig.json.compilerOptions.inlineSourceMap": "使用來源對應發出單一檔案,而不使用另外的檔案。", + "tsconfig.json.compilerOptions.inlineSources": "在單一檔案中連同 sourcemap 發出來源; 需要設定 --inlineSourceMap。", + "tsconfig.json.compilerOptions.listFiles": "列印編譯部份檔案的名稱。", + "tsconfig.json.compilerOptions.locale": "用來顯示錯誤訊息的地區設定,例如 zh-TW。", + "tsconfig.json.compilerOptions.mapRoot": "指定偵錯工具應尋找對應檔的位置,而不尋找產生的位置。", + "tsconfig.json.compilerOptions.module": "指定模組程式碼產生: 'CommonJS'、'Amd'、'System' 或 'UMD'。", + "tsconfig.json.compilerOptions.newLine": "指定發出檔案時要使用的行尾順序: 'CRLF' (dos) 或 'LF' (unix)。)", + "tsconfig.json.compilerOptions.noEmit": "不發出輸出。", + "tsconfig.json.compilerOptions.noEmitHelpers": "不要在編譯過的輸出中產生自訂 Helper 函式,像是 __extends。", + "tsconfig.json.compilerOptions.noEmitOnError": "如果回報了任何類型的檢查錯誤,就不發出輸出。", + "tsconfig.json.compilerOptions.noImplicitAny": "針對具隱含之 'any' 類型的運算式與宣告發出警告。", + "tsconfig.json.compilerOptions.noLib": "不要包含預設程式庫檔 (lib.d.ts)。", + "tsconfig.json.compilerOptions.out": "串連並發出輸出至單一檔案。", + "tsconfig.json.compilerOptions.outDir": "將輸出結構重新導向至目錄。", + "tsconfig.json.compilerOptions.preserveConstEnums": "不清除產生之程式碼中的 const 列舉宣告。", + "tsconfig.json.compilerOptions.removeComments": "不將註解發出到輸出。", + "tsconfig.json.compilerOptions.rootDir": "指定輸入檔的根目錄。可用以控制具有 --outDir 的輸出目錄結構。", + "tsconfig.json.compilerOptions.sourceMap": "產生相對應的 '.map' 檔案。", + "tsconfig.json.compilerOptions.sourceRoot": "指定偵錯工具尋找 TypeScript 檔案的位置,而不尋找原始檔位置。", + "tsconfig.json.compilerOptions.suppressImplicitAnyIndexErrors": "對缺少索引簽章的索引物件隱藏 noImplicitAny 錯誤。", + "tsconfig.json.compilerOptions.target": "指定 ECMAScript 目標版本: 'ES3' (預設值)、'ES5' 或 'ES6' (實驗)。", + "tsconfig.json.files": "如果在 tsconfig.json 中沒有出現 'files' 屬性,編譯器預設會包含所有內含目錄與子目錄的檔案。指定 'files' 屬性時,只會包含那些檔案。", + "tsconfig.json.title": "TypeScript 編譯器組態檔的 JSON 結構描述" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/json/common/parser/jsonParser.i18n.json b/i18n/cht/src/vs/languages/json/common/parser/jsonParser.i18n.json new file mode 100644 index 00000000000..71caca74368 --- /dev/null +++ b/i18n/cht/src/vs/languages/json/common/parser/jsonParser.i18n.json @@ -0,0 +1,44 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ColonExpected": "必須是冒號", + "DisallowedExtraPropWarning": "不允許屬性 {0}", + "DoubleQuotesExpected": "屬性索引鍵必須加上雙引號", + "DuplicateKeyWarning": "重複的物件索引鍵", + "End of file expected": "須有檔案結尾", + "ExpectedCloseBrace": "必須是逗號或右大括號", + "ExpectedCloseBracket": "必須是逗號或右方括號", + "Invalid symbol": "須有 JSON 物件、陣列或常值", + "InvalidEscapeCharacter": "字串中有無效的逸出字元", + "InvalidNumberFormat": "編號格式無效", + "InvalidUnicode": "字串中有無效的 Unicode 序列", + "MaxPropWarning": "物件的屬性數目超過限制 {0}", + "MinPropWarning": "物件的屬性數目少於要求的數目 {0}", + "MissingRequiredPropWarning": "遺漏屬性 \"{0}\"", + "PropertyExpected": "須有屬性", + "RequiredDependentPropWarning": "物件缺少屬性 {1} 需要的屬性 {0}", + "UnexpectedEndOfComment": "未預期的註解結尾", + "UnexpectedEndOfNumber": "未預期的數字結尾", + "UnexpectedEndOfString": "未預期的字串結尾", + "ValueExpected": "必須是值", + "additionalItemsWarning": "根據結構描述,陣列有太多項目。必須是 {0} 個或更少", + "enumWarning": "值不是接受的值。有效值: {0}", + "exclusiveMaximumWarning": "值高於排除最大值 {0}", + "exclusiveMinimumWarning": "值低於排除最小值 {0}", + "maxItemsWarning": "陣列內項目太多。需要 {0} 個或更少", + "maxLengthWarning": "字串長度小於最大長度 ", + "maximumWarning": "值高於最大值 {0}", + "minItemsWarning": "陣列內項目太少。需要 {0} 個或更多", + "minLengthWarning": "字串長度小於最小長度 ", + "minimumWarning": "值低於最小值 {0}", + "multipleOfWarning": "值無法被 {0} 除", + "notSchemaWarning": "比對不允許的結構描述。", + "oneOfWarning": "比對多個結構描述,但只須驗證一個。", + "patternWarning": "字串不符合 \"{0}\" 的模式", + "typeArrayMismatchWarning": "不正確的類型。必須是 {0} 其中一個", + "typeMismatchWarning": "不正確的類型。必須是 \"{0}\"", + "uniqueItemsWarning": "陣列有重複的項目" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/less/common/less.contribution.i18n.json b/i18n/cht/src/vs/languages/less/common/less.contribution.i18n.json new file mode 100644 index 00000000000..7879b265f0d --- /dev/null +++ b/i18n/cht/src/vs/languages/less/common/less.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lessConfigurationTitle": "LESS 組態", + "lessLint": "控制 LESS 驗證和問題嚴重性。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/less/common/services/intelliSense.i18n.json b/i18n/cht/src/vs/languages/less/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..20ecf91e8b3 --- /dev/null +++ b/i18n/cht/src/vs/languages/less/common/services/intelliSense.i18n.json @@ -0,0 +1,60 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "less.builtin.abs": "數字的絕對值", + "less.builtin.acos": "反餘弦值 - 反餘弦函數", + "less.builtin.alpha": "傳回 `@color` 的 `alpha` 色板", + "less.builtin.argb": "建立 #AARRGGBB", + "less.builtin.asin": "反正弦值 - 反正弦函數", + "less.builtin.atan": "反正切值 - 反正切函數", + "less.builtin.blue": "傳回 `@color` 的 `blue` 色板", + "less.builtin.ceil": "無條件進位到一個整數", + "less.builtin.color": "將字串剖析為色彩", + "less.builtin.contrast": "如果 `@color1 is> 43% luma`,則傳回 `@darkcolor`,否則傳回 `@lightcolor`,請參閱<備註>", + "less.builtin.convert": "將數字從某種類型轉換成另一種類型", + "less.builtin.cos": "餘弦函數", + "less.builtin.darken": "傳回 `@color` (暗 10% 點)", + "less.builtin.data-uri": "內嵌一項資源並回復為 `url()`", + "less.builtin.desaturate": "傳回 `@color` (較不飽和 10% 點)", + "less.builtin.e": "逸出字串內容", + "less.builtin.escape": "URL 會編碼字串", + "less.builtin.extract": "傳回清單中指定位置的值", + "less.builtin.fade": "傳回透明度為 50% 的 `@color`", + "less.builtin.fadein": "傳回 `@color` (較不透明 10% 點)", + "less.builtin.fadeout": "傳回 `@color` (較為透明 10% 點)", + "less.builtin.floor": "無條件捨去到一個整數", + "less.builtin.green": "傳回 `@color` 的 `green` 色板", + "less.builtin.greyscale": "傳回灰色,100% 欠飽和色", + "less.builtin.hsl": "建立色彩", + "less.builtin.hsla": "建立色彩", + "less.builtin.hsv": "建立色彩", + "less.builtin.hsva": "建立色彩", + "less.builtin.hsvhue": "傳回 HSV 空間中 `@color` 的 `hue` 色板", + "less.builtin.hsvsaturation": "傳回 HSV 空間中 `@color` 的 `saturation` 色板", + "less.builtin.hsvvalue": "傳回 HSV 空間中 `@color` 的 `value` 色板", + "less.builtin.hue": "傳回 HSL 空間中 `@color` 的 `hue` 色板", + "less.builtin.length": "傳回值清單中的項目數", + "less.builtin.lighten": "傳回 `@color` (亮 10% 點)", + "less.builtin.lightness": "傳回 HSL 空間中 `@color` 的 `lightness` 色板", + "less.builtin.luma": "傳回 `@color` 的 `luma` 值 (感知亮度)", + "less.builtin.max": "傳回一或多個值的最低值", + "less.builtin.min": "傳回一或多個值的最低值", + "less.builtin.mix": "傳回 `@color1` 和 `@color2` 的混合", + "less.builtin.mod": "第一個引數模組的第二個引數", + "less.builtin.percentage": "轉換成 %,例如 0.5 > 50%", + "less.builtin.pi": "傳回圓周率", + "less.builtin.pow": "自乘至第二個引數乘冪的第一個引數", + "less.builtin.red": "傳回 `@color` 的 `red` 色板", + "less.builtin.replace": "字串取代", + "less.builtin.round": "將數字四捨五入到某個小數位數", + "less.builtin.saturate": "傳回 `@color` (較飽和 10% 點)", + "less.builtin.saturation": "傳回 HSL 空間中 `@color` 的 `saturation` 色板", + "less.builtin.sin": "正弦函數", + "less.builtin.spin": "傳回色調放大 10 度的 '@color' ", + "less.builtin.sqrt": "計算數字的平方根", + "less.builtin.tan": "正切函數", + "less.builtin.unit": "移除或變更維度的單位" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/markdown/common/markdown.contribution.i18n.json b/i18n/cht/src/vs/languages/markdown/common/markdown.contribution.i18n.json new file mode 100644 index 00000000000..17dc7501b6f --- /dev/null +++ b/i18n/cht/src/vs/languages/markdown/common/markdown.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "markdownConfigurationTitle": "Markdown 預覽組態", + "styles": "從 Markdown 預覽可用的 CSS 樣式表之 URL 或本機路徑清單。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/sass/common/parser/sassErrors.i18n.json b/i18n/cht/src/vs/languages/sass/common/parser/sassErrors.i18n.json new file mode 100644 index 00000000000..56ed7f77b09 --- /dev/null +++ b/i18n/cht/src/vs/languages/sass/common/parser/sassErrors.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.from": "必須是 'from'", + "expected.in": "必須是 'in'", + "expected.through": "必須是 'through' 或 'to'" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/sass/common/sass.contribution.i18n.json b/i18n/cht/src/vs/languages/sass/common/sass.contribution.i18n.json new file mode 100644 index 00000000000..57ed368e88f --- /dev/null +++ b/i18n/cht/src/vs/languages/sass/common/sass.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sassConfigurationTitle": "SASS 組態", + "sassLint": "控制 Sass 驗證和問題嚴重性。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/sass/common/services/intelliSense.i18n.json b/i18n/cht/src/vs/languages/sass/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..fb34276f902 --- /dev/null +++ b/i18n/cht/src/vs/languages/sass/common/services/intelliSense.i18n.json @@ -0,0 +1,81 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sass.builtin.abs": "傳回數字的絕對值。", + "sass.builtin.adjust-color": "增加或減少色彩的一或多個元件。", + "sass.builtin.adjust-hue": "變更色彩的色調。", + "sass.builtin.alpha": "取得色彩的不透明度元件。", + "sass.builtin.append": "將單一值附加至清單結尾。", + "sass.builtin.blue": "取得色彩的藍色元件。", + "sass.builtin.call": "以動態方式呼叫 SASS 函式。", + "sass.builtin.ceil": "將數字無條件進位到下一個整數。", + "sass.builtin.change-color": "變更色彩的一或多個屬性。", + "sass.builtin.comparable": "傳回兩個數字是否可相加、相減或比較。", + "sass.builtin.complement": "傳回色彩的互補色。", + "sass.builtin.darken": "讓色彩較深。", + "sass.builtin.desaturate": "讓色彩較不飽和。", + "sass.builtin.fade-in": "讓色彩較不透明。", + "sass.builtin.feature-exists": "傳回目前的 SASS 執行階段中是否存在某項功能。", + "sass.builtin.floor": "將數字無條件捨去到上一個整數。", + "sass.builtin.function-exists": "傳回具有指定名稱的功能是否存在。", + "sass.builtin.global-variable-exists": "傳回具有指定名稱的變數在全域範圍中是否存在。", + "sass.builtin.grayscale": "將色彩轉換成灰階。", + "sass.builtin.green": "取得色彩的綠色元件。", + "sass.builtin.hue": "取得色彩的色調元件。", + "sass.builtin.ie-hex-str": "將色彩轉換成 IE 篩選了解的格式。", + "sass.builtin.index": "傳回清單中的值位置。", + "sass.builtin.inspect": "傳回以字串表示的值,就像是在 SASS 中表示一樣。", + "sass.builtin.invert": "傳回色彩的反轉。", + "sass.builtin.is-superselector": "傳回 $super 是否符合 $sub 符合的所有項目,而且可能更多。", + "sass.builtin.join": "將兩個清單聯結成一個清單。", + "sass.builtin.keywords": "傳回傳遞至採用變數引數之函式的關鍵字。", + "sass.builtin.length": "傳回清單長度。", + "sass.builtin.lighten": "讓色彩較淺。", + "sass.builtin.lightness": "取得色彩的亮度元件。", + "sass.builtin.list-separator": "傳回清單的分隔符號。", + "sass.builtin.map-get": "傳回與指定索引鍵相關聯之對應中的值。", + "sass.builtin.map-has-key": "傳回對應是否具有與指定索引鍵相關聯的值。", + "sass.builtin.map-keys": "傳回對應中所有索引鍵的清單。", + "sass.builtin.map-merge": "將兩個對應合併成一個新對應。", + "sass.builtin.map-remove": "傳回已移除索引鍵的新對應。", + "sass.builtin.map-values": "傳回對應中所有值的清單。", + "sass.builtin.max": "求解幾個數字的最大值。", + "sass.builtin.min": "求解幾個數字的最小值。", + "sass.builtin.mix": "將兩個色彩混合在一起。", + "sass.builtin.mixin-exists": "傳回具有指定名稱的 mixin 是否存在。", + "sass.builtin.nth": "傳回清單中的特定項目。", + "sass.builtin.opacify": "讓色彩較不透明。", + "sass.builtin.percentage": "將無單位的數字轉換成百分比。", + "sass.builtin.quote": "為字串加上引號。", + "sass.builtin.random": "傳回亂數。", + "sass.builtin.red": "取得色彩的紅色元件。", + "sass.builtin.rgba": "變更色彩的 Alpha 元件。", + "sass.builtin.round": "將數字四捨五入到最近的整數。", + "sass.builtin.saturate": "讓色彩較飽和。", + "sass.builtin.saturation": "取得色彩的飽和元件。", + "sass.builtin.scale-color": "流暢地調整色彩的一或多個屬性。", + "sass.builtin.selector-append": "將選取器彼此附加在一起,之間不含空格。", + "sass.builtin.selector-extend": "在 $selector 內以 $extender 擴充 $extendee。", + "sass.builtin.selector-nest": "將選取器巢狀到彼此的下方,就像是在樣式表中巢狀一樣。", + "sass.builtin.selector-parse": "將選取器剖析為 & 傳回的格式。", + "sass.builtin.selector-replace": "在 $selector 內以 $replacement 取代 $original。", + "sass.builtin.selector-unify": "整合兩個選取器以產生與兩者相符之項目相符的選取器。", + "sass.builtin.set-nth": "取代清單中的第 n 個項目。", + "sass.builtin.simple-selectors": "傳回組成複合選取器的簡單選取器。", + "sass.builtin.str-index": "傳回 $string 中第一個出現之 $substring 的索引。", + "sass.builtin.str-insert": "將 $insert 插入 $index 的 $string 中。", + "sass.builtin.str-length": "傳回字串中的字元數。", + "sass.builtin.str-slice": "從 $string 擷取子字串。", + "sass.builtin.to-lower-case": "將字串轉換成小寫。", + "sass.builtin.to-upper-case": "將字串轉換成大寫。", + "sass.builtin.transparentize": "讓色彩較透明。", + "sass.builtin.type-of": "傳回值的類型。", + "sass.builtin.unit": "傳回與數字相關聯的單位。", + "sass.builtin.unitless": "傳回數字是否有單位。", + "sass.builtin.unquote": "從字串中移除引號。", + "sass.builtin.variable-exists": "傳回具有指定名稱的變數在目前範圍中是否存在。", + "sass.builtin.zip": "將數個清單合併成一個多維度清單。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/typescript/common/features/quickFix.i18n.json b/i18n/cht/src/vs/languages/typescript/common/features/quickFix.i18n.json new file mode 100644 index 00000000000..a24ef336a93 --- /dev/null +++ b/i18n/cht/src/vs/languages/typescript/common/features/quickFix.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "typescript.quickfix.addAsGlobal": "將 '{0}' 標記為全域", + "typescript.quickfix.rename": "重新命名為 '{0}'", + "typescript.quickfix.typeDefinitions": "下載類型定義 {0}" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/typescript/common/lint/lint.i18n.json b/i18n/cht/src/vs/languages/typescript/common/lint/lint.i18n.json new file mode 100644 index 00000000000..61cf2322787 --- /dev/null +++ b/i18n/cht/src/vs/languages/typescript/common/lint/lint.i18n.json @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "javascript.comparisonOperatorNotStrict": "使用 '!==' 和 '===' 而非 '!=' 和 '=='。", + "javascript.functionInsideLoop": "迴圈內的函式。", + "javascript.missingSemicolon": "遺漏分號。", + "javascript.newOnLowercaseFunctions": "具有小寫名稱的函式當成建構函式使用。", + "javascript.reservedKeyword": "不要使用保留的關鍵字。", + "javascript.semicolonInsteadOfBlock": "分號而非區塊。", + "javascript.typeofCannotBeCompared": "'typeof' 運算子的非預期輸出。", + "javascript.typescriptSpecific": "不要在 JavaScript 中使用 TypeScript 特定語言建構。", + "layout.curlyBracketsMustNotBeOmitted": "不要提供大括號。", + "layout.emptyblock": "空白區塊應該有註解。", + "typescript.looksLikeTripleSlash": "您是不是指 '/// '?", + "typescript.missingReturnType": "遺漏傳回類型。", + "typescript.unusedFunction": "未使用的區域函式。", + "typescript.unusedImport": "未使用的輸入。", + "typescript.unusedLocalVariable": "未使用的區域變數。", + "typescript.unusedPrivateMember": "未使用的 Private 成員。", + "typescript.variableUsedBeforeDeclared": "變數已在宣告之前使用。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/typescript/common/typescript.contribution.i18n.json b/i18n/cht/src/vs/languages/typescript/common/typescript.contribution.i18n.json new file mode 100644 index 00000000000..26a8527ea1f --- /dev/null +++ b/i18n/cht/src/vs/languages/typescript/common/typescript.contribution.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "永遠包含目前文件中的所有文字。", + "baseUrl": "允許設定基底 URL,此 URL 可用來解析模組參考 (http://requirejs.org/docs/api.html#config-baseUrl)。這個選項僅適用於使用非同步模組定義 (\"module\": \"amd\") 的專案。", + "compilationSettings": "控制 TypeScript 驗證的運作方式。", + "lint": "控制驗證的各個層面。", + "lint.comparisonOperatorsNotStrict": "使用 '!==' 和 '===' 而非 '!=' 和 '=='。", + "lint.curlyBracketsMustNotBeOmitted": "不要提供大括號。", + "lint.emptyBlocksWithoutComment": "空白區塊應該有註解。", + "lint.functionsInsideLoops": "迴圈內的函式。", + "lint.functionsWithoutReturnType": "不要為函式提供傳回類型註釋。", + "lint.missingSemicolon": "遺漏分號。", + "lint.newOnLowercaseFunctions": "具有小寫名稱的函式當成建構函式使用。", + "lint.reservedKeywords": "不要使用保留的關鍵字。", + "lint.semicolonsInsteadOfBlocks": "分號而非區塊。", + "lint.tripleSlashReferenceAlike": "尋找輸入錯誤的三斜線參考。", + "lint.typeScriptSpecifics": "不要在 JavaScript 中使用 TypeScript 特定語言建構。", + "lint.unknownTypeOfResults": "'typeof' 運算子的非預期輸出。", + "lint.unusedFunctions": "未使用的區域函式。", + "lint.unusedMembers": "未使用的 Private 成員。", + "lint.unusedVariables": "未使用的區域變數。", + "module": "指定正在使用的模組系統。", + "noImplicitAny": "強制任何明確的類型宣告。", + "noLib": "不要在 DOM 和瀏覽器環境使用輸入。", + "scope": "具有多個驗證設定時,請定義要套用設定的子資料夾。", + "suggestSettings": "控制 TypeScript IntelliSense 的運作方式。", + "target": "指定使用的 ECMA-Script 版本。", + "tsConfigurationTitle": "TypeScript 組態", + "useCodeSnippetsOnMethodSuggest": "使用其參數簽章完成函式。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/typescript/common/typescriptMode.i18n.json b/i18n/cht/src/vs/languages/typescript/common/typescriptMode.i18n.json new file mode 100644 index 00000000000..101950c8344 --- /dev/null +++ b/i18n/cht/src/vs/languages/typescript/common/typescriptMode.i18n.json @@ -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. +{ + "err.tooMuchData": "抱歉,VS 程式碼有太多 JavaScript 來源檔案。請考慮在 jsconfig.json 中使用 exclude-property。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/platform/configuration/common/configurationRegistry.i18n.json b/i18n/cht/src/vs/platform/configuration/common/configurationRegistry.i18n.json new file mode 100644 index 00000000000..7aa7623cb24 --- /dev/null +++ b/i18n/cht/src/vs/platform/configuration/common/configurationRegistry.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "invalid.properties": "'configuration.properties' 必須是物件", + "invalid.title": "'configuration.title' 必須是字串", + "invalid.type": "如果已設定,'configuration.type' 必須設定為物件", + "vscode.extension.contributes.configuration": "提供組態設定。", + "vscode.extension.contributes.configuration.properties": "組態屬性的描述。", + "vscode.extension.contributes.configuration.title": "設定的摘要。此標籤將會在設定檔中作為分隔註解使用。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json b/i18n/cht/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json new file mode 100644 index 00000000000..d0667039e98 --- /dev/null +++ b/i18n/cht/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "first.chord": "已按下 ({0})。請等待第二個套索鍵...", + "missing.chord": "按鍵組合 ({0}, {1}) 不是命令。", + "unboundCommands": "其他可用命令如下: " +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/electron-main/main.i18n.json b/i18n/cht/src/vs/workbench/electron-main/main.i18n.json new file mode 100644 index 00000000000..230bf103654 --- /dev/null +++ b/i18n/cht/src/vs/workbench/electron-main/main.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expired": "已到期", + "expiredDetail": "{0} 的這個發行前版本已到期。\n\n請瀏覽 {1} 以下載目前的版本。", + "newWindow": "開新視窗", + "openWebSite": "開啟網站", + "quit": "離開" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json b/i18n/cht/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json new file mode 100644 index 00000000000..229645bf695 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json @@ -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. +{ + "globalConsoleActionMacLinux": "開啟新的終端機", + "globalConsoleActionWin": "開啟新的命令提示字元", + "scopedConsoleActionMacLinux": "在終端機中開啟", + "scopedConsoleActionWin": "在命令提示字元中開啟" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/feedback/browser/feedback.i18n.json b/i18n/cht/src/vs/workbench/parts/feedback/browser/feedback.i18n.json new file mode 100644 index 00000000000..6c58b45e488 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/feedback/browser/feedback.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "character left": "剩餘字元", + "characters left": "剩餘字元", + "commentsHeader": "註解", + "feedbackSending": "正在傳送", + "feedbackSendingError": "請再試一次", + "feedbackSent": "謝謝", + "frownCaption": "傷心", + "label.sendASmile": "請將您的意見反應推文提供給我們。", + "other ways to contact us": "其他與我們連絡的方式", + "request a missing feature": "要求遺漏的功能", + "sendFeedback": "推文意見反應", + "sentiment": "您的使用經驗如何?", + "smileCaption": "快樂", + "submit a bug": "提交 Bug", + "tell us why?": "請告訴我們原因", + "tweet": "推文" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/files/browser/fileActions.i18n.json b/i18n/cht/src/vs/workbench/parts/files/browser/fileActions.i18n.json new file mode 100644 index 00000000000..8357c1f5604 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -0,0 +1,62 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "addToWorkingFiles": "將使用中的檔案加入工作檔案中", + "closeAllFiles": "關閉所有檔案", + "closeAllLabel": "關閉所有檔案", + "closeFile": "關閉檔案", + "closeLabel": "關閉檔案", + "closeOtherFiles": "關閉其他檔案", + "closeOtherLabel": "關閉其他檔案", + "compareFiles": "比較檔案", + "compareLabels": "{0} ↔ {1}", + "compareSource": "選取用以比較", + "compareWith": "與 '{0}' 比較", + "confirmDeleteMessageFile": "您確定要永久刪除 '{0}' 嗎?", + "confirmDeleteMessageFolder": "您確定要永久刪除 '{0}' 和其中的內容嗎?", + "confirmMoveTrashMessageFile": "您確定要刪除 '{0}' 嗎?", + "confirmMoveTrashMessageFolder": "您確定要刪除 '{0}' 及其內容嗎?", + "confirmOverwrite": "目的資料夾中已有同名的檔案或資料夾。要取代它嗎?", + "copyFile": "複製", + "createNewFile": "新增檔案", + "createNewFolder": "新增資料夾", + "delete": "刪除", + "deleteButtonLabel": "刪除(&D)", + "deleteButtonLabelRecycleBin": "移至資源回收筒(&M)", + "deleteButtonLabelTrash": "移至垃圾筒(&M)", + "duplicateFile": "複製", + "emptyFileNameError": "必須提供檔案或資料夾名稱。", + "fileNameExistsError": "這個位置已存在檔案或資料夾 **{0}**。請選擇不同的名稱。", + "filePathTooLongError": "名稱 **{0}** 導致路徑太長。請選擇較短的名稱。", + "focusWorkingFiles": "將焦點放在工作檔案上", + "globalCompareFile": "使用中檔案的比較對象...", + "importFiles": "匯入檔案", + "invalidFileNameError": "名稱 **{0}** 不能作為檔案或資料夾名稱。請選擇不同的名稱。", + "irreversible": "此動作無法回復!", + "newFile": "新增檔案", + "newFolder": "新增資料夾", + "noFileOpen": "目前沒有開啟的檔案可以關閉。", + "noWorkingFiles": "目前沒有工作檔案。", + "openFileToAdd": "先開啟檔案以將其加入工作檔案中", + "openFileToCompare": "先開啟檔案以與其他檔案進行比較", + "openNextWorkingFile": "開啟下一個工作檔案", + "openPreviousWorkingFile": "開啟上一個工作檔案", + "openToSide": "開至側邊", + "pasteFile": "貼上", + "permDelete": "永久刪除", + "refresh": "重新整理", + "rename": "重新命名", + "replaceButtonLabel": "取代(&R)", + "retry": "重試", + "revert": "還原檔案", + "save": "儲存", + "saveAll": "全部儲存", + "saveFiles": "儲存已變更的檔案", + "unableToFileToCompare": "選取的檔案無法與 '{0}' 進行比較。", + "undoBin": "您可以從資源回收筒還原。", + "undoTrash": "您可以從垃圾筒還原。", + "warningFileDirty": "正在儲存 '{0}' 檔案,請稍後再試一次。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json b/i18n/cht/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json new file mode 100644 index 00000000000..3b88b00f46f --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "createNewBranch": "建立新分支", + "dupeBranchName": "分支名稱已存在。", + "invalidBranchName": "無效的分支名稱。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json b/i18n/cht/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json new file mode 100644 index 00000000000..19fe3d72a97 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "git": "Git", + "openChange": "開啟變更", + "openInEditor": "切換至編輯器檢視", + "stageSelectedLines": "將選取的行分段", + "switchToChangesView": "切換至變更檢視" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/cht/src/vs/workbench/parts/git/browser/gitActions.i18n.json new file mode 100644 index 00000000000..3f0f7f923d5 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -0,0 +1,51 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "authFailed": "Git 遠端的驗證失敗。", + "branch": "分支", + "branch2": "分支", + "checkout": "簽出", + "cleanChangesLabel": "清除變更(&C)", + "commitAll": "全部認可", + "commitAll2": "全部認可", + "commitStaged": "認可已分段", + "commitStaged2": "認可已分段", + "confirmPublishMessage": "確定要將 '{0}' 發行至 '{1}' 嗎?", + "confirmPublishMessageButton": "發行(&P)", + "confirmUndo": "確定要清除 '{0}' 中的變更嗎?", + "confirmUndoAllMultiple": "{0} 個檔案中有取消暫存的變更。\n\n此動作無法回復!", + "confirmUndoAllOne": "{0} 個檔案中有取消暫存的變更。\n\n此動作無法回復!", + "confirmUndoMessage": "確定要清除所有變更嗎?", + "currentBranch": "目前的分支 '{0}' 是最新狀態。", + "currentBranchPlural": "目前分支 '{0}' 在 '{3}' 之後有 {1} 個認可,之前有 {2} 個認可。", + "currentBranchPluralSingle": "目前分支 '{0}' 在 '{3}' 之後有 {1} 個認可,之前有 {2} 個認可。", + "currentBranchSingle": "目前分支 '{0}' 在 '{3}' 之後有 {1} 個認可,之前有 {2} 個認可。", + "currentBranchSinglePlural": "目前分支 '{0}' 在 '{3}' 之後有 {1} 個認可,之前有 {2} 個認可。", + "currentlyDetached": "無法在離線模式中同步處理。", + "dirtyChanges": "同步處理之前請先認可、復原或隱藏您的變更。", + "dirtyTreeCheckout": "無法簽出。請先認可或佈置您的工作。", + "dirtyTreePull": "無法提取。請先認可或佈置您的工作。", + "init": "Init", + "irreversible": "此動作無法回復!", + "noUpstream": "目前的分支 '{0}沒有設定上游分支。", + "openChange": "開啟變更", + "openFile": "開啟檔案", + "publish": "發行", + "publishPickMessage": "挑選要發行分支 '{0}' 的目標遠端:", + "pull": "提取", + "pullWithRebase": "提取 (重訂基底)", + "push": "推送", + "refresh": "重新整理", + "stageAllChanges": "全部分段", + "stageChanges": "分段", + "sync": "同步處理", + "synchronizing": "正在同步處理...", + "undoAllChanges": "全部清除", + "undoChanges": "清除", + "undoLastCommit": "復原上次認可", + "unstage": "取消分段", + "unstageAllChanges": "全部取消分段" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/git/browser/gitServices.i18n.json b/i18n/cht/src/vs/workbench/parts/git/browser/gitServices.i18n.json new file mode 100644 index 00000000000..43a1154590b --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "badConfigFile": "Git {0}", + "cancel": "取消", + "cantOpen": "無法開啟這個 Git 資源。", + "cantOpenResource": "無法開啟這個 Git 資源。", + "changesFromIndex": "{0} - 索引上的變更", + "changesFromTree": "{0} - {1} 上的變更", + "checkNativeConsole": "執行 Git 作業時發生問題。請檢閱輸出或使用主控台來查看儲存機制的狀態。", + "configureUsernameEmail": "請設定您的 Git 使用者名稱及電子郵件。", + "gitIndexChanges": "{0} - 索引上的變更", + "gitIndexChangesRenamed": "{0} - 已重新命名 - 索引的變更", + "gitMergeChanges": "{0} - 合併變更", + "showOutput": "顯示輸出", + "unmergedChanges": "您在認可變更前應先解決未合併的變更。", + "workingTreeChanges": "{0} - 工作樹狀目錄上的變更" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json b/i18n/cht/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json new file mode 100644 index 00000000000..139fb753892 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "commitMessage": "訊息 (按 {0} 認可)", + "commitMessageAriaLabel": "Git: 輸入認可訊息並按 {0} 認可", + "needMessage": "請提供認可訊息。您可以隨時按下 **[{0}]** 來認可變更。如有任何已分段的變更,將只有那些分段的變更會獲得認可,否則,所有變更都會獲得認可。", + "nothingToCommit": "一旦有些變更要進行認可,請在認可訊息中輸入,或者按下 **[{0}]** 來認可變更。如有任何已分段的變更,將只有那些分段的變更會獲得認可,否則,所有變更都會獲得認可。", + "showOutput": "顯示 Git 輸出", + "treeAriaLabel": "Git 變更檢視" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json b/i18n/cht/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json new file mode 100644 index 00000000000..fbe37243d86 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "added-char": "A", + "allChanges": "變更", + "ariaLabelChanges": "變更,Git", + "ariaLabelMerge": "合併,Git", + "ariaLabelStagedChanges": "暫存的變更,Git", + "copied-char": "C", + "deleted-char": "D", + "fileStatusAriaLabel": "資料夾 {1} 中的檔案 {0} 具有狀態: {2},Git", + "ignored-char": "!", + "mergeChanges": "合併變更", + "modified-char": "M", + "outsideOfWorkspace": "此檔案位於目前的工作區外。", + "renamed-char": "R", + "stagedChanges": "已分段的變更", + "title-conflict-added-by-them": "衝突: 由他們新增", + "title-conflict-added-by-us": "衝突: 由我們新增", + "title-conflict-both-added": "衝突: 兩者皆新增", + "title-conflict-both-deleted": "衝突: 兩者皆刪除", + "title-conflict-both-modified": "衝突: 兩者皆修改", + "title-conflict-deleted-by-them": "衝突: 由他們刪除", + "title-conflict-deleted-by-us": "衝突: 由我們刪除", + "title-deleted": "已刪除", + "title-ignored": "已忽略", + "title-index-added": "已新增至索引", + "title-index-copied": "已在索引中複製", + "title-index-deleted": "已在索引中刪除", + "title-index-modified": "已在索引中修改", + "title-index-renamed": "已在索引中重新命名", + "title-modified": "已修改", + "title-untracked": "已取消追蹤", + "untracked-char": "U" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json b/i18n/cht/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json new file mode 100644 index 00000000000..bd3ff1223a1 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json @@ -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. +{ + "markdownPreviewNoFile": "先開啟 Markdown 檔案以顯示預覽。", + "openPreview": "開啟預覽", + "openPreviewSideBySide": "在一側開啟預覽", + "toggleMarkdownPreview": "切換預覽" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/output/browser/outputActions.i18n.json b/i18n/cht/src/vs/workbench/parts/output/browser/outputActions.i18n.json new file mode 100644 index 00000000000..c18a9bb287f --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/output/browser/outputActions.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "clearOutput": "清除輸出", + "switchToOutput.label": "切換至輸出", + "toggleOutput": "切換輸出" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json b/i18n/cht/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json new file mode 100644 index 00000000000..f5908f8df39 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json @@ -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. +{ + "QuickCommandsAction.label": "顯示編輯器命令", + "actionNotEnabled": "目前內容中未啟用命令 '{0}'。", + "canNotRun": "無法從這裡執行命令 '{0}'。", + "commandLabel": "{0}: {1}", + "entryAriaLabel": "{0},命令", + "noCommandsMatching": "沒有相符的命令", + "showTriggerActions": "顯示所有命令" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json b/i18n/cht/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json new file mode 100644 index 00000000000..e3851c5bd04 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json @@ -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. +{ + "cannotRunGotoLine": "先開啟文字檔以移至某一行", + "gotoLine": "移至行...", + "gotoLineColumnLabel": "移至行 {0} 和資料行 {1}", + "gotoLineHandlerAriaLabel": "輸入要瀏覽的行號。", + "gotoLineLabel": "移至第 {0} 行", + "gotoLineLabelEmpty": "輸入要瀏覽的行號", + "gotoLineLabelEmptyWithLimit": "輸入介於 1 到 {0} 之間要瀏覽的行號" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json b/i18n/cht/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json new file mode 100644 index 00000000000..14e79ff8933 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "_constructor": "建構函式 ({0})", + "array": "陣列 ({0})", + "boolean": "布林值 ({0})", + "cannotRunGotoSymbol": "先開啟文字檔以移至某一個符號", + "cannotRunGotoSymbolInFile": "很抱歉,我們沒有此檔案的符號資訊", + "class": "類別 ({0})", + "entryAriaLabel": "{0},符號", + "enum": "列舉 ({0})", + "file": "檔案 ({0})", + "function": "函式 ({0})", + "gotoSymbol": "移至符號...", + "gotoSymbolHandlerAriaLabel": "輸入以縮小目前使用中編輯器的符號範圍。", + "interface": "介面 ({0})", + "key": "索引鍵 ({0})", + "method": "方法 ({0})", + "modules": "模組 ({0})", + "namespace": "命名空間 ({0})", + "noSymbolsFound": "找不到符號", + "noSymbolsMatching": "沒有相符的符號", + "number": "數字 ({0})", + "object": "物件 ({0})", + "package": "封裝 ({0})", + "property": "屬性 ({0})", + "rule": "規則 ({0})", + "string": "字串 ({0})", + "symbols": "符號 ({0})", + "variable": "變數 ({0})" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json b/i18n/cht/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json new file mode 100644 index 00000000000..a3eb306cda1 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "editorCommands": "編輯器命令", + "entryAriaLabel": "{0},選擇器說明", + "globalCommands": "全域命令" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json b/i18n/cht/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json new file mode 100644 index 00000000000..13a9d45d8f8 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json @@ -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. +{ + "fileAndTypeResults": "檔案和符號結果" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json b/i18n/cht/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json new file mode 100644 index 00000000000..78745bd47d8 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "entryAriaLabel": "{0},檔案選擇器", + "searchResults": "搜尋結果" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json b/i18n/cht/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json new file mode 100644 index 00000000000..c411b82c777 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json @@ -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. +{ + "entryAriaLabel": "{0},符號選擇器", + "noSymbolsMatching": "沒有相符的符號", + "noSymbolsWithoutInput": "輸入以搜尋符號", + "symbols": "符號結果" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/search/browser/search.contribution.i18n.json b/i18n/cht/src/vs/workbench/parts/search/browser/search.contribution.i18n.json new file mode 100644 index 00000000000..e43063ad793 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/search/browser/search.contribution.i18n.json @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "exclude": "設定 Glob 模式以排除搜尋中的檔案和資料夾。請從 file.exclude 設定繼承所有 Glob 模式。", + "exclude.boolean": "要符合檔案路徑的 Glob 模式。設為 True 或 False 可啟用或停用模式。", + "exclude.when": "在相符檔案同層級上額外的檢查。請使用 $(basename) 作為相符檔案名稱的變數。", + "findInFolder": "在資料夾中尋找", + "name": "搜尋", + "openAnythingHandlerDescription": "開啟檔案和符號 (依名稱)", + "openSymbolDescriptionNormal": "開啟符號 (依名稱)", + "searchConfigurationTitle": "搜尋組態", + "showSearchViewlet": "顯示搜尋", + "showTriggerActions": "顯示所有符號", + "view": "檢視" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json b/i18n/cht/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json new file mode 100644 index 00000000000..5988f14155d --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ClearSearchResultsAction.label": "清除搜尋結果", + "CollapseAllAction.label": "摺疊", + "ConfigureGlobalExclusionsAction.label": "開啟設定", + "RefreshAction.label": "重新整理", + "RemoveAction.label": "移除", + "SelectOrRemoveAction.removeLabel": "移除", + "SelectOrRemoveAction.selectLabel": "選取", + "ariaSearchResultsStatus": "搜尋傳回 {1} 個檔案中的 {0} 個結果", + "defaultLabel": "輸入", + "fileMatchAriaLabel": "資料夾 {2} 檔案 {1} 中的 {0} 個相符的記錄,搜尋結果", + "findInFolder": "在資料夾中尋找", + "findPlaceHolder": "按 Enter 鍵搜尋或按 Esc 鍵取消", + "globLabel": "當 {1} 時為 {0}", + "global.searchScope.folders": "透過設定所排除的檔案", + "label.Search": "搜尋: 輸入搜尋字詞,然後按 Enter 鍵搜尋或按 Esc 鍵取消", + "label.excludes": "搜尋排除模式", + "label.global.excludes": "設定的搜尋排除模式", + "label.includes": "搜尋包含模式", + "moreSearch": "切換搜尋詳細資料", + "noMatches": "沒有相符項目", + "noResultsExcludes": "找不到排除 '{0}' 的結果 - ", + "noResultsFound": "找不到結果。請檢閱所設定排除的設定 - ", + "noResultsIncludes": "在 '{0}' 中找不到結果 - ", + "noResultsIncludesExcludes": "在 '{0}' 中找不到排除 '{1}' 的結果 - ", + "openSettings.message": "開啟設定", + "patternDescription": "使用 Glob 模式", + "patternHelpInclude": "要比對的模式。例如 ****/*.js** 可比對所有 JavaScript 檔案,或 **myFolder/**** 可比對資料夾和所有子系。\n\n**參考**:\n***** 比對 0 或多個字元\n**?** 比對 1 個字元\n****** 比對 0 或多個目錄\n**[a-z]** 比對某個範圍的字元\n**{a,b}** 比對任何模式)", + "regexp.validationFailure": "運算式符合所有項目", + "rerunSearch.message": "再次搜尋", + "rerunSearchInAll.message": "在所有檔案中再次搜尋", + "searchCanceled": "在可能找到任何結果之前已取消搜尋 - ", + "searchMatch": "找到 {0} 個符合項", + "searchMatches": "找到 {0} 個符合項", + "searchMaxResultsWarning": "結果集只包含所有符合項的子集。請提供更具體的搜尋條件以縮小結果範圍。", + "searchResultAria": "{0},搜尋結果", + "searchScope.excludes": "要排除的檔案", + "searchScope.includes": "要包含的檔案", + "treeAriaLabel": "搜尋結果" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/services/message/browser/messageService.i18n.json b/i18n/cht/src/vs/workbench/services/message/browser/messageService.i18n.json new file mode 100644 index 00000000000..2014961773f --- /dev/null +++ b/i18n/cht/src/vs/workbench/services/message/browser/messageService.i18n.json @@ -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. +{ + "closeMessages": "關閉通知訊息" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json b/i18n/cht/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json new file mode 100644 index 00000000000..c215ff9a72b --- /dev/null +++ b/i18n/cht/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "pluginHostProcess.crash": "擴充功能主機意外終止。請重新載入視窗以復原。", + "pluginHostProcess.error": "擴充功能主機的錯誤: {0}", + "pluginHostProcess.startupFail": "擴充功能主機 10 秒內未啟動,可能發生問題。", + "pluginHostProcess.startupFailDebug": "擴充功能主機 10 秒內未啟動,可能在第一行停止並需要偵錯工具才能繼續。", + "reloadWindow": "重新載入視窗" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/base/browser/ui/actionbar/actionbar.i18n.json b/i18n/deu/src/vs/base/browser/ui/actionbar/actionbar.i18n.json new file mode 100644 index 00000000000..4ecb2c803f4 --- /dev/null +++ b/i18n/deu/src/vs/base/browser/ui/actionbar/actionbar.i18n.json @@ -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. +{ + "titleLabel": "{0} ({1})" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/base/browser/ui/findinput/findInput.i18n.json b/i18n/deu/src/vs/base/browser/ui/findinput/findInput.i18n.json new file mode 100644 index 00000000000..a5ca568ba06 --- /dev/null +++ b/i18n/deu/src/vs/base/browser/ui/findinput/findInput.i18n.json @@ -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. +{ + "caseDescription": "Groß-/Kleinschreibung beachten", + "defaultLabel": "Eingabe", + "regexDescription": "Regulären Ausdruck verwenden", + "wordsDescription": "Nur ganzes Wort suchen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/base/browser/ui/messagelist/messageList.i18n.json b/i18n/deu/src/vs/base/browser/ui/messagelist/messageList.i18n.json new file mode 100644 index 00000000000..641f7b5b948 --- /dev/null +++ b/i18n/deu/src/vs/base/browser/ui/messagelist/messageList.i18n.json @@ -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. +{ + "alertErrorMessage": "Fehler: {0}", + "alertInfoMessage": "Info: {0}", + "alertWarningMessage": "Warnung: {0}", + "close": "Schließen", + "error": "Fehler", + "info": "Info", + "warning": "Warnen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json b/i18n/deu/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json new file mode 100644 index 00000000000..3f716852887 --- /dev/null +++ b/i18n/deu/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingAudioSupport": "Wiedergabe von Audiodateien wird nicht unterstützt.", + "missingVideoSupport": "Wiedergabe von Audiodateien wird nicht unterstützt.", + "nativeBinaryError": "Die Datei kann nicht im Editor angezeigt werden, da sie binär oder sehr groß ist oder eine nicht unterstützte Textcodierung verwendet." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/base/browser/ui/toolbar/toolbar.i18n.json b/i18n/deu/src/vs/base/browser/ui/toolbar/toolbar.i18n.json new file mode 100644 index 00000000000..3d6c869c69a --- /dev/null +++ b/i18n/deu/src/vs/base/browser/ui/toolbar/toolbar.i18n.json @@ -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. +{ + "more": "Weitere Informationen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/base/common/errors.i18n.json b/i18n/deu/src/vs/base/common/errors.i18n.json new file mode 100644 index 00000000000..b29819d186a --- /dev/null +++ b/i18n/deu/src/vs/base/common/errors.i18n.json @@ -0,0 +1,25 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "error.connection.unknown": "Es ist ein unbekannter Verbindungsfehler aufgetreten. Entweder besteht keine Internetverbindung mehr, oder der verbundene Server ist offline.", + "error.connection.unknown.verbose": "Unbekannter Verbindungsfehler ({0})", + "error.defaultMessage": "Ein unbekannter Fehler ist aufgetreten. Weitere Details dazu finden Sie im Protokoll.", + "error.http": "{0} (HTTP {1})", + "error.http.verbose": "{0} (HTTP {1}: {2})", + "error.moreErrors": "{0} ({1} Fehler gesamt)", + "error.permission": "Berechtigung verweigert", + "error.permission.verbose": "Berechtigung verweigert (HTTP {0})", + "illegalArgumentError": "ungültiges Argument: {0}", + "illegalArgumentError2": "ungültiges Argument", + "illegalStateError": "ungültiger Status: {0}", + "illegalStateError2": "ungültiger Status", + "loaderError": "Eine erforderliche Datei konnte nicht geladen werden. Entweder sind Sie nicht mehr mit dem Internet verbunden oder der verbundene Server ist offline. Aktualisieren Sie den Browser, und wiederholen Sie den Vorgang.", + "loaderErrorNative": "Fehler beim Laden einer erforderlichen Datei. Bitte starten Sie die Anwendung neu, und versuchen Sie es dann erneut. Details: {0}", + "message": "{0}. Fehlercode: {1}", + "nodeExceptionMessage": "Systemfehler ({0})", + "notImplementedError": "Nicht implementiert", + "stackTrace.format": "{0}: {1}" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/base/common/json.i18n.json b/i18n/deu/src/vs/base/common/json.i18n.json new file mode 100644 index 00000000000..1b9d0a87f65 --- /dev/null +++ b/i18n/deu/src/vs/base/common/json.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "CloseBraceExpected": "Schließende geschweifte Klammer erwartet", + "CloseBracketExpected": "Schließende Klammer erwartet", + "ColonExpected": "Doppelpunkt erwartet", + "CommaExpected": "Komma erwartet", + "EOFExpected": "Inhaltsende erwartet", + "InvalidNumberFormat": "Ungültiges Zahlenformat", + "PropertyExpected": "Eigenschaftsname erwartet", + "UnknownSymbol": "Ungültiges Symbol", + "ValeExpected": "Wert erwartet", + "ValueExpected": "Wert erwartet" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/base/common/severity.i18n.json b/i18n/deu/src/vs/base/common/severity.i18n.json new file mode 100644 index 00000000000..534a405be00 --- /dev/null +++ b/i18n/deu/src/vs/base/common/severity.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sev.error": "Fehler", + "sev.info": "Info", + "sev.warning": "Warnung" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/base/common/strings.i18n.json b/i18n/deu/src/vs/base/common/strings.i18n.json new file mode 100644 index 00000000000..afad10ce9cc --- /dev/null +++ b/i18n/deu/src/vs/base/common/strings.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "diff.days": "{0} T", + "diff.days.month": "vor einem Monat", + "diff.days.verbose": "Vor {0} Tagen", + "diff.days.week": "vor einer Woche", + "diff.days.yesterday": "gestern", + "diff.hour.verbose": "Vor 1 Stunde", + "diff.hours": "{0} h", + "diff.hours.verbose": "Vor {0} Stunden", + "diff.minute.verbose": "vor 1 Minute", + "diff.minutes": "{0} m", + "diff.minutes.verbose": "vor {0} Minuten", + "diff.seconds": "{0} s", + "diff.seconds.verbose": "aktuell", + "format.date": "{0}-{1}-{2} {3}:{4}:{5}", + "format.time": "{0}:{1}:{2}" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/browser/view/viewImpl.i18n.json b/i18n/deu/src/vs/editor/browser/view/viewImpl.i18n.json new file mode 100644 index 00000000000..2e06d6b808a --- /dev/null +++ b/i18n/deu/src/vs/editor/browser/view/viewImpl.i18n.json @@ -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. +{ + "editorViewAccessibleLabel": "Editor-Inhalt" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/common/config/commonEditorConfig.i18n.json b/i18n/deu/src/vs/editor/common/config/commonEditorConfig.i18n.json new file mode 100644 index 00000000000..4226b31718b --- /dev/null +++ b/i18n/deu/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "autoClosingBrackets": "Steuert, ob der Editor Klammern automatisch nach dem Öffnen schließt.", + "cursorBlinking": "Steuert das Blinken der Cursoranimation. Gültige Werte sind \"blink\", \"visible\" und \"hidden\".", + "cursorStyle": "Steuert den Cursorstil. Gültige Werte sind \"block\" und \"line\".", + "editorConfigurationTitle": "Editor-Konfiguration", + "folding": "Steuert, ob für den Editor Codefaltung aktiviert ist.", + "fontFamily": "Steuert die Schriftfamilie.", + "fontLigatures": "Aktiviert Schriftartligaturen.", + "fontSize": "Steuert den Schriftgrad.", + "formatOnType": "Steuert, ob der Editor Zeilen automatisch nach der Eingabe formatiert.", + "glyphMargin": "Steuert die Sichtbarkeit des Glyphenrands.", + "hideCursorInOverviewRuler": "Steuert die Sichtbarkeit des Cursors im Übersichtslineal.", + "ignoreTrimWhitespace": "Steuert, ob der Diff-Editor Änderungen in führenden oder nachgestellten Leerzeichen als Diffs anzeigt.", + "insertSpaces": "Steuert, ob der Editor Leerzeichen für Tabstopps einfügt. Zulässige Werte: \"auto\", true, false. Wenn \"auto\" festgelegt ist, wird der Wert beim Öffnen einer Datei geschätzt.", + "lineHeight": "Steuert die Zeilenhöhe.", + "lineNumbers": "Steuert die Sichtbarkeit der Zeilennummern.", + "mouseWheelScrollSensitivity": "Ein Multiplikator, der für die Mausrad-Bildlaufereignisse \"deltaX\" und \"deltaY\" verwendet werden soll.", + "overviewRulerLanes": "Steuert die Anzahl von Dekorationen, die an derselben Position im Übersichtslineal angezeigt werden.", + "quickSuggestions": "Steuert, ob Schnellvorschläge während der Eingabe angezeigt werden.", + "quickSuggestionsDelay": "Steuert die Verzögerung in ms für die Anzeige der Schnellvorschläge.", + "referenceInfos": "Steuert, ob der Editor Verweisinformationen zu den Modi anzeigt, die dies unterstützen.", + "renderWhitespace": "Steuert, ob der Editor Leerzeichen rendert.", + "roundedSelection": "Steuert, ob die Auswahl runde Ecken aufweist.", + "rulers": "Spalten, an denen vertikale Lineale angezeigt werden sollen", + "scrollBeyondLastLine": "Legt fest, ob der Editor Bildläufe über die letzte Zeile hinaus ausführt.", + "selectionHighlight": "Steuert, ob der Editor der Auswahl ähnelnde Übereinstimmungen hervorheben soll.", + "sideBySide": "Steuert, ob der Diff-Editor das Diff nebeneinander oder inline anzeigt.", + "suggestOnTriggerCharacters": "Steuert, ob Vorschläge automatisch bei der Eingabe von Triggerzeichen angezeigt werden.", + "tabSize": "Steuert die Renderinggröße von Tabstopps in Zeichen. Zulässige Werte: \"auto\", 2, 4, 6 usw. Wenn \"auto\" festgelegt ist, wird der Wert beim Öffnen einer Datei geschätzt.", + "wordSeparators": "Zeichen, die als Worttrennzeichen verwendet werden, wenn wortbezogene Navigationen oder Vorgänge ausgeführt werden.", + "wrappingColumn": "Steuert, nach wie vielen Zeichen der Editor einen Umbruch in die nächste Zeile ausführt. Durch das Festlegen auf 0 wird der Umbruch auf Viewportbreite aktiviert.", + "wrappingIndent": "Steuert den Einzug der umbrochenen Zeilen. Der Wert kann \"none\", \"same\" oder \"indent\" sein." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/common/controller/cursor.i18n.json b/i18n/deu/src/vs/editor/common/controller/cursor.i18n.json new file mode 100644 index 00000000000..3787e701951 --- /dev/null +++ b/i18n/deu/src/vs/editor/common/controller/cursor.i18n.json @@ -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. +{ + "corrupt.commands": "Unerwartete Ausnahme beim Ausführen des Befehls." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/common/model/textModelWithTokens.i18n.json b/i18n/deu/src/vs/editor/common/model/textModelWithTokens.i18n.json new file mode 100644 index 00000000000..9facc3bb9ad --- /dev/null +++ b/i18n/deu/src/vs/editor/common/model/textModelWithTokens.i18n.json @@ -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. +{ + "mode.tokenizationSupportFailed": "Fehler des Modus bei der Tokenumwandlung der Eingabe." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json b/i18n/deu/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json new file mode 100644 index 00000000000..74f0d288392 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.clipboard.copyLabel": "Kopieren", + "actions.clipboard.cutLabel": "Ausschneiden", + "actions.clipboard.pasteLabel": "Einfügen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/codelens/browser/codelens.i18n.json b/i18n/deu/src/vs/editor/contrib/codelens/browser/codelens.i18n.json new file mode 100644 index 00000000000..eccbf5a9e01 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/codelens/browser/codelens.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "n_references": "{0} Verweise", + "one_reference": "1;nbsp;Verweis", + "unknown_reference": "-;nbsp;Verweise" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/comment/common/comment.i18n.json b/i18n/deu/src/vs/editor/contrib/comment/common/comment.i18n.json new file mode 100644 index 00000000000..13fc7c97f05 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/comment/common/comment.i18n.json @@ -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. +{ + "comment.block": "Blockkommentar umschalten", + "comment.line": "Zeilenkommentar umschalten", + "comment.line.add": "Zeilenkommentar hinzufügen", + "comment.line.remove": "Zeilenkommentar entfernen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json b/i18n/deu/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json new file mode 100644 index 00000000000..2b06743ac4a --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json @@ -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. +{ + "action.showContextMenu.label": "Editor-Kontextmenü anzeigen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/find/browser/find.i18n.json b/i18n/deu/src/vs/editor/contrib/find/browser/find.i18n.json new file mode 100644 index 00000000000..212c543c1f2 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/find/browser/find.i18n.json @@ -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. +{ + "addSelectionToNextFindMatch": "Auswahl zur nächsten Übereinstimmungssuche hinzufügen", + "findNextMatchAction": "Weitersuchen", + "findPreviousMatchAction": "Vorheriges suchen", + "moveSelectionToNextFindMatch": "Auswahl in nächste Übereinstimmungssuche verschieben", + "selectAllOccurencesOfFindMatch": "Alle Übereinstimmungssuchen auswählen", + "startFindAction": "Suchen", + "startReplace": "Ersetzen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/find/browser/findWidget.i18n.json b/i18n/deu/src/vs/editor/contrib/find/browser/findWidget.i18n.json new file mode 100644 index 00000000000..8f92c216b2a --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/find/browser/findWidget.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "label.closeButton": "Schließen", + "label.find": "Suchen", + "label.matchesLocation": "{0} von {1}", + "label.nextMatchButton": "Nächste Übereinstimmung", + "label.noResults": "Keine Ergebnisse", + "label.previousMatchButton": "Vorherige Übereinstimmung", + "label.replace": "Ersetzen", + "label.replaceAllButton": "Alle ersetzen", + "label.replaceButton": "Ersetzen", + "label.toggleReplaceButton": "Ersetzen-Modus wechseln", + "label.toggleSelectionFind": "In Auswahl suchen", + "placeholder.find": "Suchen", + "placeholder.replace": "Ersetzen", + "title.matchesCountLimit": "Nur die ersten 999 Ergebnisse werden hervorgehoben, alle Suchvorgänge beziehen sich aber auf den gesamten Text." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/format/common/format.i18n.json b/i18n/deu/src/vs/editor/contrib/format/common/format.i18n.json new file mode 100644 index 00000000000..49daaa9337a --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/format/common/format.i18n.json @@ -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. +{ + "formatAction.label": "Formatcode" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json b/i18n/deu/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json new file mode 100644 index 00000000000..0326a4e9483 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.goToDecl.label": "Gehe zu Definition", + "actions.goToDeclToSide.label": "Definition an der Seite öffnen", + "actions.gotoTypeDecl.label": "Gehe zu Typdefinition", + "actions.previewDecl.label": "Peek-Definition", + "multipleResults": "Klicken Sie, um die gefundenen {0}-Definitionen anzuzeigen." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json b/i18n/deu/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json new file mode 100644 index 00000000000..7838a8ee7a5 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json @@ -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. +{ + "markerAction.next.label": "Gehe zum nächsten Fehler oder zur nächsten Warnung", + "markerAction.previous.label": "Gehe zum vorherigen Fehler oder zur vorherigen Warnung", + "quickfix.multiple.label": "Empfohlene Fehlerbehebungen: ", + "quickfix.single.label": "Empfohlene Fehlerbehebung: " +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json b/i18n/deu/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json new file mode 100644 index 00000000000..ea967cba995 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json @@ -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. +{ + "modesContentHover.loading": "Wird geladen ..." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json b/i18n/deu/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json new file mode 100644 index 00000000000..4eea2d84c63 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "InPlaceReplaceAction.next.label": "Durch nächsten Wert ersetzen", + "InPlaceReplaceAction.previous.label": "Durch vorherigen Wert ersetzen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json b/i18n/deu/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json new file mode 100644 index 00000000000..36e57586bbb --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lines.copyDown": "Zeile nach unten kopieren", + "lines.copyUp": "Zeile nach oben kopieren", + "lines.delete": "Zeile löschen", + "lines.indent": "Zeileneinzug", + "lines.insertAfter": "Zeile unten einfügen", + "lines.insertBefore": "Zeile oben einfügen", + "lines.moveDown": "Zeile nach unten verschieben", + "lines.moveUp": "Zeile nach oben verschieben", + "lines.outdent": "Zeile ausrücken", + "lines.trimTrailingWhitespace": "Nachgestelltes Leerzeichen kürzen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/links/browser/links.i18n.json b/i18n/deu/src/vs/editor/contrib/links/browser/links.i18n.json new file mode 100644 index 00000000000..72f0bfc79f7 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/links/browser/links.i18n.json @@ -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. +{ + "invalid.url": "Ungültiger URI: {0} kann nicht geöffnet werden.", + "label": "Link öffnen", + "links.navigate": "STRG + Mausklick zum Aufrufen des Links", + "links.navigate.mac": "BEFEHLSTASTE + Mausklick zum Aufrufen des Links" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json b/i18n/deu/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json new file mode 100644 index 00000000000..77a2bc7e8b1 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "mutlicursor.insertAbove": "Cursor oberhalb hinzufügen", + "mutlicursor.insertAtEndOfEachLineSelected": "Mehrere Cursor aus ausgewählten Zeilen erstellen", + "mutlicursor.insertBelow": "Cursor unterhalb hinzufügen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json b/i18n/deu/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json new file mode 100644 index 00000000000..1ac221c353c --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json @@ -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. +{ + "parameterHints.trigger.label": "Parameterhinweise auslösen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json b/i18n/deu/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json new file mode 100644 index 00000000000..fe200125691 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json @@ -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. +{ + "quickfix.trigger.label": "Schnelle Problembehebung" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json b/i18n/deu/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json new file mode 100644 index 00000000000..fde5b2c8ef6 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickFixSelectionWidget.loading": "Wird geladen...", + "QuickFixSelectionWidget.noSuggestions": "Keine Problembehebungsvorschläge.", + "treeAriaLabel": "Schneller Fix" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json b/i18n/deu/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json new file mode 100644 index 00000000000..eeaf9e8b0fe --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json @@ -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. +{ + "label": "Gehe zu Zeile..." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json b/i18n/deu/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json new file mode 100644 index 00000000000..c84020245d8 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "GotoLineAction.label": "Gehe zu Zeile...", + "gotoLineActionInput": "Geben Sie eine Zeilennummer ein, gefolgt von einem optionalen Doppelpunkt und einer Spaltennummer, zu der Sie navigieren möchten", + "gotoLineLabelEmptyWithLineAndColumnLimit": "Geben Sie eine Spaltennummer zwischen 1 und {0} ein, zu der navigiert werden soll", + "gotoLineLabelEmptyWithLineLimit": "Zeilennummer zwischen 1 und {0} eingeben, zu der navigiert werden soll", + "gotoLineLabelValidLine": "Gehe zu Zeile {0}", + "gotoLineLabelValidLineAndColumn": "Gehe zur Zeile {0} und Spalte {1}" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json b/i18n/deu/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json new file mode 100644 index 00000000000..8431ccfcffa --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json @@ -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. +{ + "label": "Befehlspalette" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json b/i18n/deu/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json new file mode 100644 index 00000000000..c3a3aa76a11 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickCommandAction.label": "Befehlspalette", + "quickCommandActionInput": "Name der zu ausführenden Aktion eingeben" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json b/i18n/deu/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json new file mode 100644 index 00000000000..61bd0a7a528 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json @@ -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. +{ + "label": "Gehe zu Symbol..." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json b/i18n/deu/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json new file mode 100644 index 00000000000..72046bb4f9c --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json @@ -0,0 +1,20 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickOutlineAction.label": "Gehe zu Symbol...", + "_constructor": "Konstruktoren ({0})", + "call": "Aufrufe ({0})", + "class": "Klassen ({0})", + "function": "Funktionen ({0})", + "interface": "Schnittstellen ({0})", + "method": "Methoden ({0})", + "modules": "Module ({0})", + "property": "Eigenschaften ({0})", + "quickOutlineActionInput": "Name des Bezeichners eingeben, zu dem navigiert werden soll", + "symbols": "Symbole ({0})", + "variable": "Variablen ({0})", + "variable2": "Variablen ({0})" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json b/i18n/deu/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json new file mode 100644 index 00000000000..7ddfb0d07ab --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -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. +{ + "labelLoading": "Wird geladen...", + "noResults": "Keine Ergebnisse", + "references.action.label": "Alle Verweise suchen", + "references.action.name": "Verweise anzeigen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json b/i18n/deu/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json new file mode 100644 index 00000000000..cdc0984a2e4 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingPreviewMessage": "Keine Vorschau verfügbar", + "peekView.alternateTitle": "Verweise", + "referenceCount": "{0}-Verweis", + "referencesCount": "{0} Verweise", + "treeAriaLabel": "Verweise" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/rename/browser/rename2.i18n.json b/i18n/deu/src/vs/editor/contrib/rename/browser/rename2.i18n.json new file mode 100644 index 00000000000..9141a67b593 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/rename/browser/rename2.i18n.json @@ -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. +{ + "rename.label": "Symbol umbenennen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/rename/browser/renameModel.i18n.json b/i18n/deu/src/vs/editor/contrib/rename/browser/renameModel.i18n.json new file mode 100644 index 00000000000..98e0fbed126 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/rename/browser/renameModel.i18n.json @@ -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. +{ + "cannotLoadFile": "Datei \"{0}\" kann nicht geladen werden." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json b/i18n/deu/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json new file mode 100644 index 00000000000..d357fb74a7c --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json @@ -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. +{ + "smartSelect.jumpBracket": "Gehe zu Klammer" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json b/i18n/deu/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json new file mode 100644 index 00000000000..cfef202b040 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "smartSelect.grow": "Auswahl erweitern", + "smartSelect.shrink": "Auswahl verkleinern" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/suggest/browser/suggest.i18n.json b/i18n/deu/src/vs/editor/contrib/suggest/browser/suggest.i18n.json new file mode 100644 index 00000000000..3ba9d84591c --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/suggest/browser/suggest.i18n.json @@ -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. +{ + "suggest.trigger.label": "Vorschlag auslösen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json b/i18n/deu/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json new file mode 100644 index 00000000000..4d2ddce3c61 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json @@ -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. +{ + "goback": "Zurück", + "readMore": "Mehr anzeigen...{0}", + "suggestWidget.loading": "Wird geladen...", + "suggestWidget.noSuggestions": "Keine Vorschläge." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json b/i18n/deu/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json new file mode 100644 index 00000000000..cc1b23818af --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json @@ -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. +{ + "toggle.tabfocusmode": "Verwendung der TAB-Taste zum Einstellen des Fokus wechseln" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json b/i18n/deu/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json new file mode 100644 index 00000000000..d057bbcc407 --- /dev/null +++ b/i18n/deu/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json @@ -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. +{ + "label.close": "Schließen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/css/common/css.contribution.i18n.json b/i18n/deu/src/vs/languages/css/common/css.contribution.i18n.json new file mode 100644 index 00000000000..ab514b8c84f --- /dev/null +++ b/i18n/deu/src/vs/languages/css/common/css.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "cssConfigurationTitle": "CSS-Konfiguration", + "lint": "Steuert die CSS-Validierung und Problemschweregrade." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/css/common/cssWorker.i18n.json b/i18n/deu/src/vs/languages/css/common/cssWorker.i18n.json new file mode 100644 index 00000000000..cc7fe98e96e --- /dev/null +++ b/i18n/deu/src/vs/languages/css/common/cssWorker.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "css.quickfix.rename": "In \"{0}\" umbenennen", + "literal.fontface": "@font-face", + "literal.keyframes": "@keyframes {0}" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/css/common/parser/cssErrors.i18n.json b/i18n/deu/src/vs/languages/css/common/parser/cssErrors.i18n.json new file mode 100644 index 00000000000..1d5a8f3e439 --- /dev/null +++ b/i18n/deu/src/vs/languages/css/common/parser/cssErrors.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.colon": "Doppelpunkt erwartet", + "expected.comma": "Komma erwartet", + "expected.condt": "Bedingung erwartet", + "expected.dot": "Punkt erwartet", + "expected.expression": "Ausdruck erwartet", + "expected.ident": "Bezeichner erwartet", + "expected.lcurly": "{ erwartet.", + "expected.lparen": "( erwartet", + "expected.lsquare": "[ erwartet", + "expected.number": "Zahl erwartet", + "expected.operator": "Operator erwartet", + "expected.pagedirordecl": "Seitenanweisung oder Deklaration erwartet", + "expected.percentage": "Prozent erwartet", + "expected.propvalue": "Eigenschaftswert erwartet", + "expected.rcurly": "} erwartet.", + "expected.rparent": ") erwartet.", + "expected.rsquare": "] erwartet", + "expected.ruleorselector": "at-Regel oder Selektor erwartet", + "expected.selector": "Selektor erwartet", + "expected.semicolon": "Semikolon erwartet", + "expected.stringliteral": "Zeichenfolgenliteral erwartet", + "expected.term": "Begriff erwartet", + "expected.uri": "URI erwartet", + "expected.uriorstring": "URI oder Zeichenfolge erwartet", + "expected.varname": "Variablenname erwartet", + "expected.varvalue": "Variablenwert erwartet", + "unknown.atrule": "unbekannte at-Regel", + "unknown.keyword": "unbekanntes Schlüsselwort" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/css/common/services/intelliSense.i18n.json b/i18n/deu/src/vs/languages/css/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..5cd1b2c0572 --- /dev/null +++ b/i18n/deu/src/vs/languages/css/common/services/intelliSense.i18n.json @@ -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. +{ + "css.builtin.hsl": "Erstellt eine Farbe aus den Werten für Farbton, Sättigung und Helligkeit.", + "css.builtin.hsla": "Erstellt eine Farbe aus den Werten für Farbton, Sättigung, Helligkeit und Alpha.", + "css.builtin.rgb": "Erstellt eine Farbe aus den Werten für Rot, Grün und Blau.", + "css.builtin.rgba": "Erstellt eine Farbe aus den Werten für Rot, Grün, Blau und Alpha." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/css/common/services/lint.i18n.json b/i18n/deu/src/vs/languages/css/common/services/lint.i18n.json new file mode 100644 index 00000000000..44065e938c0 --- /dev/null +++ b/i18n/deu/src/vs/languages/css/common/services/lint.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "keyframes.standardrule.missing": "Standardregel '@keyframes' beim Definieren von Keyframes immer definieren", + "keyframes.vendorspecific.missing": "Alle Anbieterspezifischen Regeln einschließen: {0} fehlt", + "namelist.concatenated": "{0}, „{1}“", + "namelist.single": "„{0}“", + "property.standard.missing": "Standardeigenschaft „{0}“ für Kompatibilität definieren", + "property.vendorspecific.missing": "Alle Anbieterspezifischen Eigenschaften immer miteinschließen: {0} fehlt" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/css/common/services/lintRules.i18n.json b/i18n/deu/src/vs/languages/css/common/services/lintRules.i18n.json new file mode 100644 index 00000000000..656d02c8734 --- /dev/null +++ b/i18n/deu/src/vs/languages/css/common/services/lintRules.i18n.json @@ -0,0 +1,26 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "enableValidation": "Aktiviert oder deaktiviert alle Überprüfungen.", + "rule.avoidFloat": "Die Verwendung von \"float\" vermeiden. float-Eigenschaften führen zu anfälligem CSS, das schnell nicht mehr funktioniert, wenn sich ein Aspekt des Layouts ändert.", + "rule.avoidIdSelector": "Selektoren sollten keine IDs enthalten, da diese Regeln zu eng mit HTML verknüpft sind.", + "rule.avoidImportant": "Verwendung von „!important“ vermeiden. Damit wird angegeben, dass die Spezifität vom gesamten CSS außer Kontrolle geraten ist und umgestaltet werden muss.", + "rule.colorFunction": "Ungültige Parameteranzahl", + "rule.duplicateDeclarations": "Keine doppelten Formatdefinitionen verwenden", + "rule.emptyRuleSets": "Keine leeren Regelsätze verwenden", + "rule.fontFaceProperties": "@font-face-Regel muss Eigenschaften src und font-family definieren", + "rule.hexColor": "Hexfarben müssen aus drei oder sechs Hexzahlen bestehen", + "rule.ieHack": "IE-Hacks sind nur für die Unterstützung von IE7 und älter erforderlich", + "rule.importDirective": "Import-Anweisungen können nicht parallel laden", + "rule.propertyIgnoredDueToDisplay": "Die Eigenschaft wird aufgrund der Anzeige ignoriert. Mit \"display: inline\" besitzen die width-, height-, margin-top-, margin-bottom- und float-Eigenschaften z. B. keine Auswirkung.", + "rule.standardvendorprefix.all": "Beim Verwenden von anbieterspezifischen Präfix auch die Standardeigenschaft miteinbeziehen", + "rule.universalSelector": "Es ist bekannt, dass der Universal-Selektor (*) langsam ist", + "rule.unknownProperty": "Unbekannte Eigenschaft.", + "rule.unknownVendorSpecificProperty": "Unbekannte anbieterspezifische Eigenschaft.", + "rule.vendorprefixes.all": "Stellen Sie beim Verwenden vom anbieterspezifischen Präfix sicher, dass alle anderen anbieterspezifischen Eigenschaften miteinbezogen werden", + "rule.withHeightAndBorderPadding": "Verwenden Sie width oder height nicht beim Festlegen von padding oder border", + "rule.zeroWidthUnit": "Keine Einheit für Null erforderlich" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/javascript/common/javascript.contribution.i18n.json b/i18n/deu/src/vs/languages/javascript/common/javascript.contribution.i18n.json new file mode 100644 index 00000000000..8e134a285a9 --- /dev/null +++ b/i18n/deu/src/vs/languages/javascript/common/javascript.contribution.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "Schließen Sie immer alle Wörter aus dem aktuellen Dokument ein.", + "compilationSettings": "Steuert die Funktionsweise der JavaScript-Validierung.", + "jsConfigurationTitle": "JavaScript-Konfiguration", + "lint": "Steuert verschiedene Aspekte der Validierung.", + "lint.comparisonOperatorsNotStrict": "Verwenden Sie '!==' und '===' anstelle von '!=' und '=='.", + "lint.curlyBracketsMustNotBeOmitted": "Denken Sie an die geschweiften Klammern.", + "lint.emptyBlocksWithoutComment": "Leere Blöcke sollten einen Kommentar enthalten.", + "lint.forcedTypeConversion": "Deklarieren Sie einen Variablentyp nicht erneut durch eine Zuweisung.", + "lint.functionsInsideLoops": "Funktion innerhalb von Schleife.", + "lint.missingSemicolon": "Fehlendes Semikolon.", + "lint.mixedTypesArithmetics": "Bei arithmetischen Berechnungen sind ausschließlich Zahlen zulässig.", + "lint.newOnLowercaseFunctions": "Funktionsname in Kleinbuchstaben als Konstruktur verwendet.", + "lint.newOnReturningFunctions": "Funktion mit 'return'-Anweisung als Konstruktur verwendet.", + "lint.parametersDontMatchSignature": "Der Parameter stimmt nicht mit einer Funktionssignatur überein.", + "lint.primitivesInInstanceOf": "Verwenden Sie kein 'instanceof' mit primitiven Datentypen.", + "lint.redeclaredVariables": "Deklarieren Sie nicht eine Variable erneut und ändern Sie nicht ihren Typ.", + "lint.semicolonsInsteadOfBlocks": "Semikolon statt eines Blocks.", + "lint.tripleSlashReferenceAlike": "Sucht nach fehlerhaften Referenzen mit dreifachem Schrägstrich.", + "lint.undeclaredVariables": "Verwenden Sie keine undeklarierten Variablen.", + "lint.unknownModule": "Unbekanntes Modul nicht erfordern.", + "lint.unknownProperty": "Verwenden Sie keine unbekannten Eigenschaften.", + "lint.unknownTypeOfResults": "Unerwartete Ausgabe des 'typeof'-Operators.", + "lint.unusedFunctions": "Nicht verwendete lokale Funktion.", + "lint.unusedVariables": "Nicht verwendete lokale Variable.", + "semanticValidation": "Linter-Überprüfungen für JavaScript-Dateien ausführen - setzt die \"validate.lint.*\"-Einstellungen außer Kraft.", + "suggestSettings": "Steuert die Funktionsweise von JavaScript-IntelliSense.", + "syntaxValidation": "JavaScript-Dateien auf Syntaxfehler überprüfen.", + "useCodeSnippetsOnMethodSuggest": "Vervollständigen Sie Funktionen mit deren Parametersignatur." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json b/i18n/deu/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json new file mode 100644 index 00000000000..b9b03e886fb --- /dev/null +++ b/i18n/deu/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.bower.default": "Standarddatei \"bower.json\"", + "json.bower.error.repoaccess": "Fehler bei der Anforderung des Browserrepositorys: {0}", + "json.bower.package.hover": "{0}" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json b/i18n/deu/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json new file mode 100644 index 00000000000..59f0a14009c --- /dev/null +++ b/i18n/deu/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.nugget.error.repoaccess": "Fehler bei der Anforderung des NuGet-Repositorys: {0}", + "json.nugget.package.hover": "{0}", + "json.nugget.version.hover": "Aktuelle Version: {0}", + "json.nugget.versiondescription.suggest": "Die derzeit aktuelle Version des Pakets", + "json.project.default": "Standarddatei \"project.json\"" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/json/common/json.contribution.i18n.json b/i18n/deu/src/vs/languages/json/common/json.contribution.i18n.json new file mode 100644 index 00000000000..9686198e94f --- /dev/null +++ b/i18n/deu/src/vs/languages/json/common/json.contribution.i18n.json @@ -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. +{ + "jsonConfiguration.fileMatch": "Ein Dateimuster mit '*', mit dem beim Auflösen von JSON-Dateien zu Schemas abgeglichen wird.", + "jsonConfiguration.fileMatches": "Ein Array von Dateimustern, mit denen beim Auflösen von JSON-Dateien zu Schemas abgeglichen wird.", + "jsonConfiguration.schema": "Die Schemadefinition für die angegebene URL. Das Schema muss nur bereitgestellt werden, um den Zugriff auf die Schema-URL zu vermeiden.", + "jsonConfiguration.schemaPath": "Eine URL zu einem Schema oder einem relativen Pfad in einem Schema im aktuellen Verzeichnis.", + "jsonConfiguration.schemas": "Schemas mit JSON-Dateien im aktuellen Projekt verknüpfen", + "jsonConfigurationDescription": "Wird zum Konfigurieren von JSON-Einstellungen und Schemas verwendet.", + "jsonConfigurationTitle": "JSON-Konfiguration" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/json/common/json.i18n.json b/i18n/deu/src/vs/languages/json/common/json.i18n.json new file mode 100644 index 00000000000..3d03714adea --- /dev/null +++ b/i18n/deu/src/vs/languages/json/common/json.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "array": "Arrays", + "boolean": "Boolesche Werte", + "number": "Zahlen", + "object": "Objekte", + "string": "Zeichenfolgen", + "undefined": "nicht definiert" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/json/common/jsonIntellisense.i18n.json b/i18n/deu/src/vs/languages/json/common/jsonIntellisense.i18n.json new file mode 100644 index 00000000000..6881dbe5697 --- /dev/null +++ b/i18n/deu/src/vs/languages/json/common/jsonIntellisense.i18n.json @@ -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. +{ + "json.suggest.default": "Standardwert" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/json/common/jsonSchemaService.i18n.json b/i18n/deu/src/vs/languages/json/common/jsonSchemaService.i18n.json new file mode 100644 index 00000000000..167644033bc --- /dev/null +++ b/i18n/deu/src/vs/languages/json/common/jsonSchemaService.i18n.json @@ -0,0 +1,169 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "app.plugin.json.activationEvents": "Aktivierungsereignisse für das Plugin", + "app.plugin.json.contributes": "Beiträge dieses Plugins", + "app.plugin.json.contributes.language": "Sprachbeiträge des Plugins", + "app.plugin.json.contributes.language.aliases": "Aliasnamen für diese Sprache", + "app.plugin.json.contributes.language.extensions": "Dieser Sprache zugeordnete Dateierweiterungen", + "app.plugin.json.contributes.language.filenames": "Dieser Sprache zugeordnete Dateinamen", + "app.plugin.json.contributes.language.id": "ID dieser Sprache", + "app.plugin.json.dependencies": "Pluginabhängigkeiten", + "app.plugin.json.mainModule": "Relativer Pfad zur JavaScript-Hauptdatei", + "app.plugin.json.pluginId": "Die eindeutige Plugin-ID", + "app.plugin.json.scripts": "Vom Plugin bereitgestellte Skripts", + "app.plugin.json.scripts.compile": "Die Befehlszeile zum Kompilieren dieses Plugins", + "bower.json.authors": "Eine Liste von Personen, die die Inhalte des Pakets erstellt haben.", + "bower.json.dependencies": "Abhängigkeiten werden mit einem einfachen Hash des Paketnamens zum Semver-kompatiblen Bezeichner oder zur URL angegeben.", + "bower.json.description": "Unterstützt Benutzer bei der Erkennung und Suche nach Ihrem Paket mit einer kurzen Beschreibung.", + "bower.json.devDependencies": "Abhängigkeiten, die nur für die Entwicklung des Pakets erforderlich sind, z. B. Testframework oder Dokumentationserstellung.", + "bower.json.exportsOverride": "Wird von der grunt-bower-Aufgabe zum Festlegen benutzerdefinierter Installationsspeicherorte verwendet.", + "bower.json.homepage": "URL zu weiteren Informationen zum Paket. Weicht auf ein GitHub-Projekt zurück, falls nicht angegeben und ein GitHub-Endpunkt.", + "bower.json.ignore": "Eine Liste von Dateien für Bower, die beim Installieren Ihres Pakets ignoriert werden sollen.", + "bower.json.invalidPatternName": "Alle Eigenschaften, die mit \"_\" beginnen, sind gültig.", + "bower.json.keywords": "Wird für die Suche nach einem Schlüsselwort verwendet. Damit kann Ihr Paket einfacher erkannt werden, ohne dass sein Name erforderlich ist.", + "bower.json.license": "SPDX-Lizenzbezeichner, oder Pfad/URL zu einer Lizenz.", + "bower.json.main": "Die primär wirkenden Dateien, die für die Verwendung Ihres Pakets erforderlich sind.", + "bower.json.moduleType": "Die Modultypen, die dieses Paket bereitstellt.", + "bower.json.packagename": "Der Name Ihres Pakets.", + "bower.json.private": "Wenn Sie diesen Wert auf \"True\" festlegen, wird dieser die Veröffentlichung verweigern. Dadurch soll verhindert werden, dass private Repositorys versehentlich veröffentlicht werden.", + "bower.json.repository": "Das Repository, das den Quellcode enthält.", + "bower.json.resolutions": "Abhängigkeitsversionen, die automatisch aufgelöst werden, wenn Konflikte zwischen Paketen auftreten.", + "bower.json.title": "JSON-Schema für Bower-Konfigurationsdateien", + "bower.json.version": "Eine semantische Versionsnummer.", + "global.json.projects": "Eine Liste der Projektordner relativ zu dieser Datei.", + "global.json.sources": "Eine Liste der Quellordner relativ zu dieser Datei.", + "global.json.title": "JSON-Schema für die globalen ASP.NET-Konfigurationsdateien", + "jsconfig.json.compilerOptions": "Weist dem JavaScript-Sprachdienst an, wie JS-Dateien zu überprüfen sind.", + "jsconfig.json.compilerOptions.charset": "Der Zeichensatz der Eingabedateien.", + "jsconfig.json.compilerOptions.decorators": "Aktiviert die experimentelle Unterstützung für ES7-Decorator-Elemente.", + "jsconfig.json.compilerOptions.diagnostics": "Diagnoseinformationen anzeigen", + "jsconfig.json.compilerOptions.locale": "Das Gebietsschema zum Anzeigen von Fehlermeldungen, z. B. \"en-us\".", + "jsconfig.json.compilerOptions.mapRoot": "Gibt den Speicherort an, an dem der Debugger Zuordnungsdateien finden sollte (anstatt generierte Speicherorte).", + "jsconfig.json.compilerOptions.module": "Die Modulcodegenerierung, anhand der aufgelöst werden soll: \"commonjs\", \"amd\", \"system\" oder \"umd\".", + "jsconfig.json.compilerOptions.noLib": "Die Standardbibliothekdatei (\"lib.d.ts\") nicht einschließen.", + "jsconfig.json.compilerOptions.target": "ECMAScript-Zielversion angeben: \"ES3\" (Standard), \"ES5\" oder \"ES6\" (experimentell).", + "jsconfig.json.exclude": "Auflisten der Dateien und Ordner, die nicht eingeschlossen werden sollen. Diese Eigenschaft wird nicht berücksichtigt, wenn die Eigenschaft \"files\" vorhanden ist.", + "jsconfig.json.files": "Wenn keine Eigenschaft \"files\" in einer Datei \"jsconfig.json\" vorhanden ist, schließt der Sprachdienst standardmäßig alle Dateien in dem enthaltenen Verzeichnis und den Unterverzeichnissen ein. Wenn eine Eigenschaft \"files\" angegeben ist, werden nur diese Dateien eingeschlossen.", + "jsconfig.json.title": "JSON-Schema für die JavaScript-Konfigurationsdatei", + "json.schema.unabletoload": "Fehler beim Laden des Schemas für \"{0}\": {1}.", + "package.json.bugs": "Die URL für die Problemverfolgung oder die E-Mail-Adresse, an die Problemberichte gesendet werden sollen.", + "package.json.bugs.email": "Die E-Mail-Adresse, an die Probleme gemeldet werden sollen.", + "package.json.bugs.url": "Die URL zur Problemnachverfolgung des Projekts.", + "package.json.bundleDependencies": "Array der Paketnamen, die beim Veröffentlichen des Pakets gebündelt werden.", + "package.json.bundledDependencies": "Array der Paketnamen, die beim Veröffentlichen des Pakets gebündelt werden.", + "package.json.config": "Ein \"config\"-Hash kann verwendet werden, um Konfigurationsparameter festzulegen, die in aktualisierungsübergreifenden Paketskripts verwendet werden.", + "package.json.contributors": "Eine Liste der Mitwirkenden dieses Pakets.", + "package.json.dependency": "Abhängigkeiten werden mit einem einfachen Hash aus Paketnamen bis Versionsbereich angegeben. Der Versionsbereich ist eine Zeichenfolge mit mindestens einem durch Leerzeichen gentrennten Deskriptor. Abhängigkeiten können auch durch einen Tarball oder eine Git-URL identifiziert werden.", + "package.json.descr": "So können Benutzer Ihr Paket gemäß der Auflistung in \"pm search\" erkennen.", + "package.json.description": "NPM-Konfiguration für dieses Paket.", + "package.json.directories.bin": "Wenn Sie ein Verzeichnis \"bin\" angeben, werden alle Dateien in diesem Ordner als \"bin\"-Hash verwendet.", + "package.json.directories.doc": "Markdowndateien hier ablegen. Vielleicht werden sie eines Tages ansprechend angezeigt.", + "package.json.directories.example": "Hier Beispielskripts ablegen. Vielleicht werden Sie eines Tages sinnvoll bereitgestellt.", + "package.json.directories.lib": "Teilen Sie den Benutzern mit, wo sich der Großteil Ihrer Bibliothek befindet. Mit dem Ordner \"lib\" geschieht nichts Besonderes, aber er enthält nützliche Metadaten.", + "package.json.directories.man": "Ein Ordner, der Manpages enthält. Generieren Sie ein man-Array durch Durchlaufen des Ordners.", + "package.json.files": "Das Feld \"files\" ist ein Array aus Dateien, die in das Projekt eingeschlossen werden sollen. Wenn ein Ordner im Array benannt wird, werden auch die Dateien in diesem Ordner einbezogen.", + "package.json.homepage": "Die URL zur Projektstartseite.", + "package.json.keywords": "Auf diese Weise können Benutzer Ihr Paket gemäß der Auflistung in \"npm search\" erkennen.", + "package.json.license": "Sie sollten eine Lizenz und sämtliche Einschränkungen für das Paket angeben, damit Benutzer wissen, wie sie es verwenden dürfen.", + "package.json.licenses": "Sie sollten eine Lizenz und sämtliche Einschränkungen für das Paket angeben, damit Benutzer wissen, wie sie es verwenden dürfen.", + "package.json.main": "Das Hauptfeld ist eine Modul-ID, die den primären Einstiegspunkt für das Programm darstellt.", + "package.json.maintainers": "Eine Liste der Personen, die dieses Paket warten.", + "package.json.man": "Geben Sie eine einzelne Datei oder ein Array aus Dateinamen für die Suche durch das \"man\"-Programm an.", + "package.json.name": "Der Name des Pakets.", + "package.json.person": "Eine Person, die am Erstellen oder Warten dieses Pakets beteiligt war", + "package.json.preferGlobal": "Wenn das Paket hauptsächlich eine Befehlszeilenanwendung ist, die global installiert werden soll, legen Sie diesen Wert auf \"true\" fest, um eine Warnung bereitzustellen, falls es lokal installiert wird.", + "package.json.private": "Wenn auf \"true\" festgelegt, wird dieses Paket nicht von NPM veröffentlicht.", + "package.json.repository": "Geben Sie den Speicherort des Codes an. Dies ist nützlich für Personen, die einen Beitrag leisten möchten.", + "package.json.scripts": "Das \"scripts\"-Element ist ein Objekthash mit Skriptbefehlen, die zu verschiedenen Zeitpunkten im Lebenszyklus des Pakets ausgeführt werden. Der Schlüssel ist das Lebenszyklusereignis, und der Wert ist der an diesem Punkt auszuführende Befehl.", + "package.json.underscore": "Alle Eigenschaften, die mit \"_\" beginnen, sind gültig.", + "package.json.version": "Die Version muss durch \"node-semver\" analysiert werden können (im Paket mit NPM als Abhängigkeit).", + "project.json.authors": "Der Autor der Anwendung", + "project.json.bundleExclude": "Liste der Dateien, die aus der Veröffentlichungsausgabe ausgeschlossen werden sollen (kpm-Paket).", + "project.json.code": "Das Globmuster zum Festlegen aller Codedateien, die kompiliert werden müssen. (Datentyp: Zeichenfolge oder Array mit Globmuster(n). Beispiel: [ \"Ordner1*.cs\", \"Ordner2*.cs\" ]", + "project.json.commands": "Für diese Anwendung verfügbare Befehle", + "project.json.compilationOptions": "An Roslyn übergebene Kompilierungsoptionen", + "project.json.configurations": "Konfigurationen sind benannte Gruppen mit Kompilierungseinstellungen. Es gibt zwei in die Laufzeit integrierte Standards, nämlich \"Debug\" und \"Release\".", + "project.json.dependencies": "Die Abhängigkeiten der Anwendung. Jeder Eintrag gibt den Namen und die Version eines Nuget-Pakets an.", + "project.json.dependency.name": "Die Version der Abhängigkeit", + "project.json.dependency.type": "Der Typ der Abhängigkeit. Abhängigkeiten vom Typ \"Build\" sind nur zur Buildzeit vorhanden.", + "project.json.description": "Die Beschreibung der Anwendung", + "project.json.exclude": "Das Globmuster, das alle Codedateien angibt, die von der Kompilierung ausgeschlossen werden sollen. (Datentyp: Zeichenfolge oder Array mit Globmuster(n)).", + "project.json.frameworks": "Zielframeworks, die erstellt werden, sowie für die Konfiguration spezifische Abhängigkeiten", + "project.json.preprocess": "Das Globmuster, mit dem alle Codedateien angegeben werden, die vorverarbeitet werden (Datentyp: Zeichenfolge mit Globmuster).", + "project.json.resources": "Das Globmuster, mit dem alle Dateien angegeben werden, die als Ressourcen kompiliert werden müssen.", + "project.json.script": "Ein Befehlszeilenskript oder -Skripts.\r\rVerfügbare Variablen:\r%project:Directory% – Das Projektverzeichnis\r%project:Name% – Der Projektname\r%project:Version% -– Die Projektversion", + "project.json.scripts": "Skripts, die im Laufe verschiedener Phasen ausgeführt werden.", + "project.json.shared": "Das Globmuster, mit dem die Codedateien angegeben werden, die mit abhängigen Projekten gemeinsam verwendet werden. Beispiel: [ \"Ordner1*.cs\", \"Ordner2*.cs\" ]", + "project.json.title": "JSON-Schema für ASP.NET project.json-Dateien", + "project.json.version": "Die Anwendungsversion. Beispiel: 1.2.0.0", + "project.json.webroot": "Beim Festlegen der Webstammeigenschaft in der project.json-Datei wird der Webserverstamm (öffentlicher Ordner) festgelegt. In Visual Studio wird dieser Ordner als Stamm für IIS verwendet. Statische Dateien sollten hier eingegeben werden.", + "schema.json": "Beschreibt eine JSON-Datei mit einem Schema. Weitere Informationen finden Sie unter \"json-schema.org\".", + "schema.json.$schema": "Das Schema zum Prüfen dieses Dokuments gegen", + "schema.json.additionalItems": "Für Arrays, nur wenn \"items\" als Array festgelegt ist. Wenn es ein Schema ist, überprüft dieses Elemente nach den vom Elementarray angegebenen Elementen. Wenn es falsch ist, werden zusätzliche Elemente zu Validierungsfehlern führen.", + "schema.json.additionalProperties": "Entweder ein Schema oder ein boolescher Wert. Wenn es ein Schema ist, wird es zur Überprüfung aller Eigenschaften verwendet, die nicht \"properties\" oder \"patternProperties\" entsprechen. Wenn falsch, führen alle mit beiden nicht übereinstimmenden Eigenschaften zu einem Schemafehler.", + "schema.json.allOf": "Ein Array von Schemas, die alle übereinstimmen müssen.", + "schema.json.anyOf": "Ein Array von Schemas, von denen mindestens eins übereinstimmen muss.", + "schema.json.default": "Ein Standardwert. Von Vorschlägen verwendet.", + "schema.json.definitions": "Nicht für Überprüfungen verwendet. Platzieren Sie hier Teilschemas, auf die Sie inline mit $ref verweisen möchten.", + "schema.json.dependencies": "Eine Zuordnung von Eigenschaftennamen zu entweder einem Array von Eigenschaftennamen oder einem Schema. Ein Array von Eigenschaftennamen bedeutet, dass die Gültigkeit der im Schlüssel benannten Eigenschaften davon abhängt, ob die Eigenschaften im Array des Objekts vorhanden sind. Wenn der Wert ein Schema ist, wird dieses Schema nur dann auf das Objekt angewendet, wenn die Eigenschaft im Schlüssel im Objekt vorhanden ist.", + "schema.json.description": "Eine lange Beschreibung des Elements. Verwendet in Menüs, die beim Zeigen darauf geöffnet werden, und bei Vorschlägen.", + "schema.json.enum": "Satz der gültigen Literalwerte", + "schema.json.exclusiveMaximum": "Macht die maximum-Eigenschaft exklusiv.", + "schema.json.exclusiveMininum": "Macht die minimum-Eigenschaft exklusiv.", + "schema.json.id": "Ein eindeutiger Bezeichner für das Schema.", + "schema.json.items": "Für Arrays. Kann entweder ein Schema sein, anhand dessen jedes Element überprüft wird, oder ein Array von Schemas, anhand dessen jedes Element in der Reihenfolge überprüft wird (das erste Schema überprüft das erste Element, das zweite Schema überprüft das zweite Element usw.).", + "schema.json.maxItems": "Die maximale Anzahl von Elementen, die sich innerhalb eines Arrays befinden können. Inklusiv.", + "schema.json.maxLength": "Die maximale Länge einer Zeichenfolge.", + "schema.json.maxProperties": "Die maximale Anzahl von Eigenschaften, die ein Objekt haben kann. Inklusiv.", + "schema.json.maximum": "Der maximale numerische Wert, standardmäßig inklusiv.", + "schema.json.minItems": "Die minimale Anzahl von Elementen, die sich innerhalb eines Arrays befinden können. Inklusiv.", + "schema.json.minLength": "Die minimale Länge einer Zeichenfolge.", + "schema.json.minProperties": "Die minimale Anzahl von Eigenschaften, die ein Objekt haben kann. Inklusiv.", + "schema.json.minimum": "Der minimale numerische Wert, standardmäßig inklusiv.", + "schema.json.multipleOf": "Eine Zahl, die den aktuellen Wert glatt teilen sollte (d. h. ohne Rest)", + "schema.json.not": "Ein Schema, das nicht übereinstimmen darf.", + "schema.json.oneOf": "Ein Array von Schemas, von denen genau eines übereinstimmen muss.", + "schema.json.pattern": "Ein regulärer Ausdruck, mit dem die Zeichenfolge verglichen wird. Er ist nicht implizit verankert.", + "schema.json.patternProperties": "Eine Zuordnung von regulären Ausdrücken bei Eigenschaftennamen zu Schemas zum Vergleichen von Eigenschaften.", + "schema.json.properties": "Eine Zuordnung von Eigenschaftennamen zu Schemas für jede Eigenschaft.", + "schema.json.required": "Ein Array von Zeichenfolgen, das die Namen aller für dieses Objekt erforderlichen Eigenschaften aufzählt.", + "schema.json.title": "Ein beschreibender Titel des Elements.", + "schema.json.type": "Entweder eine Zeichenfolge eines der grundlegenden Schematypen (number, integer, null, array, object, boolean, string) oder ein Array aus Zeichenfolgen, das einen Teilsatz dieser Typen bezeichnet.", + "schema.json.uniqueItems": "Wenn alle Elemente im Array eindeutig sein müssen. Standardmäßig wird false verwendet.", + "snippetSchema.json": "Benutzerkonfiguration des Codeausschnitts", + "snippetSchema.json.body": "Der Inhalt des Codeausschnitts. Verwenden Sie \"${id}\", \"${id:label}\", \"${1:label}\" für Variablen und \"$0\", \"$1\" für die Cursorpositionen.", + "snippetSchema.json.description": "Die Beschreibung des Codeausschnitts.", + "snippetSchema.json.prefix": "Das Präfix, das beim Auswählen des Codeausschnitts in IntelliSense verwendet werden soll.", + "tsconfig.json.compilerOptions": "Gibt dem TypeScript-Compiler Anweisungen zum Kompilieren von TS-Dateien", + "tsconfig.json.compilerOptions.charset": "Der Zeichensatz der Eingabedateien.", + "tsconfig.json.compilerOptions.declaration": "Generiert entsprechende \"d.ts\"-Dateien.", + "tsconfig.json.compilerOptions.diagnostics": "Diagnoseinformationen anzeigen", + "tsconfig.json.compilerOptions.emitBOM": "Ausgeben einer UTF-8-Bytereihenfolgemarkierung (BOM) am Anfang von Ausgabedateien.", + "tsconfig.json.compilerOptions.inlineSourceMap": "Ausgeben einer Datei mit Quellzuordnungen anstelle separater Dateien.", + "tsconfig.json.compilerOptions.inlineSources": "Ausgeben der Quelle zusammen mit den Quellzuordnungen in einer Datei (erfordert, dass \"-inlineSourceMap\" festgelegt ist).", + "tsconfig.json.compilerOptions.listFiles": "Ausgeben von Namen des Dateiteils der Kompilierung.", + "tsconfig.json.compilerOptions.locale": "Das Gebietsschema zum Anzeigen von Fehlermeldungen, z. B. \"en-us\".", + "tsconfig.json.compilerOptions.mapRoot": "Gibt den Speicherort an, an dem der Debugger Zuordnungsdateien finden sollte (anstatt generierte Speicherorte)", + "tsconfig.json.compilerOptions.module": "Modulcodegenerierung angeben: \"CommonJS\", \"Amd\", \"System\" oder \"UMD\".", + "tsconfig.json.compilerOptions.newLine": "Gibt das Ende der Zeilensequenz an, die beim Ausgegeben von Dateien verwendet werden soll: \"CRLF\" (DOS) oder \"LF\" (Unix).", + "tsconfig.json.compilerOptions.noEmit": "Keine Ausgabe vornehmen.", + "tsconfig.json.compilerOptions.noEmitHelpers": "Keine Generierierung von benutzerdefinierten Hilfsfunktionen wie \"__extends\" in der kompilierten Ausgabe.", + "tsconfig.json.compilerOptions.noEmitOnError": "Nicht ausgeben, wenn Typenprüffehler gemeldet wurden.", + "tsconfig.json.compilerOptions.noImplicitAny": "Warnung bei Ausdrücken und Deklarationen mit einem impliziten \"any\"-Typ.", + "tsconfig.json.compilerOptions.noLib": "Die Standardbibliothekdatei (\"lib.d.ts\") nicht einschließen.", + "tsconfig.json.compilerOptions.out": "Verketten und Ausgeben in eine einzige Datei.", + "tsconfig.json.compilerOptions.outDir": "Ausgabestruktur an das Verzeichnis umleiten.", + "tsconfig.json.compilerOptions.preserveConstEnums": "Keine \"const\"-Enumerationsdeklarationen im generierten Code löschen.", + "tsconfig.json.compilerOptions.removeComments": "Keine Kommentare an die Ausgabe übergeben.", + "tsconfig.json.compilerOptions.rootDir": "Gibt das Stammverzeichnis der Eingabedateien an. Wird verwendet, um die Ausgabeverzeichnisstruktur mit \"--outDir\" zu steuern.", + "tsconfig.json.compilerOptions.sourceMap": "Generiert entsprechende MAP-Datei.", + "tsconfig.json.compilerOptions.sourceRoot": "Gibt den Speicherort an, an dem vom Debugger TypeScript-Dateien statt Quellspeicherorte gefunden werden sollen.", + "tsconfig.json.compilerOptions.suppressImplicitAnyIndexErrors": "\"noImplicitAny\"-Fehler für Indizierungsobjekte ohne Indexsignaturen unterdrücken.", + "tsconfig.json.compilerOptions.target": "ECMAScript-Zielversion angeben: \"ES3\" (Standard), \"ES5\" oder \"ES6\" (experimentell).", + "tsconfig.json.files": "Wenn in \"tsconfig.json\" keine \"files\"-Eigenschaft vorhanden ist, schließt der Compiler standardmäßig alle Dateien in den enthaltenen Verzeichnissen und Unterverzeichnissen ein. Wenn eine \"files\"-Eigenschaft angegeben ist, werden nur diese Dateien eingeschlossen.", + "tsconfig.json.title": "JSON-Schema für die Konfigurationsdatei des TypeScript-Compilers" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/json/common/parser/jsonParser.i18n.json b/i18n/deu/src/vs/languages/json/common/parser/jsonParser.i18n.json new file mode 100644 index 00000000000..ef122727fb4 --- /dev/null +++ b/i18n/deu/src/vs/languages/json/common/parser/jsonParser.i18n.json @@ -0,0 +1,44 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ColonExpected": "Doppelpunkt erwartet", + "DisallowedExtraPropWarning": "Eigenschaft {0} ist nicht zulässig", + "DoubleQuotesExpected": "Eigenschaftsschlüssel müssen mit doppelten Anführungszeichen formatiert werden.", + "DuplicateKeyWarning": "Doppelter Objektschlüssel", + "End of file expected": "Dateiende erwartet", + "ExpectedCloseBrace": "Komma oder schließende geschweifte Klammer erwartet.", + "ExpectedCloseBracket": "Komma ode schließende Klammer erwartet.", + "Invalid symbol": "JSON-Objekt, Array oder Literal erwartet", + "InvalidEscapeCharacter": "Ungültiges Escapezeichen in Zeichenfolge", + "InvalidNumberFormat": "Ungültiges Zahlenformat", + "InvalidUnicode": "Ungültige Unicodesequenz in Zeichenfolge", + "MaxPropWarning": "Objekt verfügt über mehr Eigenschaften als das Limit von {0}", + "MinPropWarning": "Objekt verfügt über weniger Eigenschaften als die erforderliche Anzahl von {0}", + "MissingRequiredPropWarning": "Fehlende Eigenschaft \"{0}\"", + "PropertyExpected": "Eigenschaft erwartet", + "RequiredDependentPropWarning": "Eigenschaft {0} ist für Objekt nicht vorhanden, die für Eigenschaft {1} erforderlich ist", + "UnexpectedEndOfComment": "Unerwartetes Kommentarende", + "UnexpectedEndOfNumber": "Unerwartetes Ende der Zahl", + "UnexpectedEndOfString": "Unerwartetes Ende der Zeichenfolge", + "ValueExpected": "Wert erwartet", + "additionalItemsWarning": "Array hat nach dem Schema zu viele Elemente. {0} oder weniger erwartet", + "enumWarning": "Wert ist kein zulässiger Wert. Gültige Werte: {0}", + "exclusiveMaximumWarning": "Wert liegt über dem exklusiven Maximum von {0}", + "exclusiveMinimumWarning": "Wert liegt unter dem exklusiven Minimum von {0}", + "maxItemsWarning": "Array enthält zu viele Elemente. {0} oder weniger erwartet", + "maxLengthWarning": "Zeichenfolge ist kürzer als die maximale Länge von ", + "maximumWarning": "Wert liegt über dem Maximum von {0}", + "minItemsWarning": "Array enthält zu wenige Elemente. {0} oder mehr erwartet", + "minLengthWarning": "Zeichenfolge ist kürzer als die minimale Länge von ", + "minimumWarning": "Wert liegt unter dem Minimum von {0}", + "multipleOfWarning": "Wert ist nicht teilbar durch {0}", + "notSchemaWarning": "Stimmt mit einem nicht zulässigen Schema überein.", + "oneOfWarning": "Stimmt mit mehreren Schemas überein, obwohl nur ein Schema übereinstimmen darf.", + "patternWarning": "Die Zeichenfolge stimmt nicht mit dem Muster \"{0}\" überein", + "typeArrayMismatchWarning": "Falscher Typ. Einer von {0} erwartet", + "typeMismatchWarning": "Falscher Typ. Erwartet wurde \"{0}\"", + "uniqueItemsWarning": "Array enthält doppelte Elemente." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/less/common/less.contribution.i18n.json b/i18n/deu/src/vs/languages/less/common/less.contribution.i18n.json new file mode 100644 index 00000000000..c20fcc0fb35 --- /dev/null +++ b/i18n/deu/src/vs/languages/less/common/less.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lessConfigurationTitle": "LESS-Konfiguration", + "lessLint": "Steuert die LESS-Validierung und Problemschweregrade." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/less/common/services/intelliSense.i18n.json b/i18n/deu/src/vs/languages/less/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..57655102802 --- /dev/null +++ b/i18n/deu/src/vs/languages/less/common/services/intelliSense.i18n.json @@ -0,0 +1,60 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "less.builtin.abs": "Absoluter Wert einer Zahl", + "less.builtin.acos": "Arkuskosinus - Umkehrung der Kosinusfunktion", + "less.builtin.alpha": "Gibt den \"Alpha\"-Kanal von \"@color\" zurück", + "less.builtin.argb": "Erstellt #AARRGGBB", + "less.builtin.asin": "Arkussinus - Umkehrung der Sinusfunktion", + "less.builtin.atan": "Arkustangens - Umkehrung der Tangensfunktion", + "less.builtin.blue": "Gibt den \"Blau\"-Kanal von \"@color\" zurück", + "less.builtin.ceil": "Rundet auf eine ganze Zahl auf", + "less.builtin.color": "Analysiert eine Zeichenfolge in eine Farbe", + "less.builtin.contrast": "Gibt \"@darkcolor\" zurück, wenn \"@color1\" > 43 % Luma ist. Andernfalls wird \"@lightcolor\" zurückgegeben. Weitere Informationen finden Sie in den Hinweisen.", + "less.builtin.convert": "Konvertiert eine Zahl von einem Typ in einen anderen", + "less.builtin.cos": "Kosinusfunktion", + "less.builtin.darken": "Gibt \"@color\" 10 % Punkte dunkler zurück.", + "less.builtin.data-uri": "Bettet eine Ressource ein und führt einen Fallback zu \"url()\" aus", + "less.builtin.desaturate": "Gibt \"@color\" 10 % Punkte weniger gesättigt zurück.", + "less.builtin.e": "Inhalt der Escapezeichenfolge", + "less.builtin.escape": "URL codiert eine Zeichenfolge", + "less.builtin.extract": "Gibt einen Wert an der angegebenen Position in der Liste zurück", + "less.builtin.fade": "Gibt \"@color\" mit 50 % Transparenz zurück", + "less.builtin.fadein": "Gibt \"@color\" 10 % Punkte weniger transparent zurück.", + "less.builtin.fadeout": "Gibt \"@color\" 10 % Punkte transparenter zurück.", + "less.builtin.floor": "Rundet auf eine ganze Zahl ab", + "less.builtin.green": "Gibt den \"Grün\"-Kanal von \"@color\" zurück", + "less.builtin.greyscale": "Gibt eine graue, 100 % ungesättigte Farbe zurück", + "less.builtin.hsl": "Erstellt eine Farbe", + "less.builtin.hsla": "Erstellt eine Farbe", + "less.builtin.hsv": "Erstellt eine Farbe", + "less.builtin.hsva": "Erstellt eine Farbe", + "less.builtin.hsvhue": "Gibt den \"Farbton\"-Kanal von \"@color\" im HSV-Bereich zurück", + "less.builtin.hsvsaturation": "Gibt den \"Sättigung\"-Kanal von \"@color\" im HSV-Bereich zurück", + "less.builtin.hsvvalue": "Gibt den \"Wert\"-Kanal von \"@color\" im HSV-Bereich zurück", + "less.builtin.hue": "Gibt den \"Farbton\"-Kanal von \"@color\" im HSL-Bereich zurück", + "less.builtin.length": "Gibt die Anzahl der Elemente in einer Werteliste zurück", + "less.builtin.lighten": "Gibt \"@color\" 10 % Punkte heller zurück.", + "less.builtin.lightness": "Gibt den \"Helligkeit\"-Kanal von \"@color\" im HSL-Bereich zurück", + "less.builtin.luma": "Gibt den Luma-Wert (wahrnehmbare Helligkeit) von \"@color\" zurück.", + "less.builtin.max": "Gibt den kleinsten Wert von einem oder mehreren Werten zurück", + "less.builtin.min": "Gibt den kleinsten Wert von einem oder mehreren Werten zurück", + "less.builtin.mix": "Gibt eine Mischung aus \"@color1\" und \"@color2\" zurück", + "less.builtin.mod": "Erstes Argument Modulus zweites Argument", + "less.builtin.percentage": "Konvertiert in %, z. B. 0,5 > 50 %", + "less.builtin.pi": "Gibt Pi zurück", + "less.builtin.pow": "Erstes Argument mit zweitem Argument potenziert", + "less.builtin.red": "Gibt den \"Rot\"-Kanal von \"@color\" zurück", + "less.builtin.replace": "Zeichenfolgenersetzung", + "less.builtin.round": "Rundet eine Zahl auf eine Anzahl von Stellen", + "less.builtin.saturate": "Gibt \"@color\" 10 % Punkte gesättigter zurück.", + "less.builtin.saturation": "Gibt den \"Sättigung\"-Kanal von \"@color\" im HSL-Bereich zurück", + "less.builtin.sin": "Sinusfunktion", + "less.builtin.spin": "Gibt \"@color\" mit einem 10 % höheren Farbton zurück", + "less.builtin.sqrt": "Berechnet die Quadratwurzel einer Zahl", + "less.builtin.tan": "Tangensfunktion", + "less.builtin.unit": "Entfernt oder ändert die Einheit einer Dimension" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/markdown/common/markdown.contribution.i18n.json b/i18n/deu/src/vs/languages/markdown/common/markdown.contribution.i18n.json new file mode 100644 index 00000000000..3133161b3c0 --- /dev/null +++ b/i18n/deu/src/vs/languages/markdown/common/markdown.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "markdownConfigurationTitle": "Markdown-Vorschau-Konfiguration", + "styles": "Eine Liste von URLs oder lokalen Pfaden zu CSS-Stylesheets, die in der Markdown-Vorschau zu verwenden sind." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/sass/common/parser/sassErrors.i18n.json b/i18n/deu/src/vs/languages/sass/common/parser/sassErrors.i18n.json new file mode 100644 index 00000000000..fd5dd75f151 --- /dev/null +++ b/i18n/deu/src/vs/languages/sass/common/parser/sassErrors.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.from": "'from' erwartet", + "expected.in": "„in“ erwartet.", + "expected.through": "'through' oder 'to' erwartet" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/sass/common/sass.contribution.i18n.json b/i18n/deu/src/vs/languages/sass/common/sass.contribution.i18n.json new file mode 100644 index 00000000000..0a678314192 --- /dev/null +++ b/i18n/deu/src/vs/languages/sass/common/sass.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sassConfigurationTitle": "SASS-Konfiguration", + "sassLint": "Steuert die SASS-Validierung und Problemschweregrade." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/sass/common/services/intelliSense.i18n.json b/i18n/deu/src/vs/languages/sass/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..196ac82925b --- /dev/null +++ b/i18n/deu/src/vs/languages/sass/common/services/intelliSense.i18n.json @@ -0,0 +1,81 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sass.builtin.abs": "Gibt den absoluten Wert einer Zahl zurück", + "sass.builtin.adjust-color": "Erhöht oder reduziert eine oder mehrere Komponenten einer Farbe", + "sass.builtin.adjust-hue": "Ändert den Farbton einer Farbe", + "sass.builtin.alpha": "Ruft die Deckkraftkomponente einer Farbe ab", + "sass.builtin.append": "Fügt einen einzelnen Wert an das Ende einer Liste an", + "sass.builtin.blue": "Ruft die Blaukomponente einer Farbe ab", + "sass.builtin.call": "Ruft eine SASS-Funktion dynamisch auf.", + "sass.builtin.ceil": "Rundet eine Zahl auf die nächste ganze Zahl auf", + "sass.builtin.change-color": "Ändert eine oder mehrere Eigenschaften einer Farbe", + "sass.builtin.comparable": "Gibt zurück, ob zwei Zahlen addiert, subtrahiert oder verglichen werden können", + "sass.builtin.complement": "Gibt das Komplement einer Farbe zurück", + "sass.builtin.darken": "Verringert die Helligkeit einer Farbe", + "sass.builtin.desaturate": "Verringert die Sättigung einer Farbe", + "sass.builtin.fade-in": "Verringert die Transparenz einer Farbe", + "sass.builtin.feature-exists": "Gibt zurück, ob ein Feature in der aktuellen SASS-Laufzeit vorhanden ist.", + "sass.builtin.floor": "Rundet eine Zahl auf die vorherige ganze Zahl ab", + "sass.builtin.function-exists": "Gibt zurück, ob eine Funktion mit einem angegebenen Namen vorhanden ist", + "sass.builtin.global-variable-exists": "Gibt zurück, ob eine Variable mit dem angegebenen Namen im globalen Gültigkeitsbereich vorhanden ist", + "sass.builtin.grayscale": "Konvertiert eine Farbe in Graustufen", + "sass.builtin.green": "Ruft die Grünkomponente einer Farbe ab", + "sass.builtin.hue": "Ruft die Farbtonkomponente einer Farbe ab", + "sass.builtin.ie-hex-str": "Konvertiert eine Farbe in das Format, das von IE-Filtern verstanden wird", + "sass.builtin.index": "Gibt die Position eines Werts innerhalb einer Liste zurück", + "sass.builtin.inspect": "Gibt die Zeichenfolgendarstellung eines Werts so zurück, wie er in SASS dargestellt werden würde.", + "sass.builtin.invert": "Gibt die Umkehrung einer Farbe zurück", + "sass.builtin.is-superselector": "Gibt zurück, ob \"$super\" allen Elementen entspricht, denen auch \"$sub\" entspricht - und möglicherweise mehr", + "sass.builtin.join": "Führt zwei Listen zu einer zusammen", + "sass.builtin.keywords": "Gibt die Schlüsselwörter zurück, die an eine Funktion übergeben werden, die Variablenargumente akzeptiert.", + "sass.builtin.length": "Gibt die Länge einer Liste zurück", + "sass.builtin.lighten": "Erhöht die Helligkeit einer Farbe", + "sass.builtin.lightness": "Ruft die Helligkeitskomponente einer Farbe ab", + "sass.builtin.list-separator": "Gibt das Trennzeichen einer Liste zurück", + "sass.builtin.map-get": "Gibt den Wert in einer Zuordnung zurück, der mit einem angegebenen Schlüssel verknüpft ist", + "sass.builtin.map-has-key": "Gibt zurück, ob eine Zuordnung über einen Wert verfügt, der mit einem angegebenen Schlüssel verknüpft ist", + "sass.builtin.map-keys": "Gibt eine Liste aller Schlüssel in einer Zuordnung zurück", + "sass.builtin.map-merge": "Führt zwei Zuordnungen zu einer neuen Zuordnung zusammen", + "sass.builtin.map-remove": "Gibt eine neue Zuordnung ohne Schlüssel zurück", + "sass.builtin.map-values": "Gibt eine Liste aller Werte in einer Zuordnung zurück", + "sass.builtin.max": "Ermittelt den Maximalwert mehrerer Zahlen", + "sass.builtin.min": "Ermittelt den Minimalwert mehrerer Zahlen", + "sass.builtin.mix": "Vermischt zwei Farben miteinander", + "sass.builtin.mixin-exists": "Gibt zurück, ob ein Mixin mit dem angegebenen Namen vorhanden ist", + "sass.builtin.nth": "Gibt ein bestimmtes Element in einer Liste zurück", + "sass.builtin.opacify": "Verringert die Transparenz einer Farbe", + "sass.builtin.percentage": "Konvertiert eine Zahl ohne Einheit in eine Prozentzahl", + "sass.builtin.quote": "Fügt einer Zeichenfolge Anführungszeichen hinzu", + "sass.builtin.random": "Gibt eine zufällige Zahl zurück", + "sass.builtin.red": "Ruft die Rotkomponente einer Farbe ab", + "sass.builtin.rgba": "Ändert die Alphakomponente einer Farbe", + "sass.builtin.round": "Rundet eine Zahl auf die nächste ganze Zahl", + "sass.builtin.saturate": "Erhöht die Sättigung einer Farbe", + "sass.builtin.saturation": "Ruft die Sättigungskomponente einer Farbe ab", + "sass.builtin.scale-color": "Skaliert fließend eine oder mehrere Eigenschaften einer Farbe", + "sass.builtin.selector-append": "Fügt Selektoren aneinander an (ohne Leerzeichen)", + "sass.builtin.selector-extend": "Erweitert \"$extendee\" mit \"$extender\" innerhalb von \"$selector\"", + "sass.builtin.selector-nest": "Schachtelt Selektoren untereinander wie im Stylesheet", + "sass.builtin.selector-parse": "Analysiert einen Selektor in das Format, das von & zurückgegeben wird", + "sass.builtin.selector-replace": "Ersetzt \"$original\" durch \"$replacement\" innerhalb von \"$selector\"", + "sass.builtin.selector-unify": "Führt zwei Selektoren zusammen, um einen Selektor zu erstellen, der Elementen entspricht, die beiden entsprechen", + "sass.builtin.set-nth": "Ersetzt das n-te Element in einer Liste", + "sass.builtin.simple-selectors": "Gibt die einfachen Selektoren zurück, aus denen ein Verbundselektor besteht", + "sass.builtin.str-index": "Gibt den Index des ersten Auftretens von \"$substring\" in \"$string\" zurück", + "sass.builtin.str-insert": "Fügt \"$insert\" an Position \"$index\" in \"$string\" ein", + "sass.builtin.str-length": "Gibt die Anzahl der Zeichen in einer Zeichenfolge zurück", + "sass.builtin.str-slice": "Extrahiert eine Teilzeichenfolge aus \"$string\"", + "sass.builtin.to-lower-case": "Konvertiert eine Zeichenfolge in Kleinbuchstaben", + "sass.builtin.to-upper-case": "Konvertiert eine Zeichenfolge in Großbuchstaben", + "sass.builtin.transparentize": "Erhöht die Transparenz einer Farbe", + "sass.builtin.type-of": "Gibt den Typ eines Werts zurück", + "sass.builtin.unit": "Gibt die Einheiten zurück, die einer Zahl zugeordnet sind", + "sass.builtin.unitless": "Gibt zurück, ob eine Zahl über Einheiten verfügt", + "sass.builtin.unquote": "Entfernt Anführungszeichen aus einer Zeichenfolge", + "sass.builtin.variable-exists": "Gibt zurück, ob eine Variable mit dem angegebenen Namen im aktuellen Gültigkeitsbereich vorhanden ist", + "sass.builtin.zip": "Führt mehrere Listen zu einer einzigen mehrdimensionalen Liste zusammen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/typescript/common/features/quickFix.i18n.json b/i18n/deu/src/vs/languages/typescript/common/features/quickFix.i18n.json new file mode 100644 index 00000000000..a5ff01cda50 --- /dev/null +++ b/i18n/deu/src/vs/languages/typescript/common/features/quickFix.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "typescript.quickfix.addAsGlobal": "\"{0}\" als global markieren", + "typescript.quickfix.rename": "In \"{0}\" umbenennen", + "typescript.quickfix.typeDefinitions": "Typdefinition \"{0}\" herunterladen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/typescript/common/lint/lint.i18n.json b/i18n/deu/src/vs/languages/typescript/common/lint/lint.i18n.json new file mode 100644 index 00000000000..0d033b9bc64 --- /dev/null +++ b/i18n/deu/src/vs/languages/typescript/common/lint/lint.i18n.json @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "javascript.comparisonOperatorNotStrict": "Verwenden Sie '!==' und '===' anstelle von '!=' und '=='.", + "javascript.functionInsideLoop": "Funktion innerhalb von Schleife.", + "javascript.missingSemicolon": "Fehlendes Semikolon.", + "javascript.newOnLowercaseFunctions": "Funktionsname in Kleinbuchstaben als Konstruktur verwendet.", + "javascript.reservedKeyword": "Verwenden Sie keine reservierten Schlüsselwörter.", + "javascript.semicolonInsteadOfBlock": "Semikolon statt eines Blocks.", + "javascript.typeofCannotBeCompared": "Unerwartete Ausgabe des 'typeof'-Operators.", + "javascript.typescriptSpecific": "Verwenden Sie in JavaScript keine für TypeScript spezifischen Sprachkonstrukte.", + "layout.curlyBracketsMustNotBeOmitted": "Denken Sie an die geschweiften Klammern.", + "layout.emptyblock": "Leere Blöcke sollten einen Kommentar enthalten.", + "typescript.looksLikeTripleSlash": "Meinten Sie '/// '?", + "typescript.missingReturnType": "Fehlender Rückgabetyp.", + "typescript.unusedFunction": "Nicht verwendete lokale Funktion.", + "typescript.unusedImport": "Nicht verwendeter Import.", + "typescript.unusedLocalVariable": "Nicht verwendete lokale Variable.", + "typescript.unusedPrivateMember": "Nicht verwendeter privater Member.", + "typescript.variableUsedBeforeDeclared": "Variable wird ohne vorherige Deklaration verwendet." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/typescript/common/typescript.contribution.i18n.json b/i18n/deu/src/vs/languages/typescript/common/typescript.contribution.i18n.json new file mode 100644 index 00000000000..7f60e7e4e37 --- /dev/null +++ b/i18n/deu/src/vs/languages/typescript/common/typescript.contribution.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "Schließen Sie immer alle Wörter aus dem aktuellen Dokument ein.", + "baseUrl": "Ermöglicht das Konfigurieren der Basis-URL, die zum Auflösen von Modulreferenzen verwendet wird (http://requirejs.org/docs/api.html#config-baseUrl). Diese Optionen betreffen nur Projekte, die AMD (Asynchronous Module Definition) verwenden (\"module\": \"amd\").", + "compilationSettings": "Steuert die Funktionsweise der TypeScript-Validierung.", + "lint": "Steuert verschiedene Aspekte der Validierung.", + "lint.comparisonOperatorsNotStrict": "Verwenden Sie '!==' und '===' anstelle von '!=' und '=='.", + "lint.curlyBracketsMustNotBeOmitted": "Denken Sie an die geschweiften Klammern.", + "lint.emptyBlocksWithoutComment": "Leere Blöcke sollten einen Kommentar enthalten.", + "lint.functionsInsideLoops": "Funktion innerhalb von Schleife.", + "lint.functionsWithoutReturnType": "Denken Sie an die Rückgabetyp-Anmerkungen für Funktionen.", + "lint.missingSemicolon": "Fehlendes Semikolon.", + "lint.newOnLowercaseFunctions": "Funktionsname in Kleinbuchstaben als Konstruktur verwendet.", + "lint.reservedKeywords": "Verwenden Sie keine reservierten Schlüsselwörter.", + "lint.semicolonsInsteadOfBlocks": "Semikolon statt eines Blocks.", + "lint.tripleSlashReferenceAlike": "Sucht nach fehlerhaften Referenzen mit dreifachem Schrägstrich.", + "lint.typeScriptSpecifics": "Verwenden Sie in JavaScript keine für TypeScript spezifischen Sprachkonstrukte.", + "lint.unknownTypeOfResults": "Unerwartete Ausgabe des 'typeof'-Operators.", + "lint.unusedFunctions": "Nicht verwendete lokale Funktion.", + "lint.unusedMembers": "Nicht verwendeter privater Member.", + "lint.unusedVariables": "Nicht verwendete lokale Variable.", + "module": "Gibt das zu verwendende Modulsystem an.", + "noImplicitAny": "Erzwingen Sie alle Typdeklarationen explizit.", + "noLib": "Verwenden Sie keine Eingaben für die DOM- und Browserumgebung.", + "scope": "Gibt bei Vorhandensein mehrerer Validierungseinstellungen den Unterordner an, für den diese gelten.", + "suggestSettings": "Steuert die Funktionsweise von TypeScript-IntelliSense.", + "target": "Gibt die zu verwendende Version von ECMA-Script an.", + "tsConfigurationTitle": "TypeScript-Konfiguration", + "useCodeSnippetsOnMethodSuggest": "Vervollständigen Sie Funktionen mit deren Parametersignatur." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/languages/typescript/common/typescriptMode.i18n.json b/i18n/deu/src/vs/languages/typescript/common/typescriptMode.i18n.json new file mode 100644 index 00000000000..0e8070142f9 --- /dev/null +++ b/i18n/deu/src/vs/languages/typescript/common/typescriptMode.i18n.json @@ -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. +{ + "err.tooMuchData": "Leider sind zu viele JavaScript-Quelldateien für VS-Code vorhanden. Verwenden Sie ggf. die Eigenschaft \"exclude\" in \"jsconfig.json\"." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/platform/configuration/common/configurationRegistry.i18n.json b/i18n/deu/src/vs/platform/configuration/common/configurationRegistry.i18n.json new file mode 100644 index 00000000000..370e7b35446 --- /dev/null +++ b/i18n/deu/src/vs/platform/configuration/common/configurationRegistry.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "invalid.properties": "configuration.properties muss ein Objekt sein.", + "invalid.title": "configuration.title muss eine Zeichenfolge sein.", + "invalid.type": "Wenn eine Festlegung erfolgt, muss \"configuration.type\" auf \"object\" festgelegt werden.", + "vscode.extension.contributes.configuration": "Trägt Konfigurationseigenschaften bei.", + "vscode.extension.contributes.configuration.properties": "Die Beschreibung der Konfigurationseigenschaften.", + "vscode.extension.contributes.configuration.title": "Eine Zusammenfassung der Einstellungen. Diese Bezeichnung wird in der Einstellungsdatei als trennender Kommentar verwendet." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json b/i18n/deu/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json new file mode 100644 index 00000000000..250e672e753 --- /dev/null +++ b/i18n/deu/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "first.chord": "({0}) wurde gedrückt. Es wird auf die zweite Taste der Kombination gewartet...", + "missing.chord": "Der Tastenkombination ({0}, {1}) ist kein Befehl.", + "unboundCommands": "Die folgenden weiteren Befehle sind verfügbar: " +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/electron-main/main.i18n.json b/i18n/deu/src/vs/workbench/electron-main/main.i18n.json new file mode 100644 index 00000000000..c8fde9a0c06 --- /dev/null +++ b/i18n/deu/src/vs/workbench/electron-main/main.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expired": "Abgelaufen", + "expiredDetail": "Diese Vorabversion von {0} ist abgelaufen.\n\nBitte besuchen Sie {1}, um das aktuelle Release herunterladen.", + "newWindow": "Neues Fenster", + "openWebSite": "Website öffnen", + "quit": "Beenden" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json b/i18n/deu/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json new file mode 100644 index 00000000000..eed01b26dbd --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json @@ -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. +{ + "globalConsoleActionMacLinux": "Neues Terminal öffnen", + "globalConsoleActionWin": "Neue Eingabeaufforderung öffnen", + "scopedConsoleActionMacLinux": "In Terminal öffnen", + "scopedConsoleActionWin": "In Eingabeaufforderung öffnen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/feedback/browser/feedback.i18n.json b/i18n/deu/src/vs/workbench/parts/feedback/browser/feedback.i18n.json new file mode 100644 index 00000000000..6a0c7c6e126 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/feedback/browser/feedback.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "character left": "verbleibende Zeichen", + "characters left": "verbleibende Zeichen", + "commentsHeader": "Kommentare", + "feedbackSending": "Wird gesendet.", + "feedbackSendingError": "Wiederholen", + "feedbackSent": "Vielen Dank", + "frownCaption": "Traurig", + "label.sendASmile": "Senden Sie uns Ihr Feedback als Tweet.", + "other ways to contact us": "Weitere Möglichkeiten der Kontaktaufnahme", + "request a missing feature": "Fehlendes Feature anfordern", + "sendFeedback": "Feedback als Tweet senden", + "sentiment": "Welche Erfahrungen haben Sie gemacht?", + "smileCaption": "Glücklich", + "submit a bug": "Fehler senden", + "tell us why?": "Warum?", + "tweet": "Tweet" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/files/browser/fileActions.i18n.json b/i18n/deu/src/vs/workbench/parts/files/browser/fileActions.i18n.json new file mode 100644 index 00000000000..e1667220177 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -0,0 +1,62 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "addToWorkingFiles": "Aktive Datei den Arbeitsdateien hinzufügen", + "closeAllFiles": "Alle Dateien schließen", + "closeAllLabel": "Alle Dateien schließen", + "closeFile": "Datei schließen", + "closeLabel": "Datei schließen", + "closeOtherFiles": "Andere Dateien schließen", + "closeOtherLabel": "Andere Dateien schließen", + "compareFiles": "Dateien vergleichen", + "compareLabels": "{0} ↔ {1}", + "compareSource": "Für Vergleich auswählen", + "compareWith": "Mit '{0}' vergleichen", + "confirmDeleteMessageFile": "Möchten Sie \"{0}\" wirklich endgültig löschen?", + "confirmDeleteMessageFolder": "Möchten Sie \"{0}\" samt Inhalt wirklich endgültig löschen?", + "confirmMoveTrashMessageFile": "Möchten Sie \"{0}\" wirklich löschen?", + "confirmMoveTrashMessageFolder": "Möchten Sie \"{0}\" samt Inhalt wirklich löschen?", + "confirmOverwrite": "Im Zielordner ist bereits eine Datei oder ein Ordner mit dem gleichen Namen vorhanden. Möchten Sie sie bzw. ihn ersetzen?", + "copyFile": "Kopieren", + "createNewFile": "Neue Datei", + "createNewFolder": "Neuer Ordner", + "delete": "Löschen", + "deleteButtonLabel": "&&Löschen", + "deleteButtonLabelRecycleBin": "&&In Papierkorb verschieben", + "deleteButtonLabelTrash": "&&In Papierkorb verschieben", + "duplicateFile": "Duplikat", + "emptyFileNameError": "Es muss ein Datei- oder Ordnername angegeben werden.", + "fileNameExistsError": "Eine Datei oder ein Ordner **{0}** ist an diesem Ort bereits vorhanden. Wählen Sie einen anderen Namen.", + "filePathTooLongError": "Der Name **{0}** führt zu einem Pfad, der zu lang ist. Wählen Sie einen kürzeren Namen.", + "focusWorkingFiles": "Fokus auf Arbeitsdateien", + "globalCompareFile": "Aktive Datei vergleichen mit...", + "importFiles": "Dateien importieren", + "invalidFileNameError": "Der Name **{0}** ist als Datei- oder Ordnername ungültig. Bitte wählen Sie einen anderen Namen aus.", + "irreversible": "Diese Aktion kann nicht rückgängig gemacht werden.", + "newFile": "Neue Datei", + "newFolder": "Neuer Ordner", + "noFileOpen": "Zurzeit ist keine Datei geöffnet, die geschlossen werden kann.", + "noWorkingFiles": "Zurzeit sind keine Arbeitsdateien vorhanden.", + "openFileToAdd": "Zuerst eine Datei öffnen, um diese den Arbeitsdateien hinzuzufügen", + "openFileToCompare": "Zuerst eine Datei öffnen, um diese mit einer anderen Datei zu vergleichen", + "openNextWorkingFile": "Nächste Arbeitsdatei öffnen", + "openPreviousWorkingFile": "Vorherige Arbeitsdatei öffnen", + "openToSide": "Zur Seite öffnen", + "pasteFile": "Einfügen", + "permDelete": "Endgültig löschen", + "refresh": "Aktualisieren", + "rename": "Umbenennen", + "replaceButtonLabel": "&&Ersetzen", + "retry": "Wiederholen", + "revert": "Datei wiederherstellen", + "save": "Speichern", + "saveAll": "Alle speichern", + "saveFiles": "Geänderte Dateien speichern", + "unableToFileToCompare": "Die ausgewählte Datei kann nicht mit \"{0}\" verglichen werden.", + "undoBin": "Die Wiederherstellung kann aus dem Papierkorb erfolgen.", + "undoTrash": "Die Wiederherstellung kann aus dem Papierkorb erfolgen.", + "warningFileDirty": "Datei \"{0}\" wird derzeit gespeichert, versuchen Sie es später erneut." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json b/i18n/deu/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json new file mode 100644 index 00000000000..fd4ab59641c --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "createNewBranch": "Neue Verzweigung erstellen", + "dupeBranchName": "Der Verzweigungsname ist bereits vorhanden.", + "invalidBranchName": "Ungültiger Verzweigungsname." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json b/i18n/deu/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json new file mode 100644 index 00000000000..bcc4bd4315d --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "git": "Git", + "openChange": "Änderung öffnen", + "openInEditor": "Zur Editor-Ansicht wechseln", + "stageSelectedLines": "Ausgewählte Zeilen bereitstellen", + "switchToChangesView": "Zur Änderungsansicht wechseln" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/deu/src/vs/workbench/parts/git/browser/gitActions.i18n.json new file mode 100644 index 00000000000..47648771c83 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -0,0 +1,51 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "authFailed": "Fehler bei der Authentifizierung für den Git-Remotespeicherort.", + "branch": "Verzweigung", + "branch2": "Branch", + "checkout": "Auschecken", + "cleanChangesLabel": "&&Änderungen bereinigen", + "commitAll": "Commit für alle ausführen", + "commitAll2": "Commit für alle ausführen", + "commitStaged": "Commit bereitgestellt", + "commitStaged2": "Commit bereitgestellt", + "confirmPublishMessage": "Möchten Sie \"{0}\" unter \"{1}\" veröffentlichen?", + "confirmPublishMessageButton": "&&Veröffentlichen", + "confirmUndo": "Sollen die Änderungen in \"{0}\" bereinigt werden?", + "confirmUndoAllMultiple": "Es sind Änderungen in {0} Dateien vorhanden, deren Bereitstellung nicht aufgehoben wurde.\n\nDiese Aktion kann nicht rückgängig gemacht werden.", + "confirmUndoAllOne": "Es sind nicht bereitgestellte Änderungen in {0} Datei vorhanden.\n\nDiese Aktion kann nicht rückgängig gemacht werden.", + "confirmUndoMessage": "Möchten Sie alle Änderungen bereinigen?", + "currentBranch": "Aktuelles Verzeichnis „{0}“ ist auf dem neuesten Stand.", + "currentBranchPlural": "Die aktuelle Verzweigung „{0}„ liegt {1} Commits zurück und {2} Commits vor „{3}“.", + "currentBranchPluralSingle": "Die aktuelle Verzweigung „{0}“ liegt {1} Commits zurück und {2} Commit vor „{3}“.", + "currentBranchSingle": "Die aktuelle Verzweigung „{0}“ liegt {1} Commit zurück und {2} Commit vor „{3}“.", + "currentBranchSinglePlural": "Die aktuelle Verzweigung „{0}“ liegt {1} Commit zurück und {2} Commit vor „{3}“.", + "currentlyDetached": "Synchronisierung im getrennten Modus nicht möglich.", + "dirtyChanges": "Ihre Änderungen müssen vor Synchronisierung bestätigt, rückgängig gemacht oder gespeichert werden.", + "dirtyTreeCheckout": "Auschecken nicht möglich. Sie müssen Ihre Arbeit zunächst bestätigen oder bereitstellen.", + "dirtyTreePull": "Pull nicht möglich. Sie müssen Ihre Arbeit zunächst bestätigen oder bereitstellen.", + "init": "Init", + "irreversible": "Diese Aktion kann nicht rückgängig gemacht werden.", + "noUpstream": "Für die aktuelle Verzweigung „{0}“ wurde keine Upstream-Verzweigung konfiguriert.", + "openChange": "Änderung öffnen", + "openFile": "Datei öffnen", + "publish": "Veröffentlichen", + "publishPickMessage": "Remotespeicherort auswählen, an dem der Branch \"{0}\" veröffentlicht wird:", + "pull": "Pull", + "pullWithRebase": "Pull (Rebase)", + "push": "Push", + "refresh": "Aktualisieren", + "stageAllChanges": "Alle bereitstellen", + "stageChanges": "Phase", + "sync": "Synchronisierung", + "synchronizing": "Wird synchronisiert...", + "undoAllChanges": "Alle bereinigen", + "undoChanges": "Bereinigen", + "undoLastCommit": "Letzten Commit rückgängig machen", + "unstage": "Bereitstellung aufheben", + "unstageAllChanges": "Bereitstellung für alle aufheben" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/git/browser/gitServices.i18n.json b/i18n/deu/src/vs/workbench/parts/git/browser/gitServices.i18n.json new file mode 100644 index 00000000000..37a7e34e746 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "badConfigFile": "Git {0}", + "cancel": "Abbrechen", + "cantOpen": "Diese Git-Ressource kann nicht geöffnet werden.", + "cantOpenResource": "Diese Git-Ressource kann nicht geöffnet werden.", + "changesFromIndex": "{0} - Änderungen am Index", + "changesFromTree": "{0} - Änderungen in {1}", + "checkNativeConsole": "Fehler beim Ausführen eines Git-Vorgangs. Bitte überprüfen Sie die Ausgabe, oder verwenden Sie eine Konsole, um den Repositorystatus zu überprüfen.", + "configureUsernameEmail": "Konfigurieren Sie Ihren Git-Benutzernamen und Ihre E-Mail-Adresse.", + "gitIndexChanges": "{0} - Änderungen am Index", + "gitIndexChangesRenamed": "{0} – Umbenannt – Änderungen für Index", + "gitMergeChanges": "{0} - Änderungen zusammenführen", + "showOutput": "Ausgabe anzeigen", + "unmergedChanges": "Sie müssen nicht zusammengeführte Änderungen lösen, bevor Sie Ihre Änderungen bestätigen.", + "workingTreeChanges": "{0} - Änderungen an der Arbeitsstruktur" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json b/i18n/deu/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json new file mode 100644 index 00000000000..3b962942283 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "commitMessage": "Nachricht (drücken Sie {0}, um den Commit auszuführen)", + "commitMessageAriaLabel": "Git: Geben Sie die Commitnachricht ein, und drücken Sie {0}, um den Commit auszuführen.", + "needMessage": "Geben Sie eine Commit-Meldung an. Sie können jederzeit **{0}** drücken, um einen Commit für die Änderungen auszuführen. Wenn bereitgestellte Änderungen vorliegen, wird nur für diese ein Commit ausgeführt; andernfalls für alle Änderungen.", + "nothingToCommit": "Sobald Änderungen für einen Commit vorliegen, geben Sie die Commit-Meldung ein, und drücken Sie **{0}**, um den Commit für die Änderungen auszuführen. Wenn bereitgestellte Änderungen vorliegen, wird nur für diese ein Commit ausgeführt; andernfalls für alle Änderungen.", + "showOutput": "Git-Ausgabe anzeigen", + "treeAriaLabel": "Ansicht \"Git-Änderungen\"" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json b/i18n/deu/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json new file mode 100644 index 00000000000..3e7d1f2a195 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "added-char": "A", + "allChanges": "Änderungen", + "ariaLabelChanges": "Änderungen, Git", + "ariaLabelMerge": "Mergen, Git", + "ariaLabelStagedChanges": "Gestaffelte Änderungen, Git", + "copied-char": "C", + "deleted-char": "D", + "fileStatusAriaLabel": "Die Datei \"{0}\" im Ordner \"{1}\" weist den Status {2} auf, Git.", + "ignored-char": "!", + "mergeChanges": "Änderungen zusammenführen", + "modified-char": "M", + "outsideOfWorkspace": "Diese Datei befindet sich außerhalb des aktuellen Arbeitsbereichs.", + "renamed-char": "R", + "stagedChanges": "Bereitgestellte Änderungen", + "title-conflict-added-by-them": "Konflikt: hinzugefügt von diesen", + "title-conflict-added-by-us": "Konflikt: hinzugefügt von uns", + "title-conflict-both-added": "Konflikt: beide hinzugefügt", + "title-conflict-both-deleted": "Konflikt: beide gelöscht", + "title-conflict-both-modified": "Konflikt: beide geändert", + "title-conflict-deleted-by-them": "Konflikt: gelöscht von diesen", + "title-conflict-deleted-by-us": "Konflikt: gelöscht von uns", + "title-deleted": "Gelöscht", + "title-ignored": "Ignoriert", + "title-index-added": "Zum Index hinzugefügt", + "title-index-copied": "In den Index kopiert", + "title-index-deleted": "Aus dem Index gelöscht", + "title-index-modified": "Im Index geändert", + "title-index-renamed": "Im Index umbenannt", + "title-modified": "Geändert am", + "title-untracked": "Nicht verfolgt", + "untracked-char": "U" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json b/i18n/deu/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json new file mode 100644 index 00000000000..027647990f8 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json @@ -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. +{ + "markdownPreviewNoFile": "Zuerst eine Markdowndatei öffnen, um eine Vorschau anzuzeigen", + "openPreview": "Vorschau öffnen", + "openPreviewSideBySide": "Vorschau an der Seite öffnen", + "toggleMarkdownPreview": "Vorschau umschalten" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/output/browser/outputActions.i18n.json b/i18n/deu/src/vs/workbench/parts/output/browser/outputActions.i18n.json new file mode 100644 index 00000000000..f0f158ade77 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/output/browser/outputActions.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "clearOutput": "Ausgabe löschen", + "switchToOutput.label": "Zur Ausgabe wechseln", + "toggleOutput": "Ausgabe umschalten" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json b/i18n/deu/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json new file mode 100644 index 00000000000..6685a701be3 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json @@ -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. +{ + "QuickCommandsAction.label": "Editor-Befehle anzeigen", + "actionNotEnabled": "Der Befehl \"{0}\" ist im aktuellen Kontext nicht aktiviert.", + "canNotRun": "Der Befehl '{0}' kann nicht an dieser Stelle ausgeführt werden.", + "commandLabel": "{0}: {1}", + "entryAriaLabel": "{0}, Befehle", + "noCommandsMatching": "Keine übereinstimmenden Befehle.", + "showTriggerActions": "Alle Befehle anzeigen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json b/i18n/deu/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json new file mode 100644 index 00000000000..07e3a88009f --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json @@ -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. +{ + "cannotRunGotoLine": "Zuerst eine Textdatei öffnen, um zu einer Zeile zu navigieren", + "gotoLine": "Gehe zu Zeile...", + "gotoLineColumnLabel": "Gehe zu Zeile {0} und Spalte {1}", + "gotoLineHandlerAriaLabel": "Geben Sie eine Zeilennummer ein, zu der navigiert werden soll.", + "gotoLineLabel": "Gehe zu Zeile {0}", + "gotoLineLabelEmpty": "Zeilennummer eingeben, zu der navigiert werden soll", + "gotoLineLabelEmptyWithLimit": "Zeilennummer zwischen 1 und {0} eingeben, zu der navigiert werden soll" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json b/i18n/deu/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json new file mode 100644 index 00000000000..03ac55b8a65 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "_constructor": "Konstruktoren ({0})", + "array": "Arrays ({0})", + "boolean": "Boolesche Werte ({0})", + "cannotRunGotoSymbol": "Zuerst eine Textdatei öffnen, um zu einem Symbol zu navigieren", + "cannotRunGotoSymbolInFile": "Leider liegen keine Symbolinformationen für die Datei vor.", + "class": "Klassen ({0})", + "entryAriaLabel": "{0}, Symbole", + "enum": "Enumerationen ({0})", + "file": "Dateien ({0})", + "function": "Funktionen ({0})", + "gotoSymbol": "Gehe zu Symbol...", + "gotoSymbolHandlerAriaLabel": "Nehmen Sie eine Eingabe vor, um Symbole des aktuell aktiven Editors einzuschränken.", + "interface": "Schnittstellen ({0})", + "key": "Schlüssel ({0})", + "method": "Methoden ({0})", + "modules": "Module ({0})", + "namespace": "Namespaces ({0})", + "noSymbolsFound": "Es wurden keine Symbole gefunden.", + "noSymbolsMatching": "Keine übereinstimmenden Symbole", + "number": "Zahlen ({0})", + "object": "Objekte ({0})", + "package": "Pakete ({0})", + "property": "Eigenschaften ({0})", + "rule": "Regeln ({0})", + "string": "Zeichenfolgen ({0})", + "symbols": "Symbole ({0})", + "variable": "Variablen ({0})" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json b/i18n/deu/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json new file mode 100644 index 00000000000..e84609155d7 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "editorCommands": "Editor-Befehle", + "entryAriaLabel": "{0}, Auswahlhilfe", + "globalCommands": "Globale Befehle" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json b/i18n/deu/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json new file mode 100644 index 00000000000..210d92e9a34 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json @@ -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. +{ + "fileAndTypeResults": "Datei- und Symbolergebnisse" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json b/i18n/deu/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json new file mode 100644 index 00000000000..95b51a85244 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "entryAriaLabel": "{0}, Dateiauswahl", + "searchResults": "Suchergebnisse" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json b/i18n/deu/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json new file mode 100644 index 00000000000..07ebb25af25 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json @@ -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. +{ + "entryAriaLabel": "{0}, Symbolauswahl", + "noSymbolsMatching": "Keine übereinstimmenden Symbole", + "noSymbolsWithoutInput": "Nehmen Sie eine Eingabe vor, um nach Symbolen zu suchen.", + "symbols": "Symbolergebnisse" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/search/browser/search.contribution.i18n.json b/i18n/deu/src/vs/workbench/parts/search/browser/search.contribution.i18n.json new file mode 100644 index 00000000000..0b1ec1b95a7 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/search/browser/search.contribution.i18n.json @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "exclude": "Konfigurieren Sie Globmuster zum Ausschließen von Dateien und Ordnern in Suchvorgängen. Alle Globmuster werden von der file.exclude-Einstellung geerbt.", + "exclude.boolean": "Das Globmuster, mit dem Dateipfade verglichen werden sollen. Legen Sie diesen Wert auf \"true\" oder \"false\" fest, um das Muster zu aktivieren bzw. zu deaktivieren.", + "exclude.when": "Zusätzliche Überprüfung der gleichgeordneten Elemente einer übereinstimmenden Datei. Verwenden Sie \"$(basename)\" als Variable für den übereinstimmenden Dateinamen.", + "findInFolder": "In Ordner suchen", + "name": "Suchen", + "openAnythingHandlerDescription": "Öffnet Dateien und Symbole nach Name.", + "openSymbolDescriptionNormal": "Öffnet das Symbol nach Name.", + "searchConfigurationTitle": "Suchkonfiguration", + "showSearchViewlet": "Suche anzeigen", + "showTriggerActions": "Alle Symbole anzeigen", + "view": "Anzeigen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json b/i18n/deu/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json new file mode 100644 index 00000000000..0a65d663d11 --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ClearSearchResultsAction.label": "Suchergebnisse löschen", + "CollapseAllAction.label": "Reduzieren", + "ConfigureGlobalExclusionsAction.label": "Einstellungen öffnen", + "RefreshAction.label": "Aktualisieren", + "RemoveAction.label": "Entfernen", + "SelectOrRemoveAction.removeLabel": "Entfernen", + "SelectOrRemoveAction.selectLabel": "Auswählen", + "ariaSearchResultsStatus": "Die Suche hat {0} Ergebnisse in {1} Dateien zurückgegeben.", + "defaultLabel": "Eingabe", + "fileMatchAriaLabel": "{0} stimmt in der Datei \"{1}\" des Ordners \"{2}\" überein, Suchergebnis", + "findInFolder": "In Ordner suchen", + "findPlaceHolder": "Drücken Sie die EINGABETASTE, um den Suchvorgang zu starten oder ESC zum Abbrechen.", + "globLabel": "{0} wenn {1}", + "global.searchScope.folders": "Durch Einstellungen ausgeschlossene Dateien", + "label.Search": "Suche: Geben Sie den Suchbegriff ein, und drücken Sie die EINGABETASTE, um zu suchen, oder ESC, um den Vorgang abzubrechen.", + "label.excludes": "Suchausschlussmuster", + "label.global.excludes": "Konfigurierte Suchausschlussmuster", + "label.includes": "Sucheinschlussmuster", + "moreSearch": "Suchdetails umschalten", + "noMatches": "Keine Übereinstimmungen", + "noResultsExcludes": "Keine Ergebnisse gefunden, die \"{0}\" ausschließen – ", + "noResultsFound": "Es wurden keine Ergebnisse gefunden. Überprüfen Sie Ihre Einstellungen für konfigurierte Ausschlüsse – ", + "noResultsIncludes": "Keine Ergebnisse in \"{0}\" gefunden – ", + "noResultsIncludesExcludes": "Keine Ergebnisse in \"{0}\" unter Ausschluss von \"{1}\" gefunden – ", + "openSettings.message": "Einstellungen öffnen", + "patternDescription": "Globmuster verwenden", + "patternHelpInclude": "Das Muster, mit dem eine Übereinstimmung vorliegen soll, z. B. ****/*.js** für alle JavaScript-Dateien oder **meinOrdner/**** für eine Übereinstimmung mit diesem Ordner und allen seinen untergeordneten Elementen.\n\n**Referenz**:\n***** stimmt mit 0 oder mehr Zeichen überein.\n**?** stimmt mit 1 Zeichen überein.\n****** stimmt mit null oder mehr Verzeichnissen überein.\n**[a-z]** stimmt mit einem Zeichenbereich überein.\n**{a,b}** stimmt mit einem beliebigen Muster überein.", + "regexp.validationFailure": "Der Ausdruck stimmt mit allem überein.", + "rerunSearch.message": "Erneut suchen", + "rerunSearchInAll.message": "Erneut in allen Dateien suchen", + "searchCanceled": "Die Suche wurde abgebrochen, bevor Ergebnisse gefunden werden konnten – ", + "searchMatch": "{0} Übereinstimmung gefunden", + "searchMatches": "{0} Übereinstimmungen gefunden", + "searchMaxResultsWarning": "Das Resultset enthält nur eine Teilmenge aller Übereinstimmungen. Verfeinern Sie Ihre Suche, um die Ergebnisse einzugrenzen.", + "searchResultAria": "{0}, Suchergebnis", + "searchScope.excludes": "Auszuschließende Dateien", + "searchScope.includes": "Einzuschließende Dateien", + "treeAriaLabel": "Suchergebnisse" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/services/message/browser/messageService.i18n.json b/i18n/deu/src/vs/workbench/services/message/browser/messageService.i18n.json new file mode 100644 index 00000000000..d93db4888f8 --- /dev/null +++ b/i18n/deu/src/vs/workbench/services/message/browser/messageService.i18n.json @@ -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. +{ + "closeMessages": "Benachrichtigungen schließen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json b/i18n/deu/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json new file mode 100644 index 00000000000..b6b0a04c327 --- /dev/null +++ b/i18n/deu/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "pluginHostProcess.crash": "Der Extensionhost wurde unerwartet beendet. Bitte laden Sie das Fenster erneut, um ihn wiederherzustellen.", + "pluginHostProcess.error": "Fehler vom Extensionhost: {0}", + "pluginHostProcess.startupFail": "Der Extensionhost wurde nicht innerhalb von 10 Sekunden gestartet. Dies stellt ggf. ein Problem dar.", + "pluginHostProcess.startupFailDebug": "Der Extensionhost wurde nicht innerhalb von 10 Sekunden gestartet. Möglicherweise wurde er in der ersten Zeile beendet und benötigt einen Debugger, um die Ausführung fortzusetzen.", + "reloadWindow": "Fenster erneut laden" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/base/browser/ui/actionbar/actionbar.i18n.json b/i18n/esn/src/vs/base/browser/ui/actionbar/actionbar.i18n.json new file mode 100644 index 00000000000..4ecb2c803f4 --- /dev/null +++ b/i18n/esn/src/vs/base/browser/ui/actionbar/actionbar.i18n.json @@ -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. +{ + "titleLabel": "{0} ({1})" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/base/browser/ui/findinput/findInput.i18n.json b/i18n/esn/src/vs/base/browser/ui/findinput/findInput.i18n.json new file mode 100644 index 00000000000..23b2ff0c14f --- /dev/null +++ b/i18n/esn/src/vs/base/browser/ui/findinput/findInput.i18n.json @@ -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. +{ + "caseDescription": "Coincidir mayúsculas y minúsculas", + "defaultLabel": "entrada", + "regexDescription": "Usar expresión regular", + "wordsDescription": "Solo palabras completas" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/base/browser/ui/messagelist/messageList.i18n.json b/i18n/esn/src/vs/base/browser/ui/messagelist/messageList.i18n.json new file mode 100644 index 00000000000..878189c0d55 --- /dev/null +++ b/i18n/esn/src/vs/base/browser/ui/messagelist/messageList.i18n.json @@ -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. +{ + "alertErrorMessage": "Error: {0}", + "alertInfoMessage": "Información: {0}", + "alertWarningMessage": "Advertencia: {0}", + "close": "Cerrar", + "error": "Error", + "info": "Información", + "warning": "Advertencia" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json b/i18n/esn/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json new file mode 100644 index 00000000000..089442b6d08 --- /dev/null +++ b/i18n/esn/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingAudioSupport": "No se admite la reproducción de archivos de audio.", + "missingVideoSupport": "No se admite la reproducción de archivos de vídeo.", + "nativeBinaryError": "El archivo no se puede mostrar en el editor porque es binario, es muy grande o usa una codificación de texto no admitida." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/base/browser/ui/toolbar/toolbar.i18n.json b/i18n/esn/src/vs/base/browser/ui/toolbar/toolbar.i18n.json new file mode 100644 index 00000000000..3f2b177ab85 --- /dev/null +++ b/i18n/esn/src/vs/base/browser/ui/toolbar/toolbar.i18n.json @@ -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. +{ + "more": "Más" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/base/common/errors.i18n.json b/i18n/esn/src/vs/base/common/errors.i18n.json new file mode 100644 index 00000000000..d22d63d94a7 --- /dev/null +++ b/i18n/esn/src/vs/base/common/errors.i18n.json @@ -0,0 +1,25 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "error.connection.unknown": "Error de conexión desconocido. Es posible que ya no esté conectado a Internet o que el servidor al que se había conectado esté sin conexión.", + "error.connection.unknown.verbose": "Error de conexión desconocido ({0})", + "error.defaultMessage": "Se ha producido un error desconocido. Consulte el registro para obtener más detalles.", + "error.http": "{0} (HTTP {1})", + "error.http.verbose": "{0} (HTTP {1}: {2})", + "error.moreErrors": "{0} ({1} errores en total)", + "error.permission": "Permiso denegado", + "error.permission.verbose": "Permiso denegado (HTTP {0})", + "illegalArgumentError": "Argumento no válido: {0}", + "illegalArgumentError2": "Argumento no válido", + "illegalStateError": "Estado no válido: {0}", + "illegalStateError2": "Estado no válido", + "loaderError": "No se pudo cargar un archivo necesario. O bien no está conectado a Internet o el servidor al que se había conectado está sin conexión. Actualice el explorador y vuelva a intentarlo.", + "loaderErrorNative": "No se pudo cargar un archivo requerido. Reinicie la aplicación para intentarlo de nuevo. Detalles: {0}", + "message": "{0}. Código de error: {1}", + "nodeExceptionMessage": "Se produjo un error del sistema ({0})", + "notImplementedError": "Sin implementar", + "stackTrace.format": "{0}:{1}" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/base/common/json.i18n.json b/i18n/esn/src/vs/base/common/json.i18n.json new file mode 100644 index 00000000000..7ecb2b855db --- /dev/null +++ b/i18n/esn/src/vs/base/common/json.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "CloseBraceExpected": "Se esperaba una llave de cierre", + "CloseBracketExpected": "Se esperaba un corchete de cierre", + "ColonExpected": "Se esperaban dos puntos", + "CommaExpected": "Se esperaba una coma", + "EOFExpected": "Se esperaba el fin del contenido", + "InvalidNumberFormat": "Formato de número no válido", + "PropertyExpected": "Se esperaba el nombre de la propiedad", + "UnknownSymbol": "Símbolo no válido", + "ValeExpected": "Se esperaba un valor", + "ValueExpected": "Se esperaba un valor" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/base/common/severity.i18n.json b/i18n/esn/src/vs/base/common/severity.i18n.json new file mode 100644 index 00000000000..d3844395a63 --- /dev/null +++ b/i18n/esn/src/vs/base/common/severity.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sev.error": "Error", + "sev.info": "Información", + "sev.warning": "Advertencia" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/base/common/strings.i18n.json b/i18n/esn/src/vs/base/common/strings.i18n.json new file mode 100644 index 00000000000..2e4a75e5bd8 --- /dev/null +++ b/i18n/esn/src/vs/base/common/strings.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "diff.days": "{0} d", + "diff.days.month": "Hace un mes", + "diff.days.verbose": "Hace {0} días", + "diff.days.week": "Hace una semana", + "diff.days.yesterday": "ayer", + "diff.hour.verbose": "Hace 1 hora", + "diff.hours": "{0} h", + "diff.hours.verbose": "Hace {0} horas", + "diff.minute.verbose": "Hace 1 minuto", + "diff.minutes": "{0} min", + "diff.minutes.verbose": "Hace {0} minutos", + "diff.seconds": "{0} s", + "diff.seconds.verbose": "Ahora mismo", + "format.date": "{0}-{1}-{2} {3}:{4}:{5}", + "format.time": "{0}:{1}:{2}" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/browser/view/viewImpl.i18n.json b/i18n/esn/src/vs/editor/browser/view/viewImpl.i18n.json new file mode 100644 index 00000000000..b1da401aa98 --- /dev/null +++ b/i18n/esn/src/vs/editor/browser/view/viewImpl.i18n.json @@ -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. +{ + "editorViewAccessibleLabel": "Contenido del editor" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/common/config/commonEditorConfig.i18n.json b/i18n/esn/src/vs/editor/common/config/commonEditorConfig.i18n.json new file mode 100644 index 00000000000..d55456b519e --- /dev/null +++ b/i18n/esn/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "autoClosingBrackets": "Controla si el editor debe cerrar automáticamente los corchetes después de abrirlos", + "cursorBlinking": "Controla la animación intermitente del cursor. Los valores aceptados son \"blink\", \"visible\" y \"hidden\".", + "cursorStyle": "Controla el estilo del cursor. Los valores aceptados son \"block\" y \"line\".", + "editorConfigurationTitle": "Configuración del editor", + "folding": "Controla si el editor tiene habilitado el plegamiento de código.", + "fontFamily": "Controla la familia de fuentes.", + "fontLigatures": "Habilita las ligaduras de fuente.", + "fontSize": "Controla el tamaño de la fuente.", + "formatOnType": "Controla si el editor debe dar formato automáticamente a la línea después de escribirla", + "glyphMargin": "Controla la visibilidad del margen del glifo", + "hideCursorInOverviewRuler": "Controla si el cursor debe ocultarse en la regla de visión general.", + "ignoreTrimWhitespace": "Controla si el editor de diferencias muestra los cambios de espacio inicial o espacio final como diferencias.", + "insertSpaces": "Controla si el editor insertará espacios para las tabulaciones. Valores admitidos: \"auto\", true, false. Si se establece en \"auto\", el valor se estimará cuando se abra un archivo.", + "lineHeight": "Controla la altura de línea.", + "lineNumbers": "Controla la visibilidad de los números de línea", + "mouseWheelScrollSensitivity": "Se utilizará un multiplicador en los eventos de desplazamiento de la rueda del mouse `deltaX` y `deltaY`", + "overviewRulerLanes": "Controla el número de decoraciones que pueden aparecer en la misma posición en la regla de visión general", + "quickSuggestions": "Controla si van a aparecer sugerencias rápidas mientras se escribe", + "quickSuggestionsDelay": "Controla el retardo en ms tras el cual aparecerán sugerencias rápidas", + "referenceInfos": "Controla si el editor muestra información de referencia para los modos compatibles", + "renderWhitespace": "Controla si el editor debe representar los espacios en blanco", + "roundedSelection": "Controla si las selecciones tienen esquinas redondeadas", + "rulers": "Columnas en las que mostrar reglas verticales", + "scrollBeyondLastLine": "Controla si el editor se seguirá desplazando después de la última línea", + "selectionHighlight": "Controla si el editor debería destacar coincidencias similares a la selección", + "sideBySide": "Controla si el editor de diferencias muestra las diferencias en paralelo o alineadas.", + "suggestOnTriggerCharacters": "Controla si las sugerencias deben aparecer de forma automática al escribir caracteres desencadenadores", + "tabSize": "Controla el tamaño de representación de los tabuladores en los caracteres. Valores admitidos: \"auto\", 2, 4, 6, etc. Si se establece en \"auto\", el valor se estimará cuando se abra un archivo.", + "wordSeparators": "Caracteres que se usarán como separadores de palabras al realizar operaciones o navegaciones relacionadas con palabras.", + "wrappingColumn": "Controla el número de caracteres tras los cuales el editor salta a la línea siguiente. Si el valor se establece en 0, se activa el ajuste del ancho de la ventanilla", + "wrappingIndent": "Controla el sangrado de las líneas ajustadas. Puede ser uno los valores 'none', 'same' o 'indent'." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/common/controller/cursor.i18n.json b/i18n/esn/src/vs/editor/common/controller/cursor.i18n.json new file mode 100644 index 00000000000..c9563bd7201 --- /dev/null +++ b/i18n/esn/src/vs/editor/common/controller/cursor.i18n.json @@ -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. +{ + "corrupt.commands": "Excepción inesperada al ejecutar el comando." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/common/model/textModelWithTokens.i18n.json b/i18n/esn/src/vs/editor/common/model/textModelWithTokens.i18n.json new file mode 100644 index 00000000000..2e260b1f343 --- /dev/null +++ b/i18n/esn/src/vs/editor/common/model/textModelWithTokens.i18n.json @@ -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. +{ + "mode.tokenizationSupportFailed": "Error en el modo al convertir la entrada en tokens." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json b/i18n/esn/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json new file mode 100644 index 00000000000..1eb0f45cca5 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.clipboard.copyLabel": "Copiar", + "actions.clipboard.cutLabel": "Cortar", + "actions.clipboard.pasteLabel": "Pegar" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/codelens/browser/codelens.i18n.json b/i18n/esn/src/vs/editor/contrib/codelens/browser/codelens.i18n.json new file mode 100644 index 00000000000..83cb7df1125 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/codelens/browser/codelens.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "n_references": "{0} referencias", + "one_reference": "1 referencia", + "unknown_reference": "- referencias" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/comment/common/comment.i18n.json b/i18n/esn/src/vs/editor/contrib/comment/common/comment.i18n.json new file mode 100644 index 00000000000..cc41bc7e43c --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/comment/common/comment.i18n.json @@ -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. +{ + "comment.block": "Alternar comentario de bloque", + "comment.line": "Alternar comentario de línea", + "comment.line.add": "Agregar comentario de línea", + "comment.line.remove": "Quitar comentario de línea" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json b/i18n/esn/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json new file mode 100644 index 00000000000..7dee35d6d96 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json @@ -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. +{ + "action.showContextMenu.label": "Mostrar menú contextual del editor" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/find/browser/find.i18n.json b/i18n/esn/src/vs/editor/contrib/find/browser/find.i18n.json new file mode 100644 index 00000000000..e96c69fb480 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/find/browser/find.i18n.json @@ -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. +{ + "addSelectionToNextFindMatch": "Agregar selección hasta la siguiente coincidencia de búsqueda", + "findNextMatchAction": "Buscar siguiente", + "findPreviousMatchAction": "Buscar anterior", + "moveSelectionToNextFindMatch": "Mover última selección hasta la siguiente coincidencia de búsqueda", + "selectAllOccurencesOfFindMatch": "Seleccionar todas las repeticiones de coincidencia de búsqueda", + "startFindAction": "Buscar", + "startReplace": "Reemplazar" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/find/browser/findWidget.i18n.json b/i18n/esn/src/vs/editor/contrib/find/browser/findWidget.i18n.json new file mode 100644 index 00000000000..dd971ccb4ef --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/find/browser/findWidget.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "label.closeButton": "Cerrar", + "label.find": "Buscar", + "label.matchesLocation": "{0} de {1}", + "label.nextMatchButton": "Coincidencia siguiente", + "label.noResults": "No hay ningún resultado", + "label.previousMatchButton": "Coincidencia anterior", + "label.replace": "Reemplazar", + "label.replaceAllButton": "Reemplazar todo", + "label.replaceButton": "Reemplazar", + "label.toggleReplaceButton": "Alternar modo de reemplazar", + "label.toggleSelectionFind": "Buscar en selección", + "placeholder.find": "Buscar", + "placeholder.replace": "Reemplazar", + "title.matchesCountLimit": "Solo se resaltan los primeros 999 resultados, pero todas las operaciones de búsqueda trabajan en todo el texto." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/format/common/format.i18n.json b/i18n/esn/src/vs/editor/contrib/format/common/format.i18n.json new file mode 100644 index 00000000000..3c04d137091 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/format/common/format.i18n.json @@ -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. +{ + "formatAction.label": "Código de formato" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json b/i18n/esn/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json new file mode 100644 index 00000000000..78dc2f1a23c --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.goToDecl.label": "Ir a definición", + "actions.goToDeclToSide.label": "Abrir definición en el lateral", + "actions.gotoTypeDecl.label": "Ir a la definición de tipo", + "actions.previewDecl.label": "Ver la definición", + "multipleResults": "Haga clic para mostrar las {0} definiciones encontradas." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json b/i18n/esn/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json new file mode 100644 index 00000000000..00eb3004040 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json @@ -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. +{ + "markerAction.next.label": "Ir al error o la advertencia siguiente", + "markerAction.previous.label": "Ir al error o la advertencia anterior", + "quickfix.multiple.label": "Correcciones recomendadas: ", + "quickfix.single.label": "Corrección recomendada: " +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json b/i18n/esn/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json new file mode 100644 index 00000000000..cee5631f417 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json @@ -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. +{ + "modesContentHover.loading": "Cargando..." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json b/i18n/esn/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json new file mode 100644 index 00000000000..2a36c5dc580 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "InPlaceReplaceAction.next.label": "Reemplazar con el valor siguiente", + "InPlaceReplaceAction.previous.label": "Reemplazar con el valor anterior" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json b/i18n/esn/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json new file mode 100644 index 00000000000..cebb7517ee5 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lines.copyDown": "Copiar línea abajo", + "lines.copyUp": "Copiar línea arriba", + "lines.delete": "Eliminar línea", + "lines.indent": "Sangría de línea", + "lines.insertAfter": "Insertar línea debajo", + "lines.insertBefore": "Insertar línea arriba", + "lines.moveDown": "Mover línea hacia abajo", + "lines.moveUp": "Mover línea hacia arriba", + "lines.outdent": "Anular sangría de línea", + "lines.trimTrailingWhitespace": "Recortar espacio final" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/links/browser/links.i18n.json b/i18n/esn/src/vs/editor/contrib/links/browser/links.i18n.json new file mode 100644 index 00000000000..0c2db807808 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/links/browser/links.i18n.json @@ -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. +{ + "invalid.url": "URI no válido: no se puede abrir {0}", + "label": "Abrir vínculo", + "links.navigate": "Ctrl + clic para abrir el vínculo", + "links.navigate.mac": "Cmd + clic para abrir el vínculo" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json b/i18n/esn/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json new file mode 100644 index 00000000000..0411a542312 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "mutlicursor.insertAbove": "Agregar cursor arriba", + "mutlicursor.insertAtEndOfEachLineSelected": "Crear múltiples cursores a partir de las líneas seleccionadas", + "mutlicursor.insertBelow": "Agregar cursor debajo" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json b/i18n/esn/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json new file mode 100644 index 00000000000..4cd04b2e243 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json @@ -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. +{ + "parameterHints.trigger.label": "Sugerencias para parámetros Trigger" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json b/i18n/esn/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json new file mode 100644 index 00000000000..6cb9f634603 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json @@ -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. +{ + "quickfix.trigger.label": "Corrección rápida" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json b/i18n/esn/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json new file mode 100644 index 00000000000..7baa7434621 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickFixSelectionWidget.loading": "Cargando...", + "QuickFixSelectionWidget.noSuggestions": "No hay sugerencias de correcciones.", + "treeAriaLabel": "Corrección rápida" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json b/i18n/esn/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json new file mode 100644 index 00000000000..407b003f979 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json @@ -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. +{ + "label": "Ir a la línea..." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json b/i18n/esn/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json new file mode 100644 index 00000000000..bfaed48c847 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "GotoLineAction.label": "Ir a la línea...", + "gotoLineActionInput": "Escriba un número de línea, seguido por dos puntos opcionales (:) y el número de la columna a la cual quiera navegar.", + "gotoLineLabelEmptyWithLineAndColumnLimit": "Escriba el número de columna entre 1 y {0} a la cual quiera navegar.", + "gotoLineLabelEmptyWithLineLimit": "Escriba el número de una línea comprendido entre 1 y {0} a la cual quiera navegar.", + "gotoLineLabelValidLine": "Ir a la línea {0}", + "gotoLineLabelValidLineAndColumn": "Ir a la línea {0} y la columna {1}" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json b/i18n/esn/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json new file mode 100644 index 00000000000..729e3d5c671 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json @@ -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. +{ + "label": "Paleta de comandos" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json b/i18n/esn/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json new file mode 100644 index 00000000000..e5a69767fd8 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickCommandAction.label": "Paleta de comandos", + "quickCommandActionInput": "Escriba el nombre de la acción que quiera ejecutar." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json b/i18n/esn/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json new file mode 100644 index 00000000000..c175b052d7b --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json @@ -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. +{ + "label": "Ir al símbolo..." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json b/i18n/esn/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json new file mode 100644 index 00000000000..7418eb290de --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json @@ -0,0 +1,20 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickOutlineAction.label": "Ir al símbolo...", + "_constructor": "constructores ({0})", + "call": "llamadas ({0})", + "class": "clases ({0})", + "function": "funciones ({0})", + "interface": "interfaces ({0})", + "method": "métodos ({0})", + "modules": "módulos ({0})", + "property": "propiedades ({0})", + "quickOutlineActionInput": "Escriba el nombre del identificador al cual quiera navegar.", + "symbols": "símbolos ({0})", + "variable": "variables ({0})", + "variable2": "variables ({0})" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json b/i18n/esn/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json new file mode 100644 index 00000000000..2958a4a8f85 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -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. +{ + "labelLoading": "Cargando...", + "noResults": "No hay ningún resultado", + "references.action.label": "Buscar todas las referencias", + "references.action.name": "Mostrar referencias" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json b/i18n/esn/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json new file mode 100644 index 00000000000..0852cd28261 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingPreviewMessage": "vista previa no disponible", + "peekView.alternateTitle": "Referencias", + "referenceCount": "{0} referencia", + "referencesCount": "{0} referencias", + "treeAriaLabel": "Referencias" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/rename/browser/rename2.i18n.json b/i18n/esn/src/vs/editor/contrib/rename/browser/rename2.i18n.json new file mode 100644 index 00000000000..be0da27d7de --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/rename/browser/rename2.i18n.json @@ -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. +{ + "rename.label": "Cambiar el nombre del símbolo" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/rename/browser/renameModel.i18n.json b/i18n/esn/src/vs/editor/contrib/rename/browser/renameModel.i18n.json new file mode 100644 index 00000000000..868b9079cf4 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/rename/browser/renameModel.i18n.json @@ -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. +{ + "cannotLoadFile": "No se puede cargar el archivo {0}" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json b/i18n/esn/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json new file mode 100644 index 00000000000..8c194fd8751 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json @@ -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. +{ + "smartSelect.jumpBracket": "Ir al corchete" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json b/i18n/esn/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json new file mode 100644 index 00000000000..e5a3dca5e22 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "smartSelect.grow": "Expandir selección", + "smartSelect.shrink": "Reducir selección" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/suggest/browser/suggest.i18n.json b/i18n/esn/src/vs/editor/contrib/suggest/browser/suggest.i18n.json new file mode 100644 index 00000000000..438bd2356f4 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/suggest/browser/suggest.i18n.json @@ -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. +{ + "suggest.trigger.label": "Sugerencias para Trigger" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json b/i18n/esn/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json new file mode 100644 index 00000000000..dbd610a3e49 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json @@ -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. +{ + "goback": "Volver", + "readMore": "Leer más...{0}", + "suggestWidget.loading": "Cargando...", + "suggestWidget.noSuggestions": "No hay sugerencias." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json b/i18n/esn/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json new file mode 100644 index 00000000000..161befd07cf --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json @@ -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. +{ + "toggle.tabfocusmode": "Alternar el uso de la tecla TAB para establecer el enfoque" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json b/i18n/esn/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json new file mode 100644 index 00000000000..067249df5b1 --- /dev/null +++ b/i18n/esn/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json @@ -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. +{ + "label.close": "Cerrar" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/css/common/css.contribution.i18n.json b/i18n/esn/src/vs/languages/css/common/css.contribution.i18n.json new file mode 100644 index 00000000000..c70ace018fe --- /dev/null +++ b/i18n/esn/src/vs/languages/css/common/css.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "cssConfigurationTitle": "Configuración de CSS", + "lint": "Controla la gravedad de los problemas y la validación de CSS." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/css/common/cssWorker.i18n.json b/i18n/esn/src/vs/languages/css/common/cssWorker.i18n.json new file mode 100644 index 00000000000..eb0ac0e45a3 --- /dev/null +++ b/i18n/esn/src/vs/languages/css/common/cssWorker.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "css.quickfix.rename": "Cambiar el nombre a \"{0}\"", + "literal.fontface": "@font-face", + "literal.keyframes": "@keyframes {0}" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/css/common/parser/cssErrors.i18n.json b/i18n/esn/src/vs/languages/css/common/parser/cssErrors.i18n.json new file mode 100644 index 00000000000..f84a57acf23 --- /dev/null +++ b/i18n/esn/src/vs/languages/css/common/parser/cssErrors.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.colon": "se esperaba una coma", + "expected.comma": "se esperaba una coma", + "expected.condt": "se esperaba una condición", + "expected.dot": "se esperaba un punto", + "expected.expression": "se esperaba una expresión", + "expected.ident": "se esperaba un identificador", + "expected.lcurly": "se esperaba {", + "expected.lparen": "se esperaba (", + "expected.lsquare": "se esperaba [", + "expected.number": "se esperaba un número", + "expected.operator": "se esperaba un operador", + "expected.pagedirordecl": "se esperaba una directiva o una declaración de página", + "expected.percentage": "se esperaba un porcentaje", + "expected.propvalue": "se esperaba un valor de propiedad", + "expected.rcurly": "se esperaba }", + "expected.rparent": "se esperaba )", + "expected.rsquare": "se esperaba ]", + "expected.ruleorselector": "se esperaba una regla at o un selector", + "expected.selector": "se esperaba un selector", + "expected.semicolon": "se esperaba punto y coma", + "expected.stringliteral": "se esperaba un literal de cadena", + "expected.term": "se esperaba un término", + "expected.uri": "se esperaba una URI", + "expected.uriorstring": "se esperaba una URI o una cadena", + "expected.varname": "se esperaba un nombre de variable", + "expected.varvalue": "se esperaba un valor de variable", + "unknown.atrule": "regla at desconocida", + "unknown.keyword": "palabra clave desconocida" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/css/common/services/intelliSense.i18n.json b/i18n/esn/src/vs/languages/css/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..b824f8e2845 --- /dev/null +++ b/i18n/esn/src/vs/languages/css/common/services/intelliSense.i18n.json @@ -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. +{ + "css.builtin.hsl": "Crea un color a partir de valores de matiz, saturación y claridad.", + "css.builtin.hsla": "Crea un color a partir de valores alfa, de matiz, saturación y claridad.", + "css.builtin.rgb": "Crea un color a partir de valores rojo, verde y azul.", + "css.builtin.rgba": "Crea un color a partir de valores alfa, rojo, verde y azul." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/css/common/services/lint.i18n.json b/i18n/esn/src/vs/languages/css/common/services/lint.i18n.json new file mode 100644 index 00000000000..5fa6f121846 --- /dev/null +++ b/i18n/esn/src/vs/languages/css/common/services/lint.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "keyframes.standardrule.missing": "Defina siempre la regla estándar '@keyframes' al definir fotogramas clave.", + "keyframes.vendorspecific.missing": "Incluya siempre todas las reglas específicas del proveedor: Falta: {0}", + "namelist.concatenated": "{0}, '{1}'", + "namelist.single": "'{0}'", + "property.standard.missing": "Defina también la propiedad estándar '{0}' para la compatibilidad.", + "property.vendorspecific.missing": "Incluya siempre todas las propiedades específicas del proveedor: Falta: {0}" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/css/common/services/lintRules.i18n.json b/i18n/esn/src/vs/languages/css/common/services/lintRules.i18n.json new file mode 100644 index 00000000000..9e872da8950 --- /dev/null +++ b/i18n/esn/src/vs/languages/css/common/services/lintRules.i18n.json @@ -0,0 +1,26 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "enableValidation": "Habilita o deshabilita todas las validaciones.", + "rule.avoidFloat": "Le recomendamos no usar 'float'. Los floats producen CSS frágiles, fáciles de corromper si cambia cualquier aspecto del diseño.", + "rule.avoidIdSelector": "Los selectores no deben contener identificadores porque estas reglas están estrechamente ligadas a HTML.", + "rule.avoidImportant": "Le recomendamos no usar !important. Esto indica que la especificidad de todo el CSS está fuera de control y que debe refactorizarse.", + "rule.colorFunction": "Número de parámetros no válido", + "rule.duplicateDeclarations": "No use definiciones de estilo duplicadas.", + "rule.emptyRuleSets": "No use conjuntos de reglas vacíos.", + "rule.fontFaceProperties": "La regla @font-face debe definir las propiedades 'src' y 'font-family'.", + "rule.hexColor": "Los colores hexadecimales deben estar formados por tres o seis números hexadecimales.", + "rule.ieHack": "Las modificaciones de IE solo son necesarias cuando admiten IE7 y anteriores", + "rule.importDirective": "Las instrucciones Import no se cargan en paralelo.", + "rule.propertyIgnoredDueToDisplay": "La propiedad se ignora a causa de la pantalla. Por ejemplo, con 'display: inline', el ancho, el alto, el margen superior e inferior y las propiedades de float no tienen efecto.", + "rule.standardvendorprefix.all": "Cuando use un prefijo específico del proveedor, incluya también la propiedad estándar.", + "rule.universalSelector": "Se sabe que el selector universal (*) es lento.", + "rule.unknownProperty": "Propiedad desconocida.", + "rule.unknownVendorSpecificProperty": "Propiedad específica del proveedor desconocida.", + "rule.vendorprefixes.all": "Cuando use un prefijo específico del proveedor, compruebe que también haya incluido el resto de propiedades específicas del proveedor.", + "rule.withHeightAndBorderPadding": "No use ancho o alto con el relleno o los bordes.", + "rule.zeroWidthUnit": "No se necesita una unidad para cero." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/javascript/common/javascript.contribution.i18n.json b/i18n/esn/src/vs/languages/javascript/common/javascript.contribution.i18n.json new file mode 100644 index 00000000000..47e8dea0e30 --- /dev/null +++ b/i18n/esn/src/vs/languages/javascript/common/javascript.contribution.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "Incluya siempre todas las palabras del documento actual.", + "compilationSettings": "Controla el funcionamiento de la validación de JavaScript.", + "jsConfigurationTitle": "Configuración de JavaScript", + "lint": "Controla diversos aspectos de la validación.", + "lint.comparisonOperatorsNotStrict": "Use '!==' y '===' en lugar de '!=' y '=='.", + "lint.curlyBracketsMustNotBeOmitted": "Reduzca al máximo el uso de llaves.", + "lint.emptyBlocksWithoutComment": "Los bloques vacíos deben contener comentarios.", + "lint.forcedTypeConversion": "No vuelva a declarar los tipos de variable mediante asignación.", + "lint.functionsInsideLoops": "Función incluida en un bucle.", + "lint.missingSemicolon": "Falta un punto y coma.", + "lint.mixedTypesArithmetics": "Use solamente números en las operaciones aritméticas.", + "lint.newOnLowercaseFunctions": "Función con nombre en minúsculas utilizada como constructor.", + "lint.newOnReturningFunctions": "Función con instrucción 'return' utilizada como constructor.", + "lint.parametersDontMatchSignature": "El parámetro no coincide con una firma de función", + "lint.primitivesInInstanceOf": "No use 'instanceof' con tipos primitivos.", + "lint.redeclaredVariables": "No vuelva a declarar las variables y cambie el tipo.", + "lint.semicolonsInsteadOfBlocks": "Punto y coma en lugar de bloque.", + "lint.tripleSlashReferenceAlike": "Busca referencias con tres barras diagonales mal escritas.", + "lint.undeclaredVariables": "No use variables no declaradas.", + "lint.unknownModule": "No requerir un módulo desconocido.", + "lint.unknownProperty": "No use propiedades desconocidas.", + "lint.unknownTypeOfResults": "Salida inesperada del operador 'typeof'.", + "lint.unusedFunctions": "Función local no utilizada.", + "lint.unusedVariables": "Variable local no utilizada.", + "semanticValidation": "Ejecute las comprobaciones de linter para los archivos JavaScript: reemplaza la configuración de validate.lint.*.", + "suggestSettings": "Controla el funcionamiento de JavaScript IntelliSense.", + "syntaxValidation": "Buscar errores de sintaxis en los archivos JavaScript.", + "useCodeSnippetsOnMethodSuggest": "Complete las funciones con la firma de parámetro." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json b/i18n/esn/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json new file mode 100644 index 00000000000..745e4b72818 --- /dev/null +++ b/i18n/esn/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.bower.default": "Bower.json predeterminado", + "json.bower.error.repoaccess": "Error en la solicitud al repositorio de Bower: {0}", + "json.bower.package.hover": "{0}" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json b/i18n/esn/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json new file mode 100644 index 00000000000..8c2d64b19de --- /dev/null +++ b/i18n/esn/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.nugget.error.repoaccess": "Error en la solicitud al repositorio de Nuget: {0}", + "json.nugget.package.hover": "{0}", + "json.nugget.version.hover": "Versión más reciente: {0}", + "json.nugget.versiondescription.suggest": "Versión más reciente del paquete actualmente.", + "json.project.default": "Project.json predeterminado" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/json/common/json.contribution.i18n.json b/i18n/esn/src/vs/languages/json/common/json.contribution.i18n.json new file mode 100644 index 00000000000..dea07cab92f --- /dev/null +++ b/i18n/esn/src/vs/languages/json/common/json.contribution.i18n.json @@ -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. +{ + "jsonConfiguration.fileMatch": "Un patrón de archivos que puede contener '*' para encontrar coincidencias al resolver archivos JSON para esquemas.", + "jsonConfiguration.fileMatches": "Una matriz de patrones de archivos para encontrar coincidencias al resolver archivos JSON para esquemas.", + "jsonConfiguration.schema": "La definición de esquema de la URL dada. El esquema solo debe proporcionarse para evitar el acceso a la URL del esquema.", + "jsonConfiguration.schemaPath": "Una URL para un esquema o una ruta similar a un esquema en el directorio actual", + "jsonConfiguration.schemas": "Asociar esquemas a archivos JSON en el proyecto actual", + "jsonConfigurationDescription": "Se usa para definir configuraciones y esquemas JSON.", + "jsonConfigurationTitle": "Configuración JSON" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/json/common/json.i18n.json b/i18n/esn/src/vs/languages/json/common/json.i18n.json new file mode 100644 index 00000000000..2bacd20e81e --- /dev/null +++ b/i18n/esn/src/vs/languages/json/common/json.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "array": "matrices", + "boolean": "booleanos", + "number": "números", + "object": "objetos", + "string": "cadenas", + "undefined": "sin definir" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/json/common/jsonIntellisense.i18n.json b/i18n/esn/src/vs/languages/json/common/jsonIntellisense.i18n.json new file mode 100644 index 00000000000..39da039c93a --- /dev/null +++ b/i18n/esn/src/vs/languages/json/common/jsonIntellisense.i18n.json @@ -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. +{ + "json.suggest.default": "Valor predeterminado" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/json/common/jsonSchemaService.i18n.json b/i18n/esn/src/vs/languages/json/common/jsonSchemaService.i18n.json new file mode 100644 index 00000000000..782955a9bf2 --- /dev/null +++ b/i18n/esn/src/vs/languages/json/common/jsonSchemaService.i18n.json @@ -0,0 +1,169 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "app.plugin.json.activationEvents": "Eventos de activación para el complemento", + "app.plugin.json.contributes": "Contribuciones de este complemento", + "app.plugin.json.contributes.language": "Contribuciones de lenguaje del complemento", + "app.plugin.json.contributes.language.aliases": "Alias de nombre para este lenguaje", + "app.plugin.json.contributes.language.extensions": "Extensiones de archivo asociadas a este lenguaje", + "app.plugin.json.contributes.language.filenames": "Nombres de archivo asociados a este lenguaje", + "app.plugin.json.contributes.language.id": "Identificador de este lenguaje", + "app.plugin.json.dependencies": "Dependencias del complemento", + "app.plugin.json.mainModule": "Ruta relativa al archivo JavaScript principal", + "app.plugin.json.pluginId": "El identificador único del complemento", + "app.plugin.json.scripts": "Scripts ofrecidos por el complemento", + "app.plugin.json.scripts.compile": "La línea de comandos para compilar este complemento", + "bower.json.authors": "Una lista de personas que crearon el contenido del paquete.", + "bower.json.dependencies": "Las dependencias se especifican con un hash sencillo del nombre del paquete en un identificador o una URL compatible con semver.", + "bower.json.description": "Ayuda a los usuarios a identificar y buscar el paquete con una descripción breve.", + "bower.json.devDependencies": "Las dependencias requeridas solo para el desarrollo del paquete; por ejemplo, marco de prueba o documentación de compilación.", + "bower.json.exportsOverride": "Lo usa la tarea grunt-bower para especificar ubicaciones de instalación personalizadas.", + "bower.json.homepage": "URL para obtener más información acerca del paquete. Retrocede al proyecto GitHub si no se ha especificado y al extremo de GitHub.", + "bower.json.ignore": "Una lista de archivos de Bower que deben ignorarse al instalar el paquete.", + "bower.json.invalidPatternName": "Cualquier propiedad que comience con _ es válida.", + "bower.json.keywords": "Se usa para la búsqueda por palabra clave. Contribuye a que el paquete se detecte más fácilmente sin necesidad de que los usuarios sepan su nombre.", + "bower.json.license": "Identificador de licencia SPDX o URL/ruta a una licencia.", + "bower.json.main": "Los archivos de acción principales necesarios para usar el paquete.", + "bower.json.moduleType": "Los tipos de módulos que expone este paquete", + "bower.json.packagename": "El nombre del paquete.", + "bower.json.private": "Si lo establece en \"true\", se rechazará su publicación. Se trata de un modo de evitar la publicación accidental de repositorios privados.", + "bower.json.repository": "Repositorio en el que se puede encontrar el código fuente.", + "bower.json.resolutions": "Las versiones de dependencias con las que resolver automáticamente en caso de conflicto entre paquetes.", + "bower.json.title": "Esquema de JSON para archivos de configuración de Bower", + "bower.json.version": "Un número de versión semántica.", + "global.json.projects": "Una lista de carpetas de proyecto relacionadas con este archivo.", + "global.json.sources": "Una lista de carpetas de origen relacionadas con este archivo.", + "global.json.title": "Esquema JSON de los archivos globales de configuración de ASP.NET", + "jsconfig.json.compilerOptions": "Indica al servicio de lenguaje JavaScript cómo validar archivos .js", + "jsconfig.json.compilerOptions.charset": "El juego de caracteres de los archivos de entrada", + "jsconfig.json.compilerOptions.decorators": "Activa el soporte experimental para Decorators ES7.", + "jsconfig.json.compilerOptions.diagnostics": "Mostrar información de diagnóstico.", + "jsconfig.json.compilerOptions.locale": "La configuración regional que se debe utilizar para mostrar los mensajes de error, p.ej. es-es.", + "jsconfig.json.compilerOptions.mapRoot": "Especifica la ubicación en la que el depurador debe ubicar los archivos de asignación en lugar de las ubicaciones generadas", + "jsconfig.json.compilerOptions.module": "Generación de código de módulo para resolver a partir de: 'commonjs', 'amd', 'system' o 'umd'.", + "jsconfig.json.compilerOptions.noLib": "No incluir el archivo de biblioteca predeterminado (lib.d.ts).", + "jsconfig.json.compilerOptions.target": "Especifique la versión de destino de ECMAScript: 'ES3' (predeterminado), 'ES5' o 'ES6' (experimental).", + "jsconfig.json.exclude": "Enumerar los archivos y las carpetas que no deben incluirse. Esta propiedad no se respeta cuando la propiedad 'files' está presente.", + "jsconfig.json.files": "Si no hay presente ninguna propiedad 'files' en un jsconfig.json, el servicio de lenguaje incluye todos los archivos del directorio que lo contiene y los subdirectorios de forma predeterminada. Cuando se especifica una propiedad 'files', solo se incluyen estos archivos.", + "jsconfig.json.title": "Esquema JSON para el archivo de configuración JavaScript", + "json.schema.unabletoload": "No se puede cargar el esquema de '{0}': {1}.", + "package.json.bugs": "La dirección URL del rastreador de errores del proyecto o la dirección de correo electrónico a la que se deben notificar los errores. Son útiles para los usuarios que encuentran errores en el paquete.", + "package.json.bugs.email": "La dirección de correo electrónico a la que se deben enviar los errores.", + "package.json.bugs.url": "La dirección URL de la herramienta de seguimiento de errores del proyecto.", + "package.json.bundleDependencies": "Matriz de nombres de paquete que se incluirá al publicar el paquete.", + "package.json.bundledDependencies": "Matriz de nombres de paquete que se incluirá al publicar el paquete.", + "package.json.config": "Se puede usar un hash 'config' para establecer los parámetros de configuración que se usan en los scripts del paquete que se conservan a través de las actualizaciones.", + "package.json.contributors": "Una lista de los usuarios que contribuyeron en este paquete.", + "package.json.dependency": "Las dependencias se especifican con un hash simple de nombre de paquete para el intervalo de versiones. El intervalo de versiones es una cadena con uno o varios descriptores separados por coma. Las dependencias también se pueden especificar con una dirección URL tarball o git.", + "package.json.descr": "Esto ayuda a detectar el paquete tal y como aparece en 'npm search'.", + "package.json.description": "Configuración NPM para este paquete.", + "package.json.directories.bin": "Si especifica un directorio 'bin', todos los archivos de dicha carpeta se usarán como el hash 'bin'.", + "package.json.directories.doc": "Coloque los archivos Markdown aquí. Algún día puede que se muestren correctamente.", + "package.json.directories.example": "Coloque los scripts de ejemplo aquí. Algún día es posible que se muestren de manera más inteligente.", + "package.json.directories.lib": "Indique a los usuarios dónde se encuentra la biblioteca. No se realiza nada especial con la carpeta lib, pero tiene información meta útil.", + "package.json.directories.man": "Una carpeta llena de páginas man. Es útil para generar una matriz 'man' recorriendo la carpeta.", + "package.json.files": "El campo 'files' es una matriz de archivos para incluir en el proyecto. Si da un nombre a una carpeta de la matriz, también incluirá los archivos de dicha carpeta.", + "package.json.homepage": "La dirección URL a la página de inicio del proyecto.", + "package.json.keywords": "Esto ayuda a detectar el paquete tal y como aparece en 'npm search'.", + "package.json.license": "Debe especificar una licencia para el paquete de modo que los usuarios sepan cómo pueden usarlo y las restricciones que ha establecido.", + "package.json.licenses": "Debe especificar una licencia para el paquete de modo que los usuarios sepan cómo pueden usarlo y las restricciones que ha establecido.", + "package.json.main": "El campo principal es un identificador de módulo que es el punto de entrada principal al programa.", + "package.json.maintainers": "Una lista de los usuarios que mantiene este paquete.", + "package.json.man": "Especifique un único archivo o una matriz de nombres de archivo para que el programa principal los encuentre.", + "package.json.name": "El nombre del paquete.", + "package.json.person": "Un usuario implicado en la creación o el mantenimiento de este paquete", + "package.json.preferGlobal": "Si el paquete es principalmente una aplicación de línea de comandos que se debe instalar de forma global, configure este valor en true para proporcionar una advertencia si se instala localmente.", + "package.json.private": "Si se configura en true, npm no lo publicará.", + "package.json.repository": "Especifique el lugar en el que se encuentra el código. Es útil para los usuarios que quieren contribuir.", + "package.json.scripts": "El miembro 'scripts' es un hash de objeto de comandos de script que se ejecutan en varios momentos del ciclo de vida del paquete. La clave es el evento de ciclo de vida y el valor es el comando para ejecutar en ese momento.", + "package.json.underscore": "Cualquier propiedad que comience con _ es válida.", + "package.json.version": "Node-semver debe poder analizar la versión, que se empaqueta con npm como una dependencia.", + "project.json.authors": "Autor de la aplicación", + "project.json.bundleExclude": "Lista de archivos para excluir de la salida de la publicación (agrupación kpm).", + "project.json.code": "Patrón global para especificar todos los archivos de código que deben compilarse. (tipo de datos: cadena o matriz con patrones globales). Ejemplo: [ 'Carpeta1*.cs', 'Carpeta2*.cs' ]", + "project.json.commands": "Comandos disponibles para la aplicación", + "project.json.compilationOptions": "Opciones de compilación que se transmiten a través de Roslyn", + "project.json.configurations": "Las configuraciones son grupos con nombre de ajustes de compilación. Existen dos valores predeterminados compilados en el tiempo de ejecución, 'Debug' y 'Release'.", + "project.json.dependencies": "Dependencias de la aplicación. Cada entrada especifica el nombre y la versión de un paquete Nuget.", + "project.json.dependency.name": "Versión de la dependencia.", + "project.json.dependency.type": "Tipo de la dependencia. Las dependencias del tipo \"build\" solo se dan a la hora de compilar", + "project.json.description": "La descripción de la aplicación", + "project.json.exclude": "Patrón global para indicar todos los archivos de código que deben excluirse de una compilación. (tipo de datos: cadena o matriz con patrones globales).", + "project.json.frameworks": "Marcos de trabajo de destino que se compilarán y dependencias específicas de la configuración.", + "project.json.preprocess": "Patrón global para indicar todos los archivos de código que deben procesarse previamente. (tipo de datos: cadena o matriz con patrones globales).", + "project.json.resources": "Patrón global para indicar todos los archivos que deben compilarse como recursos.", + "project.json.script": "Una o varias secuencias de líneas de comandos.\r\rVariables disponibles:\r%project:Directory%: directorio del proyecto\r%project:Name%: nombre del proyecto\r%project:Version%: versión del proyecto", + "project.json.scripts": "Secuencias de comandos para ejecutar durante las diversas etapas.", + "project.json.shared": "Patrón global para especificar los archivos de código para compartir con proyectos dependientes. Ejemplo: [ 'Carpeta1*.cs', 'Carpeta2*.cs' ]", + "project.json.title": "Esquema JSON para archivos ASP.NET project.json", + "project.json.version": "La versión de la aplicación. Ejemplo: 1.2.0.0", + "project.json.webroot": "Al especificar la propiedad webroot en el archivo project.json, se especifica el servidor web raíz (carpeta pública). En Visual Studio, esta carpeta se usará para arraigar IIS. Los archivos estáticos deben colocarse aquí.", + "schema.json": "Describe un archivo JSON mediante un esquema. Vea json-schema.org para obtener más información.", + "schema.json.$schema": "El esquema para verificar el documento ", + "schema.json.additionalItems": "Para matrices, solo cuando los elementos se hayan establecido como una matriz. Si es un esquema, los validará después de los que haya especificado la matriz de elementos. Cuando se establece en \"false\", los elementos adicionales provocarán un error en la validación.", + "schema.json.additionalProperties": "Esquema o valor booleano. Si es un esquema, se usa para validar todas las propiedades sin coincidencias de \"properties\" o \"patternProperties\". Si es \"false\", las propiedades sin este tipo de coincidencias provocarán un error del esquema.", + "schema.json.allOf": "Una matriz de esquemas, todos los cuales deben coincidir.", + "schema.json.anyOf": "Una matriz de esquemas, donde al menos uno debe coincidir.", + "schema.json.default": "Un valor predeterminado. Lo usan las sugerencias.", + "schema.json.definitions": "No se usa para validar. Coloque aquí los esquemas secundarios a los que desee hacer referencia en línea con $ref", + "schema.json.dependencies": "Mapa de nombres de propiedad para una matriz de nombres de propiedad o un esquema. Una matriz de nombres de propiedad significa que, para que sea válida, la propiedad denominada en la clave va a depender de las propiedades de la matriz que se encuentre en el objeto. Si el valor es un esquema, este se aplicará solamente al objeto si la propiedad en la clave existe en el objeto.", + "schema.json.description": "Una descripción larga del elemento. Se usa en menús y sugerencias que aparecen al pasar el ratón.", + "schema.json.enum": "El conjunto de valores literales que son válidos", + "schema.json.exclusiveMaximum": "Hace exclusiva la propiedad Maximum.", + "schema.json.exclusiveMininum": "Hace exclusiva la propiedad Minimum.", + "schema.json.id": "Un identificador único para el esquema.", + "schema.json.items": "Para matrices. Puede ser un esquema respecto al que validar cada elemento o una matriz de esquemas respecto a la que validar cada elemento por orden (el primer esquema validará al primer elemento, el segundo esquema validará al segundo elemento y así sucesivamente).", + "schema.json.maxItems": "El número máximo de elementos que puede haber en una matriz. Inclusivo.", + "schema.json.maxLength": "La longitud máxima de una cadena.", + "schema.json.maxProperties": "El número máximo de propiedades que puede tener un objeto. Inclusivo.", + "schema.json.maximum": "El máximo valor numérico, incluido de forma predeterminada.", + "schema.json.minItems": "El número mínimo de elementos que puede haber en una matriz. Inclusivo.", + "schema.json.minLength": "La longitud mínima de una cadena.", + "schema.json.minProperties": "El número mínimo de propiedades que puede tener un objeto. Inclusive.", + "schema.json.minimum": "El valor numérico mínimo, incluido de forma predeterminada.", + "schema.json.multipleOf": "Un número que debe dividir de forma exacta el valor actual (es decir, sin resto)", + "schema.json.not": "Un esquema que no debe tener coincidencias.", + "schema.json.oneOf": "Una matriz de esquemas, de los cuales uno debe coincidir.", + "schema.json.pattern": "Una expresión regular con la que hacer coincidir la cadena. No está anclada de forma implícita.", + "schema.json.patternProperties": "Mapa de expresiones regulares de nombres de propiedad para hacer coincidir las propiedades de los esquemas.", + "schema.json.properties": "Mapa de nombres de propiedad para esquemas para cada propiedad.", + "schema.json.required": "Una matriz de cadenas que enumera los nombres de todas las propiedades necesarias para este objeto.", + "schema.json.title": "Un título descriptivo del elemento", + "schema.json.type": "Una cadena de uno de los tipos de esquema básicos (número, entero, valor NULL, matriz, objeto, valor booleano, cadena) o una matriz de cadenas que especifica un subconjunto de esos tipos.", + "schema.json.uniqueItems": "Si todos los elementos en la matriz deben ser únicos. Establece el valor predeterminado en False.", + "snippetSchema.json": "Configuración de fragmento de código por el usuario", + "snippetSchema.json.body": "El contenido del fragmento de código. Utilice '${id}', '${id:label}', '${1:label}' para las variables y '$0', '$1' para las posiciones del cursor", + "snippetSchema.json.description": "La descripción del fragmento de código.", + "snippetSchema.json.prefix": "El prefijo que se debe utilizar al seleccionar el fragmento de código en Intellisense", + "tsconfig.json.compilerOptions": "Indica al compilador TypeScript cómo compilar los archivos .ts", + "tsconfig.json.compilerOptions.charset": "El juego de caracteres de los archivos de entrada", + "tsconfig.json.compilerOptions.declaration": "Genera los correspondientes archivos d.ts.", + "tsconfig.json.compilerOptions.diagnostics": "Mostrar información de diagnóstico.", + "tsconfig.json.compilerOptions.emitBOM": "Emitir una marca de orden de bytes (BOM) UTF-8 al comienzo de los archivos de salida.", + "tsconfig.json.compilerOptions.inlineSourceMap": "Emita un solo archivo con mapas de origen en lugar de tener un archivo independiente.", + "tsconfig.json.compilerOptions.inlineSources": "Emitir el código fuente junto a los mapas de origen dentro de un solo archivo; se necesita --inlineSourceMap para poder establecerlo.", + "tsconfig.json.compilerOptions.listFiles": "Imprima los nombres de los archivos que son parte de la compilación.", + "tsconfig.json.compilerOptions.locale": "La configuración regional que se debe utilizar para mostrar los mensajes de error, p.ej. es-es.", + "tsconfig.json.compilerOptions.mapRoot": "Especifica la ubicación en la que el depurador debe ubicar los archivos de asignación en lugar de las ubicaciones generadas", + "tsconfig.json.compilerOptions.module": "Especifique la generación de código del módulo: 'CommonJS', 'Amd', 'System' o 'UMD'.", + "tsconfig.json.compilerOptions.newLine": "Especifica el final de la secuencia de líneas que debe utilizarse al emitir archivos: 'CRLF' (dos) o 'LF' (unix).", + "tsconfig.json.compilerOptions.noEmit": "No emitir salida.", + "tsconfig.json.compilerOptions.noEmitHelpers": "No generar funciones de auxiliar personalizadas como __extends en la salida compilada.", + "tsconfig.json.compilerOptions.noEmitOnError": "No emita salidas si se informó de cualquier error de comprobación de tipos.", + "tsconfig.json.compilerOptions.noImplicitAny": "Advertir si existen expresiones y declaraciones con un tipo 'any' implícito.", + "tsconfig.json.compilerOptions.noLib": "No incluir el archivo de biblioteca predeterminado (lib.d.ts).", + "tsconfig.json.compilerOptions.out": "Concatene y emita la salida en un único archivo.", + "tsconfig.json.compilerOptions.outDir": "Redirija la estructura de salida al directorio.", + "tsconfig.json.compilerOptions.preserveConstEnums": "No borre las declaraciones de enumeración const en el código generado.", + "tsconfig.json.compilerOptions.removeComments": "No emitir comentarios para la salida.", + "tsconfig.json.compilerOptions.rootDir": "Especifica el directorio raíz de los archivos de entrada. Se usa para controlar la estructura del directorio de salida con --outDir.", + "tsconfig.json.compilerOptions.sourceMap": "Genera el archivo '.map' correspondiente.", + "tsconfig.json.compilerOptions.sourceRoot": "Especifica la ubicación en la que el depurador debe ubicar los archivos TypeScript en lugar de las ubicaciones de origen.", + "tsconfig.json.compilerOptions.suppressImplicitAnyIndexErrors": "Eliminar errores de noImplicitAny para los objetos de indización a los que les falten firmas de índice.", + "tsconfig.json.compilerOptions.target": "Especificar la versión de destino de ECMAScript: 'ES3' (predeterminado), 'ES5' o 'ES6' (experimental).", + "tsconfig.json.files": "Si no se encuentra una propiedad 'files' en un archivo tsconfig.json, el compilador incluye de forma predeterminada en todos los archivos el directorio que los contienes y los subdirectorios. Cuando se especifica una propiedad 'files', solo se incluyen dichos archivos.", + "tsconfig.json.title": "Esquema JSON para el archivo de configuración del compilador TypeScript" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/json/common/parser/jsonParser.i18n.json b/i18n/esn/src/vs/languages/json/common/parser/jsonParser.i18n.json new file mode 100644 index 00000000000..42f4cfdfcd4 --- /dev/null +++ b/i18n/esn/src/vs/languages/json/common/parser/jsonParser.i18n.json @@ -0,0 +1,44 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ColonExpected": "Se esperaban dos puntos", + "DisallowedExtraPropWarning": "No se permite la propiedad {0}", + "DoubleQuotesExpected": "Las claves de propiedades deben ir entre comillas dobles", + "DuplicateKeyWarning": "Clave de objeto duplicada", + "End of file expected": "Final de archivo esperado", + "ExpectedCloseBrace": "Se esperaba una coma o una llave de cierre", + "ExpectedCloseBracket": "Se esperaba una coma o un corchete de cierre", + "Invalid symbol": "Se esperaba un objeto JSON, una matriz o un literal", + "InvalidEscapeCharacter": "Carácter de escape no válido en la cadena", + "InvalidNumberFormat": "Formato de número no válido", + "InvalidUnicode": "Secuencia Unicode no válida en la cadena", + "MaxPropWarning": "El objeto tiene más propiedades que el límite de {0}", + "MinPropWarning": "El objeto tiene menos propiedades que el número necesario de {0}", + "MissingRequiredPropWarning": "Falta la propiedad \"{0}\"", + "PropertyExpected": "Propiedad esperada", + "RequiredDependentPropWarning": "El objeto no tiene la propiedad {0}, la cual necesita la propiedad {1}", + "UnexpectedEndOfComment": "Final de comentario inesperado", + "UnexpectedEndOfNumber": "Final de número inesperado", + "UnexpectedEndOfString": "Final de cadena inesperado", + "ValueExpected": "Valor esperado", + "additionalItemsWarning": "La matriz tiene demasiados elementos según el esquema. Se esperan {0} o menos", + "enumWarning": "El valor no se acepta. Valores válidos: {0}", + "exclusiveMaximumWarning": "El valor supera el máximo exclusivo de {0}", + "exclusiveMinimumWarning": "El valor es inferior al mínimo exclusivo de {0}", + "maxItemsWarning": "La matriz tiene demasiados elementos. Se esperan {0} o menos", + "maxLengthWarning": "La longitud de la cadena es inferior al máximo de ", + "maximumWarning": "El valor es superior al máximo de {0}", + "minItemsWarning": "La matriz tiene demasiado pocos elementos. Se esperan {0} o más", + "minLengthWarning": "La longitud de la cadena es menor que el mínimo de ", + "minimumWarning": "El valor es inferior al mínimo de {0}", + "multipleOfWarning": "El valor no es divisible por {0}", + "notSchemaWarning": "Se corresponde con un esquema que no se permite.", + "oneOfWarning": "Se corresponde con varios esquemas, pero solo se puede validar uno.", + "patternWarning": "La cadena no se corresponde con el patrón de \"{0}\"", + "typeArrayMismatchWarning": "Tipo incorrecto. Se espera uno de {0}", + "typeMismatchWarning": "Tipo incorrecto. Se espera \"{0}\"", + "uniqueItemsWarning": "La matriz tiene elementos duplicados" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/less/common/less.contribution.i18n.json b/i18n/esn/src/vs/languages/less/common/less.contribution.i18n.json new file mode 100644 index 00000000000..26ff75bfa73 --- /dev/null +++ b/i18n/esn/src/vs/languages/less/common/less.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lessConfigurationTitle": "Configuración de LESS", + "lessLint": "Controla la gravedad de los problemas y la validación de LESS." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/less/common/services/intelliSense.i18n.json b/i18n/esn/src/vs/languages/less/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..264ea149018 --- /dev/null +++ b/i18n/esn/src/vs/languages/less/common/services/intelliSense.i18n.json @@ -0,0 +1,60 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "less.builtin.abs": "valor absoluto de un número", + "less.builtin.acos": "arcocoseno: inversa de la función de coseno", + "less.builtin.alpha": "devuelve el canal \"alfa\" de \"@color\"", + "less.builtin.argb": "crea un #AARRGGBB", + "less.builtin.asin": "arcoseno: inversa de la función de seno", + "less.builtin.atan": "arcotangente: inversa de la función tangente", + "less.builtin.blue": "devuelve el canal \"azul\" de \"@color\"", + "less.builtin.ceil": "redondea a un entero", + "less.builtin.color": "analiza una cadena en un color", + "less.builtin.contrast": "devolver \"@darkcolor\" si \"@color1 es> 43 % luma\"; de lo contrario, devolver \"@lightcolor\", ver notas", + "less.builtin.convert": "convierte números de un tipo a otro", + "less.builtin.cos": "función de coseno", + "less.builtin.darken": "devolver \"@color\" 10 % puntos más oscuro", + "less.builtin.data-uri": "inserta un recurso y recurre a \"url()\"", + "less.builtin.desaturate": "devolver \"@color\" 10 % puntos menos saturado", + "less.builtin.e": "contenido de la cadena de escape", + "less.builtin.escape": "La URL codifica una cadena", + "less.builtin.extract": "devuelve un valor en la posición especificada en la lista", + "less.builtin.fade": "devolver \"@color\" con 50 % de transparencia", + "less.builtin.fadein": "devolver \"@color\" 10 % puntos menos transparente", + "less.builtin.fadeout": "devolver \"@color\" 10 % puntos más transparente", + "less.builtin.floor": "redondea a un entero", + "less.builtin.green": "devuelve el canal \"verde\" de \"@color\"", + "less.builtin.greyscale": "devuelve un color gris 100 % sin saturación", + "less.builtin.hsl": "crea un color", + "less.builtin.hsla": "crea un color", + "less.builtin.hsv": "crea un color", + "less.builtin.hsva": "crea un color", + "less.builtin.hsvhue": "devuelve el canal \"matiz\" de \"@color\" en el espacio de HSV", + "less.builtin.hsvsaturation": "devuelve el canal \"saturación\" de \"@color\" en el espacio de HSV", + "less.builtin.hsvvalue": "devuelve el canal \"valor\" de \"@color\" en el espacio de HSV", + "less.builtin.hue": "devuelve el canal \"matiz\" de \"@color\" en el espacio de HSL", + "less.builtin.length": "devuelve el número de elementos de una lista de valores", + "less.builtin.lighten": "devolver \"@color\" 10 % puntos más claro", + "less.builtin.lightness": "devuelve el canal \"claridad\" de \"@color\" en el espacio de HSL", + "less.builtin.luma": "devuelve el valor \"luma\" (claridad perceptual) de \"@color\"", + "less.builtin.max": "devuelve el valor inferior de uno o varios valores", + "less.builtin.min": "devuelve el valor inferior de uno o varios valores", + "less.builtin.mix": "devolver una combinación de \"@color1\" y \"@color2\"", + "less.builtin.mod": "primer argumento, módulo, segundo argumento", + "less.builtin.percentage": "convierte a un porcentaje; p. ej. 0,5 > 50 %", + "less.builtin.pi": "devuelve pi", + "less.builtin.pow": "primer argumento elevado a la potencia del segundo", + "less.builtin.red": "devuelve el canal \"rojo\" de \"@color\"", + "less.builtin.replace": "sustitución de cadenas", + "less.builtin.round": "redondea un número a un número de ubicaciones", + "less.builtin.saturate": "devolver \"@color\" 10 % puntos más saturado", + "less.builtin.saturation": "devuelve el canal \"saturación\" de \"@color\" en el espacio de HSL", + "less.builtin.sin": "función de seno", + "less.builtin.spin": "devolver \"@color\" con 10 grados más en el matiz", + "less.builtin.sqrt": "calcula la raíz cuadrada de un número", + "less.builtin.tan": "función de tangente", + "less.builtin.unit": "quitar o cambiar la unidad de una dimensión" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/markdown/common/markdown.contribution.i18n.json b/i18n/esn/src/vs/languages/markdown/common/markdown.contribution.i18n.json new file mode 100644 index 00000000000..e6be7aa2654 --- /dev/null +++ b/i18n/esn/src/vs/languages/markdown/common/markdown.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "markdownConfigurationTitle": "Configuración de vista previa del marcado", + "styles": "Una lista de las URL o de las rutas de acceso locales a las hojas de estilos CSS que se deben usar en la vista previa del marcado." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/sass/common/parser/sassErrors.i18n.json b/i18n/esn/src/vs/languages/sass/common/parser/sassErrors.i18n.json new file mode 100644 index 00000000000..65ecf206877 --- /dev/null +++ b/i18n/esn/src/vs/languages/sass/common/parser/sassErrors.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.from": "se esperaba 'from'", + "expected.in": "Se esperaba 'in'", + "expected.through": "se esperaba 'through' o 'to'" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/sass/common/sass.contribution.i18n.json b/i18n/esn/src/vs/languages/sass/common/sass.contribution.i18n.json new file mode 100644 index 00000000000..5f335d73057 --- /dev/null +++ b/i18n/esn/src/vs/languages/sass/common/sass.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sassConfigurationTitle": "Configuración de SASS", + "sassLint": "Controla la gravedad de los problemas y la validación de SasS." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/sass/common/services/intelliSense.i18n.json b/i18n/esn/src/vs/languages/sass/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..88544d21003 --- /dev/null +++ b/i18n/esn/src/vs/languages/sass/common/services/intelliSense.i18n.json @@ -0,0 +1,81 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sass.builtin.abs": "Devuelve el valor absoluto de un número.", + "sass.builtin.adjust-color": "Aumenta o disminuye uno o varios componentes de un color.", + "sass.builtin.adjust-hue": "Cambia el matiz de un color", + "sass.builtin.alpha": "Obtiene el componente de opacidad de un color.", + "sass.builtin.append": "Anexa un valor único al final de una lista.", + "sass.builtin.blue": "Obtiene el componente azul de un color.", + "sass.builtin.call": "Llama de forma dinámica a una función SASS.", + "sass.builtin.ceil": "Redondea un número al entero siguiente.", + "sass.builtin.change-color": "Cambia una o varias propiedades de un color.", + "sass.builtin.comparable": "Devuelve si se pueden sumar, restar o comparar dos números.", + "sass.builtin.complement": "Devuelve el complemento de un color.", + "sass.builtin.darken": "Oscurece un color.", + "sass.builtin.desaturate": "Reduce la saturación de un color.", + "sass.builtin.fade-in": "Aumenta la opacidad de un color.", + "sass.builtin.feature-exists": "Devuelve si una característica existe en el tiempo de ejecución de SASS actual.", + "sass.builtin.floor": "Redondea un número al entero anterior.", + "sass.builtin.function-exists": "Devuelve si existe una función con el nombre indicado.", + "sass.builtin.global-variable-exists": "Devuelve si existe una variable con el nombre indicado en el ámbito global.", + "sass.builtin.grayscale": "Convierte un color a escala de grises.", + "sass.builtin.green": "Obtiene el componente verde de un color.", + "sass.builtin.hue": "Obtiene el componente de matiz de un color.", + "sass.builtin.ie-hex-str": "Convierte un color al formato que comprenden los filtros de IE.", + "sass.builtin.index": "Devuelve la posición de un valor en una lista.", + "sass.builtin.inspect": "Devuelve la cadena de representación de un valor como se representaría en SASS.", + "sass.builtin.invert": "Devuelve el inverso de un color.", + "sass.builtin.is-superselector": "Devuelve si $super coincide con todos los elementos con que coincide $sub y posiblemente más.", + "sass.builtin.join": "Une dos listas en una.", + "sass.builtin.keywords": "Devuelve las palabras clave transmitidas a una función que toma argumentos variables.", + "sass.builtin.length": "Devuelve la longitud de una lista.", + "sass.builtin.lighten": "Aclara un color.", + "sass.builtin.lightness": "Obtiene el componente de claridad de un color.", + "sass.builtin.list-separator": "Devuelve el separador de una lista.", + "sass.builtin.map-get": "Devuelve el valor de un mapa asociado con una clave indicada.", + "sass.builtin.map-has-key": "Devuelve si un mapa tiene un valor asociado con una clave indicada.", + "sass.builtin.map-keys": "Devuelve una lista de todas las claves de un mapa.", + "sass.builtin.map-merge": "Combina dos mapas en uno nuevo.", + "sass.builtin.map-remove": "Devuelve un nuevo mapa con las claves eliminadas.", + "sass.builtin.map-values": "Devuelve una lista de todos los valores de un mapa.", + "sass.builtin.max": "Encuentra el máximo de varios números.", + "sass.builtin.min": "Encuentra el mínimo de varios números.", + "sass.builtin.mix": "Combina dos colores.", + "sass.builtin.mixin-exists": "Devuelve si existe un objeto mixin con el nombre indicado.", + "sass.builtin.nth": "Devuelve un elemento específico de una lista.", + "sass.builtin.opacify": "Aumenta la opacidad de un color.", + "sass.builtin.percentage": "Convierte un número sin unidad a un porcentaje.", + "sass.builtin.quote": "Agrega comillas a una cadena.", + "sass.builtin.random": "Devuelve un número aleatorio.", + "sass.builtin.red": "Obtiene el componente rojo de un color.", + "sass.builtin.rgba": "Cambia el componente alfa de un color.", + "sass.builtin.round": "Redondea un número al entero más cercano.", + "sass.builtin.saturate": "Aumenta la saturación de un color.", + "sass.builtin.saturation": "Obtiene el componente de saturación de un color.", + "sass.builtin.scale-color": "Escala de manera fluida una o varias propiedades de un color.", + "sass.builtin.selector-append": "Anexa selectores a otro sin espacios entre ellos.", + "sass.builtin.selector-extend": "Amplía $extendee con $extender en el $selector.", + "sass.builtin.selector-nest": "Anida un selector debajo de otro tal como estarían anidados en la hoja de estilos.", + "sass.builtin.selector-parse": "Analiza un selector en el formato que devuelve &.", + "sass.builtin.selector-replace": "Sustituye $original con $replacement en el $selector.", + "sass.builtin.selector-unify": "Unifica dos selectores para producir uno que coincida con los elementos con los que coincidían ambos.", + "sass.builtin.set-nth": "Sustituye el enésimo elemento en una lista.", + "sass.builtin.simple-selectors": "Devuelve los selectores simples que conforman un selector compuesto.", + "sass.builtin.str-index": "Devuelve el índice de la primera instancia de $substring en $string.", + "sass.builtin.str-insert": "Inserta $insert en $string en $index.", + "sass.builtin.str-length": "Devuelve el número de caracteres de una cadena.", + "sass.builtin.str-slice": "Extrae una subcadena de la $string.", + "sass.builtin.to-lower-case": "Convierte una cadena a letras minúsculas.", + "sass.builtin.to-upper-case": "Convierte una cadena a letras mayúsculas.", + "sass.builtin.transparentize": "Aumenta la transparencia de un color.", + "sass.builtin.type-of": "Devuelve el tipo de un valor.", + "sass.builtin.unit": "Devuelve las unidades asociadas con un número.", + "sass.builtin.unitless": "Devuelve si un número tiene unidades.", + "sass.builtin.unquote": "Quita las comillas de una cadena.", + "sass.builtin.variable-exists": "Devuelve si existe una variable con el nombre indicado en el ámbito actual.", + "sass.builtin.zip": "Combina varias listas en una única lista multidimensional." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/typescript/common/features/quickFix.i18n.json b/i18n/esn/src/vs/languages/typescript/common/features/quickFix.i18n.json new file mode 100644 index 00000000000..d1ae638f6e5 --- /dev/null +++ b/i18n/esn/src/vs/languages/typescript/common/features/quickFix.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "typescript.quickfix.addAsGlobal": "Marcar '{0}' como global", + "typescript.quickfix.rename": "Cambiar el nombre a \"{0}\"", + "typescript.quickfix.typeDefinitions": "Descargar definición de tipo {0}" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/typescript/common/lint/lint.i18n.json b/i18n/esn/src/vs/languages/typescript/common/lint/lint.i18n.json new file mode 100644 index 00000000000..12271aa6f53 --- /dev/null +++ b/i18n/esn/src/vs/languages/typescript/common/lint/lint.i18n.json @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "javascript.comparisonOperatorNotStrict": "Use '!==' y '===' en lugar de '!=' y '=='.", + "javascript.functionInsideLoop": "Función incluida en un bucle.", + "javascript.missingSemicolon": "Falta un punto y coma.", + "javascript.newOnLowercaseFunctions": "Función con nombre en minúsculas utilizada como constructor.", + "javascript.reservedKeyword": "No use palabras clave reservadas.", + "javascript.semicolonInsteadOfBlock": "Punto y coma en lugar de bloque.", + "javascript.typeofCannotBeCompared": "Salida inesperada del operador 'typeof'.", + "javascript.typescriptSpecific": "No use una construcción de lenguaje específica de TypeScript en JavaScript.", + "layout.curlyBracketsMustNotBeOmitted": "Reduzca al máximo el uso de llaves.", + "layout.emptyblock": "Los bloques vacíos deben contener comentarios.", + "typescript.looksLikeTripleSlash": "¿Quería decir '/// '?", + "typescript.missingReturnType": "Falta el tipo de valor devuelto.", + "typescript.unusedFunction": "Función local no utilizada.", + "typescript.unusedImport": "Importación no utilizada.", + "typescript.unusedLocalVariable": "Variable local no utilizada.", + "typescript.unusedPrivateMember": "Miembro privado no utilizado.", + "typescript.variableUsedBeforeDeclared": "La variable se utilizó antes de declararla." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/typescript/common/typescript.contribution.i18n.json b/i18n/esn/src/vs/languages/typescript/common/typescript.contribution.i18n.json new file mode 100644 index 00000000000..804980291d9 --- /dev/null +++ b/i18n/esn/src/vs/languages/typescript/common/typescript.contribution.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "Incluya siempre todas las palabras del documento actual.", + "baseUrl": "Permite configurar la dirección URL base que se usa para resolver las referencias de módulo (http://requirejs.org/docs/api.html#config-baseUrl). Esta opción solo se aplica a los proyectos que usan la definición de módulos asincrónica (\"module\": \"amd\").", + "compilationSettings": "Controla el funcionamiento de la validación de TypeScript.", + "lint": "Controla diversos aspectos de la validación.", + "lint.comparisonOperatorsNotStrict": "Use '!==' y '===' en lugar de '!=' y '=='.", + "lint.curlyBracketsMustNotBeOmitted": "Reduzca al máximo el uso de llaves.", + "lint.emptyBlocksWithoutComment": "Los bloques vacíos deben contener comentarios.", + "lint.functionsInsideLoops": "Función incluida en un bucle.", + "lint.functionsWithoutReturnType": "Reduzca al máximo la anotación de tipo de valor devuelto en las funciones.", + "lint.missingSemicolon": "Falta un punto y coma.", + "lint.newOnLowercaseFunctions": "Función con nombre en minúsculas utilizada como constructor.", + "lint.reservedKeywords": "No use palabras clave reservadas.", + "lint.semicolonsInsteadOfBlocks": "Punto y coma en lugar de bloque.", + "lint.tripleSlashReferenceAlike": "Busca referencias con tres barras diagonales mal escritas.", + "lint.typeScriptSpecifics": "No use una construcción de lenguaje específica de TypeScript en JavaScript.", + "lint.unknownTypeOfResults": "Salida inesperada del operador 'typeof'.", + "lint.unusedFunctions": "Función local no utilizada.", + "lint.unusedMembers": "Miembro privado no utilizado.", + "lint.unusedVariables": "Variable local no utilizada.", + "module": "Especifica el sistema de módulos que se está usando.", + "noImplicitAny": "Exija explícitamente las declaraciones de tipos.", + "noLib": "No use términos en el entorno de DOM y del explorador.", + "scope": "Cuando hay varias opciones de validación, define la subcarpeta en la que se van a aplicar.", + "suggestSettings": "Controla el funcionamiento de TypeScript IntelliSense.", + "target": "Especifica la versión de ECMA-Script que se va a usar.", + "tsConfigurationTitle": "Configuración de TypeScript", + "useCodeSnippetsOnMethodSuggest": "Complete las funciones con la firma de parámetro." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/typescript/common/typescriptMode.i18n.json b/i18n/esn/src/vs/languages/typescript/common/typescriptMode.i18n.json new file mode 100644 index 00000000000..d3852bd5361 --- /dev/null +++ b/i18n/esn/src/vs/languages/typescript/common/typescriptMode.i18n.json @@ -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. +{ + "err.tooMuchData": "Hay demasiados archivos de código fuente de JavaScript para VS Code. Considere utilizar la propiedad Exclude en jsconfig.json." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/platform/configuration/common/configurationRegistry.i18n.json b/i18n/esn/src/vs/platform/configuration/common/configurationRegistry.i18n.json new file mode 100644 index 00000000000..8454eff5db5 --- /dev/null +++ b/i18n/esn/src/vs/platform/configuration/common/configurationRegistry.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "invalid.properties": "configuration.properties debe ser un objeto", + "invalid.title": "configuration.title debe ser una cadena", + "invalid.type": "si se establece, \"configuration.type\" debe establecerse en \"object\"", + "vscode.extension.contributes.configuration": "Aporta opciones de configuración.", + "vscode.extension.contributes.configuration.properties": "Descripción de las propiedades de configuración.", + "vscode.extension.contributes.configuration.title": "Resumen de la configuración. Esta etiqueta se usará en el archivo de configuración como comentario divisor." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json b/i18n/esn/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json new file mode 100644 index 00000000000..45a4ba0991a --- /dev/null +++ b/i18n/esn/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "first.chord": "Se presionó ({0}). Esperando la siguiente tecla...", + "missing.chord": "La combinación de teclas ({0}, {1}) no es ningún comando.", + "unboundCommands": "Aquí hay otros comandos disponibles: " +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/electron-main/main.i18n.json b/i18n/esn/src/vs/workbench/electron-main/main.i18n.json new file mode 100644 index 00000000000..a422c6cccee --- /dev/null +++ b/i18n/esn/src/vs/workbench/electron-main/main.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expired": "Expirada", + "expiredDetail": "Esta versión preliminar de {0} ha expirado.\n\nVisite {1} para descargar la versión actual.", + "newWindow": "Nueva ventana", + "openWebSite": "Abrir sitio web", + "quit": "Salir" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json b/i18n/esn/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json new file mode 100644 index 00000000000..29d5a6a4879 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json @@ -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. +{ + "globalConsoleActionMacLinux": "Abrir nuevo terminal", + "globalConsoleActionWin": "Abrir nuevo símbolo del sistema", + "scopedConsoleActionMacLinux": "Abrir en terminal", + "scopedConsoleActionWin": "Abrir en símbolo del sistema" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/feedback/browser/feedback.i18n.json b/i18n/esn/src/vs/workbench/parts/feedback/browser/feedback.i18n.json new file mode 100644 index 00000000000..dd6c5fea1e0 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/feedback/browser/feedback.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "character left": "carácter restante", + "characters left": "caracteres restantes", + "commentsHeader": "Comentarios", + "feedbackSending": "Enviando", + "feedbackSendingError": "Intentar de nuevo", + "feedbackSent": "Gracias", + "frownCaption": "Triste", + "label.sendASmile": "Envíanos un tweet con tus comentarios.", + "other ways to contact us": "Otras formas de ponerse en contacto con nosotros", + "request a missing feature": "Solicitar una característica que falta", + "sendFeedback": "Enviar tweet con comentarios", + "sentiment": "¿Cómo fue su experiencia?", + "smileCaption": "Feliz", + "submit a bug": "Enviar un error", + "tell us why?": "Indícanos por qué", + "tweet": "Tweet" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/files/browser/fileActions.i18n.json b/i18n/esn/src/vs/workbench/parts/files/browser/fileActions.i18n.json new file mode 100644 index 00000000000..e4cc6dbb6e1 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -0,0 +1,62 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "addToWorkingFiles": "Agregar archivo activo a archivos de trabajo", + "closeAllFiles": "Cerrar todos los archivos", + "closeAllLabel": "Cerrar todos los archivos", + "closeFile": "Cerrar archivo", + "closeLabel": "Cerrar archivo", + "closeOtherFiles": "Cerrar otros archivos", + "closeOtherLabel": "Cerrar otros archivos", + "compareFiles": "Comparar archivos", + "compareLabels": "{0} ↔ {1}", + "compareSource": "Seleccionar para comparar", + "compareWith": "Comparar con '{0}'", + "confirmDeleteMessageFile": "¿Está seguro de que desea eliminar '{0}' de forma permanente?", + "confirmDeleteMessageFolder": "¿Está seguro de que desea eliminar '{0}' y su contenido de forma permanente?", + "confirmMoveTrashMessageFile": "¿Está seguro de que desea eliminar '{0}'?", + "confirmMoveTrashMessageFolder": "¿Está seguro de que desea eliminar '{0}' y su contenido?", + "confirmOverwrite": "Ya existe un archivo o carpeta con el mismo nombre en la carpeta de destino. ¿Quiere reemplazarlo?", + "copyFile": "Copiar", + "createNewFile": "Nuevo archivo", + "createNewFolder": "Nueva carpeta", + "delete": "Eliminar", + "deleteButtonLabel": "&&Eliminar", + "deleteButtonLabelRecycleBin": "&&Mover a la papelera de reciclaje", + "deleteButtonLabelTrash": "&&Mover a la papelera", + "duplicateFile": "Duplicado", + "emptyFileNameError": "Debe especificarse un nombre de archivo o carpeta.", + "fileNameExistsError": "Ya existe el archivo o carpeta **{0}** en esta ubicación. Elija un nombre diferente.", + "filePathTooLongError": "El nombre **{0}** da como resultado una ruta de acceso demasiado larga. Elija un nombre más corto.", + "focusWorkingFiles": "Enfocar archivos de trabajo", + "globalCompareFile": "Comparar archivo activo con...", + "importFiles": "Importar archivos", + "invalidFileNameError": "El nombre **{0}** no es válido para el archivo o la carpeta. Elija un nombre diferente.", + "irreversible": "Esta acción es irreversible.", + "newFile": "Nuevo archivo", + "newFolder": "Nueva carpeta", + "noFileOpen": "No hay ningún archivo abierto para cerrar.", + "noWorkingFiles": "Actualmente no hay archivos de trabajo.", + "openFileToAdd": "Abrir un archivo antes para agregarlo a los archivos de trabajo", + "openFileToCompare": "Abrir un archivo antes para compararlo con otro archivo.", + "openNextWorkingFile": "Abrir archivo de trabajo siguiente", + "openPreviousWorkingFile": "Abrir archivo de trabajo anterior", + "openToSide": "Abrir en el lateral", + "pasteFile": "Pegar", + "permDelete": "Eliminar permanentemente", + "refresh": "Actualizar", + "rename": "Cambiar nombre", + "replaceButtonLabel": "&&Reemplazar", + "retry": "Reintentar", + "revert": "Revertir archivo", + "save": "Guardar", + "saveAll": "Guardar todos", + "saveFiles": "Guardar archivos con modificaciones", + "unableToFileToCompare": "El archivo seleccionado no se puede comparar con '{0}'.", + "undoBin": "Puede restaurar desde la papelera de reciclaje.", + "undoTrash": "Puede restaurar desde la papelera.", + "warningFileDirty": "El archivo '{0}' se está guardando. Vuelva a intentarlo más tarde." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json b/i18n/esn/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json new file mode 100644 index 00000000000..8537251e834 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "createNewBranch": "Crear nueva rama", + "dupeBranchName": "Este nombre de bifurcación ya existe.", + "invalidBranchName": "Nombre de bifurcación no válido." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json b/i18n/esn/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json new file mode 100644 index 00000000000..bd649dff0ac --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "git": "GIT", + "openChange": "Abrir cambio", + "openInEditor": "Cambiar a la vista de editor", + "stageSelectedLines": "Almacenar provisionalmente las líneas seleccionadas", + "switchToChangesView": "Cambiar a la vista de cambios" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/esn/src/vs/workbench/parts/git/browser/gitActions.i18n.json new file mode 100644 index 00000000000..8d67d1b15bb --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -0,0 +1,51 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "authFailed": "Error de autenticación en GIT remoto.", + "branch": "Rama", + "branch2": "Rama", + "checkout": "Comprobar", + "cleanChangesLabel": "&&Limpiar cambios", + "commitAll": "Confirmar todo", + "commitAll2": "Confirmar todo", + "commitStaged": "Confirmar elementos almacenados provisionalmente", + "commitStaged2": "Confirmar elementos almacenados provisionalmente", + "confirmPublishMessage": "¿Seguro que quiere publicar '{0}' en '{1}'?", + "confirmPublishMessageButton": "&&Publicar", + "confirmUndo": "¿Seguro que quiere limpiar los cambios de '{0}'?", + "confirmUndoAllMultiple": "Hay cambios que no se almacenaron provisionalmente en {0} archivos.\n\nEsta acción es irreversible.", + "confirmUndoAllOne": "Hay cambios que no se almacenaron provisionalmente en {0} archivo.\n\nEsta acción es irreversible.", + "confirmUndoMessage": "¿Seguro que quiere limpiar todos los cambios?", + "currentBranch": "La rama actual '{0}' está actualizada.", + "currentBranchPlural": "La rama actual '{0}' se encuentra {1} confirmaciones por detrás y {2} confirmaciones por delante de '{3}'.", + "currentBranchPluralSingle": "La rama actual '{0}' se encuentra {1} confirmaciones por detrás y {2} confirmación por delante de '{3}'.", + "currentBranchSingle": "La rama actual '{0}' se encuentra {1} confirmación por detrás y {2} confirmación por delante de '{3}'.", + "currentBranchSinglePlural": "La rama actual '{0}' se encuentra {1} confirmación por detrás y {2} confirmaciones por delante de '{3}'.", + "currentlyDetached": "No se puede sincronizar en modo separado.", + "dirtyChanges": "Confirme, deshaga o guarde temporalmente los cambios antes de sincronizar.", + "dirtyTreeCheckout": "No se puede finalizar. Primero confirme la tarea o haga una copia intermedia de ella.", + "dirtyTreePull": "No se puede extraer. Primero confirme la tarea o haga una copia intermedia de ella.", + "init": "Iniciar", + "irreversible": "Esta acción es irreversible.", + "noUpstream": "La rama actual '{0}' no tiene configurada ninguna rama de nivel superior.", + "openChange": "Abrir cambio", + "openFile": "Abrir archivo", + "publish": "Publicar", + "publishPickMessage": "Seleccionar un elemento remoto para publicar la rama '{0}':", + "pull": "Extraer", + "pullWithRebase": "Extraer (rebase)", + "push": "Insertar", + "refresh": "Actualizar", + "stageAllChanges": "Almacenar todo provisionalmente", + "stageChanges": "Almacenar provisionalmente", + "sync": "Sincronizar", + "synchronizing": "Sincronizando...", + "undoAllChanges": "Limpiar todo", + "undoChanges": "Limpiar", + "undoLastCommit": "Deshacer última confirmación", + "unstage": "Cancelar almacenamiento provisional", + "unstageAllChanges": "Cancelar almacenamiento provisional de todo" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/git/browser/gitServices.i18n.json b/i18n/esn/src/vs/workbench/parts/git/browser/gitServices.i18n.json new file mode 100644 index 00000000000..dc2d4396890 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "badConfigFile": "Git {0}", + "cancel": "Cancelar", + "cantOpen": "No se puede abrir este recurso de Git.", + "cantOpenResource": "No se puede abrir este recurso de Git.", + "changesFromIndex": "{0} - Cambios del índice", + "changesFromTree": "{0} - Cambios de {1}", + "checkNativeConsole": "Se ha producido un problema al ejecutar la operación GIT. Revise la salida o use una consola para comprobar el estado del repositorio.", + "configureUsernameEmail": "Configure su nombre de usuario de GIT y su correo electrónico.", + "gitIndexChanges": "{0} - Cambios del índice", + "gitIndexChangesRenamed": "{0} - Cambiado de nombre - Cambios en el índice", + "gitMergeChanges": "{0} - Combinar cambios", + "showOutput": "Mostrar salida", + "unmergedChanges": "Debe resolver los cambios sin combinar antes de confirmar sus cambios.", + "workingTreeChanges": "{0} - Cambios del árbol de trabajo" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json b/i18n/esn/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json new file mode 100644 index 00000000000..fb54cf00502 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "commitMessage": "Mensaje (presione {0} para confirmar)", + "commitMessageAriaLabel": "GIT: Escriba un mensaje de confirmación y presione {0} para confirmar", + "needMessage": "Especifique un mensaje de confirmación. Siempre puede presionar **{0}** para confirmar los cambios. Si hay cambios almacenados provisionalmente, solo se confirmarán dichos cambios; de lo contrario, se confirmarán todos los cambios.", + "nothingToCommit": "Cuando haya cambios para confirmar, escriba el mensaje de confirmación y presione **{0}** para confirmarlos. Si hay cambios almacenados provisionalmente, solo se confirmarán estos cambios; de lo contrario, se confirmarán todos los cambios.", + "showOutput": "Mostrar salida de GIT", + "treeAriaLabel": "Vista de cambios de GIT" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json b/i18n/esn/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json new file mode 100644 index 00000000000..2820a24e1fc --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "added-char": "A", + "allChanges": "Cambios", + "ariaLabelChanges": "Cambios, GIT", + "ariaLabelMerge": "Fusión mediante combinación, GIT", + "ariaLabelStagedChanges": "Cambios almacenados provisionalmente, GIT", + "copied-char": "C", + "deleted-char": "D", + "fileStatusAriaLabel": "El archivo {0} de la carpeta {1} tiene el estado: {2}, GIT", + "ignored-char": "!", + "mergeChanges": "Combinar cambios", + "modified-char": "M", + "outsideOfWorkspace": "Este archivo se encuentra fuera del área de trabajo actual.", + "renamed-char": "R", + "stagedChanges": "Cambios almacenados provisionalmente", + "title-conflict-added-by-them": "Conflicto: agregado por ellos", + "title-conflict-added-by-us": "Conflicto: agregado por nosotros", + "title-conflict-both-added": "Conflicto: agregado por los dos", + "title-conflict-both-deleted": "Conflicto: eliminado por los dos", + "title-conflict-both-modified": "Conflicto: modificado por los dos", + "title-conflict-deleted-by-them": "Conflicto: eliminado por ellos", + "title-conflict-deleted-by-us": "Conflicto: eliminado por nosotros", + "title-deleted": "Eliminado", + "title-ignored": "Omitido", + "title-index-added": "Agregado a índice", + "title-index-copied": "Copiado en índice", + "title-index-deleted": "Eliminado de índice", + "title-index-modified": "Modificado en índice", + "title-index-renamed": "Nombre modificado en índice", + "title-modified": "Modificado", + "title-untracked": "Sin seguimiento", + "untracked-char": "U" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json b/i18n/esn/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json new file mode 100644 index 00000000000..1fd65a1883a --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json @@ -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. +{ + "markdownPreviewNoFile": "Abrir un archivo Markdown antes de mostrar una vista previa.", + "openPreview": "Abrir vista previa", + "openPreviewSideBySide": "Abrir vista previa en el lateral", + "toggleMarkdownPreview": "Alternar vista previa" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/output/browser/outputActions.i18n.json b/i18n/esn/src/vs/workbench/parts/output/browser/outputActions.i18n.json new file mode 100644 index 00000000000..449946ff74f --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/output/browser/outputActions.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "clearOutput": "Borrar salida", + "switchToOutput.label": "Cambiar a salida", + "toggleOutput": "Alternar salida" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json b/i18n/esn/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json new file mode 100644 index 00000000000..af5071e8a48 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json @@ -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. +{ + "QuickCommandsAction.label": "Mostrar comandos del editor", + "actionNotEnabled": "El comando '{0}' no está habilitado en el contexto actual.", + "canNotRun": "El comando '{0}' no puede ejecutarse desde aquí.", + "commandLabel": "{0}:{1}", + "entryAriaLabel": "{0}, comandos", + "noCommandsMatching": "No hay comandos coincidentes", + "showTriggerActions": "Mostrar todos los comandos" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json b/i18n/esn/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json new file mode 100644 index 00000000000..e4e2ffb763b --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json @@ -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. +{ + "cannotRunGotoLine": "Abrir un archivo de texto antes de ir a una línea", + "gotoLine": "Ir a la línea...", + "gotoLineColumnLabel": "Ir a la línea {0} y la columna {1}", + "gotoLineHandlerAriaLabel": "Escriba el número de la línea a la que quiere navegar.", + "gotoLineLabel": "Ir a la línea {0}", + "gotoLineLabelEmpty": "Escriba el número de línea a la cual quiera navegar.", + "gotoLineLabelEmptyWithLimit": "Escriba un número de línea comprendido entre 1 y {0} a la cual quiera navegar." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json b/i18n/esn/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json new file mode 100644 index 00000000000..dff5874d0e7 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "_constructor": "constructores ({0})", + "array": "matrices ({0})", + "boolean": "booleanos ({0})", + "cannotRunGotoSymbol": "Abrir un archivo de texto antes de ir a un símbolo", + "cannotRunGotoSymbolInFile": "Lamentablemente, no tenemos información de símbolos para el archivo", + "class": "clases ({0})", + "entryAriaLabel": "{0}, símbolos", + "enum": "enumeraciones ({0})", + "file": "archivos ({0})", + "function": "funciones ({0})", + "gotoSymbol": "Ir al símbolo...", + "gotoSymbolHandlerAriaLabel": "Escriba para restringir los símbolos del editor activo.", + "interface": "interfaces ({0})", + "key": "claves ({0})", + "method": "métodos ({0})", + "modules": "módulos ({0})", + "namespace": "espacios de nombres ({0})", + "noSymbolsFound": "No se encontraron símbolos", + "noSymbolsMatching": "No hay símbolos coincidentes", + "number": "números ({0})", + "object": "objetos ({0})", + "package": "paquetes ({0})", + "property": "propiedades ({0})", + "rule": "reglas ({0})", + "string": "cadenas ({0})", + "symbols": "símbolos ({0})", + "variable": "variables ({0})" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json b/i18n/esn/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json new file mode 100644 index 00000000000..4d5cd0e964f --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "editorCommands": "comandos del editor", + "entryAriaLabel": "{0}, ayuda del selector", + "globalCommands": "comandos globales" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json b/i18n/esn/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json new file mode 100644 index 00000000000..09d7eb793ed --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json @@ -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. +{ + "fileAndTypeResults": "resultados de archivos y símbolos" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json b/i18n/esn/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json new file mode 100644 index 00000000000..ef8bb682945 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "entryAriaLabel": "{0}, selector de archivos", + "searchResults": "resultados de búsqueda" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json b/i18n/esn/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json new file mode 100644 index 00000000000..c55a4f518a6 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json @@ -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. +{ + "entryAriaLabel": "{0}, selector de símbolos", + "noSymbolsMatching": "No hay símbolos coincidentes", + "noSymbolsWithoutInput": "Escribir para buscar símbolos", + "symbols": "resultados de símbolos" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/search/browser/search.contribution.i18n.json b/i18n/esn/src/vs/workbench/parts/search/browser/search.contribution.i18n.json new file mode 100644 index 00000000000..7d1c5d07401 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/search/browser/search.contribution.i18n.json @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "exclude": "Configure patrones globales para excluir archivos y carpetas de las búsquedas. Hereda todos los patrones globales de la configuración file.exclude.", + "exclude.boolean": "El patrón global con el que se harán coincidir las rutas de acceso de los archivos. Establézcalo en true o false para habilitarlo o deshabilitarlo.", + "exclude.when": "Comprobación adicional de los elementos del mismo nivel de un archivo coincidente. Use $(nombreBase) como variable para el nombre de archivo que coincide.", + "findInFolder": "Buscar en carpeta", + "name": "Búsqueda", + "openAnythingHandlerDescription": "Abrir archivos y símbolos por nombre", + "openSymbolDescriptionNormal": "Abrir símbolo por nombre", + "searchConfigurationTitle": "Configuración de búsqueda", + "showSearchViewlet": "Mostrar búsqueda", + "showTriggerActions": "Mostrar todos los símbolos", + "view": "Ver" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json b/i18n/esn/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json new file mode 100644 index 00000000000..fbd201ce5f9 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ClearSearchResultsAction.label": "Borrar resultados de la búsqueda", + "CollapseAllAction.label": "Contraer", + "ConfigureGlobalExclusionsAction.label": "Abrir configuración", + "RefreshAction.label": "Actualizar", + "RemoveAction.label": "Quitar", + "SelectOrRemoveAction.removeLabel": "Quitar", + "SelectOrRemoveAction.selectLabel": "Seleccionar", + "ariaSearchResultsStatus": "La búsqueda devolvió {0} resultados en {1} archivos", + "defaultLabel": "entrada", + "fileMatchAriaLabel": "{0} coincidencias en el archivo {1} de la carpeta {2}, resultados de la búsqueda", + "findInFolder": "Buscar en carpeta", + "findPlaceHolder": "Presionar Entrar para buscar, Esc para cancelar", + "globLabel": "{0} cuando {1}", + "global.searchScope.folders": "archivos excluidos a través de la configuración", + "label.Search": "Búsqueda: Escriba el término de búsqueda y presione Entrar para buscar o Esc para cancelar", + "label.excludes": "Buscar patrones de exclusión", + "label.global.excludes": "Patrones de exclusión de búsqueda configurados", + "label.includes": "Buscar patrones de inclusión", + "moreSearch": "Alternar detalles de la búsqueda", + "noMatches": "no hay coincidencias", + "noResultsExcludes": "No se encontraron resultados con exclusión de '{0}' - ", + "noResultsFound": "No se encontraron resultados. Revise los ajustes de las exclusiones configuradas - ", + "noResultsIncludes": "No se encontraron resultados en '{0}' - ", + "noResultsIncludesExcludes": "No se encontraron resultados en '{0}' con exclusión de '{1}' - ", + "openSettings.message": "Abrir configuración", + "patternDescription": "Usar patrones globales", + "patternHelpInclude": "El patrón de coincidencia, por ejemplo, ****/*.js** para todos los archivos JavaScript o **miCarpeta/**** para encontrar coincidencias de esa carpeta con todos los elementos secundarios.\n\n**Referencia**:\n***** encuentra coincidencias con 0 o más caracteres\n**?** encuentra coincidencias con 1 carácter\n****** encuentra coincidencias con cero o más directorios\n**[a-z]** encuentra coincidencias con un rango de caracteres\n**{a,b}** encuentra coincidencias con cualquiera de los patrones", + "regexp.validationFailure": "La expresión coincide con todo", + "rerunSearch.message": "Buscar de nuevo", + "rerunSearchInAll.message": "Buscar de nuevo en todos los archivos", + "searchCanceled": "La búsqueda se canceló antes de poder encontrar resultados - ", + "searchMatch": "{0} coincidencia encontrada", + "searchMatches": "{0} coincidencias encontradas", + "searchMaxResultsWarning": "El conjunto de resultados solo contiene un subconjunto de todas las coincidencias. Sea más específico en la búsqueda para acotar los resultados.", + "searchResultAria": "{0}, resultado de la búsqueda", + "searchScope.excludes": "archivos para excluir", + "searchScope.includes": "archivos para incluir", + "treeAriaLabel": "Resultados de la búsqueda" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/services/message/browser/messageService.i18n.json b/i18n/esn/src/vs/workbench/services/message/browser/messageService.i18n.json new file mode 100644 index 00000000000..8301568e7d4 --- /dev/null +++ b/i18n/esn/src/vs/workbench/services/message/browser/messageService.i18n.json @@ -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. +{ + "closeMessages": "Cerrar mensajes de notificación" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json b/i18n/esn/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json new file mode 100644 index 00000000000..79e83f1eecc --- /dev/null +++ b/i18n/esn/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "pluginHostProcess.crash": "El host de extensiones finalizó inesperadamente. Recargue la ventana para recuperarlo.", + "pluginHostProcess.error": "Error del host de extensiones: {0}", + "pluginHostProcess.startupFail": "El host de extensiones no se inició en 10 segundos, lo cual puede ser un problema.", + "pluginHostProcess.startupFailDebug": "El host de extensiones no se inició en 10 segundos, puede que se detenga en la primera línea y necesita un depurador para continuar.", + "reloadWindow": "Recargar ventana" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/base/browser/ui/actionbar/actionbar.i18n.json b/i18n/fra/src/vs/base/browser/ui/actionbar/actionbar.i18n.json new file mode 100644 index 00000000000..4ecb2c803f4 --- /dev/null +++ b/i18n/fra/src/vs/base/browser/ui/actionbar/actionbar.i18n.json @@ -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. +{ + "titleLabel": "{0} ({1})" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/base/browser/ui/findinput/findInput.i18n.json b/i18n/fra/src/vs/base/browser/ui/findinput/findInput.i18n.json new file mode 100644 index 00000000000..a39b5d248f9 --- /dev/null +++ b/i18n/fra/src/vs/base/browser/ui/findinput/findInput.i18n.json @@ -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. +{ + "caseDescription": "Respecter la casse", + "defaultLabel": "entrée", + "regexDescription": "Utiliser une expression régulière", + "wordsDescription": "Mot entier" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/base/browser/ui/messagelist/messageList.i18n.json b/i18n/fra/src/vs/base/browser/ui/messagelist/messageList.i18n.json new file mode 100644 index 00000000000..eb5db67b546 --- /dev/null +++ b/i18n/fra/src/vs/base/browser/ui/messagelist/messageList.i18n.json @@ -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. +{ + "alertErrorMessage": "Erreur : {0}", + "alertInfoMessage": "Information : {0}", + "alertWarningMessage": "Avertissement : {0}", + "close": "Fermer", + "error": "Erreur", + "info": "Informations", + "warning": "Avertir" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json b/i18n/fra/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json new file mode 100644 index 00000000000..77b8358a1a3 --- /dev/null +++ b/i18n/fra/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingAudioSupport": "Désolé, la lecture des fichiers audio n'est pas prise en charge.", + "missingVideoSupport": "Désolé, la lecture des fichiers vidéo n'est pas prise en charge.", + "nativeBinaryError": "Impossible d'afficher le fichier dans l'éditeur. Soit il est binaire, soit il est très volumineux, soit il utilise un encodage de texte non pris en charge." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/base/browser/ui/toolbar/toolbar.i18n.json b/i18n/fra/src/vs/base/browser/ui/toolbar/toolbar.i18n.json new file mode 100644 index 00000000000..cedf573326b --- /dev/null +++ b/i18n/fra/src/vs/base/browser/ui/toolbar/toolbar.i18n.json @@ -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. +{ + "more": "Plus" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/base/common/errors.i18n.json b/i18n/fra/src/vs/base/common/errors.i18n.json new file mode 100644 index 00000000000..44cda82bc86 --- /dev/null +++ b/i18n/fra/src/vs/base/common/errors.i18n.json @@ -0,0 +1,25 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "error.connection.unknown": "Une erreur de connexion inconnue s'est produite. Soit vous n'êtes plus connecté à Internet, soit le serveur auquel vous êtes connecté est hors connexion.", + "error.connection.unknown.verbose": "Erreur de connexion inconnue ({0})", + "error.defaultMessage": "Une erreur inconnue s’est produite. Veuillez consulter le journal pour plus de détails.", + "error.http": "{0} (HTTP {1})", + "error.http.verbose": "{0} (HTTP {1} : {2})", + "error.moreErrors": "{0} ({1} erreurs au total)", + "error.permission": "Permission refusée", + "error.permission.verbose": "Permission refusée (HTTP {0})", + "illegalArgumentError": "Argument incorrect : {0}", + "illegalArgumentError2": "Argument incorrect", + "illegalStateError": "État incorrect : {0}", + "illegalStateError2": "État incorrect", + "loaderError": "Échec du chargement d'un fichier requis. Soit vous n'êtes plus connecté à Internet, soit le serveur auquel vous êtes connecté est hors connexion. Actualisez le navigateur pour réessayer.", + "loaderErrorNative": "Échec du chargement d'un fichier obligatoire. Redémarrez l'application pour réessayer. Détails : {0}", + "message": "{0}. Code d'erreur : {1}", + "nodeExceptionMessage": "Une erreur système s'est produite ({0})", + "notImplementedError": "Non implémenté", + "stackTrace.format": "{0} : {1}" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/base/common/json.i18n.json b/i18n/fra/src/vs/base/common/json.i18n.json new file mode 100644 index 00000000000..5dfbcda5445 --- /dev/null +++ b/i18n/fra/src/vs/base/common/json.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "CloseBraceExpected": "Accolade fermante attendue", + "CloseBracketExpected": "Crochet fermant attendu", + "ColonExpected": "Signe des deux points attendu", + "CommaExpected": "Virgule attendue", + "EOFExpected": "Fin de contenu attendue", + "InvalidNumberFormat": "Format de nombre non valide", + "PropertyExpected": "Nom de propriété attendu", + "UnknownSymbol": "Symbole non valide", + "ValeExpected": "Valeur attendue", + "ValueExpected": "Valeur attendue" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/base/common/severity.i18n.json b/i18n/fra/src/vs/base/common/severity.i18n.json new file mode 100644 index 00000000000..bcf945aa441 --- /dev/null +++ b/i18n/fra/src/vs/base/common/severity.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sev.error": "Erreur", + "sev.info": "Informations", + "sev.warning": "Avertissement" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/base/common/strings.i18n.json b/i18n/fra/src/vs/base/common/strings.i18n.json new file mode 100644 index 00000000000..3a16847f91e --- /dev/null +++ b/i18n/fra/src/vs/base/common/strings.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "diff.days": "{0} j", + "diff.days.month": "il y a un mois", + "diff.days.verbose": "Il y a {0} jours", + "diff.days.week": "il y a une semaine", + "diff.days.yesterday": "hier", + "diff.hour.verbose": "Il y a 1 heure", + "diff.hours": "{0} h", + "diff.hours.verbose": "Il y a {0} heures", + "diff.minute.verbose": "Il y 1 minute", + "diff.minutes": "{0} m", + "diff.minutes.verbose": "Il y a {0} minutes", + "diff.seconds": "{0} s", + "diff.seconds.verbose": "maintenant", + "format.date": "{0}-{1}-{2} {3}:{4}:{5}", + "format.time": "{0}:{1}:{2}" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/browser/view/viewImpl.i18n.json b/i18n/fra/src/vs/editor/browser/view/viewImpl.i18n.json new file mode 100644 index 00000000000..bf45d0601aa --- /dev/null +++ b/i18n/fra/src/vs/editor/browser/view/viewImpl.i18n.json @@ -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. +{ + "editorViewAccessibleLabel": "Contenu d'éditeur" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/common/config/commonEditorConfig.i18n.json b/i18n/fra/src/vs/editor/common/config/commonEditorConfig.i18n.json new file mode 100644 index 00000000000..47eddf59372 --- /dev/null +++ b/i18n/fra/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "autoClosingBrackets": "Contrôle si l'éditeur doit automatiquement fermer les crochets après les avoir ouverts", + "cursorBlinking": "Contrôle l'animation clignotante du curseur. Les valeurs acceptées sont 'blink', 'visible' et 'hidden'", + "cursorStyle": "Contrôle le style du curseur. Les valeurs acceptées sont 'block' et 'line'", + "editorConfigurationTitle": "Configuration de l'éditeur", + "folding": "Contrôle si le pliage de code est activé dans l'éditeur", + "fontFamily": "Contrôle la famille de polices.", + "fontLigatures": "Active les ligatures de la police", + "fontSize": "Contrôle la taille de police.", + "formatOnType": "Contrôle si l'éditeur doit automatiquement mettre en forme la ligne après la saisie", + "glyphMargin": "Contrôle la visibilité de la marge des glyphes", + "hideCursorInOverviewRuler": "Contrôle si le curseur doit être masqué dans la règle d'aperçu.", + "ignoreTrimWhitespace": "Contrôle si l'éditeur de différences affiche les changements liés aux espaces blancs de début ou de fin comme des différences", + "insertSpaces": "Contrôle si l'éditeur insère des espaces pour les tabulations. Valeur acceptées : \"auto\", true, false. Si la valeur est \"auto\", elle est déterminée à l'ouverture d'un fichier.", + "lineHeight": "Contrôle la hauteur de ligne.", + "lineNumbers": "Contrôle la visibilité des numéros de ligne", + "mouseWheelScrollSensitivity": "Multiplicateur à utiliser pour le 'deltaX' et le 'deltaY' des événements de défilement de la roulette de la souris", + "overviewRulerLanes": "Contrôle le nombre d'ornements pouvant s'afficher à la même position dans la règle d'aperçu", + "quickSuggestions": "Contrôle si les suggestions rapides doivent s'afficher ou non pendant la saisie", + "quickSuggestionsDelay": "Contrôle le délai en ms au bout duquel les suggestions rapides s'affichent", + "referenceInfos": "Contrôle si l'éditeur affiche des informations de référence pour les modes qui le prennent en charge", + "renderWhitespace": "Contrôle si l'éditeur doit restituer des espaces", + "roundedSelection": "Contrôle si les sélections ont des angles arrondis", + "rulers": "Colonnes où afficher les règles verticales", + "scrollBeyondLastLine": "Contrôle si l'éditeur défile au-delà de la dernière ligne", + "selectionHighlight": "Détermine si l'éditeur doit surligner les correspondances similaires à la sélection", + "sideBySide": "Contrôle si l'éditeur de différences affiche les différences en mode côte à côte ou inline", + "suggestOnTriggerCharacters": "Contrôle si les suggestions doivent s'afficher automatiquement durant la saisie de caractères de déclenchement", + "tabSize": "Contrôle la taille de rendu des tabulations parmi les caractères. Valeur acceptées : \"auto\", 2, 4, 6, etc. Si la valeur est \"auto\", elle est déterminée à l'ouverture d'un fichier.", + "wordSeparators": "Caractères utilisés comme séparateurs de mots durant la navigation ou les opérations basées sur les mots", + "wrappingColumn": "Contrôle le nombre de caractères après lequel l'éditeur renvoie à la ligne suivante. La valeur 0 active le renvoi en fonction de la largeur de la fenêtre d'affichage", + "wrappingIndent": "Contrôle le retrait des lignes renvoyées. La valeur peut être 'none', 'same' ou 'indent'." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/common/controller/cursor.i18n.json b/i18n/fra/src/vs/editor/common/controller/cursor.i18n.json new file mode 100644 index 00000000000..ffe54de6d83 --- /dev/null +++ b/i18n/fra/src/vs/editor/common/controller/cursor.i18n.json @@ -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. +{ + "corrupt.commands": "Exception inattendue pendant l'exécution de la commande." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/common/model/textModelWithTokens.i18n.json b/i18n/fra/src/vs/editor/common/model/textModelWithTokens.i18n.json new file mode 100644 index 00000000000..a9d6aa6864a --- /dev/null +++ b/i18n/fra/src/vs/editor/common/model/textModelWithTokens.i18n.json @@ -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. +{ + "mode.tokenizationSupportFailed": "Le mode a échoué lors de la création de jetons de l’entrée." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json b/i18n/fra/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json new file mode 100644 index 00000000000..7fdca4879a7 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.clipboard.copyLabel": "Copier", + "actions.clipboard.cutLabel": "Couper", + "actions.clipboard.pasteLabel": "Coller" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/codelens/browser/codelens.i18n.json b/i18n/fra/src/vs/editor/contrib/codelens/browser/codelens.i18n.json new file mode 100644 index 00000000000..f9cd5d00cdc --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/codelens/browser/codelens.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "n_references": "{0} références", + "one_reference": "1 référence", + "unknown_reference": "- références" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/comment/common/comment.i18n.json b/i18n/fra/src/vs/editor/contrib/comment/common/comment.i18n.json new file mode 100644 index 00000000000..e20ad6d3feb --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/comment/common/comment.i18n.json @@ -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. +{ + "comment.block": "Activer/désactiver le commentaire de bloc", + "comment.line": "Activer/désactiver le commentaire de ligne", + "comment.line.add": "Ajouter le commentaire de ligne", + "comment.line.remove": "Supprimer le commentaire de ligne" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json b/i18n/fra/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json new file mode 100644 index 00000000000..305f92b19f7 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json @@ -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. +{ + "action.showContextMenu.label": "Afficher le menu contextuel de l'éditeur" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/find/browser/find.i18n.json b/i18n/fra/src/vs/editor/contrib/find/browser/find.i18n.json new file mode 100644 index 00000000000..9d1710aaec3 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/find/browser/find.i18n.json @@ -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. +{ + "addSelectionToNextFindMatch": "Ajouter la sélection à la correspondance de recherche suivante", + "findNextMatchAction": "Rechercher suivant", + "findPreviousMatchAction": "Rechercher précédent", + "moveSelectionToNextFindMatch": "Déplacer la dernière sélection vers la correspondance de recherche suivante", + "selectAllOccurencesOfFindMatch": "Sélectionner toutes les occurrences des correspondances de la recherche", + "startFindAction": "Rechercher", + "startReplace": "Remplacer" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/find/browser/findWidget.i18n.json b/i18n/fra/src/vs/editor/contrib/find/browser/findWidget.i18n.json new file mode 100644 index 00000000000..544cb2635d2 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/find/browser/findWidget.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "label.closeButton": "Fermer", + "label.find": "Rechercher", + "label.matchesLocation": "{0} sur {1}", + "label.nextMatchButton": "Correspondance suivante", + "label.noResults": "Aucun résultat", + "label.previousMatchButton": "Correspondance précédente", + "label.replace": "Remplacer", + "label.replaceAllButton": "Remplacer tout", + "label.replaceButton": "Remplacer", + "label.toggleReplaceButton": "Changer le mode de remplacement", + "label.toggleSelectionFind": "Rechercher dans la sélection", + "placeholder.find": "Rechercher", + "placeholder.replace": "Remplacer", + "title.matchesCountLimit": "Seuls les 999 premiers résultats sont mis en surbrillance. Cependant, toutes les opérations de recherche sont appliquées à l'ensemble du texte." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/format/common/format.i18n.json b/i18n/fra/src/vs/editor/contrib/format/common/format.i18n.json new file mode 100644 index 00000000000..c34faf35bcb --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/format/common/format.i18n.json @@ -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. +{ + "formatAction.label": "Code de format" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json b/i18n/fra/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json new file mode 100644 index 00000000000..fc4ededdd76 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.goToDecl.label": "Atteindre la définition", + "actions.goToDeclToSide.label": "Ouvrir la définition sur le côté", + "actions.gotoTypeDecl.label": "Atteindre la définition de type", + "actions.previewDecl.label": "Définition de l'aperçu", + "multipleResults": "Cliquez pour afficher les {0} définitions trouvées." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json b/i18n/fra/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json new file mode 100644 index 00000000000..fc132bc9361 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json @@ -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. +{ + "markerAction.next.label": "Accéder à l'erreur ou l'avertissement suivant", + "markerAction.previous.label": "Accéder à l'erreur ou l'avertissement précédent", + "quickfix.multiple.label": "Corrections suggérées : ", + "quickfix.single.label": "Correction suggérée : " +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json b/i18n/fra/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json new file mode 100644 index 00000000000..237cac764d0 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json @@ -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. +{ + "modesContentHover.loading": "Chargement..." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json b/i18n/fra/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json new file mode 100644 index 00000000000..2fcef96c5de --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "InPlaceReplaceAction.next.label": "Remplacer par la valeur suivante", + "InPlaceReplaceAction.previous.label": "Remplacer par la valeur précédente" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json b/i18n/fra/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json new file mode 100644 index 00000000000..02b8774eb41 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lines.copyDown": "Copier la ligne en bas", + "lines.copyUp": "Copier la ligne en haut", + "lines.delete": "Supprimer la ligne", + "lines.indent": "Mettre en retrait la ligne", + "lines.insertAfter": "Insérer une ligne sous", + "lines.insertBefore": "Insérer une ligne au-dessus", + "lines.moveDown": "Déplacer la ligne vers le bas", + "lines.moveUp": "Déplacer la ligne vers le haut", + "lines.outdent": "Ajouter un retrait négatif à la ligne", + "lines.trimTrailingWhitespace": "Découper l'espace blanc de fin" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/links/browser/links.i18n.json b/i18n/fra/src/vs/editor/contrib/links/browser/links.i18n.json new file mode 100644 index 00000000000..11657ee64d2 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/links/browser/links.i18n.json @@ -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. +{ + "invalid.url": "URI non valide : impossible d'ouvrir {0}", + "label": "Ouvrir le lien", + "links.navigate": "Ctrl + clic pour suivre le lien", + "links.navigate.mac": "Cmd + clic pour suivre le lien" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json b/i18n/fra/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json new file mode 100644 index 00000000000..c4c9556e072 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "mutlicursor.insertAbove": "Ajouter un curseur au-dessus", + "mutlicursor.insertAtEndOfEachLineSelected": "Créer plusieurs curseurs à partir des lignes sélectionnées", + "mutlicursor.insertBelow": "Ajouter un curseur en dessous" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json b/i18n/fra/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json new file mode 100644 index 00000000000..b2cdf5bab5e --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json @@ -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. +{ + "parameterHints.trigger.label": "Indicateurs des paramètres Trigger" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json b/i18n/fra/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json new file mode 100644 index 00000000000..ec7eb9d7590 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json @@ -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. +{ + "quickfix.trigger.label": "Correctif rapide" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json b/i18n/fra/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json new file mode 100644 index 00000000000..c92d588f9d5 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickFixSelectionWidget.loading": "Chargement en cours...", + "QuickFixSelectionWidget.noSuggestions": "Pas de suggestions de correctif.", + "treeAriaLabel": "Correctif rapide" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json b/i18n/fra/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json new file mode 100644 index 00000000000..7f2cf09584c --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json @@ -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. +{ + "label": "Atteindre la ligne..." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json b/i18n/fra/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json new file mode 100644 index 00000000000..e773eff7c34 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "GotoLineAction.label": "Atteindre la ligne...", + "gotoLineActionInput": "Tapez un numéro de ligne, suivi par un signe deux-points facultatif et un numéro de colonne à atteindre", + "gotoLineLabelEmptyWithLineAndColumnLimit": "Tapez un numéro de colonne à atteindre entre 1 et {0}", + "gotoLineLabelEmptyWithLineLimit": "Tapez un numéro de ligne à atteindre entre 1 et {0}", + "gotoLineLabelValidLine": "Atteindre la ligne {0}", + "gotoLineLabelValidLineAndColumn": "Atteindre la ligne {0} et la colonne {1}" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json b/i18n/fra/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json new file mode 100644 index 00000000000..60608f70d47 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json @@ -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. +{ + "label": "Palette de commandes" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json b/i18n/fra/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json new file mode 100644 index 00000000000..925af32226f --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickCommandAction.label": "Palette de commandes", + "quickCommandActionInput": "Tapez le nom de l'action que vous voulez exécuter" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json b/i18n/fra/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json new file mode 100644 index 00000000000..57e6d0cdfef --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json @@ -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. +{ + "label": "Atteindre le symbole..." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json b/i18n/fra/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json new file mode 100644 index 00000000000..a1adb9ad99f --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json @@ -0,0 +1,20 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickOutlineAction.label": "Atteindre le symbole...", + "_constructor": "constructeurs ({0})", + "call": "appels ({0})", + "class": "classes ({0})", + "function": "fonctions ({0})", + "interface": "interfaces ({0})", + "method": "méthodes ({0})", + "modules": "modules ({0})", + "property": "propriétés ({0})", + "quickOutlineActionInput": "Tapez le nom de l'identificateur auquel vous voulez accéder", + "symbols": "symboles ({0})", + "variable": "variables ({0})", + "variable2": "variables ({0})" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json b/i18n/fra/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json new file mode 100644 index 00000000000..c0b90745e90 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -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. +{ + "labelLoading": "Chargement en cours...", + "noResults": "Aucun résultat", + "references.action.label": "Rechercher toutes les références", + "references.action.name": "Afficher les références" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json b/i18n/fra/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json new file mode 100644 index 00000000000..e796a53a810 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingPreviewMessage": "aucun aperçu n'est disponible", + "peekView.alternateTitle": "Références", + "referenceCount": "{0} référence", + "referencesCount": "{0} références", + "treeAriaLabel": "Références" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/rename/browser/rename2.i18n.json b/i18n/fra/src/vs/editor/contrib/rename/browser/rename2.i18n.json new file mode 100644 index 00000000000..c28f0d5501a --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/rename/browser/rename2.i18n.json @@ -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. +{ + "rename.label": "Symbole Renommer" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/rename/browser/renameModel.i18n.json b/i18n/fra/src/vs/editor/contrib/rename/browser/renameModel.i18n.json new file mode 100644 index 00000000000..9e0c282aa6e --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/rename/browser/renameModel.i18n.json @@ -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. +{ + "cannotLoadFile": "Impossible de charger le fichier {0}" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json b/i18n/fra/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json new file mode 100644 index 00000000000..69adc446797 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json @@ -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. +{ + "smartSelect.jumpBracket": "Atteindre le crochet" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json b/i18n/fra/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json new file mode 100644 index 00000000000..d815e36cd81 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "smartSelect.grow": "Développer la sélection", + "smartSelect.shrink": "Réduire la sélection" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/suggest/browser/suggest.i18n.json b/i18n/fra/src/vs/editor/contrib/suggest/browser/suggest.i18n.json new file mode 100644 index 00000000000..ce300ab5ae6 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/suggest/browser/suggest.i18n.json @@ -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. +{ + "suggest.trigger.label": "Suggestions pour Trigger" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json b/i18n/fra/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json new file mode 100644 index 00000000000..bd55d4ebac4 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json @@ -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. +{ + "goback": "Précédent", + "readMore": "En savoir plus...{0}", + "suggestWidget.loading": "Chargement en cours...", + "suggestWidget.noSuggestions": "Pas de suggestions." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json b/i18n/fra/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json new file mode 100644 index 00000000000..319a4e59398 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json @@ -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. +{ + "toggle.tabfocusmode": "Activer/désactiver l'utilisation de la touche Tab pour définir le focus" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json b/i18n/fra/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json new file mode 100644 index 00000000000..e7284c958c2 --- /dev/null +++ b/i18n/fra/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json @@ -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. +{ + "label.close": "Fermer" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/css/common/css.contribution.i18n.json b/i18n/fra/src/vs/languages/css/common/css.contribution.i18n.json new file mode 100644 index 00000000000..8b337ba85d0 --- /dev/null +++ b/i18n/fra/src/vs/languages/css/common/css.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "cssConfigurationTitle": "Configuration de CSS", + "lint": "Contrôle la validation CSS et les problèmes de gravité." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/css/common/cssWorker.i18n.json b/i18n/fra/src/vs/languages/css/common/cssWorker.i18n.json new file mode 100644 index 00000000000..aeef46148fa --- /dev/null +++ b/i18n/fra/src/vs/languages/css/common/cssWorker.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "css.quickfix.rename": "Renommer « {0} »", + "literal.fontface": "@font-face", + "literal.keyframes": "@keyframes {0}" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/css/common/parser/cssErrors.i18n.json b/i18n/fra/src/vs/languages/css/common/parser/cssErrors.i18n.json new file mode 100644 index 00000000000..2525fecc4ec --- /dev/null +++ b/i18n/fra/src/vs/languages/css/common/parser/cssErrors.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.colon": "deux-points attendus", + "expected.comma": "virgule attendue", + "expected.condt": "condition attendue", + "expected.dot": "point attendu", + "expected.expression": "expression attendue", + "expected.ident": "identifiant attendu", + "expected.lcurly": "{ attendue", + "expected.lparen": "( attendue", + "expected.lsquare": "[ attendu", + "expected.number": "nombre attendu", + "expected.operator": "opérateur attendu", + "expected.pagedirordecl": "directive ou déclaration de page attendue", + "expected.percentage": "pourcentage attendu", + "expected.propvalue": "valeur de propriété attendue", + "expected.rcurly": "} attendue", + "expected.rparent": ") attendue", + "expected.rsquare": "] attendu", + "expected.ruleorselector": "at-rule ou sélecteur attendu", + "expected.selector": "sélecteur attendu", + "expected.semicolon": "point-virgule attendu", + "expected.stringliteral": "littéral de chaîne attendu", + "expected.term": "terme attendu", + "expected.uri": "URI attendu", + "expected.uriorstring": "uri ou chaîne attendu", + "expected.varname": "nom de variable attendu", + "expected.varvalue": "valeur de variable attendue", + "unknown.atrule": "at-rule inconnu", + "unknown.keyword": "mot clé inconnu" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/css/common/services/intelliSense.i18n.json b/i18n/fra/src/vs/languages/css/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..f22a24fec60 --- /dev/null +++ b/i18n/fra/src/vs/languages/css/common/services/intelliSense.i18n.json @@ -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. +{ + "css.builtin.hsl": "Crée une couleur d'après les valeurs de teinte, de saturation et de luminosité.", + "css.builtin.hsla": "Crée une couleur d'après les valeurs de teinte, de saturation, de luminosité et alpha.", + "css.builtin.rgb": "Crée une couleur d'après les valeurs de rouge, de vert et de bleu.", + "css.builtin.rgba": "Crée une couleur d'après les valeurs de rouge, de vert, de bleu et alpha." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/css/common/services/lint.i18n.json b/i18n/fra/src/vs/languages/css/common/services/lint.i18n.json new file mode 100644 index 00000000000..5648ce01613 --- /dev/null +++ b/i18n/fra/src/vs/languages/css/common/services/lint.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "keyframes.standardrule.missing": "Toujours définir la règle standard '@keyframes' lors de la définition des images clés.", + "keyframes.vendorspecific.missing": "Toujours inclure toutes les règles spécifiques au fabricant : Absent : {0}", + "namelist.concatenated": "{0}, '{1}'", + "namelist.single": "'{0}'", + "property.standard.missing": "Définir également la propriété standard '{0}' pour la compatibilité", + "property.vendorspecific.missing": "Toujours inclure toutes les propriétés spécifiques au fabricant : Absent : {0}" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/css/common/services/lintRules.i18n.json b/i18n/fra/src/vs/languages/css/common/services/lintRules.i18n.json new file mode 100644 index 00000000000..9fc3429f0f0 --- /dev/null +++ b/i18n/fra/src/vs/languages/css/common/services/lintRules.i18n.json @@ -0,0 +1,26 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "enableValidation": "Active ou désactive toutes les validations", + "rule.avoidFloat": "N'utilisez pas 'float'. Les éléments Float peuvent fragiliser le code CSS qui est ainsi plus vulnérable si un aspect de la disposition change.", + "rule.avoidIdSelector": "Les sélecteurs ne doivent pas contenir d'ID, car ces règles sont trop fortement couplées au code HTML.", + "rule.avoidImportant": "N'utilisez pas !important. Cela indique que la spécificité de l'intégralité du code CSS est incorrecte et qu'il doit être refactorisé.", + "rule.colorFunction": "Nombre de paramètres incorrect", + "rule.duplicateDeclarations": "Ne pas utiliser de définitions de style en double", + "rule.emptyRuleSets": "Ne pas utiliser d'ensembles de règles vides", + "rule.fontFaceProperties": "la règle @font-face doit définir les propriétés 'src' et 'font-family'", + "rule.hexColor": "Les couleurs Hex doivent contenir trois ou six chiffres hex", + "rule.ieHack": "Les hacks IE ne sont nécessaires que si IE7 et versions antérieures sont pris en charge", + "rule.importDirective": "Les instructions d'importation ne sont pas chargées en parallèle", + "rule.propertyIgnoredDueToDisplay": "Propriété ignorée en raison de l'affichage. Par exemple, avec 'display: inline', les propriétés width, height, margin-top, margin-bottom et float sont sans effet", + "rule.standardvendorprefix.all": "Lors de l'utilisation d'un préfixe spécifique à un fournisseur, ajouter également la propriété standard", + "rule.universalSelector": "Le sélecteur universel (*) est connu pour sa lenteur", + "rule.unknownProperty": "Propriété inconnue.", + "rule.unknownVendorSpecificProperty": "Propriété spécifique à un fournisseur inconnue.", + "rule.vendorprefixes.all": "Lors de l'utilisation d'un préfixe spécifique à un fabricant, toujours inclure également toutes les propriétés spécifiques au fabricant", + "rule.withHeightAndBorderPadding": "Ne pas utiliser la largeur ou la hauteur avec une marge intérieure ou une bordure", + "rule.zeroWidthUnit": "Aucune unité requise pour zéro" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/javascript/common/javascript.contribution.i18n.json b/i18n/fra/src/vs/languages/javascript/common/javascript.contribution.i18n.json new file mode 100644 index 00000000000..2f80121aab7 --- /dev/null +++ b/i18n/fra/src/vs/languages/javascript/common/javascript.contribution.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "Toujours inclure tous les mots du document actif.", + "compilationSettings": "Contrôle le fonctionnement de la validation JavaScript.", + "jsConfigurationTitle": "Configuration de JavaScript", + "lint": "Contrôle divers aspects de la validation.", + "lint.comparisonOperatorsNotStrict": "Utilisez '!==' et '===' au lieu de '!=' et '=='.", + "lint.curlyBracketsMustNotBeOmitted": "Limitez l'utilisation des accolades.", + "lint.emptyBlocksWithoutComment": "Un bloc vide doit avoir un commentaire.", + "lint.forcedTypeConversion": "Ne redéclarez pas un type de variable par une affectation.", + "lint.functionsInsideLoops": "Fonction dans la boucle.", + "lint.missingSemicolon": "Point-virgule manquant.", + "lint.mixedTypesArithmetics": "N'utilisez des nombres que pour les opérations arithmétiques.", + "lint.newOnLowercaseFunctions": "Fonction avec nom en minuscules utilisée en tant que constructeur.", + "lint.newOnReturningFunctions": "Fonction avec instruction de retour utilisée en tant que constructeur.", + "lint.parametersDontMatchSignature": "Le paramètre ne correspond pas à une signature de fonction", + "lint.primitivesInInstanceOf": "N'utilisez pas instanceof avec des types primitifs.", + "lint.redeclaredVariables": "Ne redéclarez pas une variable en changeant son type.", + "lint.semicolonsInsteadOfBlocks": "Point-virgule à la place du bloc.", + "lint.tripleSlashReferenceAlike": "Recherche les références avec trois barres obliques incorrectes.", + "lint.undeclaredVariables": "N'utilisez pas de variable non déclarée.", + "lint.unknownModule": "Ne demandez pas un module inconnu.", + "lint.unknownProperty": "N'utilisez pas de propriété inconnue.", + "lint.unknownTypeOfResults": "Sortie inattendue de l'opérateur 'typeof'.", + "lint.unusedFunctions": "Fonction locale inutilisée.", + "lint.unusedVariables": "Variable locale inutilisée.", + "semanticValidation": "Exécuter des vérifications lint pour les fichiers JavaScript - remplace les paramètres validate.lint.*.", + "suggestSettings": "Contrôle le fonctionnement de JavaScript IntelliSense.", + "syntaxValidation": "Rechercher des erreurs de syntaxe dans les fichiers JavaScript.", + "useCodeSnippetsOnMethodSuggest": "Fonctions complètes avec leur signature de paramètre." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json b/i18n/fra/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json new file mode 100644 index 00000000000..2038056afc1 --- /dev/null +++ b/i18n/fra/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.bower.default": "Bower par défaut.json", + "json.bower.error.repoaccess": "Échec de la requête destinée au référentiel bower : {0}", + "json.bower.package.hover": "{0}" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json b/i18n/fra/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json new file mode 100644 index 00000000000..d681ba12071 --- /dev/null +++ b/i18n/fra/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.nugget.error.repoaccess": "Échec de la requête destinée au référentiel nuget : {0}", + "json.nugget.package.hover": "{0}", + "json.nugget.version.hover": "Dernière version : {0}", + "json.nugget.versiondescription.suggest": "Dernière version du package", + "json.project.default": "Projet par défaut.json" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/json/common/json.contribution.i18n.json b/i18n/fra/src/vs/languages/json/common/json.contribution.i18n.json new file mode 100644 index 00000000000..eb625fd1be2 --- /dev/null +++ b/i18n/fra/src/vs/languages/json/common/json.contribution.i18n.json @@ -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. +{ + "jsonConfiguration.fileMatch": "Modèle de fichier pouvant contenir '*' pour la recherche de correspondance lors de la résolution de fichiers JSON en schémas.", + "jsonConfiguration.fileMatches": "Tableau de modèles de fichiers pour la recherche de correspondance lors de la résolution de fichiers JSON en schémas.", + "jsonConfiguration.schema": "Définition du schéma pour l'URL indiquée. Le schéma doit être fourni uniquement pour éviter les accès à l'URL du schéma.", + "jsonConfiguration.schemaPath": "URL de schéma ou chemin relatif d'un schéma dans le répertoire actif", + "jsonConfiguration.schemas": "Associer les schémas aux fichiers JSON dans le projet actif", + "jsonConfigurationDescription": "Utilisé pour configurer les paramètres et schémas JSON.", + "jsonConfigurationTitle": "Configuration de JSON" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/json/common/json.i18n.json b/i18n/fra/src/vs/languages/json/common/json.i18n.json new file mode 100644 index 00000000000..faf81c76ef7 --- /dev/null +++ b/i18n/fra/src/vs/languages/json/common/json.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "array": "tableaux", + "boolean": "booléens", + "number": "nombres", + "object": "objets", + "string": "chaînes", + "undefined": "non défini" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/json/common/jsonIntellisense.i18n.json b/i18n/fra/src/vs/languages/json/common/jsonIntellisense.i18n.json new file mode 100644 index 00000000000..473508c8390 --- /dev/null +++ b/i18n/fra/src/vs/languages/json/common/jsonIntellisense.i18n.json @@ -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. +{ + "json.suggest.default": "Valeur par défaut" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/json/common/jsonSchemaService.i18n.json b/i18n/fra/src/vs/languages/json/common/jsonSchemaService.i18n.json new file mode 100644 index 00000000000..695cd379330 --- /dev/null +++ b/i18n/fra/src/vs/languages/json/common/jsonSchemaService.i18n.json @@ -0,0 +1,169 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "app.plugin.json.activationEvents": "Événements d'activation pour le plug-in", + "app.plugin.json.contributes": "Contributions de ce plug-in", + "app.plugin.json.contributes.language": "Contributions au langage du plug-in", + "app.plugin.json.contributes.language.aliases": "Alias de nom pour ce langage", + "app.plugin.json.contributes.language.extensions": "Extensions de fichier associées à ce langage", + "app.plugin.json.contributes.language.filenames": "Noms de fichier associés à ce langage", + "app.plugin.json.contributes.language.id": "ID de ce langage", + "app.plugin.json.dependencies": "Dépendances du plug-in", + "app.plugin.json.mainModule": "Chemin d'accès relatif au fichier JavaScript principal", + "app.plugin.json.pluginId": "ID unique du plug-in", + "app.plugin.json.scripts": "Scripts proposés par le plug-in", + "app.plugin.json.scripts.compile": "Ligne de commande pour compiler ce plug-in", + "bower.json.authors": "Liste des contributeurs au contenu du package.", + "bower.json.dependencies": "Dépendances qui sont spécifiées avec un simple hachage de nom de package pour un identificateur ou une URL compatible semver.", + "bower.json.description": "Permet d'identifier et de rechercher votre package avec une courte description.", + "bower.json.devDependencies": "Dépendances qui sont uniquement nécessaires pour le développement du package, p. ex., framework de test ou documentation de génération.", + "bower.json.exportsOverride": "Utilisé par une tâche grunt-bower-task pour spécifier des emplacements d'installation personnalisés.", + "bower.json.homepage": "URL pour en savoir davantage sur le package. Revient au projet GitHub s'il n'est pas spécifié et s'il s'agit d'un point de terminaison GitHub.", + "bower.json.ignore": "Liste de fichiers que Bower doit ignorer lors de l'installation de votre package.", + "bower.json.invalidPatternName": "Toute propriété commençant par _ est valide.", + "bower.json.keywords": "Utilisé dans la recherche par mot-clé. Il permet de découvrir plus facilement votre package sans connaître son nom.", + "bower.json.license": "Identificateur de licence SPDX ou chemin/URL d'une licence.", + "bower.json.main": "Principaux fichiers actifs nécessaires pour utiliser votre package.", + "bower.json.moduleType": "Types de modules que ce package expose", + "bower.json.packagename": "Nom de votre package.", + "bower.json.private": "S'il a la valeur True, il refusera de la publier. C'est une façon d'éviter la publication accidentelle de référentiels privés.", + "bower.json.repository": "Référentiel où se trouve le code source.", + "bower.json.resolutions": "Versions de dépendances pour la résolution automatique en cas de conflits entre les packages.", + "bower.json.title": "Schéma JSON pour les fichiers de configuration Bower", + "bower.json.version": "Numéro de version sémantique.", + "global.json.projects": "Liste de dossiers du projet relatifs à ce fichier", + "global.json.sources": "Liste de dossiers sources relatifs à ce fichier", + "global.json.title": "Schéma JSON pour les fichiers de configuration généraux d'ASP.NET", + "jsconfig.json.compilerOptions": "Indique au service de langage JavaScript comment valider des fichiers .js", + "jsconfig.json.compilerOptions.charset": "Jeu de caractères des fichiers d'entrée", + "jsconfig.json.compilerOptions.decorators": "Active la prise en charge expérimentale pour les éléments décoratifs ES7.", + "jsconfig.json.compilerOptions.diagnostics": "Affichez les informations de diagnostic.", + "jsconfig.json.compilerOptions.locale": "Paramètres régionaux à utiliser pour afficher les messages d'erreur. Exemple : fr-fr.", + "jsconfig.json.compilerOptions.mapRoot": "Spécifie l'emplacement dans lequel le débogueur doit localiser les fichiers de mappage plutôt que les emplacements générés", + "jsconfig.json.compilerOptions.module": "Génération de code de module à résoudre : 'commonjs', 'amd', 'system' ou 'umd'.", + "jsconfig.json.compilerOptions.noLib": "N'incluez pas le fichier bibliothèque par défaut (lib.d.ts).", + "jsconfig.json.compilerOptions.target": "Spécifiez la version cible ECMAScript : 'ES3' (par défaut), 'ES5' ou 'ES6' (expérimentale).", + "jsconfig.json.exclude": "Listez les fichiers et dossiers qui ne doivent pas être inclus. Cette propriété n'est pas honorée quand la propriété 'files' est présente.", + "jsconfig.json.files": "Si aucune propriété 'files' n'est présente dans un fichier jsconfig.json, le service de langage inclut par défaut tous les fichiers, le répertoire conteneur et les sous-répertoires. Quand une propriété 'files' est spécifiée, seuls ces fichiers sont inclus.", + "jsconfig.json.title": "Schéma JSON pour le fichier de configuration JavaScript", + "json.schema.unabletoload": "Impossible de charger le schéma depuis '{0}' : {1}.", + "package.json.bugs": "URL de l'utilitaire de suivi des problèmes de votre projet et/ou adresse électronique à laquelle signaler les problèmes. Ces éléments sont utiles pour les personnes qui rencontrent des problèmes avec votre package.", + "package.json.bugs.email": "Adresse e-mail à laquelle signaler les problèmes.", + "package.json.bugs.url": "URL de l'utilitaire de suivi des problèmes de votre projet.", + "package.json.bundleDependencies": "Tableau des noms de package qui seront inclus lors de la publication du package.", + "package.json.bundledDependencies": "Tableau des noms de package qui seront inclus lors de la publication du package.", + "package.json.config": "Un hachage 'config' peut être utilisé pour définir des paramètres de configuration utilisés dans les scripts de package qui sont conservés lors des mises à niveau.", + "package.json.contributors": "Liste des contributeurs à ce package.", + "package.json.dependency": "Les dépendances sont spécifiées avec un simple hachage de nom de package pour une plage de versions. La plage de versions est une chaîne avec un ou plusieurs descripteurs séparés par des espaces. Les dépendances peuvent également être identifiées avec un tarball ou une URL Git.", + "package.json.descr": "Cela permet aux utilisateurs de découvrir votre package, car il est répertorié dans 'npm search'.", + "package.json.description": "Configuration NPM pour ce package.", + "package.json.directories.bin": "Si vous spécifiez un répertoire 'bin', tous les fichiers dans ce dossier sont utilisés comme hachage'bin'.", + "package.json.directories.doc": "Placez les fichiers Markdown ici. Finalement, ils s'afficheront correctement, peut-être, un jour.", + "package.json.directories.example": "Placez les exemples de scripts ici. Un jour, la présentation sera peut-être plus intelligente.", + "package.json.directories.lib": "Indiquez aux utilisateurs où se trouve la majeure partie de votre bibliothèque. Aucune action spéciale d'aucune sorte n'est effectuée sur le dossier lib, mais ce sont des métainformations utiles.", + "package.json.directories.man": "Dossier rempli de pages man. Sugar pour générer un tableau 'man' en parcourant le dossier.", + "package.json.files": "Le champ 'files' est un tableau de fichiers à inclure dans votre projet. Si un dossier est nommé dans le tableau, les fichiers situés dans ce dossier seront également inclus.", + "package.json.homepage": "URL de la page d'accueil du projet.", + "package.json.keywords": "Cela permet aux utilisateurs de découvrir votre package, car il est répertorié dans 'npm search'.", + "package.json.license": "Vous devez indiquer une licence pour votre package afin que les utilisateurs connaissent les conditions d'utilisation et toutes les restrictions que vous avez définies.", + "package.json.licenses": "Vous devez indiquer une licence pour votre package afin que les utilisateurs connaissent les conditions d'utilisation et toutes les restrictions que vous avez définies.", + "package.json.main": "Le champ principal est un ID de module qui constitue le point d'entrée principal de votre programme.", + "package.json.maintainers": "Liste des personnes qui tiennent ce package à jour", + "package.json.man": "Spécifiez un fichier unique ou un tableau de noms de fichiers à mettre en place que le programme man peut rechercher.", + "package.json.name": "Nom du package.", + "package.json.person": "Personne qui a été impliquée dans la création ou la gestion de ce package", + "package.json.preferGlobal": "Si votre package est principalement une application en ligne de commande qui doit être installée globalement, définissez la valeur true pour afficher un avertissement si elle est installée en local.", + "package.json.private": "Si la valeur est true, npm refusera de le publier.", + "package.json.repository": "Spécifiez l'emplacement du code. Cela est utile pour les personnes qui veulent contribuer.", + "package.json.scripts": "Le membre 'scripts' est un hachage d'objet de commandes de script qui sont exécutées à différents moments du cycle de vie de votre package. La clé est l'événement du cycle de vie et la valeur est la commande à exécuter à ce stade.", + "package.json.underscore": "Toute propriété commençant par _ est valide.", + "package.json.version": "La version doit être analysable par node-semver, qui est fourni avec npm en tant que dépendance.", + "project.json.authors": "Auteur de l'application", + "project.json.bundleExclude": "Liste de fichiers à exclure de la sortie de publication (lot kpm).", + "project.json.code": "Modèle Glob pour spécifier tous les fichiers de code qui doivent être compilés. (type de données : chaîne ou tableau avec modèle(s) Glob). Exemple : [ 'Dossier1*.cs', 'Dossier2*.cs' ]", + "project.json.commands": "Commandes disponibles pour cette application", + "project.json.compilationOptions": "Options de compilation transférées à Roslyn", + "project.json.configurations": "Les configurations sont des groupes nommés de paramètres de compilation. Il existe 2 valeurs par défaut intégrées au runtime, à savoir 'Debug' et 'Release'.", + "project.json.dependencies": "Dépendances de l'application. Chaque entrée spécifie le nom et la version d'un package Nuget.", + "project.json.dependency.name": "Version de la dépendance.", + "project.json.dependency.type": "Type de la dépendance. Les dépendances de 'build' n'existent qu'au moment de la génération", + "project.json.description": "Description de l'application", + "project.json.exclude": "Modèle Glob pour indiquer tous les fichiers de code à exclure de la compilation. (type de données : chaîne ou tableau avec modèle(s) Glob).", + "project.json.frameworks": "Infrastructures cibles qui seront générées et dépendances spécifiques à la configuration.", + "project.json.preprocess": "Modèle Glob pour indiquer que tous les fichiers de code doivent être prétraités. (type de données : chaîne avec modèle Glob).", + "project.json.resources": "Modèle Glob pour indiquer tous les fichiers qui doivent être compilés comme ressources.", + "project.json.script": "Script ou scripts de ligne de commande.\r\rVariables disponibles :\r%project:Directory% - Répertoire du projet\r%project:Name% - Nom du projet\r%project:Version% - Version du projet", + "project.json.scripts": "Scripts à exécuter pendant les différentes phases.", + "project.json.shared": "Modèle Glob pour spécifier tous les fichiers de code à partager avec les projets dépendants. Exemple : [ 'Dossier1*.cs', 'Dossier2*.cs' ]", + "project.json.title": "Schéma JSON des fichiers ASP.NET project.json", + "project.json.version": "Version de l'application. Exemple : 1.2.0.0", + "project.json.webroot": "La spécification de la propriété webroot dans le fichier project.json spécifie la racine du serveur web (c'est-à-dire, dossier public). Dans Visual Studio, ce dossier sera utilisé à la racine IIS. Les fichiers statiques doivent être placés ici.", + "schema.json": "Décrit un fichier JSON à l'aide d'un schéma. Voir json-schema.org pour plus d'infos.", + "schema.json.$schema": "Schéma servant à la vérification de ce document.", + "schema.json.additionalItems": "Pour les tableaux, uniquement lorsque les éléments sont définis comme tableau. S'il s'agit d'un schéma, celui-ci valide les éléments après ceux spécifiés par le tableau d'éléments. Si la valeur est false, les éléments supplémentaires entraînent l'échec de la validation.", + "schema.json.additionalProperties": "Schéma ou booléen. S'il s'agit d'un schéma, il est utilisé pour valider toutes les propriétés non mises en correspondance par 'properties' ou 'patternProperties'. Si la valeur est false, toutes les propriétés non mises en correspondance par l'un ou l'autre entraînent l'échec du schéma.", + "schema.json.allOf": "Tableau de schémas qui doivent tous correspondre.", + "schema.json.anyOf": "Tableau de schémas dont au moins un doit correspondre.", + "schema.json.default": "Valeur par défaut. Utilisée par les suggestions.", + "schema.json.definitions": "Non utilisé pour la validation. Placez ici les sous-schémas que vous voulez référencer inline avec $ref", + "schema.json.dependencies": "Mappage des noms de propriétés à un tableau de noms de propriétés ou un schéma. Un tableau de noms de propriétés implique que la propriété nommée dans la clé nécessite que les propriétés du tableau soient présentes dans l'objet pour être valide. Si la valeur est un schéma, celui-ci est uniquement appliqué à l'objet si la propriété dans la clé existe sur l'objet.", + "schema.json.description": "Description longue de l'élément. Utilisée dans les menus sensitifs et les suggestions.", + "schema.json.enum": "Ensemble des valeurs littérales valides", + "schema.json.exclusiveMaximum": "Rend la propriété maximum exclusive.", + "schema.json.exclusiveMininum": "Rend la propriété minimum exclusive.", + "schema.json.id": "Identificateur unique du schéma.", + "schema.json.items": "Pour les tableaux. Peut être soit un schéma en fonction duquel valider chaque élément, soit un tableau de schémas en fonction duquel valider chaque élément dans l'ordre (le premier schéma valide le premier élément, le deuxième schéma valide le deuxième élément, etc.).", + "schema.json.maxItems": "Nombre maximum d'éléments pouvant figurer dans un tableau (inclusif).", + "schema.json.maxLength": "Longueur maximum d'une chaîne.", + "schema.json.maxProperties": "Nombre maximum de propriétés d'un objet (inclusif).", + "schema.json.maximum": "Valeur numérique maximum, inclusive par défaut.", + "schema.json.minItems": "Nombre minimum d'éléments pouvant figurer dans un tableau (inclusif).", + "schema.json.minLength": "Longueur minimum d'une chaîne.", + "schema.json.minProperties": "Nombre minimum de propriétés d'un objet (inclusif).", + "schema.json.minimum": "Valeur numérique minimum, inclusive par défaut.", + "schema.json.multipleOf": "Nombre qui doit diviser parfaitement la valeur actuelle (sans reste)", + "schema.json.not": "Schéma qui ne doit pas correspondre.", + "schema.json.oneOf": "Tableau de schémas, dont exactement un doit correspondre.", + "schema.json.pattern": "Expression régulière à mettre en correspondance avec la chaîne. Elle n'est pas implicitement ancrée.", + "schema.json.patternProperties": "Mappage d'expressions régulières sur les noms de propriété avec les schémas des propriétés correspondantes.", + "schema.json.properties": "Mappage des noms de propriété avec les schémas de chaque propriété.", + "schema.json.required": "Tableau de chaînes qui répertorie les noms de toutes les propriétés requises sur cet objet.", + "schema.json.title": "Titre descriptif de l'élément. ", + "schema.json.type": "Chaîne d'un des types de schéma de base (nombre, entier, Null, tableau, objet, booléen ou chaîne) ou tableau de chaînes spécifiant un sous-ensemble de ces types.", + "schema.json.uniqueItems": "Si tous les éléments du tableau doivent être uniques. La valeur par défaut est false.", + "snippetSchema.json": "Configuration de l'extrait de code utilisateur", + "snippetSchema.json.body": "Contenu de l'extrait de code. Utilisez '${id}', '${id:label}', '${1:label}' pour les variables, et '$0', '$1' pour les positions du curseur", + "snippetSchema.json.description": "Description de l'extrait de code.", + "snippetSchema.json.prefix": "Préfixe à utiliser durant la sélection de l'extrait de code dans IntelliSense", + "tsconfig.json.compilerOptions": "Indique au compilateur TypeScript comment compiler les fichiers .ts", + "tsconfig.json.compilerOptions.charset": "Jeu de caractères des fichiers d'entrée", + "tsconfig.json.compilerOptions.declaration": "Génère les fichiers d.ts correspondants.", + "tsconfig.json.compilerOptions.diagnostics": "Affichez les informations de diagnostic.", + "tsconfig.json.compilerOptions.emitBOM": "Émettez une marque d'ordre d'octet (BOM) UTF-8 au début des fichiers de sortie.", + "tsconfig.json.compilerOptions.inlineSourceMap": "Émettez un seul fichier avec des mappages de sources au lieu d'avoir un fichier distinct.", + "tsconfig.json.compilerOptions.inlineSources": "Émettez la source aux côtés des mappages de sources dans un fichier unique. Nécessite que --inlineSourceMap soit défini.", + "tsconfig.json.compilerOptions.listFiles": "Imprimez les noms des fichiers faisant partie de la compilation.", + "tsconfig.json.compilerOptions.locale": "Paramètres régionaux à utiliser pour afficher les messages d'erreur. Exemple : fr-fr.", + "tsconfig.json.compilerOptions.mapRoot": "Spécifie l'emplacement dans lequel le débogueur doit localiser les fichiers de mappage plutôt que les emplacements générés", + "tsconfig.json.compilerOptions.module": "Spécifiez la génération de code de module : 'CommonJS', 'Amd', 'System' ou 'UMD'.", + "tsconfig.json.compilerOptions.newLine": "Spécifie la fin de la séquence de ligne à utiliser durant l'émission des fichiers : 'CRLF' (dos) ou 'LF' (unix).", + "tsconfig.json.compilerOptions.noEmit": "Ne pas émettre de sortie.", + "tsconfig.json.compilerOptions.noEmitHelpers": "Ne générez pas de fonctions d'assistance personnalisées comme __extends dans la sortie compilée.", + "tsconfig.json.compilerOptions.noEmitOnError": "N'émettez pas de sorties si des erreurs de vérification de type ont été signalées.", + "tsconfig.json.compilerOptions.noImplicitAny": "Avertit en cas d'expressions et de déclarations possédant un type 'any' implicite.", + "tsconfig.json.compilerOptions.noLib": "N'incluez pas le fichier bibliothèque par défaut (lib.d.ts).", + "tsconfig.json.compilerOptions.out": "Concaténer la sortie et l'émettre vers un seul fichier.", + "tsconfig.json.compilerOptions.outDir": "Rediriger la structure de sortie vers le répertoire.", + "tsconfig.json.compilerOptions.preserveConstEnums": "Ne pas effacer les déclarations d'enum const dans le code généré.", + "tsconfig.json.compilerOptions.removeComments": "Ne pas publier de commentaires dans la sortie.", + "tsconfig.json.compilerOptions.rootDir": "Spécifie le répertoire racine des fichiers d'entrée. Utilisé pour contrôler la structure de répertoires de sortie avec --outDir.", + "tsconfig.json.compilerOptions.sourceMap": "Génère le fichier '.map' correspondant.", + "tsconfig.json.compilerOptions.sourceRoot": "Spécifie l'emplacement dans lequel le débogueur doit localiser les fichiers TypeScript plutôt que les emplacements source.", + "tsconfig.json.compilerOptions.suppressImplicitAnyIndexErrors": "Supprimer les erreurs noImplicitAny pour les objets d'indexation auxquels il manque des signatures d'index.", + "tsconfig.json.compilerOptions.target": "Spécifiez la version cible ECMAScript : 'ES3' (par défaut), 'ES5' ou 'ES6' (expérimentale).", + "tsconfig.json.files": "Si aucune propriété 'files' n'est présente dans un tsconfig.json, le compilateur inclut par défaut tous les fichiers, le répertoire contenant et les sous-répertoires. Quand une propriété 'files' est spécifiée, seuls ces fichiers sont inclus.", + "tsconfig.json.title": "Schéma JSON pour le fichier de configuration du compilateur TypeScript" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/json/common/parser/jsonParser.i18n.json b/i18n/fra/src/vs/languages/json/common/parser/jsonParser.i18n.json new file mode 100644 index 00000000000..e8ea94c3c28 --- /dev/null +++ b/i18n/fra/src/vs/languages/json/common/parser/jsonParser.i18n.json @@ -0,0 +1,44 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ColonExpected": "Signe des deux points attendu", + "DisallowedExtraPropWarning": "La propriété {0} n'est pas autorisée", + "DoubleQuotesExpected": "Les clés de propriété doivent être entre guillemets doubles", + "DuplicateKeyWarning": "Clé d'objet en double", + "End of file expected": "Fin de fichier attendue", + "ExpectedCloseBrace": "Virgule ou accolade fermante attendue", + "ExpectedCloseBracket": "Virgule ou crochet fermant attendu", + "Invalid symbol": "Littéral, tableau ou objet JSON attendu", + "InvalidEscapeCharacter": "Caractère d'échappement non valide dans la chaîne", + "InvalidNumberFormat": "Format de nombre non valide", + "InvalidUnicode": "Séquence unicode non valide dans la chaîne", + "MaxPropWarning": "L'objet a plus de propriétés que la limite {0}", + "MinPropWarning": "L'objet a moins de propriétés que le nombre requis {0}", + "MissingRequiredPropWarning": "Propriété manquante \"{0}\"", + "PropertyExpected": "Propriété attendue", + "RequiredDependentPropWarning": "La propriété {0} requise par la propriété {1} est manquante pour l'objet", + "UnexpectedEndOfComment": "Fin de commentaire inattendue", + "UnexpectedEndOfNumber": "Fin de nombre inattendue", + "UnexpectedEndOfString": "Fin de chaîne inattendue", + "ValueExpected": "Valeur attendue", + "additionalItemsWarning": "Le tableau comporte trop d'éléments selon le schéma. {0} maximum sont attendus", + "enumWarning": "La valeur n'est pas acceptée. Valeurs valides : {0}", + "exclusiveMaximumWarning": "La valeur est supérieure au maximum exclusif {0}", + "exclusiveMinimumWarning": "La valeur est inférieur au minimum exclusif {0}", + "maxItemsWarning": "Le tableau contient trop d'éléments. {0} éléments au maximum sont attendus", + "maxLengthWarning": "La chaîne est plus courte que la longueur maximum", + "maximumWarning": "La valeur est supérieure au maximum {0}", + "minItemsWarning": "Le tableau ne contient pas assez d'éléments. {0} minimum sont attendus", + "minLengthWarning": "La chaîne est plus courte que la longueur minimum", + "minimumWarning": "La valeur est inférieure au minimum {0}", + "multipleOfWarning": "La valeur n'est pas divisible par {0}", + "notSchemaWarning": "Correspond à un schéma non autorisé.", + "oneOfWarning": "Correspond à plusieurs schémas alors qu'un seul doit exister pour la validation.", + "patternWarning": "La chaîne ne correspond pas au modèle \"{0}\"", + "typeArrayMismatchWarning": "Type incorrect. {0} était attendu.", + "typeMismatchWarning": "Type incorrect. \"{0}\" était attendu", + "uniqueItemsWarning": "Le tableau comporte des doublons" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/less/common/less.contribution.i18n.json b/i18n/fra/src/vs/languages/less/common/less.contribution.i18n.json new file mode 100644 index 00000000000..83ff3975de0 --- /dev/null +++ b/i18n/fra/src/vs/languages/less/common/less.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lessConfigurationTitle": "Configuration LESS", + "lessLint": "Contrôle la validation LESS et les problèmes de gravité." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/less/common/services/intelliSense.i18n.json b/i18n/fra/src/vs/languages/less/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..492b8aa944b --- /dev/null +++ b/i18n/fra/src/vs/languages/less/common/services/intelliSense.i18n.json @@ -0,0 +1,60 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "less.builtin.abs": "valeur absolue d'un nombre", + "less.builtin.acos": "arccosinus - inverse de la fonction cosinus", + "less.builtin.alpha": "retourne le canal `alpha` de `@color`", + "less.builtin.argb": "crée un #AARRVVBB", + "less.builtin.asin": "arcsinus - inverse de la fonction sinus", + "less.builtin.atan": "arctangente - inverse de la fonction tangente", + "less.builtin.blue": "retourne le canal `bleu` de `@color`", + "less.builtin.ceil": "arrondit à l'entier supérieur", + "less.builtin.color": "analyse une chaîne pour obtenir une couleur", + "less.builtin.contrast": "retourne `@darkcolor` si `@color1 is> 43% luma` sinon retourne `@lightcolor`, voir remarques", + "less.builtin.convert": "convertit des nombres d'un type à un autre", + "less.builtin.cos": "fonction cosinus", + "less.builtin.darken": "retourne '@color' à 10 % de points plus sombres", + "less.builtin.data-uri": "intègre une ressource et revient à `url()`", + "less.builtin.desaturate": "retourne '@color' à 10 % de points moins saturés", + "less.builtin.e": "contenu de chaîne d'échappement", + "less.builtin.escape": "L'URL encode une chaîne", + "less.builtin.extract": "retourne une valeur à la position spécifiée dans la liste", + "less.builtin.fade": "retourne `@color` avec 50 % de transparence", + "less.builtin.fadein": "retourne '@color' à 10 % de points moins transparents", + "less.builtin.fadeout": "retourne '@color' à 10 % de points plus transparents", + "less.builtin.floor": "arrondit à l'entier inférieur", + "less.builtin.green": "retourne le canal `vert` de `@color`", + "less.builtin.greyscale": "retourne une couleur grise désaturée à 100 %", + "less.builtin.hsl": "crée une couleur", + "less.builtin.hsla": "crée une couleur", + "less.builtin.hsv": "crée une couleur", + "less.builtin.hsva": "crée une couleur", + "less.builtin.hsvhue": "retourne le canal `teinte` de `@color` dans l'espace TSV", + "less.builtin.hsvsaturation": "retourne le canal `saturation` de `@color` dans l'espace TSV", + "less.builtin.hsvvalue": "retourne le canal `valeur` de `@color` dans l'espace TSV", + "less.builtin.hue": "retourne le canal `teinte` de `@color` dans l'espace TSL", + "less.builtin.length": "retourne le nombre d'éléments dans une liste de valeurs", + "less.builtin.lighten": "retourne '@color' à 10 % de points plus clairs", + "less.builtin.lightness": "retourne le canal `luminosité` de `@color` dans l'espace TSL", + "less.builtin.luma": "retourne la valeur `luma` (luminosité perçue) de `@color`", + "less.builtin.max": "retourne la ou les valeurs les plus faibles", + "less.builtin.min": "retourne la ou les valeurs les plus faibles", + "less.builtin.mix": "retourne un mélange de `@color1` et de `@color2`", + "less.builtin.mod": "premier argument coefficient second argument", + "less.builtin.percentage": "convertit en pourcentage, par ex. 0,5 > 50 %", + "less.builtin.pi": "retourne pi", + "less.builtin.pow": "premier argument élevé à la puissance du second argument", + "less.builtin.red": "retourne le canal `rouge` de `@color`", + "less.builtin.replace": "remplacement de chaîne", + "less.builtin.round": "arrondit un nombre à un nombre de décimales", + "less.builtin.saturate": "retourne '@color' à 10 % de points plus saturés", + "less.builtin.saturation": "retourne le canal `saturation` de `@color` dans l'espace TSL", + "less.builtin.sin": "fonction sinus", + "less.builtin.spin": "retourne `@color` avec 10 degrés de teinte en plus", + "less.builtin.sqrt": "calcule la racine carrée d'un nombre", + "less.builtin.tan": "fonction tangente", + "less.builtin.unit": "supprime ou modifie l'unité d'une dimension" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/markdown/common/markdown.contribution.i18n.json b/i18n/fra/src/vs/languages/markdown/common/markdown.contribution.i18n.json new file mode 100644 index 00000000000..165a9c0907d --- /dev/null +++ b/i18n/fra/src/vs/languages/markdown/common/markdown.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "markdownConfigurationTitle": "Configuration de l'aperçu de texte", + "styles": "Une liste d'URL ou de chemins d'accès locaux vers les feuilles de styles CSS à utiliser à partir de l'aperçu de texte." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/sass/common/parser/sassErrors.i18n.json b/i18n/fra/src/vs/languages/sass/common/parser/sassErrors.i18n.json new file mode 100644 index 00000000000..70a0fcd5957 --- /dev/null +++ b/i18n/fra/src/vs/languages/sass/common/parser/sassErrors.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.from": "'from' attendu", + "expected.in": "'in' attendu", + "expected.through": "'through' ou 'to' attendu" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/sass/common/sass.contribution.i18n.json b/i18n/fra/src/vs/languages/sass/common/sass.contribution.i18n.json new file mode 100644 index 00000000000..3ccb18cf21d --- /dev/null +++ b/i18n/fra/src/vs/languages/sass/common/sass.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sassConfigurationTitle": "Configuration Sass", + "sassLint": "Contrôle la validation Sass et les problèmes de gravité." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/sass/common/services/intelliSense.i18n.json b/i18n/fra/src/vs/languages/sass/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..90407e5f002 --- /dev/null +++ b/i18n/fra/src/vs/languages/sass/common/services/intelliSense.i18n.json @@ -0,0 +1,81 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sass.builtin.abs": "Retourne la valeur absolue d'un nombre.", + "sass.builtin.adjust-color": "Augmente ou réduit un ou plusieurs composants d'une couleur.", + "sass.builtin.adjust-hue": "Modifie la teinte d'une couleur.", + "sass.builtin.alpha": "Obtient le composant opacité d'une couleur.", + "sass.builtin.append": "Ajoute une seule valeur à la fin d'une liste.", + "sass.builtin.blue": "Obtient le composant bleu d'une couleur.", + "sass.builtin.call": "Appelle une fonction Sass de manière dynamique.", + "sass.builtin.ceil": "Arrondit un nombre au nombre entier suivant.", + "sass.builtin.change-color": "Modifie une ou plusieurs propriétés d'une couleur.", + "sass.builtin.comparable": "Indique si deux nombres peuvent être additionnés, soustraits ou comparés.", + "sass.builtin.complement": "Retourne le complément d'une couleur.", + "sass.builtin.darken": "Rend une couleur plus sombre.", + "sass.builtin.desaturate": "Rend une couleur moins saturée.", + "sass.builtin.fade-in": "Rend une couleur plus opaque.", + "sass.builtin.feature-exists": "Indique si une fonctionnalité existe dans l'exécution Sass en cours.", + "sass.builtin.floor": "Arrondit un nombre au nombre entier précédent.", + "sass.builtin.function-exists": "Indique si une fonction portant le nom donné existe.", + "sass.builtin.global-variable-exists": "Indique si une variable portant le nom donné existe dans l'étendue globale.", + "sass.builtin.grayscale": "Convertit une couleur en nuances de gris.", + "sass.builtin.green": "Obtient le composant vert d'une couleur.", + "sass.builtin.hue": "Obtient le composant teinte d'une couleur.", + "sass.builtin.ie-hex-str": "Convertit une couleur dans le format compris par les filtres IE.", + "sass.builtin.index": "Retourne la position d'une valeur dans une liste.", + "sass.builtin.inspect": "Retourne la représentation sous forme de chaîne d'une valeur comme elle serait représentée dans Sass.", + "sass.builtin.invert": "Retourne l'inverse d'une couleur.", + "sass.builtin.is-superselector": "Indique si $super correspond à tous les éléments auxquels correspond $sub, voire plus.", + "sass.builtin.join": "Rassemble deux listes en une.", + "sass.builtin.keywords": "Retourne les mots clés passés à une fonction qui prend des arguments de variable.", + "sass.builtin.length": "Retourne la longueur d'une liste.", + "sass.builtin.lighten": "Rend une couleur plus claire.", + "sass.builtin.lightness": "Obtient le composant luminosité d'une couleur.", + "sass.builtin.list-separator": "Retourne le séparateur d'une liste.", + "sass.builtin.map-get": "Retourne la valeur, incluse dans un mappage, associée à une clé donnée.", + "sass.builtin.map-has-key": "Indique si un mappage comporte une valeur associée à une clé donnée.", + "sass.builtin.map-keys": "Retourne la liste de toutes les clés incluses dans un mappage.", + "sass.builtin.map-merge": "Fusionne deux mappages pour en créer un nouveau.", + "sass.builtin.map-remove": "Retourne un nouveau mappage avec les clés supprimées.", + "sass.builtin.map-values": "Retourne la liste de toutes les valeurs incluses dans un mappage.", + "sass.builtin.max": "Recherche le nombre maximal dans plusieurs nombres.", + "sass.builtin.min": "Recherche le nombre minimal dans plusieurs nombres.", + "sass.builtin.mix": "Mélange deux couleurs ensemble.", + "sass.builtin.mixin-exists": "Indique si un mixin portant le nom donné existe.", + "sass.builtin.nth": "Retourne un élément spécifique d'une liste.", + "sass.builtin.opacify": "Rend une couleur plus opaque.", + "sass.builtin.percentage": "Convertit un nombre sans unité en pourcentage.", + "sass.builtin.quote": "Ajoute des guillemets à une chaîne.", + "sass.builtin.random": "Retourne un nombre aléatoire.", + "sass.builtin.red": "Obtient le composant rouge d'une couleur.", + "sass.builtin.rgba": "Modifie le composant alpha d'une couleur.", + "sass.builtin.round": "Arrondit un nombre au nombre entier le plus proche.", + "sass.builtin.saturate": "Rend une couleur plus saturée.", + "sass.builtin.saturation": "Obtient le composant saturation d'une couleur.", + "sass.builtin.scale-color": "Met à l'échelle une ou plusieurs propriétés d'une couleur de manière fluide.", + "sass.builtin.selector-append": "Ajoute des sélecteurs à chacun sans espaces entre eux.", + "sass.builtin.selector-extend": "Étend $extendee avec $extender dans $selector.", + "sass.builtin.selector-nest": "Imbrique le sélecteur au-dessous de l'autre comme dans la feuille de style.", + "sass.builtin.selector-parse": "Analyse un sélecteur dans le format retourné par &.", + "sass.builtin.selector-replace": "Remplace $original par $replacement dans $selector.", + "sass.builtin.selector-unify": "Unifie deux sélecteurs pour en produire un qui correspond aux éléments associés aux deux.", + "sass.builtin.set-nth": "Remplace le nième élément dans une liste.", + "sass.builtin.simple-selectors": "Retourne les sélecteurs simples qui comprennent un sélecteur composé.", + "sass.builtin.str-index": "Retourne l'index de la première occurrence de $substring dans $string.", + "sass.builtin.str-insert": "Insère $insert dans $string à l'index $index.", + "sass.builtin.str-length": "Retourne le nombre de caractères dans une chaîne.", + "sass.builtin.str-slice": "Extrait une sous-chaîne de $string.", + "sass.builtin.to-lower-case": "Convertit une chaîne en minuscules.", + "sass.builtin.to-upper-case": "Convertit une chaîne en majuscules.", + "sass.builtin.transparentize": "Rend une couleur plus transparente.", + "sass.builtin.type-of": "Retourne le type d'une valeur.", + "sass.builtin.unit": "Retourne la ou les unités associées à un nombre.", + "sass.builtin.unitless": "Indique si un nombre a des unités.", + "sass.builtin.unquote": "Supprime les guillemets d'une chaîne.", + "sass.builtin.variable-exists": "Indique si une variable portant le nom donné existe dans l'étendue actuelle.", + "sass.builtin.zip": "Combine plusieurs listes en une seule liste multidimensionnelle." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/typescript/common/features/quickFix.i18n.json b/i18n/fra/src/vs/languages/typescript/common/features/quickFix.i18n.json new file mode 100644 index 00000000000..0e2469cf397 --- /dev/null +++ b/i18n/fra/src/vs/languages/typescript/common/features/quickFix.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "typescript.quickfix.addAsGlobal": "Marquer '{0}' comme global", + "typescript.quickfix.rename": "Renommer « {0} »", + "typescript.quickfix.typeDefinitions": "Télécharger la définition de type {0}" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/typescript/common/lint/lint.i18n.json b/i18n/fra/src/vs/languages/typescript/common/lint/lint.i18n.json new file mode 100644 index 00000000000..a00b89ee371 --- /dev/null +++ b/i18n/fra/src/vs/languages/typescript/common/lint/lint.i18n.json @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "javascript.comparisonOperatorNotStrict": "Utilisez '!==' et '===' au lieu de '!=' et '=='.", + "javascript.functionInsideLoop": "Fonction dans la boucle.", + "javascript.missingSemicolon": "Point-virgule manquant.", + "javascript.newOnLowercaseFunctions": "Fonction avec nom en minuscules utilisée en tant que constructeur.", + "javascript.reservedKeyword": "N'utilisez pas de mots clés réservés.", + "javascript.semicolonInsteadOfBlock": "Point-virgule à la place du bloc.", + "javascript.typeofCannotBeCompared": "Sortie inattendue de l'opérateur 'typeof'.", + "javascript.typescriptSpecific": "N'utilisez pas de construction de langage spécifique à TypeScript en JavaScript.", + "layout.curlyBracketsMustNotBeOmitted": "Limitez l'utilisation des accolades.", + "layout.emptyblock": "Un bloc vide doit avoir un commentaire.", + "typescript.looksLikeTripleSlash": "Vouliez-vous dire '/// ' ?", + "typescript.missingReturnType": "Type de retour manquant.", + "typescript.unusedFunction": "Fonction locale inutilisée.", + "typescript.unusedImport": "Importation inutilisée.", + "typescript.unusedLocalVariable": "Variable locale inutilisée.", + "typescript.unusedPrivateMember": "Membre privé inutilisé.", + "typescript.variableUsedBeforeDeclared": "La variable est utilisée avant d'être déclarée." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/typescript/common/typescript.contribution.i18n.json b/i18n/fra/src/vs/languages/typescript/common/typescript.contribution.i18n.json new file mode 100644 index 00000000000..63a4ae0963c --- /dev/null +++ b/i18n/fra/src/vs/languages/typescript/common/typescript.contribution.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "Toujours inclure tous les mots du document actif.", + "baseUrl": "Permet de configurer l'url de base utilisée pour résoudre les références de modules (http://requirejs.org/docs/api.html#config-baseUrl). Cette option s'applique uniquement aux projets qui utilisent la définition de module asynchrone (\"module\": \"amd\").", + "compilationSettings": "Contrôle le fonctionnement de la validation TypeScript.", + "lint": "Contrôle divers aspects de la validation.", + "lint.comparisonOperatorsNotStrict": "Utilisez '!==' et '===' au lieu de '!=' et '=='.", + "lint.curlyBracketsMustNotBeOmitted": "Limitez l'utilisation des accolades.", + "lint.emptyBlocksWithoutComment": "Un bloc vide doit avoir un commentaire.", + "lint.functionsInsideLoops": "Fonction dans la boucle.", + "lint.functionsWithoutReturnType": "Limitez l'utilisation de l'annotation de type de retour pour les fonctions.", + "lint.missingSemicolon": "Point-virgule manquant.", + "lint.newOnLowercaseFunctions": "Fonction avec nom en minuscules utilisée en tant que constructeur.", + "lint.reservedKeywords": "N'utilisez pas de mots clés réservés.", + "lint.semicolonsInsteadOfBlocks": "Point-virgule à la place du bloc.", + "lint.tripleSlashReferenceAlike": "Recherche les références avec trois barres obliques incorrectes.", + "lint.typeScriptSpecifics": "N'utilisez pas de construction de langage spécifique à TypeScript en JavaScript.", + "lint.unknownTypeOfResults": "Sortie inattendue de l'opérateur 'typeof'.", + "lint.unusedFunctions": "Fonction locale inutilisée.", + "lint.unusedMembers": "Membre privé inutilisé.", + "lint.unusedVariables": "Variable locale inutilisée.", + "module": "Spécifie le système de module utilisé.", + "noImplicitAny": "Appliquez les déclarations de type explicite.", + "noLib": "N'utilisez pas de typages pour l'environnement du DOM et du navigateur.", + "scope": "Lorsqu'il existe plusieurs paramètres de validation, définit le sous-dossier auquel ils s'appliquent.", + "suggestSettings": "Contrôle le fonctionnement de TypeScript IntelliSense.", + "target": "Spécifie la version du langage de script ECMA utilisé.", + "tsConfigurationTitle": "Configuration de TypeScript", + "useCodeSnippetsOnMethodSuggest": "Fonctions complètes avec leur signature de paramètre." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/languages/typescript/common/typescriptMode.i18n.json b/i18n/fra/src/vs/languages/typescript/common/typescriptMode.i18n.json new file mode 100644 index 00000000000..459a1e849bc --- /dev/null +++ b/i18n/fra/src/vs/languages/typescript/common/typescriptMode.i18n.json @@ -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. +{ + "err.tooMuchData": "Il existe trop de fichiers sources JavaScript pour le code VS. Utilisez la propriété exclude dans jsconfig.json." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/platform/configuration/common/configurationRegistry.i18n.json b/i18n/fra/src/vs/platform/configuration/common/configurationRegistry.i18n.json new file mode 100644 index 00000000000..caa6a86c867 --- /dev/null +++ b/i18n/fra/src/vs/platform/configuration/common/configurationRegistry.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "invalid.properties": "'configuration.properties' doit être un objet", + "invalid.title": "'configuration.title' doit être une chaîne", + "invalid.type": "s'il est défini, 'configuration.type' doit avoir la valeur 'object", + "vscode.extension.contributes.configuration": "Ajoute des paramètres de configuration.", + "vscode.extension.contributes.configuration.properties": "Description des propriétés de configuration.", + "vscode.extension.contributes.configuration.title": "Résumé des paramètres. Cette étiquette va être utilisée dans le fichier de paramètres en tant que commentaire de séparation." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json b/i18n/fra/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json new file mode 100644 index 00000000000..5268c16e1b7 --- /dev/null +++ b/i18n/fra/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "first.chord": "Touche ({0}) utilisée. En attente de la seconde touche pour la pression simultanée...", + "missing.chord": "La combinaison de touches ({0}, {1}) n'est pas une commande.", + "unboundCommands": "Voici d'autres commandes disponibles : " +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/electron-main/main.i18n.json b/i18n/fra/src/vs/workbench/electron-main/main.i18n.json new file mode 100644 index 00000000000..482106affde --- /dev/null +++ b/i18n/fra/src/vs/workbench/electron-main/main.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expired": "Expiré", + "expiredDetail": "Cette version préliminaire de {0} a expiré.\n\nVisitez {1} pour télécharger la mise en production actuelle.", + "newWindow": "Nouvelle fenêtre", + "openWebSite": "Ouvrir le site web", + "quit": "Quitter" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json b/i18n/fra/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json new file mode 100644 index 00000000000..9532e9280cd --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json @@ -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. +{ + "globalConsoleActionMacLinux": "Ouvrir un nouveau Terminal", + "globalConsoleActionWin": "Ouvrir une nouvelle invite de commandes", + "scopedConsoleActionMacLinux": "Ouvrir dans Terminal", + "scopedConsoleActionWin": "Ouvrir dans l'invite de commandes" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/feedback/browser/feedback.i18n.json b/i18n/fra/src/vs/workbench/parts/feedback/browser/feedback.i18n.json new file mode 100644 index 00000000000..714a015de29 --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/feedback/browser/feedback.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "character left": "caractère restant", + "characters left": "caractères restants", + "commentsHeader": "Commentaires", + "feedbackSending": "Envoi", + "feedbackSendingError": "Réessayer", + "feedbackSent": "Merci", + "frownCaption": "Déçu", + "label.sendASmile": "Tweetez-nous vos commentaires.", + "other ways to contact us": "Autres façons de nous contacter", + "request a missing feature": "Demander une fonctionnalité manquante", + "sendFeedback": "Tweeter des commentaires", + "sentiment": "Quelles sont vos impressions ?", + "smileCaption": "Satisfait", + "submit a bug": "Soumettre un bogue", + "tell us why?": "Pourquoi ?", + "tweet": "Tweet" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/files/browser/fileActions.i18n.json b/i18n/fra/src/vs/workbench/parts/files/browser/fileActions.i18n.json new file mode 100644 index 00000000000..e4accba807f --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -0,0 +1,62 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "addToWorkingFiles": "Ajouter le fichier actif aux fichiers de travail", + "closeAllFiles": "Fermer tous les fichiers", + "closeAllLabel": "Fermer tous les fichiers", + "closeFile": "Fermer le fichier", + "closeLabel": "Fermer le fichier", + "closeOtherFiles": "Fermer les autres fichiers", + "closeOtherLabel": "Fermer les autres fichiers", + "compareFiles": "Comparer des fichiers", + "compareLabels": "{0} ↔ {1}", + "compareSource": "Sélectionner pour comparer", + "compareWith": "Comparer à '{0}'", + "confirmDeleteMessageFile": "Voulez-vous vraiment supprimer définitivement '{0}' ?", + "confirmDeleteMessageFolder": "Voulez-vous vraiment supprimer définitivement '{0}' et son contenu ?", + "confirmMoveTrashMessageFile": "Voulez-vous vraiment supprimer '{0}' ?", + "confirmMoveTrashMessageFolder": "Voulez-vous vraiment supprimer '{0}' et son contenu ?", + "confirmOverwrite": "Un fichier ou dossier portant le même nom existe déjà dans le dossier de destination. Voulez-vous le remplacer ?", + "copyFile": "Copier", + "createNewFile": "Nouveau fichier", + "createNewFolder": "Nouveau dossier", + "delete": "Supprimer", + "deleteButtonLabel": "S&&upprimer", + "deleteButtonLabelRecycleBin": "&&Déplacer vers la Corbeille", + "deleteButtonLabelTrash": "&&Déplacer vers la Poubelle", + "duplicateFile": "Doublon", + "emptyFileNameError": "Un nom de fichier ou de dossier doit être fourni.", + "fileNameExistsError": "Un fichier ou dossier **{0}** existe déjà à cet emplacement. Choisissez un autre nom.", + "filePathTooLongError": "Le nom **{0}** correspond à un chemin d'accès trop long. Choisissez un nom plus court.", + "focusWorkingFiles": "Focus sur les fichiers de travail", + "globalCompareFile": "Comparer le fichier actif à...", + "importFiles": "Importer des fichiers", + "invalidFileNameError": "Le nom **{0}** est non valide en tant que nom de fichier ou de dossier. Choisissez un autre nom.", + "irreversible": "Cette action est irréversible !", + "newFile": "Nouveau fichier", + "newFolder": "Nouveau dossier", + "noFileOpen": "Il n'existe actuellement aucun fichier ouvert à fermer.", + "noWorkingFiles": "Il n'existe actuellement aucun fichier de travail.", + "openFileToAdd": "Ouvrir d'abord un fichier pour l'ajouter aux fichiers de travail", + "openFileToCompare": "Ouvrez d'abord un fichier pour le comparer à un autre fichier.", + "openNextWorkingFile": "Ouvrir le fichier de travail suivant", + "openPreviousWorkingFile": "Ouvrir le fichier de travail précédent", + "openToSide": "Ouvrir sur le côté", + "pasteFile": "Coller", + "permDelete": "Supprimer définitivement", + "refresh": "Actualiser", + "rename": "Renommer", + "replaceButtonLabel": "&&Remplacer", + "retry": "Réessayer", + "revert": "Rétablir le fichier", + "save": "Enregistrer", + "saveAll": "Enregistrer tout", + "saveFiles": "Enregistrer les fichiers à l'intégrité compromise", + "unableToFileToCompare": "Impossible de comparer le fichier sélectionné à '{0}'.", + "undoBin": "Vous pouvez effectuer une restauration à partir de la Corbeille.", + "undoTrash": "Vous pouvez effectuer une restauration à partir de la Poubelle.", + "warningFileDirty": "Le fichier '{0}' est en cours d'enregistrement, réessayez ultérieurement." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json b/i18n/fra/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json new file mode 100644 index 00000000000..65519ea77db --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "createNewBranch": "Créer une branche", + "dupeBranchName": "Le nom de branche existe déjà.", + "invalidBranchName": "Nom de branche non valide." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json b/i18n/fra/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json new file mode 100644 index 00000000000..25c1f9fb961 --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "git": "Git", + "openChange": "Ouvrir la modification", + "openInEditor": "Basculer vers le mode Éditeur", + "stageSelectedLines": "Stocker les lignes sélectionnées en zone de transit", + "switchToChangesView": "Basculer vers le mode Modifications" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/fra/src/vs/workbench/parts/git/browser/gitActions.i18n.json new file mode 100644 index 00000000000..1d1d149ea79 --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -0,0 +1,51 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "authFailed": "Échec de l'authentification durant l'opération git remote.", + "branch": "Branche", + "branch2": "Branche", + "checkout": "Extraire", + "cleanChangesLabel": "&&Supprimer les modifications", + "commitAll": "Valider tout", + "commitAll2": "Valider tout", + "commitStaged": "Valider le contenu en zone de transit", + "commitStaged2": "Valider le contenu en zone de transit", + "confirmPublishMessage": "Voulez-vous vraiment publier '{0}' sur '{1}' ?", + "confirmPublishMessageButton": "&&Publier", + "confirmUndo": "Voulez-vous vraiment supprimer les modifications apportées à '{0}' ?", + "confirmUndoAllMultiple": "Il existe des modifications non prêtes à être validées dans {0} fichiers.\n\nCette action est irréversible !", + "confirmUndoAllOne": "Il existe des modifications non prêtes à être validées dans {0} fichier.\n\nCette action est irréversible !", + "confirmUndoMessage": "Voulez-vous vraiment supprimer toutes les modifications ?", + "currentBranch": "La branche active '{0}' est à jour.", + "currentBranchPlural": "La branche active '{0}' a {1} validations de retard et {2} validations d'avance par rapport à '{3}'.", + "currentBranchPluralSingle": "La branche active '{0}' a {1} validations de retard et {2} validation d'avance par rapport à '{3}'.", + "currentBranchSingle": "La branche active '{0}' a {1} validation de retard et {2} validation d'avance par rapport à '{3}'.", + "currentBranchSinglePlural": "La branche active '{0}' a {1} validation de retard et {2} validations d'avance par rapport à '{3}'.", + "currentlyDetached": "Synchronisation impossible en mode détaché.", + "dirtyChanges": "Validez, annulez ou mettez de côté vos modifications avant de synchroniser.", + "dirtyTreeCheckout": "Extraction impossible. Validez ou effectuez une copie intermédiaire de votre travail.", + "dirtyTreePull": "Extraction impossible. Validez ou effectuez une copie intermédiaire de votre travail.", + "init": "Init", + "irreversible": "Cette action est irréversible !", + "noUpstream": "Aucune branche en amont n'est configurée pour la branche active '{0}.", + "openChange": "Ouvrir la modification", + "openFile": "Ouvrir le fichier", + "publish": "Publier", + "publishPickMessage": "Choisissez un dépôt distant où publier la branche '{0}' :", + "pull": "Extraire", + "pullWithRebase": "Tirer (rebaser)", + "push": "Push", + "refresh": "Actualiser", + "stageAllChanges": "Stocker tout en zone de transit", + "stageChanges": "Étape", + "sync": "Synchroniser", + "synchronizing": "Synchronisation...", + "undoAllChanges": "Nettoyer tout", + "undoChanges": "Nettoyer", + "undoLastCommit": "Annuler la dernière validation", + "unstage": "Annuler le stockage en zone de transit", + "unstageAllChanges": "Annuler tout le stockage en zone de transit" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/git/browser/gitServices.i18n.json b/i18n/fra/src/vs/workbench/parts/git/browser/gitServices.i18n.json new file mode 100644 index 00000000000..3a031f111e9 --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "badConfigFile": "Git {0}", + "cancel": "Annuler", + "cantOpen": "Impossible d'ouvrir cette ressource git.", + "cantOpenResource": "Impossible d'ouvrir cette ressource git.", + "changesFromIndex": "{0} - Modifications de l'index", + "changesFromTree": "{0} - Modifications sur {1}", + "checkNativeConsole": "Un problème s'est produit durant l'exécution d'une opération git. Examinez la sortie, ou utilisez une console pour vérifier l'état de votre dépôt.", + "configureUsernameEmail": "Configurez votre nom d'utilisateur et votre adresse de messagerie git.", + "gitIndexChanges": "{0} - Modifications de l'index", + "gitIndexChangesRenamed": "{0} - Renommé - Modifications de l'index", + "gitMergeChanges": "{0} - Fusionner les modifications", + "showOutput": "Afficher la sortie", + "unmergedChanges": "Vous devez tout d'abord résoudre les modifications non fusionnées avant de valider vos modifications.", + "workingTreeChanges": "{0} - Modifications de l'arborescence de travail" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json b/i18n/fra/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json new file mode 100644 index 00000000000..a011d433e83 --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "commitMessage": "Message (appuyez sur {0} pour valider)", + "commitMessageAriaLabel": "Git : tapez le message de validation, puis appuyez sur {0} pour valider", + "needMessage": "Indiquez un message de validation. Vous pouvez toujours appuyer sur **{0}** pour valider les modifications. S'il existe des modifications en zone de transit, seules ces dernières sont validées ; sinon, toutes les modifications sont validées.", + "nothingToCommit": "Quand il existe des modifications à valider, tapez le message de validation et appuyez sur **{0}** pour valider les modifications. S'il existe des modifications en zone de transit, seules ces dernières sont validées ; sinon, toutes les modifications sont validées.", + "showOutput": "Afficher la sortie Git", + "treeAriaLabel": "Affichage des modifications Git" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json b/i18n/fra/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json new file mode 100644 index 00000000000..9aab5bdc3fd --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "added-char": "A", + "allChanges": "Modifications", + "ariaLabelChanges": "Modifications, Git", + "ariaLabelMerge": "Fusion, Git", + "ariaLabelStagedChanges": "Modifications en attente de validation, Git", + "copied-char": "C", + "deleted-char": "D", + "fileStatusAriaLabel": "Le fichier {0} dans le dossier {1} est à l'état {2}, Git", + "ignored-char": "!", + "mergeChanges": "Fusionner les modifications", + "modified-char": "M", + "outsideOfWorkspace": "Ce fichier se trouve en dehors de l'espace de travail actuel.", + "renamed-char": "R", + "stagedChanges": "Modifications en zone de transit", + "title-conflict-added-by-them": "Conflit : ajouté par eux", + "title-conflict-added-by-us": "Conflit : ajouté par nous", + "title-conflict-both-added": "Conflit : ajouté par eux et nous", + "title-conflict-both-deleted": "Conflit : supprimé par eux et nous", + "title-conflict-both-modified": "Conflit : modifié par eux et nous", + "title-conflict-deleted-by-them": "Conflit : supprimé par eux", + "title-conflict-deleted-by-us": "Conflit : supprimé par nous", + "title-deleted": "Supprimé", + "title-ignored": "Ignoré", + "title-index-added": "Ajouté à l'index", + "title-index-copied": "Copié dans l'index", + "title-index-deleted": "Supprimé dans l'index", + "title-index-modified": "Modifié dans l'index", + "title-index-renamed": "Renommé dans l'index", + "title-modified": "Modifié", + "title-untracked": "Non suivi", + "untracked-char": "U" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json b/i18n/fra/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json new file mode 100644 index 00000000000..8fc3f2e0eeb --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json @@ -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. +{ + "markdownPreviewNoFile": "Ouvrez d'abord un fichier Markdown pour afficher un aperçu.", + "openPreview": "Ouvrir l'aperçu", + "openPreviewSideBySide": "Ouvrir l'aperçu sur le côté", + "toggleMarkdownPreview": "Activer/désactiver l'aperçu" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/output/browser/outputActions.i18n.json b/i18n/fra/src/vs/workbench/parts/output/browser/outputActions.i18n.json new file mode 100644 index 00000000000..f2cdca7c92e --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/output/browser/outputActions.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "clearOutput": "Effacer la sortie", + "switchToOutput.label": "Passer à la sortie", + "toggleOutput": "Activer/désactiver la sortie" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json b/i18n/fra/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json new file mode 100644 index 00000000000..eab628ca263 --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json @@ -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. +{ + "QuickCommandsAction.label": "Afficher les commandes de l'éditeur", + "actionNotEnabled": "La commande '{0}' n'est pas activée dans le contexte actuel.", + "canNotRun": "La commande '{0}' ne peut pas être exécutée à partir d'ici.", + "commandLabel": "{0} : {1}", + "entryAriaLabel": "{0}, commandes", + "noCommandsMatching": "Aucune commande correspondante", + "showTriggerActions": "Afficher toutes les commandes" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json b/i18n/fra/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json new file mode 100644 index 00000000000..30d3d423ae5 --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json @@ -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. +{ + "cannotRunGotoLine": "Ouvrir d'abord un fichier texte pour atteindre une ligne", + "gotoLine": "Atteindre la ligne...", + "gotoLineColumnLabel": "Atteindre la ligne {0} et la colonne {1}", + "gotoLineHandlerAriaLabel": "Tapez un numéro de ligne à atteindre.", + "gotoLineLabel": "Atteindre la ligne {0}", + "gotoLineLabelEmpty": "Tapez un numéro de ligne à atteindre.", + "gotoLineLabelEmptyWithLimit": "Tapez un numéro de ligne à atteindre entre 1 et {0}" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json b/i18n/fra/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json new file mode 100644 index 00000000000..1d7360fc3a8 --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "_constructor": "constructeurs ({0})", + "array": "tableaux ({0})", + "boolean": "booléens ({0})", + "cannotRunGotoSymbol": "Ouvrir d'abord un fichier texte pour atteindre un symbole", + "cannotRunGotoSymbolInFile": "Malheureusement, nous n'avons pas d'informations de symboles pour le fichier", + "class": "classes ({0})", + "entryAriaLabel": "{0}, symboles", + "enum": "énumérations ({0})", + "file": "fichiers ({0})", + "function": "fonctions ({0})", + "gotoSymbol": "Atteindre le symbole...", + "gotoSymbolHandlerAriaLabel": "Tapez pour réduire le nombre de symboles de l'éditeur actif.", + "interface": "interfaces ({0})", + "key": "touches ({0})", + "method": "méthodes ({0})", + "modules": "modules ({0})", + "namespace": "espaces de noms ({0})", + "noSymbolsFound": "Symboles introuvables", + "noSymbolsMatching": "Aucun symbole correspondant", + "number": "nombres ({0})", + "object": "objets ({0})", + "package": "packages ({0})", + "property": "propriétés ({0})", + "rule": "règles ({0})", + "string": "chaînes ({0})", + "symbols": "symboles ({0})", + "variable": "variables ({0})" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json b/i18n/fra/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json new file mode 100644 index 00000000000..7a2ab817ba3 --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "editorCommands": "commandes de l'éditeur", + "entryAriaLabel": "{0}, aide sur le sélecteur", + "globalCommands": "commandes globales" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json b/i18n/fra/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json new file mode 100644 index 00000000000..d1cbd1bca6d --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json @@ -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. +{ + "fileAndTypeResults": "Résultats des fichiers et des symboles" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json b/i18n/fra/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json new file mode 100644 index 00000000000..d42cb3f6fa8 --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "entryAriaLabel": "{0}, sélecteur de fichiers", + "searchResults": "résultats de la recherche" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json b/i18n/fra/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json new file mode 100644 index 00000000000..4a2b7a5851f --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json @@ -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. +{ + "entryAriaLabel": "{0}, sélecteur de symboles", + "noSymbolsMatching": "Aucun symbole correspondant", + "noSymbolsWithoutInput": "Tapez pour rechercher des symboles", + "symbols": "résultats des symboles" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/search/browser/search.contribution.i18n.json b/i18n/fra/src/vs/workbench/parts/search/browser/search.contribution.i18n.json new file mode 100644 index 00000000000..f6defbafdf1 --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/search/browser/search.contribution.i18n.json @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "exclude": "Configurez les modèles glob pour exclure les fichiers et les dossiers des recherches. Hérite de tous les modèles glob à partir du paramètre file.exclude.", + "exclude.boolean": "Modèle glob auquel les chemins de fichiers doivent correspondre. Affectez la valeur true ou false pour activer ou désactiver le modèle.", + "exclude.when": "Vérification supplémentaire des frères d'un fichier correspondant. Utilisez $(basename) comme variable pour le nom de fichier correspondant.", + "findInFolder": "Rechercher dans le dossier", + "name": "Recherche", + "openAnythingHandlerDescription": "Ouvrir les fichiers et les symboles par le nom", + "openSymbolDescriptionNormal": "Ouvrir un symbole par le nom", + "searchConfigurationTitle": "Configuration de la recherche", + "showSearchViewlet": "Afficher la zone de recherche", + "showTriggerActions": "Afficher tous les symboles", + "view": "Affichage" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json b/i18n/fra/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json new file mode 100644 index 00000000000..b0557b6a37c --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ClearSearchResultsAction.label": "Effacer les résultats de la recherche", + "CollapseAllAction.label": "Réduire", + "ConfigureGlobalExclusionsAction.label": "Ouvrir les paramètres", + "RefreshAction.label": "Actualiser", + "RemoveAction.label": "Supprimer", + "SelectOrRemoveAction.removeLabel": "Supprimer", + "SelectOrRemoveAction.selectLabel": "Sélectionner", + "ariaSearchResultsStatus": "La recherche a retourné {0} résultats dans {1} fichiers", + "defaultLabel": "entrée", + "fileMatchAriaLabel": "{0} correspondances dans le fichier {1} du dossier {2}, Résultat de la recherche", + "findInFolder": "Rechercher dans le dossier", + "findPlaceHolder": "Appuyez sur Entrée pour effectuer la recherche, ou sur Échap pour l'annuler", + "globLabel": "{0} quand {1}", + "global.searchScope.folders": "fichiers exclus via les paramètres", + "label.Search": "Rechercher : tapez le terme de recherche, puis appuyez sur Entrée pour lancer la recherche, ou sur Échap pour l'annuler", + "label.excludes": "Modèles d'exclusion de recherche", + "label.global.excludes": "Modèles d'exclusion de recherche configurés", + "label.includes": "Modèles d'inclusion de recherche", + "moreSearch": "Activer/désactiver les détails de la recherche", + "noMatches": "aucune correspondance", + "noResultsExcludes": "Résultats introuvables avec l'exclusion de '{0}' - ", + "noResultsFound": "Résultats introuvables. Vérifiez les paramètres d'exclusion configurés - ", + "noResultsIncludes": "Résultats introuvables dans '{0}' - ", + "noResultsIncludesExcludes": "Résultats introuvables pour '{0}' excluant '{1}' - ", + "openSettings.message": "Ouvrir les paramètres", + "patternDescription": "Utiliser des modèles Glob", + "patternHelpInclude": "Modèle de correspondance. Exemple : ****/*.js** pour établir une correspondance avec tous les fichiers JavaScript, ou **myFolder/**** pour établir une correspondance avec le dossier indiqué et tous ses enfants.\n\n**Référence** :\n***** correspond à 0 caractère ou plus\n**?** correspond à 1 caractère\n****** correspond à zéro répertoire ou plus\n**[a-z]** correspond à une plage de caractères\n**{a,b}** correspond à tous les modèles)", + "regexp.validationFailure": "L'expression correspond à tout", + "rerunSearch.message": "Rechercher à nouveau", + "rerunSearchInAll.message": "Rechercher à nouveau dans tous les fichiers", + "searchCanceled": "La recherche a été annulée avant l'obtention de résultats - ", + "searchMatch": "{0} correspondance trouvée", + "searchMatches": "{0} correspondances trouvées", + "searchMaxResultsWarning": "Le jeu de résultats contient uniquement un sous-ensemble de toutes les correspondances. Soyez plus précis dans votre recherche de façon à limiter les résultats retournés.", + "searchResultAria": "{0}, Résultat de la recherche", + "searchScope.excludes": "fichiers à exclure", + "searchScope.includes": "fichiers à inclure", + "treeAriaLabel": "Résultats de la recherche" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/services/message/browser/messageService.i18n.json b/i18n/fra/src/vs/workbench/services/message/browser/messageService.i18n.json new file mode 100644 index 00000000000..bb3cc1ed407 --- /dev/null +++ b/i18n/fra/src/vs/workbench/services/message/browser/messageService.i18n.json @@ -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. +{ + "closeMessages": "Fermer les messages de notification" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json b/i18n/fra/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json new file mode 100644 index 00000000000..7bbf9ce34c6 --- /dev/null +++ b/i18n/fra/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "pluginHostProcess.crash": "L'exécution de l'hôte de l'extension s'est terminée de manière inattendue. Rechargez la fenêtre pour reprendre l'exécution.", + "pluginHostProcess.error": "Erreur de l'hôte de l'extension : {0}", + "pluginHostProcess.startupFail": "L'hôte de l'extension n'a pas démarré en moins de 10 secondes. Il existe peut-être un problème.", + "pluginHostProcess.startupFailDebug": "L'hôte de l'extension n'a pas démarré en moins de 10 secondes. Il est peut-être arrêté à la première ligne et nécessite un débogueur pour continuer.", + "reloadWindow": "Recharger la fenêtre" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/base/browser/ui/actionbar/actionbar.i18n.json b/i18n/ita/src/vs/base/browser/ui/actionbar/actionbar.i18n.json new file mode 100644 index 00000000000..4ecb2c803f4 --- /dev/null +++ b/i18n/ita/src/vs/base/browser/ui/actionbar/actionbar.i18n.json @@ -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. +{ + "titleLabel": "{0} ({1})" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/base/browser/ui/findinput/findInput.i18n.json b/i18n/ita/src/vs/base/browser/ui/findinput/findInput.i18n.json new file mode 100644 index 00000000000..c58b0f8d7a8 --- /dev/null +++ b/i18n/ita/src/vs/base/browser/ui/findinput/findInput.i18n.json @@ -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. +{ + "caseDescription": "Maiuscole/minuscole", + "defaultLabel": "input", + "regexDescription": "Usa espressione regolare", + "wordsDescription": "Parola intera" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/base/browser/ui/messagelist/messageList.i18n.json b/i18n/ita/src/vs/base/browser/ui/messagelist/messageList.i18n.json new file mode 100644 index 00000000000..2f84bc13d34 --- /dev/null +++ b/i18n/ita/src/vs/base/browser/ui/messagelist/messageList.i18n.json @@ -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. +{ + "alertErrorMessage": "Errore: {0}", + "alertInfoMessage": "Info: {0}", + "alertWarningMessage": "Avviso: {0}", + "close": "Chiudi", + "error": "Errore", + "info": "Informazioni", + "warning": "Avviso" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json b/i18n/ita/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json new file mode 100644 index 00000000000..94bba4f4b6e --- /dev/null +++ b/i18n/ita/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingAudioSupport": "La riproduzione di file audio non è supportata.", + "missingVideoSupport": "La riproduzione di file video non è supportata.", + "nativeBinaryError": "Non è possibile visualizzare il file nell'editor perché è binario, è molto grande o usa una codifica testo non supportata." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/base/browser/ui/toolbar/toolbar.i18n.json b/i18n/ita/src/vs/base/browser/ui/toolbar/toolbar.i18n.json new file mode 100644 index 00000000000..2f484c7beb7 --- /dev/null +++ b/i18n/ita/src/vs/base/browser/ui/toolbar/toolbar.i18n.json @@ -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. +{ + "more": "Altro" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/base/common/errors.i18n.json b/i18n/ita/src/vs/base/common/errors.i18n.json new file mode 100644 index 00000000000..bcf87565e85 --- /dev/null +++ b/i18n/ita/src/vs/base/common/errors.i18n.json @@ -0,0 +1,25 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "error.connection.unknown": "Si è verificato un errore di connessione sconosciuto. La connessione a Internet è stata interrotta oppure il server al quale si è connessi è offline.", + "error.connection.unknown.verbose": "Errore di connessione sconosciuto ({0})", + "error.defaultMessage": "Si è verificato un errore sconosciuto. Per altri dettagli, vedere il log.", + "error.http": "{0} (HTTP {1})", + "error.http.verbose": "{0} (HTTP {1}: {2})", + "error.moreErrors": "{0} ({1} errori in totale)", + "error.permission": "Autorizzazione negata", + "error.permission.verbose": "Autorizzazione negata (HTTP {0})", + "illegalArgumentError": "Argomento non valido: {0}", + "illegalArgumentError2": "Argomento non valido", + "illegalStateError": "Stato non valido: {0}", + "illegalStateError2": "Stato non valido", + "loaderError": "Non è stato possibile caricare un file obbligatorio. Non si è più connessi a Internet oppure il server a cui si è connessi è offline. Per riprovare, aggiornare il browser.", + "loaderErrorNative": "Non è stato possibile caricare un file obbligatorio. Riavviare l'applicazione e riprovare. Dettagli: {0}", + "message": "{0}. Codice errore: {1}", + "nodeExceptionMessage": "Si è verificato un errore di sistema ({0})", + "notImplementedError": "Non implementato", + "stackTrace.format": "{0}: {1}" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/base/common/json.i18n.json b/i18n/ita/src/vs/base/common/json.i18n.json new file mode 100644 index 00000000000..3d34f4fc128 --- /dev/null +++ b/i18n/ita/src/vs/base/common/json.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "CloseBraceExpected": "È prevista la parentesi graffa di chiusura", + "CloseBracketExpected": "È prevista la parentesi quadra di chiusura", + "ColonExpected": "Sono previsti i due punti", + "CommaExpected": "È prevista la virgola", + "EOFExpected": "È prevista la fine del contenuto", + "InvalidNumberFormat": "Formato di numero non valido", + "PropertyExpected": "È previsto un nome di proprietà", + "UnknownSymbol": "Simbolo non valido", + "ValeExpected": "È previsto un valore", + "ValueExpected": "È previsto un valore" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/base/common/severity.i18n.json b/i18n/ita/src/vs/base/common/severity.i18n.json new file mode 100644 index 00000000000..b98155254d3 --- /dev/null +++ b/i18n/ita/src/vs/base/common/severity.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sev.error": "Errore", + "sev.info": "Informazioni", + "sev.warning": "Avviso" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/base/common/strings.i18n.json b/i18n/ita/src/vs/base/common/strings.i18n.json new file mode 100644 index 00000000000..80b25a051f5 --- /dev/null +++ b/i18n/ita/src/vs/base/common/strings.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "diff.days": "{0}g", + "diff.days.month": "un mese fa", + "diff.days.verbose": "{0} giorni fa", + "diff.days.week": "una settimana fa", + "diff.days.yesterday": "ieri", + "diff.hour.verbose": "1 ora fa", + "diff.hours": "{0}h", + "diff.hours.verbose": "{0} ore fa", + "diff.minute.verbose": "1 minuto fa", + "diff.minutes": "{0}m", + "diff.minutes.verbose": "{0} minuti fa", + "diff.seconds": "{0}s", + "diff.seconds.verbose": "adesso", + "format.date": "{0}-{1}-{2} {3}:{4}:{5}", + "format.time": "{0}.{1}.{2}" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/browser/view/viewImpl.i18n.json b/i18n/ita/src/vs/editor/browser/view/viewImpl.i18n.json new file mode 100644 index 00000000000..9c443a0f33d --- /dev/null +++ b/i18n/ita/src/vs/editor/browser/view/viewImpl.i18n.json @@ -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. +{ + "editorViewAccessibleLabel": "Contenuto editor" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/common/config/commonEditorConfig.i18n.json b/i18n/ita/src/vs/editor/common/config/commonEditorConfig.i18n.json new file mode 100644 index 00000000000..dc6e2a43d8c --- /dev/null +++ b/i18n/ita/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "autoClosingBrackets": "Controlla se l'editor deve chiudere automaticamente le parentesi quadre dopo che sono state aperte", + "cursorBlinking": "Controlla l'animazione per l'intermittenza del cursore. I valori accettati sono: 'blink', 'visible' e 'hidden'", + "cursorStyle": "Controlla lo stile del cursore. I valori accettati sono 'block' e 'line'", + "editorConfigurationTitle": "Configurazione editor", + "folding": "Controlla se per l'editor è abilitata la riduzione del codice", + "fontFamily": "Controlla la famiglia di caratteri.", + "fontLigatures": "Abilita i caratteri legatura", + "fontSize": "Controlla le dimensioni del carattere.", + "formatOnType": "Controlla se l'editor deve formattare automaticamente la riga dopo la digitazione", + "glyphMargin": "Controlla la visibilità del margine del glifo", + "hideCursorInOverviewRuler": "Controlla se il cursore deve essere nascosto nel righello delle annotazioni.", + "ignoreTrimWhitespace": "Controlla se l'editor diff mostra come differenze le modifiche relative a spazi vuoti iniziali e finali", + "insertSpaces": "Controlla se l'editor inserirà spazi per le tabulazioni. Valori accettati: \"auto\", true, false. Se è impostato su \"auto\", il valore verrà stabilito all'apertura del file.", + "lineHeight": "Controlla l'altezza della riga.", + "lineNumbers": "Controlla la visibilità dei numeri di riga", + "mouseWheelScrollSensitivity": "Moltiplicatore da usare sui valori `deltaX` e `deltaY` degli eventi di scorrimento della rotellina del mouse", + "overviewRulerLanes": "Controlla il numero di effetti che possono essere visualizzati nella stessa posizione nel righello delle annotazioni", + "quickSuggestions": "Controlla se durante la digitazione verranno o meno visualizzati i suggerimenti rapidi", + "quickSuggestionsDelay": "Controlla il ritardo in ms dopo il quale verranno visualizzati i suggerimenti rapidi", + "referenceInfos": "Controlla se l'editor visualizza le informazioni di riferimento per le modalità supportate", + "renderWhitespace": "Controlla se l'editor deve eseguire il rendering dei spazi vuoti", + "roundedSelection": "Controlla se gli angoli delle selezioni sono arrotondati", + "rulers": "Colonne in corrispondenza delle quali visualizzare i righelli verticali", + "scrollBeyondLastLine": "Controlla se l'editor scorrerà oltre l'ultima riga", + "selectionHighlight": "Controlla se l'editor deve evidenziare gli elementi corrispondenti simili alla selezione", + "sideBySide": "Controlla se l'editor diff mostra le differenze affiancate o incorporate", + "suggestOnTriggerCharacters": "Controlla se i suggerimenti devono essere visualizzati automaticamente durante la digitazione dei caratteri trigger", + "tabSize": "Controlla le dimensioni di rendering delle tabulazioni in caratteri. Valori accettati: \"auto\", 2, 4, 6 e così via. Se è impostato su \"auto\", il valore verrà stabilito all'apertura del file.", + "wordSeparators": "Caratteri che verranno usati come separatori di parola quando si eseguono operazioni o spostamenti correlati a parole", + "wrappingColumn": "Controlla il numero di caratteri dopo i quali l'editor attiverà l'a capo automatico alla riga successiva. Se è impostato su 0, verrà attivato l'a capo automatico in base alla larghezza del viewport", + "wrappingIndent": "Controlla il rientro delle righe con ritorno a capo. Può essere uno dei valori seguenti: 'none', 'same' o 'indent'." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/common/controller/cursor.i18n.json b/i18n/ita/src/vs/editor/common/controller/cursor.i18n.json new file mode 100644 index 00000000000..b46c8df4521 --- /dev/null +++ b/i18n/ita/src/vs/editor/common/controller/cursor.i18n.json @@ -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. +{ + "corrupt.commands": "Eccezione imprevista durante l'esecuzione del comando." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/common/model/textModelWithTokens.i18n.json b/i18n/ita/src/vs/editor/common/model/textModelWithTokens.i18n.json new file mode 100644 index 00000000000..f0c92c9031a --- /dev/null +++ b/i18n/ita/src/vs/editor/common/model/textModelWithTokens.i18n.json @@ -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. +{ + "mode.tokenizationSupportFailed": "Si è verificato un errore della modalità durante la suddivisione in token dell'input." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json b/i18n/ita/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json new file mode 100644 index 00000000000..122f0e67fb4 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.clipboard.copyLabel": "Copia", + "actions.clipboard.cutLabel": "Taglia", + "actions.clipboard.pasteLabel": "Incolla" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/codelens/browser/codelens.i18n.json b/i18n/ita/src/vs/editor/contrib/codelens/browser/codelens.i18n.json new file mode 100644 index 00000000000..ad9576a4135 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/codelens/browser/codelens.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "n_references": "{0} riferimenti", + "one_reference": "1 riferimento", + "unknown_reference": "- riferimenti" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/comment/common/comment.i18n.json b/i18n/ita/src/vs/editor/contrib/comment/common/comment.i18n.json new file mode 100644 index 00000000000..6ab3f6b57ae --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/comment/common/comment.i18n.json @@ -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. +{ + "comment.block": "Attiva/Disattiva commento per il blocco", + "comment.line": "Attiva/Disattiva commento per la riga", + "comment.line.add": "Aggiungi commento per la riga", + "comment.line.remove": "Rimuovi commento per la riga" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json b/i18n/ita/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json new file mode 100644 index 00000000000..fc0acd1195a --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json @@ -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. +{ + "action.showContextMenu.label": "Mostra il menu di scelta rapida editor" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/find/browser/find.i18n.json b/i18n/ita/src/vs/editor/contrib/find/browser/find.i18n.json new file mode 100644 index 00000000000..5b6a1849963 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/find/browser/find.i18n.json @@ -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. +{ + "addSelectionToNextFindMatch": "Aggiungi selezione alla successiva corrispondenza di ricerca", + "findNextMatchAction": "Trova successivo", + "findPreviousMatchAction": "Trova precedente", + "moveSelectionToNextFindMatch": "Sposta ultima selezione alla successiva corrispondenza di ricerca", + "selectAllOccurencesOfFindMatch": "Seleziona tutte le occorrenze della corrispondenza di ricerca", + "startFindAction": "Trova", + "startReplace": "Sostituisci" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/find/browser/findWidget.i18n.json b/i18n/ita/src/vs/editor/contrib/find/browser/findWidget.i18n.json new file mode 100644 index 00000000000..a825dbc5be4 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/find/browser/findWidget.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "label.closeButton": "Chiudi", + "label.find": "Trova", + "label.matchesLocation": "{0} di {1}", + "label.nextMatchButton": "Risultato successivo", + "label.noResults": "Nessun risultato", + "label.previousMatchButton": "Risultato precedente", + "label.replace": "Sostituisci", + "label.replaceAllButton": "Sostituisci tutto", + "label.replaceButton": "Sostituisci", + "label.toggleReplaceButton": "Attiva/Disattiva modalità sostituzione", + "label.toggleSelectionFind": "Trova nella selezione", + "placeholder.find": "Trova", + "placeholder.replace": "Sostituisci", + "title.matchesCountLimit": "Vengono evidenziati solo i primi 999 risultati, ma tutte le operazioni di ricerca funzionano sull'intero testo." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/format/common/format.i18n.json b/i18n/ita/src/vs/editor/contrib/format/common/format.i18n.json new file mode 100644 index 00000000000..24ab8d6417b --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/format/common/format.i18n.json @@ -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. +{ + "formatAction.label": "Formatta il codice" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json b/i18n/ita/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json new file mode 100644 index 00000000000..657ab723833 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.goToDecl.label": "Vai alla definizione", + "actions.goToDeclToSide.label": "Apri definizione lateralmente", + "actions.gotoTypeDecl.label": "Vai alla definizione di tipo", + "actions.previewDecl.label": "Visualizza la definizione", + "multipleResults": "Fare clic per visualizzare le {0} definizioni trovate." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json b/i18n/ita/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json new file mode 100644 index 00000000000..3ed7614cedd --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json @@ -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. +{ + "markerAction.next.label": "Vai a errore o avviso successivo", + "markerAction.previous.label": "Vai a errore o avviso precedente", + "quickfix.multiple.label": "Correzioni suggerite: ", + "quickfix.single.label": "Correzione suggerita: " +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json b/i18n/ita/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json new file mode 100644 index 00000000000..607247a8c49 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json @@ -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. +{ + "modesContentHover.loading": "Caricamento..." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json b/i18n/ita/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json new file mode 100644 index 00000000000..0e35a80bc66 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "InPlaceReplaceAction.next.label": "Sostituisci con il valore successivo", + "InPlaceReplaceAction.previous.label": "Sostituisci con il valore precedente" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json b/i18n/ita/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json new file mode 100644 index 00000000000..31879c2762e --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lines.copyDown": "Copia la riga in basso", + "lines.copyUp": "Copia la riga in alto", + "lines.delete": "Elimina la riga", + "lines.indent": "Imposta un rientro per la riga", + "lines.insertAfter": "Inserisci la riga sotto", + "lines.insertBefore": "Inserisci la riga sopra", + "lines.moveDown": "Sposta la riga in basso", + "lines.moveUp": "Sposta la riga in alto", + "lines.outdent": "Riduci il rientro per la riga", + "lines.trimTrailingWhitespace": "Taglia spazio vuoto finale" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/links/browser/links.i18n.json b/i18n/ita/src/vs/editor/contrib/links/browser/links.i18n.json new file mode 100644 index 00000000000..b0967f9ac8f --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/links/browser/links.i18n.json @@ -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. +{ + "invalid.url": "URI non valido: non è possibile aprire {0}", + "label": "Apri il collegamento", + "links.navigate": "CTRL + clic per seguire il collegamento", + "links.navigate.mac": "Cmd + clic per seguire il collegamento" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json b/i18n/ita/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json new file mode 100644 index 00000000000..5ec9a8dd490 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "mutlicursor.insertAbove": "Aggiungi cursore sopra", + "mutlicursor.insertAtEndOfEachLineSelected": "Crea più cursori dalle righe selezionate", + "mutlicursor.insertBelow": "Aggiungi cursore sotto" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json b/i18n/ita/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json new file mode 100644 index 00000000000..27a96b2c54f --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json @@ -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. +{ + "parameterHints.trigger.label": "Attiva i suggerimenti per i parametri" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json b/i18n/ita/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json new file mode 100644 index 00000000000..5f3718be122 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json @@ -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. +{ + "quickfix.trigger.label": "Correzione rapida" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json b/i18n/ita/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json new file mode 100644 index 00000000000..26563373593 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickFixSelectionWidget.loading": "Caricamento...", + "QuickFixSelectionWidget.noSuggestions": "Non sono disponibili suggerimenti per la correzione.", + "treeAriaLabel": "Correzione rapida" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json b/i18n/ita/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json new file mode 100644 index 00000000000..beab22d1f9b --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json @@ -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. +{ + "label": "Vai alla riga..." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json b/i18n/ita/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json new file mode 100644 index 00000000000..3502e22bb69 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "GotoLineAction.label": "Vai alla riga...", + "gotoLineActionInput": "Digitare un numero di riga, seguito da due punti facoltativi e da un numero di colonna per passare a", + "gotoLineLabelEmptyWithLineAndColumnLimit": "Digitare un numero di colonna compreso tra 1 e {0} per passare a", + "gotoLineLabelEmptyWithLineLimit": "Digitare un numero di riga compreso tra 1 e {0} per passare a", + "gotoLineLabelValidLine": "Vai alla riga {0}", + "gotoLineLabelValidLineAndColumn": "Vai alla riga {0} e alla colonna {1}" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json b/i18n/ita/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json new file mode 100644 index 00000000000..85a37f2f06e --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json @@ -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. +{ + "label": "Tavolozza comandi" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json b/i18n/ita/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json new file mode 100644 index 00000000000..20b77aca008 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickCommandAction.label": "Tavolozza comandi", + "quickCommandActionInput": "Digitare il nome di un'azione da eseguire" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json b/i18n/ita/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json new file mode 100644 index 00000000000..c8bf853e02c --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json @@ -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. +{ + "label": "Vai al simbolo..." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json b/i18n/ita/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json new file mode 100644 index 00000000000..87a279a7a56 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json @@ -0,0 +1,20 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickOutlineAction.label": "Vai al simbolo...", + "_constructor": "costruttori ({0})", + "call": "chiamate ({0})", + "class": "classi ({0})", + "function": "funzioni ({0})", + "interface": "interfacce ({0})", + "method": "metodi ({0})", + "modules": "moduli ({0})", + "property": "proprietà ({0})", + "quickOutlineActionInput": "Digitare il nome di un identificatore a cui passare", + "symbols": "simboli ({0})", + "variable": "variabili ({0})", + "variable2": "variabili ({0})" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json b/i18n/ita/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json new file mode 100644 index 00000000000..0275df937aa --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -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. +{ + "labelLoading": "Caricamento...", + "noResults": "Nessun risultato", + "references.action.label": "Trova tutti i riferimenti", + "references.action.name": "Mostra i riferimenti" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json b/i18n/ita/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json new file mode 100644 index 00000000000..da16d0d1f90 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingPreviewMessage": "anteprima non disponibile", + "peekView.alternateTitle": "Riferimenti", + "referenceCount": "{0} riferimento", + "referencesCount": "{0} riferimenti", + "treeAriaLabel": "Riferimenti" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/rename/browser/rename2.i18n.json b/i18n/ita/src/vs/editor/contrib/rename/browser/rename2.i18n.json new file mode 100644 index 00000000000..b18807607df --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/rename/browser/rename2.i18n.json @@ -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. +{ + "rename.label": "Rinomina simbolo" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/rename/browser/renameModel.i18n.json b/i18n/ita/src/vs/editor/contrib/rename/browser/renameModel.i18n.json new file mode 100644 index 00000000000..a0a4fe670ba --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/rename/browser/renameModel.i18n.json @@ -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. +{ + "cannotLoadFile": "Non è possibile caricare il file {0}" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json b/i18n/ita/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json new file mode 100644 index 00000000000..2fc34fe0c22 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json @@ -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. +{ + "smartSelect.jumpBracket": "Vai alla parentesi quadra" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json b/i18n/ita/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json new file mode 100644 index 00000000000..e50cd06027c --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "smartSelect.grow": "Espandi SELECT", + "smartSelect.shrink": "Comprimi SELECT" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/suggest/browser/suggest.i18n.json b/i18n/ita/src/vs/editor/contrib/suggest/browser/suggest.i18n.json new file mode 100644 index 00000000000..53dc4fa9aee --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/suggest/browser/suggest.i18n.json @@ -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. +{ + "suggest.trigger.label": "Attiva suggerimento" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json b/i18n/ita/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json new file mode 100644 index 00000000000..8c507322497 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json @@ -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. +{ + "goback": "Indietro", + "readMore": "Altre informazioni...{0}", + "suggestWidget.loading": "Caricamento...", + "suggestWidget.noSuggestions": "Non ci sono suggerimenti." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json b/i18n/ita/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json new file mode 100644 index 00000000000..696a7434b99 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json @@ -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. +{ + "toggle.tabfocusmode": "Attiva/Disattiva l'uso del tasto TAB per impostare lo stato attivo" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json b/i18n/ita/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json new file mode 100644 index 00000000000..fe8e7a6d653 --- /dev/null +++ b/i18n/ita/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json @@ -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. +{ + "label.close": "Chiudi" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/css/common/css.contribution.i18n.json b/i18n/ita/src/vs/languages/css/common/css.contribution.i18n.json new file mode 100644 index 00000000000..76cd16f4148 --- /dev/null +++ b/i18n/ita/src/vs/languages/css/common/css.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "cssConfigurationTitle": "Configurazione di CSS", + "lint": "Controlla le gravità dei problemi e la convalida CSS." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/css/common/cssWorker.i18n.json b/i18n/ita/src/vs/languages/css/common/cssWorker.i18n.json new file mode 100644 index 00000000000..cb1d281ca8f --- /dev/null +++ b/i18n/ita/src/vs/languages/css/common/cssWorker.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "css.quickfix.rename": "Rinomina in '{0}'", + "literal.fontface": "@font-face", + "literal.keyframes": "@keyframes {0}" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/css/common/parser/cssErrors.i18n.json b/i18n/ita/src/vs/languages/css/common/parser/cssErrors.i18n.json new file mode 100644 index 00000000000..6d6c8d898ed --- /dev/null +++ b/i18n/ita/src/vs/languages/css/common/parser/cssErrors.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.colon": "sono previsti i due punti", + "expected.comma": "è prevista la virgola", + "expected.condt": "è prevista la condizione", + "expected.dot": "è previsto il punto", + "expected.expression": "è prevista l'espressione", + "expected.ident": "è previsto l'identificatore", + "expected.lcurly": "è prevista la parentesi graffa di apertura {", + "expected.lparen": "è prevista la parentesi tonda di apertura (", + "expected.lsquare": "è prevista la parentesi quadra di apertura [", + "expected.number": "è previsto un numero", + "expected.operator": "è previsto l'operatore", + "expected.pagedirordecl": "è prevista la direttiva o la dichiarazione di pagina", + "expected.percentage": "è prevista una percentuale", + "expected.propvalue": "è previsto il valore della proprietà", + "expected.rcurly": "è prevista la parentesi graffa di chiusura }", + "expected.rparent": "è prevista la parentesi tonda di chiusura )", + "expected.rsquare": "è prevista la parentesi quadra di chiusura ]", + "expected.ruleorselector": "è prevista una regola at-rule o un selettore", + "expected.selector": "è previsto un selettore", + "expected.semicolon": "è previsto un punto e virgola", + "expected.stringliteral": "è previsto un valore letterale stringa", + "expected.term": "è previsto un termine", + "expected.uri": "è previsto un URI", + "expected.uriorstring": "è previsto un URI o una stringa", + "expected.varname": "è previsto un nome di variabile", + "expected.varvalue": "è previsto un valore di variabile", + "unknown.atrule": "regola at-rule sconosciuta", + "unknown.keyword": "parola chiave sconosciuta" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/css/common/services/intelliSense.i18n.json b/i18n/ita/src/vs/languages/css/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..720add2bbd2 --- /dev/null +++ b/i18n/ita/src/vs/languages/css/common/services/intelliSense.i18n.json @@ -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. +{ + "css.builtin.hsl": "Crea un colore dai valori di tonalità, saturazione e luminosità.", + "css.builtin.hsla": "Crea un colore dai valori di tonalità, saturazione, luminosità e alfa.", + "css.builtin.rgb": "Crea un colore dai valori di rosso, verde e blu.", + "css.builtin.rgba": "Crea un colore dai valori di rosso, verde, blu e alfa." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/css/common/services/lint.i18n.json b/i18n/ita/src/vs/languages/css/common/services/lint.i18n.json new file mode 100644 index 00000000000..eb97d2c3b16 --- /dev/null +++ b/i18n/ita/src/vs/languages/css/common/services/lint.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "keyframes.standardrule.missing": "Definire sempre la regola standard '@keyframes' durante la definizione di keyframes.", + "keyframes.vendorspecific.missing": "Includere sempre tutte le regole specifiche del fornitore. Regole mancanti: {0}", + "namelist.concatenated": "{0}, '{1}'", + "namelist.single": "'{0}'", + "property.standard.missing": "Definire inoltre la proprietà standard '{0}' per la compatibilità", + "property.vendorspecific.missing": "Includere sempre tutte le proprietà specifiche del fornitore. Proprietà mancanti: {0}" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/css/common/services/lintRules.i18n.json b/i18n/ita/src/vs/languages/css/common/services/lintRules.i18n.json new file mode 100644 index 00000000000..0fae75a3337 --- /dev/null +++ b/i18n/ita/src/vs/languages/css/common/services/lintRules.i18n.json @@ -0,0 +1,26 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "enableValidation": "Abilita o disabilita tutte le convalide", + "rule.avoidFloat": "Evitare di usare 'float'. Con gli elementi float si ottiene codice CSS che causa facilmente interruzioni in caso di modifica di un aspetto del layout.", + "rule.avoidIdSelector": "I selettori non devono contenere ID perché queste regole sono strettamente accoppiate al codice HTML.", + "rule.avoidImportant": "Evitare di usare !important perché indica che la specificità dell'intero codice CSS non è più controllabile ed è necessario effettuarne il refactoring.", + "rule.colorFunction": "Numero di parametri non valido", + "rule.duplicateDeclarations": "Non usare definizioni di stile duplicate", + "rule.emptyRuleSets": "Non usare set di regole vuoti", + "rule.fontFaceProperties": "La regola @font-face deve definire le proprietà 'src' e 'font-family'", + "rule.hexColor": "I colori esadecimali devono essere composti da tre o sei numeri esadecimali", + "rule.ieHack": "Gli hack IE sono necessari solo per il supporto di IE7 e versioni precedenti", + "rule.importDirective": "Le istruzioni Import non vengono caricate in parallelo", + "rule.propertyIgnoredDueToDisplay": "La proprietà viene ignorata a causa della visualizzazione. Ad esempio, con 'display: inline', le proprietà width, height, margin-top, margin-bottom e float non hanno effetto", + "rule.standardvendorprefix.all": "Quando si usa un prefisso specifico del fornitore, includere anche la proprietà standard", + "rule.universalSelector": "Il selettore universale (*) è notoriamente lento", + "rule.unknownProperty": "Proprietà sconosciuta.", + "rule.unknownVendorSpecificProperty": "Proprietà specifica del fornitore sconosciuta.", + "rule.vendorprefixes.all": "Quando si usa un prefisso specifico del fornitore, assicurarsi di includere anche tutte le altre proprietà specifiche del fornitore", + "rule.withHeightAndBorderPadding": "Non usare width o height con padding o border", + "rule.zeroWidthUnit": "Non è necessaria alcuna unità per lo zero" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/javascript/common/javascript.contribution.i18n.json b/i18n/ita/src/vs/languages/javascript/common/javascript.contribution.i18n.json new file mode 100644 index 00000000000..614baee58e6 --- /dev/null +++ b/i18n/ita/src/vs/languages/javascript/common/javascript.contribution.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "Includere sempre tutte le parole del documento corrente.", + "compilationSettings": "Determina la modalità di funzionamento della convalida JavaScript.", + "jsConfigurationTitle": "Configurazione di JavaScript", + "lint": "Determina vari aspetti della convalida.", + "lint.comparisonOperatorsNotStrict": "Utilizzare '!==' e '===' anziché '!=' e '=='.", + "lint.curlyBracketsMustNotBeOmitted": "Non omettere le parentesi graffe.", + "lint.emptyBlocksWithoutComment": "Il blocco vuoto deve contenere un commento.", + "lint.forcedTypeConversion": "Non ridichiarare un tipo di variabile in base a un'assegnazione.", + "lint.functionsInsideLoops": "Funzione all'interno di un ciclo.", + "lint.missingSemicolon": "Punto e virgola mancante.", + "lint.mixedTypesArithmetics": "Utilizzare solo numeri per le operazioni aritmetiche.", + "lint.newOnLowercaseFunctions": "Funzione con nome in minuscolo utilizzata come costruttore.", + "lint.newOnReturningFunctions": "Funzione con istruzione return utilizzata come costruttore.", + "lint.parametersDontMatchSignature": "Il parametro non corrisponde a una firma della funzione", + "lint.primitivesInInstanceOf": "Non utilizzare instanceof con tipi primitivi.", + "lint.redeclaredVariables": "Non ridichiarare una variabile né modificarne il tipo.", + "lint.semicolonsInsteadOfBlocks": "Punto e virgola invece di blocco.", + "lint.tripleSlashReferenceAlike": "Cerca i riferimenti con tripla barra digitati in modo non corretto.", + "lint.undeclaredVariables": "Non utilizzare una variabile non dichiarata.", + "lint.unknownModule": "Non è richiesto un modulo sconosciuto.", + "lint.unknownProperty": "Non utilizzare una proprietà sconosciuta.", + "lint.unknownTypeOfResults": "Output non previsto dell'operatore 'typeof'.", + "lint.unusedFunctions": "Funzione locale non in uso.", + "lint.unusedVariables": "Variabile locale non in uso.", + "semanticValidation": "Consente di eseguire le verifiche linter per i file JavaScript. Esegue l'override delle impostazioni di validate.lint.*.", + "suggestSettings": "Determina la modalità di funzionamento di JavaScript IntelliSense.", + "syntaxValidation": "Verifica la presenza di errori di sintassi nei file JavaScript.", + "useCodeSnippetsOnMethodSuggest": "Completare le funzioni con la relativa firma del parametro." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json b/i18n/ita/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json new file mode 100644 index 00000000000..337df98d3e3 --- /dev/null +++ b/i18n/ita/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.bower.default": "bower.json predefinito", + "json.bower.error.repoaccess": "La richiesta al repository Bower non è riuscita: {0}", + "json.bower.package.hover": "{0}" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json b/i18n/ita/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json new file mode 100644 index 00000000000..6e163306686 --- /dev/null +++ b/i18n/ita/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.nugget.error.repoaccess": "La richiesta al repository Nuget non è riuscita: {0}", + "json.nugget.package.hover": "{0}", + "json.nugget.version.hover": "Ultima versione: {0}", + "json.nugget.versiondescription.suggest": "Ultima versione attualmente disponibile del pacchetto", + "json.project.default": "project.json predefinito" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/json/common/json.contribution.i18n.json b/i18n/ita/src/vs/languages/json/common/json.contribution.i18n.json new file mode 100644 index 00000000000..692b223f110 --- /dev/null +++ b/i18n/ita/src/vs/languages/json/common/json.contribution.i18n.json @@ -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. +{ + "jsonConfiguration.fileMatch": "Criteri dei file che possono contenere '*' da usare per la ricerca durante la risoluzione di file JSON in schemi.", + "jsonConfiguration.fileMatches": "Matrice di criteri dei file da usare per la ricerca durante la risoluzione di file JSON in schemi.", + "jsonConfiguration.schema": "Definizione dello schema per l'URL specificato. È necessario specificare lo schema per evitare accessi all'URL dello schema.", + "jsonConfiguration.schemaPath": "URL di uno schema o percorso relativo di uno schema nella directory corrente", + "jsonConfiguration.schemas": "Associa schemi a file JSON nel progetto corrente", + "jsonConfigurationDescription": "Utilizzato per configurare impostazioni e schemi JSON.", + "jsonConfigurationTitle": "Configurazione di JSON" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/json/common/json.i18n.json b/i18n/ita/src/vs/languages/json/common/json.i18n.json new file mode 100644 index 00000000000..df9b9feede5 --- /dev/null +++ b/i18n/ita/src/vs/languages/json/common/json.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "array": "matrici", + "boolean": "valori booleani", + "number": "numeri", + "object": "oggetti", + "string": "stringhe", + "undefined": "non definito" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/json/common/jsonIntellisense.i18n.json b/i18n/ita/src/vs/languages/json/common/jsonIntellisense.i18n.json new file mode 100644 index 00000000000..44697a44ea5 --- /dev/null +++ b/i18n/ita/src/vs/languages/json/common/jsonIntellisense.i18n.json @@ -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. +{ + "json.suggest.default": "Valore predefinito" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/json/common/jsonSchemaService.i18n.json b/i18n/ita/src/vs/languages/json/common/jsonSchemaService.i18n.json new file mode 100644 index 00000000000..38b21bcab77 --- /dev/null +++ b/i18n/ita/src/vs/languages/json/common/jsonSchemaService.i18n.json @@ -0,0 +1,169 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "app.plugin.json.activationEvents": "Eventi di attivazione per il plug-in", + "app.plugin.json.contributes": "Contributi di questo plug-in", + "app.plugin.json.contributes.language": "Contributi del plug-in relativi al linguaggio", + "app.plugin.json.contributes.language.aliases": "Alias di nome di questo linguaggio", + "app.plugin.json.contributes.language.extensions": "Estensioni di file associate a questo linguaggio", + "app.plugin.json.contributes.language.filenames": "Nomi file associati a questo linguaggio", + "app.plugin.json.contributes.language.id": "ID di questo linguaggio", + "app.plugin.json.dependencies": "Dipendenze dei plug-in", + "app.plugin.json.mainModule": "Percorso relativo del file JavaScript principale", + "app.plugin.json.pluginId": "ID univoco del plug-in", + "app.plugin.json.scripts": "Script offerti dal plug-in", + "app.plugin.json.scripts.compile": "Riga di comando per la compilazione di questo plug-in", + "bower.json.authors": "Elenco degli utenti che hanno modificato il contenuto del pacchetto.", + "bower.json.dependencies": "Per specificare le dipendenze, viene eseguito un semplice hash del nome del pacchetto in un identificatore o URL compatibile con semver.", + "bower.json.description": "Per facilitare l'identificazione e la ricerca del pacchetto, aggiungere una breve descrizione.", + "bower.json.devDependencies": "Le sole dipendenze necessarie per lo sviluppo del pacchetto, ad esempio framework di test o documentazione sulla compilazione.", + "bower.json.exportsOverride": "Usato da grunt-bower-task per specificare percorsi di installazione personalizzati.", + "bower.json.homepage": "URL per visualizzare altre informazioni sul pacchetto. Se non viene specificato ed è un endpoint GitHub, passa al progetto GitHub.", + "bower.json.ignore": "Elenco di file che Bower deve ignorare durante l'installazione del pacchetto.", + "bower.json.invalidPatternName": "Qualsiasi proprietà che inizia con _ è valida.", + "bower.json.keywords": "Usato per ricerche per parola chiave. Consente agli utenti di individuare il pacchetto più facilmente anche senza conoscerne il nome.", + "bower.json.license": "Identificatore di licenza SPDX o percorso/URL di una licenza.", + "bower.json.main": "File attivi principali necessari per usare il pacchetto.", + "bower.json.moduleType": "Tipi di moduli esposti da questo pacchetto", + "bower.json.packagename": "Nome del pacchetto.", + "bower.json.private": "Se viene impostato su true, non verrà pubblicato. Si tratta di un modo per evitare la pubblicazione accidentale di repository privati.", + "bower.json.repository": "Repository in cui si trova il codice sorgente.", + "bower.json.resolutions": "Versioni delle dipendenze da usare per la risoluzione automatica in caso di conflitti tra pacchetti.", + "bower.json.title": "Schema JSON per i file di configurazione di Bower", + "bower.json.version": "Numero di versione semantico.", + "global.json.projects": "Elenco di cartelle di progetto relative a questo file.", + "global.json.sources": "Elenco di cartelle di origine relative a questo file.", + "global.json.title": "Schema JSON per i file di configurazione globali di ASP.NET", + "jsconfig.json.compilerOptions": "Indica al servizio di linguaggio JavaScript come compilare i file con estensione js", + "jsconfig.json.compilerOptions.charset": "Set di caratteri dei file di input", + "jsconfig.json.compilerOptions.decorators": "Abilita il supporto sperimentale per gli elementi Decorator di ES7.", + "jsconfig.json.compilerOptions.diagnostics": "Mostra le informazioni diagnostiche.", + "jsconfig.json.compilerOptions.locale": "Impostazioni locali da usare per la visualizzazione dei messaggi di errore, ad esempio it-it.", + "jsconfig.json.compilerOptions.mapRoot": "Consente di specificare il percorso in cui il debugger deve trovare i file map invece dei percorsi generati", + "jsconfig.json.compilerOptions.module": "Generazione codice del modulo da usare per la risoluzione: 'commonjs', 'amd', 'system' o 'umd'.", + "jsconfig.json.compilerOptions.noLib": "Non include il file di libreria predefinito (lib.d.ts).", + "jsconfig.json.compilerOptions.target": "Consente di specificare la versione di destinazione di ECMAScript: 'ES3' (predefinita), 'ES5' o 'ES6' (sperimentale).", + "jsconfig.json.exclude": "Elenca file e cartelle da non includere. Questa proprietà non viene rispettata quando è presente la proprietà 'files'.", + "jsconfig.json.files": "Se in un file jsconfig.json non è presente alcuna proprietà 'files', per impostazione predefinita il servizio di linguaggio include tutti i file contenuti nella directory e nelle sottodirectory. Se la proprietà 'files' è specificata, vengono inclusi solo tali file.", + "jsconfig.json.title": "Schema JSON per il file di configurazione JavaScript", + "json.schema.unabletoload": "Non è possibile caricare lo schema da '{0}': {1}.", + "package.json.bugs": "URL dello strumento di gestione dei problemi del progetto e/o indirizzo di posta elettronica a cui devono essere segnalati i problemi. Queste informazioni sono utili per gli utenti che riscontrano problemi con il pacchetto.", + "package.json.bugs.email": "Indirizzo di posta elettronica a cui devono essere segnalati i problemi.", + "package.json.bugs.url": "URL dello strumento di gestione dei problemi del progetto.", + "package.json.bundleDependencies": "Matrice dei nomi di pacchetto che verranno inclusi durante la pubblicazione del pacchetto.", + "package.json.bundledDependencies": "Matrice dei nomi di pacchetto che verranno inclusi durante la pubblicazione del pacchetto.", + "package.json.config": "È possibile usare un hash 'config' per impostare i parametri di configurazione usati negli script del pacchetto che persistono tra un aggiornamento e l'altro.", + "package.json.contributors": "Elenco degli utenti che hanno collaborato a questo pacchetto.", + "package.json.dependency": "Le dipendenze vengono specificate con un semplice hash del nome del pacchetto all'intervallo delle versioni. Quest'ultimo è una stringa contenente uno o più descrittori delimitati da spazi. Le dipendenze possono anche essere identificate da un URL tarball o git.", + "package.json.descr": "Questo facilita l'individuazione del pacchetto, dal momento che è elencato in 'npm search'.", + "package.json.description": "Configurazione NPM per questo pacchetto.", + "package.json.directories.bin": "Se si specifica una directory 'bin', tutti i file in tale cartella verranno usati come hash 'bin'.", + "package.json.directories.doc": "Inserire qui i file markdown. Verranno forse visualizzati in modo corretto in futuro.", + "package.json.directories.example": "Inserire qui gli script di esempio. Verranno forse esposti in modo più chiaro in futuro.", + "package.json.directories.lib": "Indicare agli utenti dove si trova la maggior parte della libreria. La cartella lib non viene usata per operazioni specifiche, ma include meta informazioni utili.", + "package.json.directories.man": "Una cartella contiene numerose pagine man, che vengono usate per generare una matrice 'man'.", + "package.json.files": "Il campo 'files' è costituito da una matrice di file da includere nel progetto. Se si assegna un nome a una cartella nella matrice, questa includerà anche i file all'interno della cartella.", + "package.json.homepage": "URL della home page del progetto.", + "package.json.keywords": "Questo facilita l'individuazione del pacchetto, dal momento che è elencato in 'npm search'.", + "package.json.license": "È consigliabile specificare una licenza per il pacchetto in modo da informare gli utenti delle autorizzazioni necessarie per usarlo e delle eventuali restrizioni applicate.", + "package.json.licenses": "È consigliabile specificare una licenza per il pacchetto in modo da informare gli utenti delle autorizzazioni necessarie per usarlo e delle eventuali restrizioni applicate.", + "package.json.main": "Il campo principale è un ID modulo che costituisce il punto di ingresso principale del programma.", + "package.json.maintainers": "Elenco degli utenti che gestiscono questo pacchetto.", + "package.json.man": "Consente di specificare un singolo file o una matrice di nomi file che il programma man è in grado di trovare.", + "package.json.name": "Nome del pacchetto.", + "package.json.person": "Utente che è stato coinvolto nella creazione o nella gestione di questo pacchetto", + "package.json.preferGlobal": "Se il pacchetto è principalmente un'applicazione da riga di comando che deve essere installata globalmente, impostare questo valore su true per fornire un avviso nel caso in cui venga installato in locale.", + "package.json.private": "Se è impostato su true, npm non consentirà di pubblicarlo.", + "package.json.repository": "Consente di specificare la posizione del codice. Questa informazione è utile per gli utenti che vogliono collaborare.", + "package.json.scripts": "Il membro 'scripts' è un hash oggetto di comandi script eseguiti in diversi momenti del ciclo di vita del pacchetto. La chiave corrisponde all'evento del ciclo di vita, mentre il valore al comando da eseguire in tale momento.", + "package.json.underscore": "Qualsiasi proprietà che inizia con _ è valida.", + "package.json.version": "La versione deve essere analizzabile con node-semver, incluso con npm sotto forma di dipendenza.", + "project.json.authors": "Autore dell'applicazione", + "project.json.bundleExclude": "Elenco di file da escludere dall'output della pubblicazione (kpm bundle).", + "project.json.code": "Criterio GLOB per specificare tutti i file di codice che devono essere compilati. Tipo di dati: stringa o matrice con criteri GLOB. Esempio: [ 'Cartella1*.cs', 'Cartella2*.cs' ]", + "project.json.commands": "Comandi disponibili per questa applicazione", + "project.json.compilationOptions": "Opzioni di compilazione passate a Roslyn", + "project.json.configurations": "Le configurazioni sono gruppi denominati di impostazioni di compilazione. Nel runtime sono integrate due configurazioni predefinite, 'Debug' e 'Release'.", + "project.json.dependencies": "Dipendenze dell'applicazione. Ogni voce specifica il nome e la versione di un pacchetto Nuget.", + "project.json.dependency.name": "Versione della dipendenza.", + "project.json.dependency.type": "Tipo della dipendenza. Le dipendenze di tipo 'build' esistono solo in fase di compilazione.", + "project.json.description": "Descrizione dell'applicazione", + "project.json.exclude": "Criterio GLOB per indicare tutti i file di codice da escludere dalla compilazione. Tipo di dati: stringa o matrice con criteri GLOB.", + "project.json.frameworks": "Framework di destinazione che verranno compilati e dipendenze specifiche della configurazione.", + "project.json.preprocess": "Criterio GLOB per indicare tutti i file di codice da pre-elaborare. Tipo di dati: stringa con criterio GLOB.", + "project.json.resources": "Criterio GLOB per indicare tutti i file da compilare come risorse.", + "project.json.script": "Uno o più script della riga di comando.\r\rVariabili disponibili:\r%project:Directory% - Directory del progetto\r%project:Name% - Nome del progetto\r%project:Version% - Versione del progetto", + "project.json.scripts": "Script da eseguire nelle varie fasi.", + "project.json.shared": "Criterio GLOB per specificare i file di codice da condividere con progetti dipendenti. Esempio: [ 'Cartella1*.cs', 'Cartella2*.cs' ]", + "project.json.title": "Schema JSON per file project.json di ASP.NET", + "project.json.version": "Versione dell'applicazione, ad esempio 1.2.0.0", + "project.json.webroot": "La proprietà webroot specificata nel file project.json indica la radice del server Web, ovvero la cartella pubblica. In Visual Studio questa cartella verrà usata per definire la radice di IIS. I file statici devono essere inseriti in questo punto.", + "schema.json": "Descrive un file JSON che utilizza uno schema. Per ulteriori informazioni, vedere json-schema.org.", + "schema.json.$schema": "Schema da usare per la verifica di questo documento ", + "schema.json.additionalItems": "Per matrici, solo quando gli elementi sono impostati come una matrice. Se è uno schema, convalida gli elementi dopo quelli specificati dalla matrice di elementi. Se è false, gli elementi aggiuntivi impediranno la convalida.", + "schema.json.additionalProperties": "Uno schema o un valore booleano. Se è uno schema, viene usato per convalidare tutte le proprietà che non corrispondono a 'properties' o 'patternProperties'. Se è false, eventuali proprietà non corrispondenti a nessuna delle due bloccheranno lo schema.", + "schema.json.allOf": "Una matrice di schemi, i quali devono tutti avere una corrispondenza.", + "schema.json.anyOf": "Una matrice di schemi, dove almeno uno deve avere una corrispondenza.", + "schema.json.default": "Un valore predefinito. Utilizzato dai suggerimenti.", + "schema.json.definitions": "Non utilizzato per la convalida. Posizionare qui i sottoschemi ai quali si desidera fare riferimento inline con $ref", + "schema.json.dependencies": "Mapping di nomi di proprietà a una matrice di nomi di proprietà o a uno schema. Una matrice di nomi di proprietà indica che, per essere valida, la proprietà denominata nella chiave dipende dalle proprietà nella matrice presente nell'oggetto. Se il valore è uno schema, lo schema viene applicato solo all'oggetto se la proprietà nella chiave esiste nell'oggetto.", + "schema.json.description": "Una lunga descrizione dell'elemento. Utilizzata nei menu visualizzati al passaggio del mouse e nei suggerimenti.", + "schema.json.enum": "Il set di valori letterali validi", + "schema.json.exclusiveMaximum": "Rende esclusiva la proprietà maximum.", + "schema.json.exclusiveMininum": "Rende esclusiva la proprietà minimum.", + "schema.json.id": "Identificatore univoco per lo schema.", + "schema.json.items": "Per le matrici. Può essere uno schema in base al quale convalidare tutti gli elementi o una matrice di schemi in base alla quale convalidare ogni elemento nell'ordine appropriato (il primo schema convalida il primo elemento, il secondo schema convalida il secondo elemento e così via).", + "schema.json.maxItems": "Il numero massimo di elementi che possono essere presenti in una matrice. Inclusivo.", + "schema.json.maxLength": "La lunghezza massima di una stringa.", + "schema.json.maxProperties": "Il numero massimo di proprietà che un oggetto può avere. Inclusivo.", + "schema.json.maximum": "Il valore numerico massimo, inclusivo per impostazione predefinita.", + "schema.json.minItems": "Il numero minimo di elementi che possono essere presenti in una matrice. Inclusivo.", + "schema.json.minLength": "La lunghezza minima di una stringa.", + "schema.json.minProperties": "Il numero minimo di proprietà che un oggetto può avere. Inclusivo.", + "schema.json.minimum": "Il valore numerico minimo, inclusivo per impostazione predefinita.", + "schema.json.multipleOf": "Un numero per il quale il valore corrente deve essere diviso perfettamente (ossia senza resto)", + "schema.json.not": "Uno schema che non deve avere corrispondenze.", + "schema.json.oneOf": "Una matrice di schemi, uno dei quali deve avere una corrispondenza.", + "schema.json.pattern": "Un'espressione regolare alla quale far corrispondere la stringa. Non implicitamente ancorata.", + "schema.json.patternProperties": "Mapping di espressioni regolari su nomi di proprietà a schemi per le proprietà corrispondenti.", + "schema.json.properties": "Mapping di nomi di proprietà a schemi per ogni proprietà.", + "schema.json.required": "Matrice di stringhe che elenca i nomi di tutte le proprietà richieste per questo oggetto.", + "schema.json.title": "Titolo descrittivo dell'elemento", + "schema.json.type": "Una stringa di uno dei tipi di schema di base (numero, intero, null, matrice, oggetto, booleano, stringa) o una matrice di stringhe che specifica un subset di questi tipi.", + "schema.json.uniqueItems": "Se tutti gli elementi nella matrice devono essere univoci. Il valore predefinito è false.", + "snippetSchema.json": "Configurazione del frammento utente", + "snippetSchema.json.body": "Contenuto del frammento. Usare '${id}', '${id:label}', '${1:label}' per le variabili e '$0', '$1' per le posizioni del cursore", + "snippetSchema.json.description": "Descrizione del frammento.", + "snippetSchema.json.prefix": "Prefisso da usare quando si seleziona il frammento in IntelliSense", + "tsconfig.json.compilerOptions": "Indica al compilatore TypeScript come compilare i file con estensione ts", + "tsconfig.json.compilerOptions.charset": "Set di caratteri dei file di input", + "tsconfig.json.compilerOptions.declaration": "Genera i file d.ts corrispondenti.", + "tsconfig.json.compilerOptions.diagnostics": "Mostra le informazioni diagnostiche.", + "tsconfig.json.compilerOptions.emitBOM": "Crea un BOM (Byte Order Mark) UTF-8 all'inizio dei file di output.", + "tsconfig.json.compilerOptions.inlineSourceMap": "Crea un unico file con le mappe di origine invece di file separati.", + "tsconfig.json.compilerOptions.inlineSources": "Crea l'origine unitamente alle mappe di origine all'interno di un unico file. Richiede l'impostazione di --inlineSourceMap.", + "tsconfig.json.compilerOptions.listFiles": "Stampa i nomi dei file che fanno parte della compilazione.", + "tsconfig.json.compilerOptions.locale": "Impostazioni locali da usare per la visualizzazione dei messaggi di errore, ad esempio it-it.", + "tsconfig.json.compilerOptions.mapRoot": "Consente di specificare il percorso in cui il debugger deve trovare i file map invece dei percorsi generati", + "tsconfig.json.compilerOptions.module": "Consente di specificare il tipo di generazione del codice del modulo, ovvero 'CommonJS', 'Amd', 'System' o 'UMD'.", + "tsconfig.json.compilerOptions.newLine": "Consente di specificare la sequenza di fine riga da usare per la creazione dei file, ovvero 'CRLF' (in DOS) o 'LF' (in UNIX).", + "tsconfig.json.compilerOptions.noEmit": "Non crea l'output.", + "tsconfig.json.compilerOptions.noEmitHelpers": "Non genera funzioni di supporto personalizzate, come __extends, nell'output compilato.", + "tsconfig.json.compilerOptions.noEmitOnError": "Non visualizza l'output se sono stati restituiti errori di controllo del tipo.", + "tsconfig.json.compilerOptions.noImplicitAny": "Avvisa in caso di espressioni e dichiarazioni con il tipo 'any' implicito.", + "tsconfig.json.compilerOptions.noLib": "Non include il file di libreria predefinito (lib.d.ts).", + "tsconfig.json.compilerOptions.out": "Concatena e crea l'output in un singolo file.", + "tsconfig.json.compilerOptions.outDir": "Reindirizza la struttura di output alla directory.", + "tsconfig.json.compilerOptions.preserveConstEnums": "Non cancella le dichiarazioni enum const nel codice generato.", + "tsconfig.json.compilerOptions.removeComments": "Non crea commenti nell'output.", + "tsconfig.json.compilerOptions.rootDir": "Consente di specificare la directory radice dei file di input. Usare per controllare la struttura della directory di output con --outDir.", + "tsconfig.json.compilerOptions.sourceMap": "Genera il file '.map' corrispondente.", + "tsconfig.json.compilerOptions.sourceRoot": "Consente di specificare il percorso in cui il debugger deve trovare i file TypeScript invece dei percorsi di origine.", + "tsconfig.json.compilerOptions.suppressImplicitAnyIndexErrors": "Non visualizza gli errori noImplicitAny per gli oggetti di indicizzazione in cui mancano le firme dell'indice.", + "tsconfig.json.compilerOptions.target": "Consente di specificare la versione di destinazione di ECMAScript: 'ES3' (predefinita), 'ES5' o 'ES6' (sperimentale).", + "tsconfig.json.files": "Se in un file tsconfig.json non è presente alcuna proprietà 'files', per impostazione predefinita il compilatore include tutti i file contenuti nella directory e nelle sottodirectory. Se la proprietà 'files' è specificata, vengono inclusi solo tali file.", + "tsconfig.json.title": "Schema JSON per il file di configurazione del compilatore TypeScript" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/json/common/parser/jsonParser.i18n.json b/i18n/ita/src/vs/languages/json/common/parser/jsonParser.i18n.json new file mode 100644 index 00000000000..43c276315ad --- /dev/null +++ b/i18n/ita/src/vs/languages/json/common/parser/jsonParser.i18n.json @@ -0,0 +1,44 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ColonExpected": "Sono previsti i due punti", + "DisallowedExtraPropWarning": "La proprietà {0} non è consentita", + "DoubleQuotesExpected": "Le chiavi di proprietà devono essere racchiuse tra virgolette doppie", + "DuplicateKeyWarning": "Chiave oggetto duplicata", + "End of file expected": "È prevista la fine del file", + "ExpectedCloseBrace": "È prevista la virgola o la parentesi graffa di chiusura", + "ExpectedCloseBracket": "È prevista la virgola o la parentesi quadra di chiusura", + "Invalid symbol": "È previsto un valore letterale, una matrice o un oggetto JSON", + "InvalidEscapeCharacter": "Carattere di escape non valido nella stringa", + "InvalidNumberFormat": "Formato di numero non valido", + "InvalidUnicode": "Sequenza Unicode non valida nella stringa", + "MaxPropWarning": "L'oggetto ha più proprietà del limite di {0}", + "MinPropWarning": "L'oggetto include un numero di proprietà inferiore al numero richiesto di {0}", + "MissingRequiredPropWarning": "Proprietà mancante \"{0}\"", + "PropertyExpected": "È prevista una proprietà", + "RequiredDependentPropWarning": "L'oggetto non include la proprietà {0} richiesta dalla proprietà {1}", + "UnexpectedEndOfComment": "Fine del commento imprevista", + "UnexpectedEndOfNumber": "Fine del numero imprevista", + "UnexpectedEndOfString": "Fine della stringa imprevista", + "ValueExpected": "È previsto un valore", + "additionalItemsWarning": "La matrice ha troppi elementi in base allo schema. Previsti {0} o meno", + "enumWarning": "Il valore non è un valore accettato. Valori validi: {0}", + "exclusiveMaximumWarning": "Il valore è superiore al massimo esclusivo di {0}", + "exclusiveMinimumWarning": "Il valore è inferiore al minimo esclusivo di {0}", + "maxItemsWarning": "Troppi elementi nella matrice. Previsti {0} o meno", + "maxLengthWarning": "La lunghezza della stringa è inferiore alla lunghezza massima di ", + "maximumWarning": "Il valore è superiore al massimo di {0}", + "minItemsWarning": "Troppo pochi elementi nella matrice. Previsti {0} o più", + "minLengthWarning": "La lunghezza della stringa è inferiore alla lunghezza minima di ", + "minimumWarning": "Il valore è inferiore al minimo di {0}", + "multipleOfWarning": "Valore non divisibile per {0}", + "notSchemaWarning": "Corrisponde a uno schema non consentito.", + "oneOfWarning": "Corrisponde a più schemi quando solo uno deve essere convalidato.", + "patternWarning": "La stringa non rispetta il criterio di \"{0}\"", + "typeArrayMismatchWarning": "Tipo errato. Previsto uno di {0}", + "typeMismatchWarning": "Tipo errato. Previsto \"{0}\"", + "uniqueItemsWarning": "Elementi duplicati nella matrice" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/less/common/less.contribution.i18n.json b/i18n/ita/src/vs/languages/less/common/less.contribution.i18n.json new file mode 100644 index 00000000000..8c8720f5d0a --- /dev/null +++ b/i18n/ita/src/vs/languages/less/common/less.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lessConfigurationTitle": "Configurazione LESS", + "lessLint": "Controlla le gravità dei problemi e la convalida LESS." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/less/common/services/intelliSense.i18n.json b/i18n/ita/src/vs/languages/less/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..aa643c5d477 --- /dev/null +++ b/i18n/ita/src/vs/languages/less/common/services/intelliSense.i18n.json @@ -0,0 +1,60 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "less.builtin.abs": "valore assoluto di un numero", + "less.builtin.acos": "arcocoseno - inverso della funzione coseno", + "less.builtin.alpha": "restituisce il canale `alpha` di `@color`", + "less.builtin.argb": "crea un elemento #AARRGGBB", + "less.builtin.asin": "arcoseno - inverso della funzione seno", + "less.builtin.atan": "arcotangente - inverso della funzione tangente", + "less.builtin.blue": "restituisce il canale `blue` di `@color`", + "less.builtin.ceil": "arrotonda per eccesso a un intero", + "less.builtin.color": "analizza una stringa in un colore", + "less.builtin.contrast": "restituisce `@darkcolor` se il valore di @color1 supera del 43% quello di luma, altrimenti restituisce `@lightcolor`; vedere le note", + "less.builtin.convert": "converte i numeri da un tipo in un altro", + "less.builtin.cos": "funzione coseno", + "less.builtin.darken": "restituisce `@color` con punti più scuri del 10%", + "less.builtin.data-uri": "incorpora una risorsa e passa a `url()`", + "less.builtin.desaturate": "restituisce `@color` con una saturazione punti ridotta del 10%", + "less.builtin.e": "contenuto stringa di escape", + "less.builtin.escape": "stringa codificata nell'URL", + "less.builtin.extract": "restituisce un valore in corrispondenza della posizione specificata nell'elenco", + "less.builtin.fade": "restituisce `@color` con una trasparenza pari al 50%", + "less.builtin.fadein": "restituisce `@color` con una trasparenza punti ridotta del 10%", + "less.builtin.fadeout": "restituisce `@color` con una trasparenza punti aumentata del 10%", + "less.builtin.floor": "arrotonda per difetto a un intero", + "less.builtin.green": "restituisce il canale `verde` di `@color`", + "less.builtin.greyscale": "restituisce un colore grigio, desaturato al 100%", + "less.builtin.hsl": "crea un colore", + "less.builtin.hsla": "crea un colore", + "less.builtin.hsv": "crea un colore", + "less.builtin.hsva": "crea un colore", + "less.builtin.hsvhue": "restituisce il canale `hue` di `@color` nello spazio HSV", + "less.builtin.hsvsaturation": "restituisce il canale `saturation` di `@color` nello spazio HSV", + "less.builtin.hsvvalue": "restituisce il canale `value` di `@color` nello spazio HSV", + "less.builtin.hue": "restituisce il canale `hue` di `@color` nello spazio HSL", + "less.builtin.length": "restituisce il numero di elementi in un elenco dei valori", + "less.builtin.lighten": "restituisce `@color` con punti più chiari del 10%", + "less.builtin.lightness": "restituisce il canale `lightness` di `@color` nello spazio HSL", + "less.builtin.luma": "restituisce il valore `luma` (luminosità percepita) di `@color`", + "less.builtin.max": "restituisce il minore di uno o più valori", + "less.builtin.min": "restituisce il minore di uno o più valori", + "less.builtin.mix": "restituisce una combinazione di `@color1` e `@color2`", + "less.builtin.mod": "secondo argomento del resto del primo argomento", + "less.builtin.percentage": "converte in una percentuale, ad esempio 0,5 > 50%", + "less.builtin.pi": "restituisce pi greco", + "less.builtin.pow": "primo argomento elevato alla potenza del secondo argomento", + "less.builtin.red": "restituisce il canale `red` di `@color`", + "less.builtin.replace": "sostituzione stringa", + "less.builtin.round": "arrotonda un numero a un numero di cifre", + "less.builtin.saturate": "restituisce `@color` con una saturazione punti aumentata del 10%", + "less.builtin.saturation": "restituisce il canale `saturation` di `@color` nello spazio HSL", + "less.builtin.sin": "funzione seno", + "less.builtin.spin": "restituisce `@color` con una tonalità aumentata di 10 gradi", + "less.builtin.sqrt": "calcola la radice quadrata di un numero", + "less.builtin.tan": "funzione tangente", + "less.builtin.unit": "rimuove o cambia l'unità di una dimensione" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/markdown/common/markdown.contribution.i18n.json b/i18n/ita/src/vs/languages/markdown/common/markdown.contribution.i18n.json new file mode 100644 index 00000000000..9de6f5357ec --- /dev/null +++ b/i18n/ita/src/vs/languages/markdown/common/markdown.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "markdownConfigurationTitle": "Configurazione dell'anteprima markdown", + "styles": "Elenco di URL o percorsi locali dei fogli di stile CSS da usare dall'anteprima markdown." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/sass/common/parser/sassErrors.i18n.json b/i18n/ita/src/vs/languages/sass/common/parser/sassErrors.i18n.json new file mode 100644 index 00000000000..46f09c553ad --- /dev/null +++ b/i18n/ita/src/vs/languages/sass/common/parser/sassErrors.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.from": "È previsto 'from'", + "expected.in": "È previsto 'in'", + "expected.through": "È previsto 'through' o 'to'" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/sass/common/sass.contribution.i18n.json b/i18n/ita/src/vs/languages/sass/common/sass.contribution.i18n.json new file mode 100644 index 00000000000..89e99c81f70 --- /dev/null +++ b/i18n/ita/src/vs/languages/sass/common/sass.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sassConfigurationTitle": "Configurazione SASS", + "sassLint": "Controlla le gravità dei problemi e la convalida SASS." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/sass/common/services/intelliSense.i18n.json b/i18n/ita/src/vs/languages/sass/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..4179e557f08 --- /dev/null +++ b/i18n/ita/src/vs/languages/sass/common/services/intelliSense.i18n.json @@ -0,0 +1,81 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sass.builtin.abs": "Restituisce il valore assoluto di un numero.", + "sass.builtin.adjust-color": "Aumenta o riduce uno o più componenti di un colore.", + "sass.builtin.adjust-hue": "Cambia la tonalità di un colore.", + "sass.builtin.alpha": "Ottiene il componente di opacità di un colore.", + "sass.builtin.append": "Accoda un singolo valore alla fine di un elenco.", + "sass.builtin.blue": "Ottiene il componente blu di un colore.", + "sass.builtin.call": "Chiama dinamicamente una funzione Sass.", + "sass.builtin.ceil": "Arrotonda per eccesso un numero all'intero successivo.", + "sass.builtin.change-color": "Modifica una o più proprietà di un colore.", + "sass.builtin.comparable": "Restituisce un valore che indica se due numeri possono essere sommati, sottratti o confrontati.", + "sass.builtin.complement": "Restituisce il complemento di un colore.", + "sass.builtin.darken": "Scurisce un colore.", + "sass.builtin.desaturate": "Riduce la saturazione di un colore.", + "sass.builtin.fade-in": "Aumenta l'opacità di un colore.", + "sass.builtin.feature-exists": "Restituisce un valore che indica se una funzionalità esiste nel runtime Sass corrente.", + "sass.builtin.floor": "Arrotonda per difetto un numero all'intero precedente.", + "sass.builtin.function-exists": "Restituisce un valore che indica se esiste una funzione con il nome specificato.", + "sass.builtin.global-variable-exists": "Restituisce un valore che indica se nell'ambito globale esiste una variabile con il nome specificato.", + "sass.builtin.grayscale": "Converte un colore in gradazioni di grigio.", + "sass.builtin.green": "Ottiene il componente verde di un colore.", + "sass.builtin.hue": "Ottiene il componente di tonalità di un colore.", + "sass.builtin.ie-hex-str": "Converte un colore nel formato riconosciuto dai filtri di Internet Explorer.", + "sass.builtin.index": "Restituisce la posizione di un valore in un elenco.", + "sass.builtin.inspect": "Restituisce la rappresentazione di stringa di un valore nel formato visualizzato in Sass.", + "sass.builtin.invert": "Restituisce l'inverso di un colore.", + "sass.builtin.is-superselector": "Restituisce un valore che indica se $super corrisponde quanto meno a tutti gli elementi come $sub.", + "sass.builtin.join": "Unisce due elenchi in uno solo.", + "sass.builtin.keywords": "Restituisce le parole chiave passate a una funzione che accetta argomenti di variabile.", + "sass.builtin.length": "Restituisce la lunghezza di un elenco.", + "sass.builtin.lighten": "Schiarisce un colore.", + "sass.builtin.lightness": "Ottiene il componente di luminosità di un colore.", + "sass.builtin.list-separator": "Restituisce il separatore di un elenco.", + "sass.builtin.map-get": "Restituisce il valore di un mapping associato a una chiave specificata.", + "sass.builtin.map-has-key": "Restituisce un valore che indica se un mapping contiene un valore associato a una chiave specificata.", + "sass.builtin.map-keys": "Restituisce un elenco di tutte le chiavi in un mapping.", + "sass.builtin.map-merge": "Esegue il merge di due mapping in un nuovo mapping.", + "sass.builtin.map-remove": "Restituisce un nuovo mapping con le chiavi rimosse.", + "sass.builtin.map-values": "Restituisce un elenco di tutti i valori in un mapping.", + "sass.builtin.max": "Trova il massimo di diversi numeri.", + "sass.builtin.min": "Trova il minimo di diversi numeri.", + "sass.builtin.mix": "Combina due colori.", + "sass.builtin.mixin-exists": "Restituisce un valore che indica se esiste un parametro mixin con lo stesso nome.", + "sass.builtin.nth": "Restituisce un elemento specifico in un elenco.", + "sass.builtin.opacify": "Aumenta l'opacità di un colore.", + "sass.builtin.percentage": "Converte un numero senza unità in una percentuale.", + "sass.builtin.quote": "Aggiunge le virgolette a una stringa.", + "sass.builtin.random": "Restituisce un numero casuale.", + "sass.builtin.red": "Ottiene il componente rosso di un colore.", + "sass.builtin.rgba": "Cambia il componente alfa per un colore.", + "sass.builtin.round": "Arrotonda un numero all'intero più vicino.", + "sass.builtin.saturate": "Aumenta la saturazione di un colore.", + "sass.builtin.saturation": "Ottiene il componente di saturazione di un colore.", + "sass.builtin.scale-color": "Scala in modo fluido una o più proprietà di un colore.", + "sass.builtin.selector-append": "Accoda i selettori uno all'altro senza aggiungere spazi di separazione.", + "sass.builtin.selector-extend": "Estende $extendee con $extender in $selector.", + "sass.builtin.selector-nest": "Annida il selettore sotto un altro come se fossero annidati in un foglio di stile.", + "sass.builtin.selector-parse": "Analizza un selettore nel formato restituito da &.", + "sass.builtin.selector-replace": "Sostituisce $original con $replacement in $selector.", + "sass.builtin.selector-unify": "Unifica due selettori in modo da ottenerne uno che corrisponde agli elementi presenti in entrambi.", + "sass.builtin.set-nth": "Sostituisce l'ennesimo elemento in un elenco.", + "sass.builtin.simple-selectors": "Restituisce i selettori semplici che costituiscono un selettore composto.", + "sass.builtin.str-index": "Restituisce l'indice della prima occorrenza di $substring in $string.", + "sass.builtin.str-insert": "Inserisce $insert in $string in corrispondenza di $index.", + "sass.builtin.str-length": "Restituisce il numero di caratteri in una stringa.", + "sass.builtin.str-slice": "Estrae una sottostringa da $string.", + "sass.builtin.to-lower-case": "Converte una stringa in minuscolo.", + "sass.builtin.to-upper-case": "Converte una stringa in maiuscolo.", + "sass.builtin.transparentize": "Aumenta la trasparenza di un colore.", + "sass.builtin.type-of": "Restituisce il tipo di un valore.", + "sass.builtin.unit": "Restituisce le unità associate a un numero.", + "sass.builtin.unitless": "Restituisce un valore che indica se per un numero sono disponibili unità.", + "sass.builtin.unquote": "Rimuove le virgolette da una stringa.", + "sass.builtin.variable-exists": "Restituisce un valore che indica se nell'ambito corrente esiste una variabile con il nome specificato.", + "sass.builtin.zip": "Combina diversi elenchi in un unico elenco multidimensionale." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/typescript/common/features/quickFix.i18n.json b/i18n/ita/src/vs/languages/typescript/common/features/quickFix.i18n.json new file mode 100644 index 00000000000..eb2d7d276b3 --- /dev/null +++ b/i18n/ita/src/vs/languages/typescript/common/features/quickFix.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "typescript.quickfix.addAsGlobal": "Contrassegna '{0}' come globale", + "typescript.quickfix.rename": "Rinomina in '{0}'", + "typescript.quickfix.typeDefinitions": "Scarica la definizione di tipo {0}" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/typescript/common/lint/lint.i18n.json b/i18n/ita/src/vs/languages/typescript/common/lint/lint.i18n.json new file mode 100644 index 00000000000..0759956c302 --- /dev/null +++ b/i18n/ita/src/vs/languages/typescript/common/lint/lint.i18n.json @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "javascript.comparisonOperatorNotStrict": "Utilizzare '!==' e '===' anziché '!=' e '=='.", + "javascript.functionInsideLoop": "Funzione all'interno di un ciclo.", + "javascript.missingSemicolon": "Punto e virgola mancante.", + "javascript.newOnLowercaseFunctions": "Funzione con nome in minuscolo utilizzata come costruttore.", + "javascript.reservedKeyword": "Non utilizzare parole chiave riservate.", + "javascript.semicolonInsteadOfBlock": "Punto e virgola invece di blocco.", + "javascript.typeofCannotBeCompared": "Output non previsto dell'operatore 'typeof'.", + "javascript.typescriptSpecific": "Non utilizzare un costrutto di linguaggio specifico di TypeScript in JavaScript.", + "layout.curlyBracketsMustNotBeOmitted": "Non omettere le parentesi graffe.", + "layout.emptyblock": "Il blocco vuoto deve contenere un commento.", + "typescript.looksLikeTripleSlash": "Si intende '/// '?", + "typescript.missingReturnType": "Tipo restituito mancante.", + "typescript.unusedFunction": "Funzione locale non in uso.", + "typescript.unusedImport": "Importazione non in uso.", + "typescript.unusedLocalVariable": "Variabile locale non in uso.", + "typescript.unusedPrivateMember": "Membro privato non in uso.", + "typescript.variableUsedBeforeDeclared": "Variabile utilizzata prima di essere dichiarata." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/typescript/common/typescript.contribution.i18n.json b/i18n/ita/src/vs/languages/typescript/common/typescript.contribution.i18n.json new file mode 100644 index 00000000000..05403ef1cc6 --- /dev/null +++ b/i18n/ita/src/vs/languages/typescript/common/typescript.contribution.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "Includere sempre tutte le parole del documento corrente.", + "baseUrl": "Consente di configurare l'URL di base utilizzato per risolvere i riferimenti al modulo (http://requirejs.org/docs/api.html#config-baseUrl). Questa opzione si applica solo ai progetti che utilizzano la definizione di modulo asincrono (\"module\": \"amd\").", + "compilationSettings": "Determina la modalità di funzionamento della convalida di TypeScript.", + "lint": "Determina vari aspetti della convalida.", + "lint.comparisonOperatorsNotStrict": "Utilizzare '!==' e '===' anziché '!=' e '=='.", + "lint.curlyBracketsMustNotBeOmitted": "Non omettere le parentesi graffe.", + "lint.emptyBlocksWithoutComment": "Il blocco vuoto deve contenere un commento.", + "lint.functionsInsideLoops": "Funzione all'interno di un ciclo.", + "lint.functionsWithoutReturnType": "Non omettere l'annotazione del tipo restituito per le funzioni.", + "lint.missingSemicolon": "Punto e virgola mancante.", + "lint.newOnLowercaseFunctions": "Funzione con nome in minuscolo utilizzata come costruttore.", + "lint.reservedKeywords": "Non utilizzare parole chiave riservate.", + "lint.semicolonsInsteadOfBlocks": "Punto e virgola invece di blocco.", + "lint.tripleSlashReferenceAlike": "Cerca i riferimenti con tripla barra digitati in modo non corretto.", + "lint.typeScriptSpecifics": "Non utilizzare un costrutto di linguaggio specifico di TypeScript in JavaScript.", + "lint.unknownTypeOfResults": "Output non previsto dell'operatore 'typeof'.", + "lint.unusedFunctions": "Funzione locale non in uso.", + "lint.unusedMembers": "Membro privato non in uso.", + "lint.unusedVariables": "Variabile locale non in uso.", + "module": "Specifica il sistema di moduli da utilizzare.", + "noImplicitAny": "Imporre in modo esplicito una dichiarazione di tipo.", + "noLib": "Non utilizzare digitazioni per l'ambiente DOM e browser.", + "scope": "In presenza di più impostazioni di convalida definisce la sottocartella a cui vengono applicate.", + "suggestSettings": "Controlla il funzionamento di IntelliSense in TypeScript.", + "target": "Specifica la versione di ECMA-Script utilizzata.", + "tsConfigurationTitle": "Configurazione di TypeScript", + "useCodeSnippetsOnMethodSuggest": "Completare le funzioni con la relativa firma del parametro." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/languages/typescript/common/typescriptMode.i18n.json b/i18n/ita/src/vs/languages/typescript/common/typescriptMode.i18n.json new file mode 100644 index 00000000000..c0a3cb8a192 --- /dev/null +++ b/i18n/ita/src/vs/languages/typescript/common/typescriptMode.i18n.json @@ -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. +{ + "err.tooMuchData": "Sono presenti troppi file di origine JavaScript per il codice VS. Provare a usare la proprietà exclude in jsconfig.json." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/platform/configuration/common/configurationRegistry.i18n.json b/i18n/ita/src/vs/platform/configuration/common/configurationRegistry.i18n.json new file mode 100644 index 00000000000..80530ea182f --- /dev/null +++ b/i18n/ita/src/vs/platform/configuration/common/configurationRegistry.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "invalid.properties": "'configuration.properties' deve essere un oggetto", + "invalid.title": "'configuration.title' deve essere una stringa", + "invalid.type": "se impostato, 'configuration.type' deve essere impostato su 'object", + "vscode.extension.contributes.configuration": "Impostazioni di configurazione di contributes.", + "vscode.extension.contributes.configuration.properties": "Descrizione delle proprietà di configurazione.", + "vscode.extension.contributes.configuration.title": "Riepilogo delle impostazioni. Questa etichetta verrà usata nel file di impostazioni come commento di separazione." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json b/i18n/ita/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json new file mode 100644 index 00000000000..e0837d96db4 --- /dev/null +++ b/i18n/ita/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "first.chord": "È stato premuto ({0}). In attesa del secondo tasto...", + "missing.chord": "La combinazione di tasti ({0}, {1}) non è un comando.", + "unboundCommands": "Altri comandi disponibili: " +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/electron-main/main.i18n.json b/i18n/ita/src/vs/workbench/electron-main/main.i18n.json new file mode 100644 index 00000000000..d19ec2fd96c --- /dev/null +++ b/i18n/ita/src/vs/workbench/electron-main/main.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expired": "Versione scaduta", + "expiredDetail": "Questa versione preliminare di {0} è scaduta.\n\nVisitare {1} per scaricare la versione corrente.", + "newWindow": "Nuova finestra", + "openWebSite": "Apri sito Web", + "quit": "Esci" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json b/i18n/ita/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json new file mode 100644 index 00000000000..6c31fd088bc --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json @@ -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. +{ + "globalConsoleActionMacLinux": "Apri nuovo terminale", + "globalConsoleActionWin": "Apri nuovo prompt dei comandi", + "scopedConsoleActionMacLinux": "Apri nel terminale", + "scopedConsoleActionWin": "Apri nel prompt dei comandi" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/feedback/browser/feedback.i18n.json b/i18n/ita/src/vs/workbench/parts/feedback/browser/feedback.i18n.json new file mode 100644 index 00000000000..f72b6b628c6 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/feedback/browser/feedback.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "character left": "carattere rimasto", + "characters left": "caratteri rimasti", + "commentsHeader": "Commenti", + "feedbackSending": "Invio", + "feedbackSendingError": "Riprovare", + "feedbackSent": "Grazie", + "frownCaption": "Triste", + "label.sendASmile": "Invia commenti e suggerimenti tramite Twitter.", + "other ways to contact us": "Altri modi per contattare Microsoft", + "request a missing feature": "Richiedi una funzionalità mancante", + "sendFeedback": "Invia commenti e suggerimenti tramite Twitter", + "sentiment": "Grado di soddisfazione dell'esperienza", + "smileCaption": "Felice", + "submit a bug": "Segnala un bug", + "tell us why?": "Motivo", + "tweet": "Invia un tweet" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/files/browser/fileActions.i18n.json b/i18n/ita/src/vs/workbench/parts/files/browser/fileActions.i18n.json new file mode 100644 index 00000000000..393753eb64d --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -0,0 +1,62 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "addToWorkingFiles": "Aggiungi file attivo a file di lavoro", + "closeAllFiles": "Chiudi tutti i file", + "closeAllLabel": "Chiudi tutti i file", + "closeFile": "Chiudi file", + "closeLabel": "Chiudi file", + "closeOtherFiles": "Chiudi gli altri file", + "closeOtherLabel": "Chiudi gli altri file", + "compareFiles": "Confronta file", + "compareLabels": "{0} ↔ {1}", + "compareSource": "Seleziona per il confronto", + "compareWith": "Confronta con '{0}'", + "confirmDeleteMessageFile": "Eliminare definitivamente '{0}'?", + "confirmDeleteMessageFolder": "Eliminare definitivamente '{0}' e il relativo contenuto?", + "confirmMoveTrashMessageFile": "Eliminare '{0}'?", + "confirmMoveTrashMessageFolder": "Eliminare '{0}' e il relativo contenuto?", + "confirmOverwrite": "Nella cartella di destinazione esiste già un file o una cartella con lo stesso nome. Sovrascrivere?", + "copyFile": "Copia", + "createNewFile": "Nuovo file", + "createNewFolder": "Nuova cartella", + "delete": "Elimina", + "deleteButtonLabel": "&&Elimina", + "deleteButtonLabelRecycleBin": "&&Sposta nel Cestino", + "deleteButtonLabelTrash": "&&Sposta nel cestino", + "duplicateFile": "Duplicato", + "emptyFileNameError": "È necessario specificare un nome file o un nome di cartella.", + "fileNameExistsError": "In questo percorso esiste già un file o una cartella **{0}**. Scegliere un nome diverso.", + "filePathTooLongError": "Con il nome **{0}** il percorso diventa troppo lungo. Scegliere un nome più breve.", + "focusWorkingFiles": "Stato attivo su file di lavoro", + "globalCompareFile": "Confronta file attivo con...", + "importFiles": "Importa file", + "invalidFileNameError": "Il nome **{0}** non è valido per un nome file o un nome di cartella. Scegliere un nome diverso.", + "irreversible": "Questa azione è irreversibile.", + "newFile": "Nuovo file", + "newFolder": "Nuova cartella", + "noFileOpen": "Non ci sono attualmente file aperti da chiudere.", + "noWorkingFiles": "Non ci sono attualmente file di lavoro.", + "openFileToAdd": "Aprire prima un file per aggiungerlo ai file di lavoro", + "openFileToCompare": "Aprire prima un file per confrontarlo con un altro file.", + "openNextWorkingFile": "Apri file di lavoro successivo", + "openPreviousWorkingFile": "Apri file di lavoro precedente", + "openToSide": "Apri lateralmente", + "pasteFile": "Incolla", + "permDelete": "Elimina definitivamente", + "refresh": "Aggiorna", + "rename": "Rinomina", + "replaceButtonLabel": "&&Sostituisci", + "retry": "Riprova", + "revert": "Ripristina file", + "save": "Salva", + "saveAll": "Salva tutto", + "saveFiles": "Salva file modificati ma non salvati", + "unableToFileToCompare": "Non è possibile confrontare il file selezionato con '{0}'.", + "undoBin": "È possibile ripristinare dal Cestino.", + "undoTrash": "È possibile ripristinare dal cestino.", + "warningFileDirty": "Il salvataggio del file '{0}' è attualmente in corso. Riprovare più tardi." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json b/i18n/ita/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json new file mode 100644 index 00000000000..60d745611f4 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "createNewBranch": "Crea nuovo ramo", + "dupeBranchName": "Nome ramo già esistente.", + "invalidBranchName": "Nome ramo non valido." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json b/i18n/ita/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json new file mode 100644 index 00000000000..d95ad8bcb39 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "git": "GIT", + "openChange": "Apri modifica", + "openInEditor": "Passa alla visualizzazione editor", + "stageSelectedLines": "Gestisci temporaneamente le righe selezionate", + "switchToChangesView": "Passa alla visualizzazione modifiche" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/ita/src/vs/workbench/parts/git/browser/gitActions.i18n.json new file mode 100644 index 00000000000..e128864b2e4 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -0,0 +1,51 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "authFailed": "L'autenticazione non è riuscita su git remote.", + "branch": "Ramo", + "branch2": "Ramo", + "checkout": "Estrai", + "cleanChangesLabel": "&&Pulisci modifiche", + "commitAll": "Esegui commit di tutto", + "commitAll2": "Esegui commit di tutto", + "commitStaged": "Esegui commit delle righe preparate", + "commitStaged2": "Esegui commit delle righe preparate", + "confirmPublishMessage": "Pubblicare '{0}' in '{1}'?", + "confirmPublishMessageButton": "&&Pubblica", + "confirmUndo": "Pulire le modifiche in '{0}'?", + "confirmUndoAllMultiple": "In {0} file ci sono modifiche non preparate per il commit.\n\nQuesta azione è irreversibile.", + "confirmUndoAllOne": "In {0} file ci sono modifiche non preparate per il commit.\n\nQuesta azione è irreversibile.", + "confirmUndoMessage": "Pulire tutte le modifiche?", + "currentBranch": "Il ramo corrente '{0}' è aggiornato.", + "currentBranchPlural": "Il ramo corrente '{0}' è {1} commit indietro e {2} commit avanti rispetto a '{3}'.", + "currentBranchPluralSingle": "Il ramo corrente '{0}' è {1} commit indietro e {2} commit avanti rispetto a '{3}'.", + "currentBranchSingle": "Il ramo corrente '{0}' è {1} commit indietro e {2} commit avanti rispetto a '{3}'.", + "currentBranchSinglePlural": "Il ramo corrente '{0}' è {1} commit indietro e {2} commit avanti rispetto a '{3}'.", + "currentlyDetached": "Non è possibile eseguire la sincronizzazione se non si è collegati.", + "dirtyChanges": "Eseguire il commit delle modifiche, annullarle o salvarle con il comando stash prima della sincronizzazione.", + "dirtyTreeCheckout": "Non è possibile eseguire l'estrazione. Eseguire prima il commit del lavoro o prepararlo per il commit.", + "dirtyTreePull": "Non è possibile eseguire il pull. Eseguire prima il commit del lavoro o prepararlo per il commit.", + "init": "Init", + "irreversible": "Questa azione è irreversibile.", + "noUpstream": "Il ramo '{0}' corrente non contiene un ramo a monte configurato.", + "openChange": "Apri modifica", + "openFile": "Apri file", + "publish": "Pubblica", + "publishPickMessage": "Selezionare un repository remoto in cui pubblicare il ramo '{0}':", + "pull": "Pull", + "pullWithRebase": "Esegui pull (Riassegna)", + "push": "Push", + "refresh": "Aggiorna", + "stageAllChanges": "Gestisci tutto temporaneamente", + "stageChanges": "Prepara", + "sync": "Sincronizza", + "synchronizing": "Sincronizzazione...", + "undoAllChanges": "Pulisci tutto", + "undoChanges": "Pulisci", + "undoLastCommit": "Annulla ultimo commit", + "unstage": "Annulla preparazione", + "unstageAllChanges": "Annulla la gestione temporanea di tutto" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/git/browser/gitServices.i18n.json b/i18n/ita/src/vs/workbench/parts/git/browser/gitServices.i18n.json new file mode 100644 index 00000000000..4c4c975ef44 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "badConfigFile": "GIT {0}", + "cancel": "Annulla", + "cantOpen": "Non è possibile aprire questa risorsa GIT.", + "cantOpenResource": "Non è possibile aprire questa risorsa GIT.", + "changesFromIndex": "{0} - Modifiche nell'indice", + "changesFromTree": "{0} - Modifiche in {1}", + "checkNativeConsole": "Si è verificato un errore durante l'esecuzione di un'operazione git. Esaminare l'output oppure usare la console per controllare lo stato del repository.", + "configureUsernameEmail": "Configurare il nome utente e l'indirizzo di posta elettronica di GIT.", + "gitIndexChanges": "{0} - Modifiche nell'indice", + "gitIndexChangesRenamed": "{0} - Rinominato - Modifiche nell'indice", + "gitMergeChanges": "{0} - Esegui merge delle modifiche", + "showOutput": "Mostra output", + "unmergedChanges": "Prima di eseguire il commit delle modifiche, è necessario risolvere le modifiche non sottoposte a merge.", + "workingTreeChanges": "{0} - Modifiche nell'albero di lavoro" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json b/i18n/ita/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json new file mode 100644 index 00000000000..446a3ecb807 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "commitMessage": "Messaggio (premere {0} per eseguire il commit)", + "commitMessageAriaLabel": "GIT: digitare il messaggio e premere {0} per eseguire il commit", + "needMessage": "Fornire un messaggio di commit. È sempre possibile premere **{0}** per eseguire il commit delle modifiche. Se sono presenti modifiche preparate per il commit, verrà eseguito il commit solo di tali modifiche. In caso contrario, verrà eseguito il commit di tutte le modifiche.", + "nothingToCommit": "Non appena sono presenti modifiche di cui eseguire il commit, immettere il messaggio di commit e premere **{0}** per eseguire il commit. Se sono presenti modifiche preparate per il commit, verrà eseguito il commit solo di tali modifiche. In caso contrario, verrà eseguito il commit di tutte le modifiche.", + "showOutput": "Mostra output GIT", + "treeAriaLabel": "Visualizzazione modifiche GIT" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json b/i18n/ita/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json new file mode 100644 index 00000000000..41cd5a8e054 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "added-char": "A", + "allChanges": "Modifiche", + "ariaLabelChanges": "Modifiche, GIT", + "ariaLabelMerge": "Merge, GIT", + "ariaLabelStagedChanges": "Modifiche preparate per il commit, GIT", + "copied-char": "C", + "deleted-char": "D", + "fileStatusAriaLabel": "Lo stato del file {0} nella cartella {1} è: {2}, GIT", + "ignored-char": "!", + "mergeChanges": "Esegui merge delle modifiche", + "modified-char": "M", + "outsideOfWorkspace": "Questo file non è presente nell'area di lavoro corrente.", + "renamed-char": "R", + "stagedChanges": "Modifiche preparate per il commit", + "title-conflict-added-by-them": "Conflitto: aggiunto dall'utente", + "title-conflict-added-by-us": "Conflitto: aggiunto da Microsoft", + "title-conflict-both-added": "Conflitto: aggiunto dall'utente e da Microsoft", + "title-conflict-both-deleted": "Conflitto: eliminato dall'utente e da Microsoft", + "title-conflict-both-modified": "Conflitto: modificato dall'utente e da Microsoft", + "title-conflict-deleted-by-them": "Conflitto: eliminato dall'utente", + "title-conflict-deleted-by-us": "Conflitto: eliminato da Microsoft", + "title-deleted": "Eliminato", + "title-ignored": "Ignorato", + "title-index-added": "Aggiunto all'indice", + "title-index-copied": "Copiato nell'indice", + "title-index-deleted": "Eliminato nell'indice", + "title-index-modified": "Modificato nell'indice", + "title-index-renamed": "Rinominato nell'indice", + "title-modified": "Modificato", + "title-untracked": "Non registrato", + "untracked-char": "U" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json b/i18n/ita/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json new file mode 100644 index 00000000000..0cdeb36c8da --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json @@ -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. +{ + "markdownPreviewNoFile": "Aprire prima un file markdown per visualizzare un'anteprima.", + "openPreview": "Apri l'anteprima", + "openPreviewSideBySide": "Apri anteprima lateralmente", + "toggleMarkdownPreview": "Attiva/Disattiva anteprima" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/output/browser/outputActions.i18n.json b/i18n/ita/src/vs/workbench/parts/output/browser/outputActions.i18n.json new file mode 100644 index 00000000000..612ed244dfb --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/output/browser/outputActions.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "clearOutput": "Cancella output", + "switchToOutput.label": "Passa all'output", + "toggleOutput": "Attiva/Disattiva output" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json b/i18n/ita/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json new file mode 100644 index 00000000000..5cbd9792a3a --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json @@ -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. +{ + "QuickCommandsAction.label": "Mostra comandi dell'editor", + "actionNotEnabled": "Il comando '{0}' non è abilitato nel contesto corrente.", + "canNotRun": "Non è possibile eseguire il comando '{0}' da questa posizione.", + "commandLabel": "{0}: {1}", + "entryAriaLabel": "{0}, comandi", + "noCommandsMatching": "Non ci sono comandi corrispondenti", + "showTriggerActions": "Mostra tutti i comandi" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json b/i18n/ita/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json new file mode 100644 index 00000000000..ad12799d792 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json @@ -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. +{ + "cannotRunGotoLine": "Aprire prima un file di testo per passare a una riga", + "gotoLine": "Vai alla riga...", + "gotoLineColumnLabel": "Vai a riga {0} e a colonna {1}", + "gotoLineHandlerAriaLabel": "Digitare un numero di riga a cui passare.", + "gotoLineLabel": "Vai a riga {0}", + "gotoLineLabelEmpty": "Digitare un numero di riga a cui passare", + "gotoLineLabelEmptyWithLimit": "Digitare un numero di riga a cui passare compreso tra 1 e {0}" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json b/i18n/ita/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json new file mode 100644 index 00000000000..effe65fd979 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "_constructor": "costruttori ({0})", + "array": "matrici ({0})", + "boolean": "valori booleani ({0})", + "cannotRunGotoSymbol": "Aprire prima un file di testo per passare a un simbolo", + "cannotRunGotoSymbolInFile": "Non sono disponibili informazioni relative ai simboli per il file", + "class": "classi ({0})", + "entryAriaLabel": "{0}, simboli", + "enum": "enumerazioni ({0})", + "file": "file ({0})", + "function": "funzioni ({0})", + "gotoSymbol": "Vai al simbolo...", + "gotoSymbolHandlerAriaLabel": "Digitare per ridurre il numero di simboli dell'editor attualmente attivo.", + "interface": "interfacce ({0})", + "key": "chiavi ({0})", + "method": "metodi ({0})", + "modules": "moduli ({0})", + "namespace": "spazi dei nomi ({0})", + "noSymbolsFound": "Non sono stati trovati simboli", + "noSymbolsMatching": "Non ci sono simboli corrispondenti", + "number": "numeri ({0})", + "object": "oggetti ({0})", + "package": "pacchetti ({0})", + "property": "proprietà ({0})", + "rule": "regole ({0})", + "string": "stringhe ({0})", + "symbols": "simboli ({0})", + "variable": "variabili ({0})" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json b/i18n/ita/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json new file mode 100644 index 00000000000..9e54c564cc8 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "editorCommands": "comandi dell'editor", + "entryAriaLabel": "{0}, Guida per la selezione", + "globalCommands": "comandi globali" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json b/i18n/ita/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json new file mode 100644 index 00000000000..56752e8112c --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json @@ -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. +{ + "fileAndTypeResults": "risultati per file e simboli" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json b/i18n/ita/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json new file mode 100644 index 00000000000..a8b29535255 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "entryAriaLabel": "{0}, selezione file", + "searchResults": "risultati ricerca" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json b/i18n/ita/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json new file mode 100644 index 00000000000..9986ce758e1 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json @@ -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. +{ + "entryAriaLabel": "{0}, selezione simboli", + "noSymbolsMatching": "Non ci sono simboli corrispondenti", + "noSymbolsWithoutInput": "Digitare per cercare i simboli", + "symbols": "risultati per simboli" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/search/browser/search.contribution.i18n.json b/i18n/ita/src/vs/workbench/parts/search/browser/search.contribution.i18n.json new file mode 100644 index 00000000000..64c0cc91852 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/search/browser/search.contribution.i18n.json @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "exclude": "Consente di configurare i criteri GLOB per escludere file e cartelle nelle ricerche. Eredita tutti i criteri GLOB dall'impostazione file.exclude.", + "exclude.boolean": "Criterio GLOB da usare per trovare percorsi file. Impostare su True o False per abilitare o disabilitare il criterio.", + "exclude.when": "Controllo aggiuntivo sugli elementi di pari livello di un file corrispondente. Usare $(basename) come variabile del nome file corrispondente.", + "findInFolder": "Trova nella cartella", + "name": "Cerca", + "openAnythingHandlerDescription": "Apri file e simboli per nome", + "openSymbolDescriptionNormal": "Apri simbolo per nome", + "searchConfigurationTitle": "Configurazione ricerca", + "showSearchViewlet": "Mostra Cerca", + "showTriggerActions": "Mostra tutti i simboli", + "view": "Visualizza" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json b/i18n/ita/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json new file mode 100644 index 00000000000..e461030d944 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ClearSearchResultsAction.label": "Cancella risultati della ricerca", + "CollapseAllAction.label": "Comprimi", + "ConfigureGlobalExclusionsAction.label": "Apri impostazioni", + "RefreshAction.label": "Aggiorna", + "RemoveAction.label": "Rimuovi", + "SelectOrRemoveAction.removeLabel": "Rimuovi", + "SelectOrRemoveAction.selectLabel": "Seleziona", + "ariaSearchResultsStatus": "La ricerca ha restituito {0} risultati in {1} file", + "defaultLabel": "input", + "fileMatchAriaLabel": "{0} corrispondenze nel file {1} della cartella {2}, risultato della ricerca", + "findInFolder": "Trova nella cartella", + "findPlaceHolder": "Premere INVIO per cercare o ESC per annullare", + "globLabel": "{0} quando {1}", + "global.searchScope.folders": "file esclusi tramite impostazioni", + "label.Search": "Cerca: digitare il termine di ricerca e premere INVIO per cercare oppure ESC per annullare", + "label.excludes": "Criteri di esclusione per la ricerca", + "label.global.excludes": "Criteri di esclusione per la ricerca configurati", + "label.includes": "Criteri di inclusione per la ricerca", + "moreSearch": "Attiva/Disattiva dettagli ricerca", + "noMatches": "nessuna corrispondenza", + "noResultsExcludes": "Non sono stati trovati risultati escludendo '{0}' - ", + "noResultsFound": "Non sono stati trovati risultati. Rivedere le impostazioni relative alle esclusioni configurate - ", + "noResultsIncludes": "Non sono stati trovati risultati in '{0}' - ", + "noResultsIncludesExcludes": "Non sono stati trovati risultati in '{0}' escludendo '{1}' - ", + "openSettings.message": "Apri impostazioni", + "patternDescription": "Usa criteri GLOB", + "patternHelpInclude": "Criterio da usare per la ricerca, ad esempio ****/*.js** per cercare tutti i file JavaScript oppure **cartellaPersonale/**** per cercare la cartella specificata con tutti gli elementi figlio.\n\n**Informazioni di riferimento**:\n***** consente di cercare 0 o più caratteri\n**?** consente di cercare 1 carattere\n****** consente di cercare zero o più directory\n**[a-z]** consente di cercare un intervallo di caratteri\n**{a,b}** consente di cercare uno qualsiasi dei criteri", + "regexp.validationFailure": "Espressione corrispondente a qualsiasi valore", + "rerunSearch.message": "Cerca di nuovo", + "rerunSearchInAll.message": "Cerca di nuovo in tutti i file", + "searchCanceled": "La ricerca è stata annullata prima della visualizzazione dei risultati - ", + "searchMatch": "{0} corrispondenza trovata", + "searchMatches": "{0} corrispondenze trovate", + "searchMaxResultsWarning": "Il set di risultati contiene solo un subset di tutte le corrispondenze. Eseguire una ricerca più specifica per ridurre il numero di risultati.", + "searchResultAria": "{0}, risultato della ricerca", + "searchScope.excludes": "file da escludere", + "searchScope.includes": "file da includere", + "treeAriaLabel": "Risultati ricerca" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/services/message/browser/messageService.i18n.json b/i18n/ita/src/vs/workbench/services/message/browser/messageService.i18n.json new file mode 100644 index 00000000000..75ff1befe1b --- /dev/null +++ b/i18n/ita/src/vs/workbench/services/message/browser/messageService.i18n.json @@ -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. +{ + "closeMessages": "Chiudi i messaggi di notifica" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json b/i18n/ita/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json new file mode 100644 index 00000000000..770042f956b --- /dev/null +++ b/i18n/ita/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "pluginHostProcess.crash": "L'host dell'estensione è stato terminato in modo imprevisto. Ricaricare la finestra per ripristinare.", + "pluginHostProcess.error": "Errore restituito dall'host dell'estensione: {0}", + "pluginHostProcess.startupFail": "L'host dell'estensione non è stato avviato entro 10 secondi. Potrebbe essersi verificato un problema.", + "pluginHostProcess.startupFailDebug": "L'host dell'estensione non è stato avviato entro 10 secondi. Potrebbe essersi arrestato alla prima riga e richiedere un debugger per continuare.", + "reloadWindow": "Ricarica finestra" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/base/browser/ui/actionbar/actionbar.i18n.json b/i18n/jpn/src/vs/base/browser/ui/actionbar/actionbar.i18n.json new file mode 100644 index 00000000000..4ecb2c803f4 --- /dev/null +++ b/i18n/jpn/src/vs/base/browser/ui/actionbar/actionbar.i18n.json @@ -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. +{ + "titleLabel": "{0} ({1})" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/base/browser/ui/findinput/findInput.i18n.json b/i18n/jpn/src/vs/base/browser/ui/findinput/findInput.i18n.json new file mode 100644 index 00000000000..9c94a683c8c --- /dev/null +++ b/i18n/jpn/src/vs/base/browser/ui/findinput/findInput.i18n.json @@ -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. +{ + "caseDescription": "大文字と小文字を区別する", + "defaultLabel": "入力", + "regexDescription": "正規表現を使用する", + "wordsDescription": "単語単位で検索する" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/base/browser/ui/messagelist/messageList.i18n.json b/i18n/jpn/src/vs/base/browser/ui/messagelist/messageList.i18n.json new file mode 100644 index 00000000000..7f3c35688a9 --- /dev/null +++ b/i18n/jpn/src/vs/base/browser/ui/messagelist/messageList.i18n.json @@ -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. +{ + "alertErrorMessage": "エラー: {0}", + "alertInfoMessage": "情報: {0}", + "alertWarningMessage": "警告: {0}", + "close": "閉じる", + "error": "エラー", + "info": "情報", + "warning": "警告" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json b/i18n/jpn/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json new file mode 100644 index 00000000000..f52975f02a1 --- /dev/null +++ b/i18n/jpn/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingAudioSupport": "オーディオ ファイルの再生はサポートされていません。", + "missingVideoSupport": "ビデオ ファイルの再生はサポートされていません。", + "nativeBinaryError": "このファイルはバイナリか、非常に大きいか、またはサポートされていないテキスト エンコードを使用しているため、エディターで表示できません。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/base/browser/ui/toolbar/toolbar.i18n.json b/i18n/jpn/src/vs/base/browser/ui/toolbar/toolbar.i18n.json new file mode 100644 index 00000000000..e0c77fe94a2 --- /dev/null +++ b/i18n/jpn/src/vs/base/browser/ui/toolbar/toolbar.i18n.json @@ -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. +{ + "more": "その他" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/base/common/errors.i18n.json b/i18n/jpn/src/vs/base/common/errors.i18n.json new file mode 100644 index 00000000000..67179d42fec --- /dev/null +++ b/i18n/jpn/src/vs/base/common/errors.i18n.json @@ -0,0 +1,25 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "error.connection.unknown": "不明な接続エラーが発生しました。インターネット接続が切れたか、接続先のサーバーがオフラインです。", + "error.connection.unknown.verbose": "不明な接続エラー ({0})", + "error.defaultMessage": "不明なエラーが発生しました。ログで詳細を確認してください。", + "error.http": "{0} (HTTP {1})", + "error.http.verbose": "{0} (HTTP {1}: {2})", + "error.moreErrors": "{0} (合計 {1} エラー)", + "error.permission": "アクセス許可が拒否されました", + "error.permission.verbose": "アクセス許可が拒否されました (HTTP {0})", + "illegalArgumentError": "無効な引数: {0}", + "illegalArgumentError2": "無効な引数", + "illegalStateError": "無効な状態: {0}", + "illegalStateError2": "無効な状態", + "loaderError": "必要なファイルを読み込みに失敗しました。インターネット接続が切れたか、接続先のサーバーがオフラインです。ブラウザーを更新して、もう一度やり直してください。", + "loaderErrorNative": "必要なファイルの読み込みに失敗しました。アプリケーションを再起動してもう一度試してください。詳細: {0}", + "message": "{0}。エラー コード: {1}", + "nodeExceptionMessage": "システム エラーが発生しました ({0})", + "notImplementedError": "実装されていません", + "stackTrace.format": "{0}: {1}" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/base/common/json.i18n.json b/i18n/jpn/src/vs/base/common/json.i18n.json new file mode 100644 index 00000000000..e0bc5612370 --- /dev/null +++ b/i18n/jpn/src/vs/base/common/json.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "CloseBraceExpected": "右中かっこが必要です", + "CloseBracketExpected": "右角かっこが必要です", + "ColonExpected": "コロンが必要です", + "CommaExpected": "コンマが必要です", + "EOFExpected": "コンテンツの終わりが必要です", + "InvalidNumberFormat": "無効な数値表示形式", + "PropertyExpected": "プロパティ名が必要です", + "UnknownSymbol": "無効なシンボル", + "ValeExpected": "値が必要です", + "ValueExpected": "値が必要です" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/base/common/severity.i18n.json b/i18n/jpn/src/vs/base/common/severity.i18n.json new file mode 100644 index 00000000000..da4fbd4505f --- /dev/null +++ b/i18n/jpn/src/vs/base/common/severity.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sev.error": "エラー", + "sev.info": "情報", + "sev.warning": "警告" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/base/common/strings.i18n.json b/i18n/jpn/src/vs/base/common/strings.i18n.json new file mode 100644 index 00000000000..2ce7fd1a69b --- /dev/null +++ b/i18n/jpn/src/vs/base/common/strings.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "diff.days": "{0} 日", + "diff.days.month": "1 か月前", + "diff.days.verbose": "{0} 日前", + "diff.days.week": "1 週間前", + "diff.days.yesterday": "昨日", + "diff.hour.verbose": "1 時間前", + "diff.hours": "{0} 時間", + "diff.hours.verbose": "{0} 時間前", + "diff.minute.verbose": "1 分前", + "diff.minutes": "{0} 分", + "diff.minutes.verbose": "{0} 分前", + "diff.seconds": "{0} 秒", + "diff.seconds.verbose": "たった今", + "format.date": "{0}-{1}-{2} {3}:{4}:{5}", + "format.time": "{0}:{1}:{2}" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/browser/view/viewImpl.i18n.json b/i18n/jpn/src/vs/editor/browser/view/viewImpl.i18n.json new file mode 100644 index 00000000000..3fdfb4e461b --- /dev/null +++ b/i18n/jpn/src/vs/editor/browser/view/viewImpl.i18n.json @@ -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. +{ + "editorViewAccessibleLabel": "エディターのコンテンツ" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/common/config/commonEditorConfig.i18n.json b/i18n/jpn/src/vs/editor/common/config/commonEditorConfig.i18n.json new file mode 100644 index 00000000000..8e5f7e094db --- /dev/null +++ b/i18n/jpn/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "autoClosingBrackets": "エディターで左角かっこの後に自動的に右角かっこを挿入するかどうかを制御します", + "cursorBlinking": "カーソルのアニメーションの点滅を制御します。指定できる値は 'blink'、'visible'、'hidden' です", + "cursorStyle": "カーソルのスタイルを制御します。指定できる値は 'block' と 'line' です", + "editorConfigurationTitle": "エディターの構成", + "folding": "エディターでコードの折りたたみを有効にするかどうかを制御します", + "fontFamily": "フォント ファミリを制御します。", + "fontLigatures": "フォントの合字を使用します", + "fontSize": "フォント サイズを制御します。", + "formatOnType": "エディターで入力後に自動的に行の書式設定を行うかどうかを制御します", + "glyphMargin": "グリフ余白の表示を制御します", + "hideCursorInOverviewRuler": "概要ルーラーでカーソルを非表示にするかどうかを制御します。", + "ignoreTrimWhitespace": "差分エディターが、先頭または末尾の空白の変更を差分として表示するかどうかを制御します。", + "insertSpaces": "エディターでタブの代わりにスペースを挿入するかどうかを制御します。指定できる値は \"auto\"、true、false です。\"auto\" に設定した場合、ファイルを開くときに値が推測されます。", + "lineHeight": "行の高さを制御します。", + "lineNumbers": "行番号の表示を制御します", + "mouseWheelScrollSensitivity": "マウス ホイール スクロール イベントの `deltaX` と `deltaY` で使用される乗数", + "overviewRulerLanes": "概要ルーラーの同じ位置に表示できる装飾の数を制御します", + "quickSuggestions": "入力中にクイック候補を表示するかどうかを制御します", + "quickSuggestionsDelay": "クイック候補が表示されるまでの待ち時間 (ミリ秒) を制御します", + "referenceInfos": "サポートしているモードについての参照情報をエディターで表示するかどうかを制御します", + "renderWhitespace": "エディターで空白文字を表示するかどうかを制御します", + "roundedSelection": "選択範囲の角を丸くするかどうかを制御します", + "rulers": "垂直ルーラーを表示する列", + "scrollBeyondLastLine": "エディターで最後の行を越えてスクロールするかどうかを制御します", + "selectionHighlight": "エディターで選択範囲に類似する一致箇所を強調表示するかどうかを制御します", + "sideBySide": "差分エディターが差分を横に並べて表示するか、行内に表示するかを制御します", + "suggestOnTriggerCharacters": "トリガー文字の入力時に候補が自動的に表示されるようにするかどうかを制御します", + "tabSize": "タブの表示サイズ (文字数単位) を制御します。指定できる値は \"auto\"、2、4、6 などです。\"auto\" に設定した場合、ファイルを開くときに値が推測されます。", + "wordSeparators": "単語に関連したナビゲーションまたは操作を実行するときに、単語の区切り文字として使用される文字", + "wrappingColumn": "エディターで次の行に折り返される文字数を制御します。これを 0 に設定すると、ビューポートの幅での折り返しが有効になります", + "wrappingIndent": "折り返し行のインデントを制御します。'none'、'same'、または 'indent' のいずれかを指定できます。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/common/controller/cursor.i18n.json b/i18n/jpn/src/vs/editor/common/controller/cursor.i18n.json new file mode 100644 index 00000000000..604cd846f07 --- /dev/null +++ b/i18n/jpn/src/vs/editor/common/controller/cursor.i18n.json @@ -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. +{ + "corrupt.commands": "コマンドの実行中に予期しない例外が発生しました。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/common/model/textModelWithTokens.i18n.json b/i18n/jpn/src/vs/editor/common/model/textModelWithTokens.i18n.json new file mode 100644 index 00000000000..aaf09102694 --- /dev/null +++ b/i18n/jpn/src/vs/editor/common/model/textModelWithTokens.i18n.json @@ -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. +{ + "mode.tokenizationSupportFailed": "入力のトークン化中にモードが失敗しました。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json b/i18n/jpn/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json new file mode 100644 index 00000000000..57d61e509fa --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.clipboard.copyLabel": "コピー", + "actions.clipboard.cutLabel": "切り取り", + "actions.clipboard.pasteLabel": "貼り付け" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/codelens/browser/codelens.i18n.json b/i18n/jpn/src/vs/editor/contrib/codelens/browser/codelens.i18n.json new file mode 100644 index 00000000000..ba7848b469c --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/codelens/browser/codelens.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "n_references": "{0} 個の参照", + "one_reference": "1 個の参照", + "unknown_reference": "- 参照" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/comment/common/comment.i18n.json b/i18n/jpn/src/vs/editor/contrib/comment/common/comment.i18n.json new file mode 100644 index 00000000000..876ec33f1f2 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/comment/common/comment.i18n.json @@ -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. +{ + "comment.block": "ブロック コメントの切り替え", + "comment.line": "行コメントの切り替え", + "comment.line.add": "行コメントの追加", + "comment.line.remove": "行コメントの削除" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json b/i18n/jpn/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json new file mode 100644 index 00000000000..070e2831f8a --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json @@ -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. +{ + "action.showContextMenu.label": "エディターのコンテキスト メニューの表示" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/find/browser/find.i18n.json b/i18n/jpn/src/vs/editor/contrib/find/browser/find.i18n.json new file mode 100644 index 00000000000..3c95b2d6291 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/find/browser/find.i18n.json @@ -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. +{ + "addSelectionToNextFindMatch": "選択した項目を次の一致項目に追加", + "findNextMatchAction": "次を検索", + "findPreviousMatchAction": "前を検索", + "moveSelectionToNextFindMatch": "最後に選択した項目を次の一致項目に移動", + "selectAllOccurencesOfFindMatch": "一致項目のすべてのオカレンスを選択", + "startFindAction": "検索", + "startReplace": "置換" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/find/browser/findWidget.i18n.json b/i18n/jpn/src/vs/editor/contrib/find/browser/findWidget.i18n.json new file mode 100644 index 00000000000..824f863074c --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/find/browser/findWidget.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "label.closeButton": "閉じる", + "label.find": "検索", + "label.matchesLocation": "{1} の {0}", + "label.nextMatchButton": "次の一致項目", + "label.noResults": "結果がありません", + "label.previousMatchButton": "前の一致項目", + "label.replace": "置換", + "label.replaceAllButton": "すべて置換", + "label.replaceButton": "置換", + "label.toggleReplaceButton": "置換モードの切り替え", + "label.toggleSelectionFind": "選択範囲を検索", + "placeholder.find": "検索", + "placeholder.replace": "置換", + "title.matchesCountLimit": "最初の 999 の結果だけを強調表示しますが、テキスト全体を検索します。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/format/common/format.i18n.json b/i18n/jpn/src/vs/editor/contrib/format/common/format.i18n.json new file mode 100644 index 00000000000..ab3299baa08 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/format/common/format.i18n.json @@ -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. +{ + "formatAction.label": "コードの書式設定" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json b/i18n/jpn/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json new file mode 100644 index 00000000000..fda9f139959 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.goToDecl.label": "定義へ移動", + "actions.goToDeclToSide.label": "定義を横に開く", + "actions.gotoTypeDecl.label": "型の定義へ移動", + "actions.previewDecl.label": "ピークの定義", + "multipleResults": "クリックして、見つかった {0} の定義を表示します。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json b/i18n/jpn/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json new file mode 100644 index 00000000000..8c250694ecd --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json @@ -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. +{ + "markerAction.next.label": "次のエラーまたは警告へ移動", + "markerAction.previous.label": "前のエラーまたは警告へ移動", + "quickfix.multiple.label": "修正候補: ", + "quickfix.single.label": "修正候補: " +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json b/i18n/jpn/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json new file mode 100644 index 00000000000..7606a08044a --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json @@ -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. +{ + "modesContentHover.loading": "読み込んでいます..." +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json b/i18n/jpn/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json new file mode 100644 index 00000000000..cb0f0636a93 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "InPlaceReplaceAction.next.label": "次の値に置換", + "InPlaceReplaceAction.previous.label": "前の値に置換" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json b/i18n/jpn/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json new file mode 100644 index 00000000000..cd36a17f892 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lines.copyDown": "行を下へコピー", + "lines.copyUp": "行を上へコピー", + "lines.delete": "行の削除", + "lines.indent": "行のインデント", + "lines.insertAfter": "行を下に挿入", + "lines.insertBefore": "行を上に挿入", + "lines.moveDown": "行を下へ移動", + "lines.moveUp": "行を上へ移動", + "lines.outdent": "行のインデント解除", + "lines.trimTrailingWhitespace": "末尾の空白のトリミング" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/links/browser/links.i18n.json b/i18n/jpn/src/vs/editor/contrib/links/browser/links.i18n.json new file mode 100644 index 00000000000..7879f377352 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/links/browser/links.i18n.json @@ -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. +{ + "invalid.url": "無効な URI: {0} を開くことができません", + "label": "リンクを開く", + "links.navigate": "Ctrl キーを押しながらクリックしてリンク先を表示", + "links.navigate.mac": "command キーを押しながらクリックしてリンク先を表示" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json b/i18n/jpn/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json new file mode 100644 index 00000000000..47543211863 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "mutlicursor.insertAbove": "カーソルを上に挿入", + "mutlicursor.insertAtEndOfEachLineSelected": "選択した行から複数のカーソルを作成", + "mutlicursor.insertBelow": "カーソルを下に挿入" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json b/i18n/jpn/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json new file mode 100644 index 00000000000..64d3d836869 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json @@ -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. +{ + "parameterHints.trigger.label": "パラメーター ヒントをトリガー" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json b/i18n/jpn/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json new file mode 100644 index 00000000000..6a23e3fb759 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json @@ -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. +{ + "quickfix.trigger.label": "クイック修正" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json b/i18n/jpn/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json new file mode 100644 index 00000000000..f2fb4b944d2 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickFixSelectionWidget.loading": "読み込んでいます...", + "QuickFixSelectionWidget.noSuggestions": "修正候補はありません。", + "treeAriaLabel": "クイック修正" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json b/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json new file mode 100644 index 00000000000..9522c38dc9e --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json @@ -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. +{ + "label": "指定行へ移動..." +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json b/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json new file mode 100644 index 00000000000..45c6097a05f --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "GotoLineAction.label": "指定行へ移動...", + "gotoLineActionInput": "オプションのコロンと列番号の前に移動先の行番号を入力してください", + "gotoLineLabelEmptyWithLineAndColumnLimit": "移動先の列を 1 ~ {0} の範囲で入力してください", + "gotoLineLabelEmptyWithLineLimit": "移動先の行番号を 1 ~ {0} の範囲で入力してください", + "gotoLineLabelValidLine": "行 {0} へ移動", + "gotoLineLabelValidLineAndColumn": "行 {0} 列 {1} へ移動" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json b/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json new file mode 100644 index 00000000000..a74e7d7c420 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json @@ -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. +{ + "label": "コマンド パレット" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json b/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json new file mode 100644 index 00000000000..8258c45ff8e --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickCommandAction.label": "コマンド パレット", + "quickCommandActionInput": "実行する操作の名前を入力してください" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json b/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json new file mode 100644 index 00000000000..4ab8fea4193 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json @@ -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. +{ + "label": "シンボルへ移動..." +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json b/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json new file mode 100644 index 00000000000..babc2561b28 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json @@ -0,0 +1,20 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickOutlineAction.label": "シンボルへ移動...", + "_constructor": "コンストラクター ({0})", + "call": "呼び出し ({0})", + "class": "クラス ({0})", + "function": "関数 ({0})", + "interface": "インターフェイス ({0})", + "method": "メソッド ({0})", + "modules": "モジュール ({0})", + "property": "プロパティ ({0})", + "quickOutlineActionInput": "移動先の識別子の名前を入力してください", + "symbols": "シンボル ({0})", + "variable": "変数 ({0})", + "variable2": "変数 ({0})" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json b/i18n/jpn/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json new file mode 100644 index 00000000000..e3e16856a4c --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -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. +{ + "labelLoading": "読み込んでいます...", + "noResults": "結果がありません", + "references.action.label": "すべての参照の検索", + "references.action.name": "参照の表示" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json b/i18n/jpn/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json new file mode 100644 index 00000000000..d3cad1d14aa --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingPreviewMessage": "プレビューがありません", + "peekView.alternateTitle": "参照", + "referenceCount": "{0} 個の参照", + "referencesCount": "{0} 個の参照", + "treeAriaLabel": "参照" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/rename/browser/rename2.i18n.json b/i18n/jpn/src/vs/editor/contrib/rename/browser/rename2.i18n.json new file mode 100644 index 00000000000..f660de6eecf --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/rename/browser/rename2.i18n.json @@ -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. +{ + "rename.label": "シンボルの名前を変更" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/rename/browser/renameModel.i18n.json b/i18n/jpn/src/vs/editor/contrib/rename/browser/renameModel.i18n.json new file mode 100644 index 00000000000..739fef67b66 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/rename/browser/renameModel.i18n.json @@ -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. +{ + "cannotLoadFile": "ファイル {0} を読み込めません" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json b/i18n/jpn/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json new file mode 100644 index 00000000000..f800170e7d3 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json @@ -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. +{ + "smartSelect.jumpBracket": "ブラケットへ移動" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json b/i18n/jpn/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json new file mode 100644 index 00000000000..381a45a7bda --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "smartSelect.grow": "選択範囲を拡大", + "smartSelect.shrink": "選択範囲を縮小" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/suggest/browser/suggest.i18n.json b/i18n/jpn/src/vs/editor/contrib/suggest/browser/suggest.i18n.json new file mode 100644 index 00000000000..7042c13c94b --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/suggest/browser/suggest.i18n.json @@ -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. +{ + "suggest.trigger.label": "候補をトリガー" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json b/i18n/jpn/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json new file mode 100644 index 00000000000..56552a5d111 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json @@ -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. +{ + "goback": "戻る", + "readMore": "詳細を表示...{0}", + "suggestWidget.loading": "読み込んでいます...", + "suggestWidget.noSuggestions": "候補はありません。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json b/i18n/jpn/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json new file mode 100644 index 00000000000..329a516644a --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json @@ -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. +{ + "toggle.tabfocusmode": "フォーカスを設定するために Tab キーの使用を切り替える" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json b/i18n/jpn/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json new file mode 100644 index 00000000000..e6139bff349 --- /dev/null +++ b/i18n/jpn/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json @@ -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. +{ + "label.close": "閉じる" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/css/common/css.contribution.i18n.json b/i18n/jpn/src/vs/languages/css/common/css.contribution.i18n.json new file mode 100644 index 00000000000..84757b4a64c --- /dev/null +++ b/i18n/jpn/src/vs/languages/css/common/css.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "cssConfigurationTitle": "CSS の構成", + "lint": "CSS 検証と問題の重大度を制御します。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/css/common/cssWorker.i18n.json b/i18n/jpn/src/vs/languages/css/common/cssWorker.i18n.json new file mode 100644 index 00000000000..4fde70366d3 --- /dev/null +++ b/i18n/jpn/src/vs/languages/css/common/cssWorker.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "css.quickfix.rename": "名前を '{0}' に変更します", + "literal.fontface": "@font-face", + "literal.keyframes": "@keyframes {0}" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/css/common/parser/cssErrors.i18n.json b/i18n/jpn/src/vs/languages/css/common/parser/cssErrors.i18n.json new file mode 100644 index 00000000000..e677fe5c58f --- /dev/null +++ b/i18n/jpn/src/vs/languages/css/common/parser/cssErrors.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.colon": "コロンが必要です", + "expected.comma": "コンマが必要です", + "expected.condt": "条件が必要です", + "expected.dot": "ドットが必要です", + "expected.expression": "式が必要です", + "expected.ident": "識別子が必要です", + "expected.lcurly": "{ が必要です", + "expected.lparen": "( が必要です", + "expected.lsquare": "[ が必要です", + "expected.number": "数字が必要です", + "expected.operator": "演算子が必要です", + "expected.pagedirordecl": "ページ ディレクティブまたは宣言が必要です", + "expected.percentage": "パーセンテージが必要です", + "expected.propvalue": "プロパティ値が必要です", + "expected.rcurly": "} が必要です", + "expected.rparent": ") が必要です", + "expected.rsquare": "] が必要です", + "expected.ruleorselector": "@ 規則またはセレクターが必要です", + "expected.selector": "セレクターが必要です", + "expected.semicolon": "セミコロンが必要です", + "expected.stringliteral": "リテラル文字列が必要です", + "expected.term": "用語が必要です", + "expected.uri": "URI が必要です", + "expected.uriorstring": "URI または文字列が必要です", + "expected.varname": "変数名が必要です", + "expected.varvalue": "変数値が必要です", + "unknown.atrule": "不明な @ 規則", + "unknown.keyword": "不明なキーワード" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/css/common/services/intelliSense.i18n.json b/i18n/jpn/src/vs/languages/css/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..6c402e0ca4d --- /dev/null +++ b/i18n/jpn/src/vs/languages/css/common/services/intelliSense.i18n.json @@ -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. +{ + "css.builtin.hsl": "色合い、鮮やかさ、明るさを指定して色を作成します。", + "css.builtin.hsla": "色合い、鮮やかさ、明るさ、アルファ値を指定して色を作成します。", + "css.builtin.rgb": "赤、緑、青の値を指定して色を作成します。", + "css.builtin.rgba": "赤、緑、青の値とアルファ値を指定して色を作成します。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/css/common/services/lint.i18n.json b/i18n/jpn/src/vs/languages/css/common/services/lint.i18n.json new file mode 100644 index 00000000000..ed51f079d19 --- /dev/null +++ b/i18n/jpn/src/vs/languages/css/common/services/lint.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "keyframes.standardrule.missing": "キーフレームを定義する場合は常に標準の規則 '@keyframes' を定義します。", + "keyframes.vendorspecific.missing": "常にベンダー固有の規則をすべて含めます: 不足: {0}", + "namelist.concatenated": "{0}、'{1}'", + "namelist.single": "'{0}'", + "property.standard.missing": "互換性のために標準のプロパティ '{0}' も定義します", + "property.vendorspecific.missing": "常にベンダー固有のプロパティをすべて含めます: 不足: {0}" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/css/common/services/lintRules.i18n.json b/i18n/jpn/src/vs/languages/css/common/services/lintRules.i18n.json new file mode 100644 index 00000000000..a3533bd8d2a --- /dev/null +++ b/i18n/jpn/src/vs/languages/css/common/services/lintRules.i18n.json @@ -0,0 +1,26 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "enableValidation": "すべての検証を有効または無効にします", + "rule.avoidFloat": "'float' は使用しないでください。float を使用すると、レイアウトの一部が変更されたときに CSS が破損しやすくなります。", + "rule.avoidIdSelector": "セレクターには ID を含めないでください。これらの規則と HTML の結合が密接すぎます。", + "rule.avoidImportant": "!important は使用しないでください。これは CSS 全体の特定性が制御不能になり、リファクタリングが必要なことを示しています。", + "rule.colorFunction": "無効なパラメーターの数", + "rule.duplicateDeclarations": "重複するスタイル定義を使用しないでください", + "rule.emptyRuleSets": "空の規則セットを使用しないでください", + "rule.fontFaceProperties": "@font-face 規則で 'src' プロパティと 'font-family' プロパティを定義する必要があります", + "rule.hexColor": "16 進数の色には、3 つまたは 6 つの 16 進数が含まれる必要があります", + "rule.ieHack": "IE ハックは、IE7 以前をサポートする場合にのみ必要です", + "rule.importDirective": "複数の Import ステートメントを同時に読み込むことはできません", + "rule.propertyIgnoredDueToDisplay": "表示によりプロパティが無視されます。例えば、'display: inline' の場合、width、height、margin-top、margin-bottom、および float のプロパティには効果がありません", + "rule.standardvendorprefix.all": "ベンダー固有のプレフィックスを使用する場合は、標準のプロパティも含めます", + "rule.universalSelector": "ユニバーサル セレクター (*) を使用すると処理速度が低下することが分かっています", + "rule.unknownProperty": "不明なプロパティ。", + "rule.unknownVendorSpecificProperty": "不明なベンダー固有のプロパティ。", + "rule.vendorprefixes.all": "ベンダー固有のプレフィックスを使用する場合は、他のすべてのベンダー固有のプロパティも必ず含めてください", + "rule.withHeightAndBorderPadding": "パディングまたは枠線を使用する場合は幅または高さを使用しないでください", + "rule.zeroWidthUnit": "0 の単位は必要ありません" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/javascript/common/javascript.contribution.i18n.json b/i18n/jpn/src/vs/languages/javascript/common/javascript.contribution.i18n.json new file mode 100644 index 00000000000..6e214fe3a67 --- /dev/null +++ b/i18n/jpn/src/vs/languages/javascript/common/javascript.contribution.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "現在のドキュメントの単語を常にすべて含めます。", + "compilationSettings": "JavaScript の検証の動作を制御します。", + "jsConfigurationTitle": "JavaScript の構成", + "lint": "検証に関するさまざまな設定を制御します。", + "lint.comparisonOperatorsNotStrict": "'!=' と '==' ではなく、'!==' と '===' を使用してください。", + "lint.curlyBracketsMustNotBeOmitted": "中かっこを省略しないでください。", + "lint.emptyBlocksWithoutComment": "空のブロックにはコメントが必要です。", + "lint.forcedTypeConversion": "変数の型を割り当てで再宣言しないでください。", + "lint.functionsInsideLoops": "関数がループ内にあります。", + "lint.missingSemicolon": "セミコロンがありません。", + "lint.mixedTypesArithmetics": "算術演算には数値のみを使用してください。", + "lint.newOnLowercaseFunctions": "小文字の名前の関数がコンストラクターとして使用されています。", + "lint.newOnReturningFunctions": "return ステートメントを持つ関数がコンストラクターとして使用されています。", + "lint.parametersDontMatchSignature": "パラメーターが関数の署名に一致しません", + "lint.primitivesInInstanceOf": "プリミティブ型の instanceof を使用しないでください。", + "lint.redeclaredVariables": "変数を再宣言して型を変更しないでください。", + "lint.semicolonsInsteadOfBlocks": "ブロックではなくセミコロンを使用してください。", + "lint.tripleSlashReferenceAlike": "3 つのスラッシュを含む参照に誤って入力されたものがないかを探します。", + "lint.undeclaredVariables": "宣言されていない変数を使用しないでください。", + "lint.unknownModule": "不明なモジュールを要求しません。", + "lint.unknownProperty": "不明なプロパティを使用しないでください。", + "lint.unknownTypeOfResults": "'typeof' 演算子の想定される出力と異なります。", + "lint.unusedFunctions": "未使用のローカル関数です。", + "lint.unusedVariables": "未使用のローカル変数です。", + "semanticValidation": "JavaScript ファイルにリンター チェックを実行します。validate.lint.* の設定がオーバーライドされます。", + "suggestSettings": "JavaScript の IntelliSense の動作を制御します。", + "syntaxValidation": "JavaScript ファイルの構文エラーをチェックします。", + "useCodeSnippetsOnMethodSuggest": "パラメーター シグネチャを含む完全な関数。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json b/i18n/jpn/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json new file mode 100644 index 00000000000..aa48a034922 --- /dev/null +++ b/i18n/jpn/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.bower.default": "既定の bower.json", + "json.bower.error.repoaccess": "bower レジストリに対する要求が失敗しました: {0}", + "json.bower.package.hover": "{0}" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json b/i18n/jpn/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json new file mode 100644 index 00000000000..e758d8f4422 --- /dev/null +++ b/i18n/jpn/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.nugget.error.repoaccess": "nuget リポジトリに対する要求が失敗しました: {0}", + "json.nugget.package.hover": "{0}", + "json.nugget.version.hover": "最新バージョン: {0}", + "json.nugget.versiondescription.suggest": "パッケージの現在の最新バージョン", + "json.project.default": "既定の project.json" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/json/common/json.contribution.i18n.json b/i18n/jpn/src/vs/languages/json/common/json.contribution.i18n.json new file mode 100644 index 00000000000..e663141a4c2 --- /dev/null +++ b/i18n/jpn/src/vs/languages/json/common/json.contribution.i18n.json @@ -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. +{ + "jsonConfiguration.fileMatch": "JSON ファイルをスキーマに解決するときに照合に使用する、'*' を含めることができるファイルのパターン。", + "jsonConfiguration.fileMatches": "JSON ファイルをスキーマに解決するときに照合に使用する、ファイル パターンの配列。", + "jsonConfiguration.schema": "指定された URL のスキーマ定義。スキーマの URL へのアクセスを防ぐために、スキーマのみを入力してください。", + "jsonConfiguration.schemaPath": "スキーマの URL、またはスキーマへの現在のディレクトリからの相対パス", + "jsonConfiguration.schemas": "現在のプロジェクト内の JSON ファイルにスキーマを関連付けます", + "jsonConfigurationDescription": "JSON の設定およびスキーマの構成に使用されます。", + "jsonConfigurationTitle": "JSON の構成" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/json/common/json.i18n.json b/i18n/jpn/src/vs/languages/json/common/json.i18n.json new file mode 100644 index 00000000000..281be1c999f --- /dev/null +++ b/i18n/jpn/src/vs/languages/json/common/json.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "array": "配列", + "boolean": "ブール値", + "number": "数値", + "object": "オブジェクト", + "string": "文字列", + "undefined": "未定義" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/json/common/jsonIntellisense.i18n.json b/i18n/jpn/src/vs/languages/json/common/jsonIntellisense.i18n.json new file mode 100644 index 00000000000..f7bb5e30dea --- /dev/null +++ b/i18n/jpn/src/vs/languages/json/common/jsonIntellisense.i18n.json @@ -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. +{ + "json.suggest.default": "既定値" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/json/common/jsonSchemaService.i18n.json b/i18n/jpn/src/vs/languages/json/common/jsonSchemaService.i18n.json new file mode 100644 index 00000000000..571844dfc81 --- /dev/null +++ b/i18n/jpn/src/vs/languages/json/common/jsonSchemaService.i18n.json @@ -0,0 +1,169 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "app.plugin.json.activationEvents": "プラグインのアクティブ化イベント", + "app.plugin.json.contributes": "このプラグインの貢献", + "app.plugin.json.contributes.language": "プラグインの言語貢献", + "app.plugin.json.contributes.language.aliases": "この言語の名前エイリアス", + "app.plugin.json.contributes.language.extensions": "この言語に関連付けられているファイル拡張子", + "app.plugin.json.contributes.language.filenames": "この言語に関連付けられているファイル名", + "app.plugin.json.contributes.language.id": "この言語の ID", + "app.plugin.json.dependencies": "プラグインの依存関係", + "app.plugin.json.mainModule": "メイン JavaScript ファイルへの相対パス", + "app.plugin.json.pluginId": "一意のプラグイン ID", + "app.plugin.json.scripts": "プラグインによって提供されるスクリプト", + "app.plugin.json.scripts.compile": "このプラグインをコンパイルするためのコマンド ライン", + "bower.json.authors": "パッケージのコンテンツを作成したユーザーのリスト。", + "bower.json.dependencies": "依存関係は、semver の互換性のある識別子または URL のパッケージ名の単純なハッシュで指定します。", + "bower.json.description": "簡単な説明を付けて、ユーザーがパッケージを特定および検索できるようにします。", + "bower.json.devDependencies": "テスト フレームワークやドキュメントの作成など、パッケージ開発のみに必要な依存関係。", + "bower.json.exportsOverride": "カスタム インストールの場所を指定するために grunt-bower-task により使用されます。", + "bower.json.homepage": "パッケージに関する詳細の URL。指定されていない場合は GitHub プロジェクトにフォールバックし、GitHub エンドポイントになります。", + "bower.json.ignore": "パッケージをインストールするときに Bower が無視するファイルの一覧。", + "bower.json.invalidPatternName": "_ で始まるすべてのプロパティが有効です。", + "bower.json.keywords": "キーワードでの検索に使用します。名前を知らない人がパッケージを簡単に見つけられるようにします。", + "bower.json.license": "SPDX ライセンスの識別子、またはライセンスへのパス/URL。", + "bower.json.main": "パッケージの使用に必要な、主に動作するファイル。", + "bower.json.moduleType": "このパッケージが公開するモジュールの種類", + "bower.json.packagename": "パッケージの名前。", + "bower.json.private": "True に設定すると、発行を拒否します。これは、プライベート リポジトリが誤って発行されるのを回避する方法です。", + "bower.json.repository": "ソース コードが見つかるリポジトリ。", + "bower.json.resolutions": "パッケージ間で競合が発生した場合に自動的に解決する依存関係のバージョン。", + "bower.json.title": "Bower 構成ファイルの JSON スキーマ", + "bower.json.version": "セマンティックのバージョン番号。", + "global.json.projects": "このファイルに関連するプロジェクト フォルダーの一覧。", + "global.json.sources": "このファイルに関連するソース フォルダーの一覧。", + "global.json.title": "ASP.NET グローバル構成ファイルの JSON スキーマ", + "jsconfig.json.compilerOptions": ".js ファイルの検証方法を JavaScript 言語サービスに指示します", + "jsconfig.json.compilerOptions.charset": "入力ファイルの文字セット", + "jsconfig.json.compilerOptions.decorators": "ES7 デコレーターの実験的なサポートを有効にします。", + "jsconfig.json.compilerOptions.diagnostics": "診断情報を表示します。", + "jsconfig.json.compilerOptions.locale": "エラー メッセージの表示に使用するロケール (例えば en-us)。", + "jsconfig.json.compilerOptions.mapRoot": "生成された場所の代わりに、デバッガーでマップ ファイルを探す場所を指定します", + "jsconfig.json.compilerOptions.module": "解決の対象となるモジュール コード生成。 'commonjs'、'amd'、'system'、または 'umd' のいずれかです。", + "jsconfig.json.compilerOptions.noLib": "既定のライブラリ ファイル (lib.d.ts) を含めません。", + "jsconfig.json.compilerOptions.target": "ECMAScript のターゲット バージョンを指定します: 'ES3' (既定)、'ES5'、または 'ES6' (実験用)。", + "jsconfig.json.exclude": "除外するファイルとフォルダーの一覧を示します。このプロパティは、'files\" プロパティが存在する場合には採用されません。", + "jsconfig.json.files": "jsconfig.json の中に 'files' プロパティが存在しない場合、言語サービスの既定の動作として、ディレクトリやサブディレクトリに入っているすべてのファイルを含めます。'files' プロパティが指定されている場合は、それらのファイルだけが含まれます。", + "jsconfig.json.title": "JavaScript 構成ファイル用の JSON スキーマ", + "json.schema.unabletoload": "'{0}' からスキーマを読み込むことができません: {1}。", + "package.json.bugs": "プロジェクトの問題追跡ツールの URL、または問題の報告先電子メール アドレス。これらは、パッケージで問題が発生するユーザーに役立ちます。", + "package.json.bugs.email": "問題の報告先電子メール アドレス。", + "package.json.bugs.url": "プロジェクトの問題追跡ツールの URL。", + "package.json.bundleDependencies": "パッケージの発行時にバンドルされるパッケージ名の配列。", + "package.json.bundledDependencies": "パッケージの発行時にバンドルされるパッケージ名の配列。", + "package.json.config": "'config' ハッシュはを使用して、パッケージ スクリプトで使用されるアップグレード後も保持される構成パラメーターを設定できます。", + "package.json.contributors": "このパッケージの共同作成者の一覧。", + "package.json.dependency": "依存関係は、パッケージ名からバージョン範囲への単純なハッシュを使用して指定されます。バージョン範囲は、スペースで区切られた 1 つ以上の記述子が含まれる文字列です。依存関係は、ターボールまたは GIT URL によっても指定できます。", + "package.json.descr": "これにより、'npm search' で一覧表示されるので、パッケージが見つけやすくなります。", + "package.json.description": "このパッケージの NPM 構成。", + "package.json.directories.bin": "'bin' ディレクトリを指定すると、そのフォルダー内のすべてのファイルは 'bin' ハッシュとして使用されます。", + "package.json.directories.doc": "マークダウン ファイルをここに配置します。将来、これらは適切に表示される予定です。", + "package.json.directories.example": "サンプル スクリプトをここに配置します。将来、より良い方法で公開される可能性があります。", + "package.json.directories.lib": "ライブラリの大部分の配置場所を示します。lib フォルダーに特別なことをするわけではありませんが、便利なメタ情報です。", + "package.json.directories.man": "完全な man ページを含むフォルダーです。フォルダーを調べて 'man' 配列を生成します。", + "package.json.files": "'files' フィールドは、プロジェクトに含めるファイルの配列です。配列でフォルダーに名前を付けた場合、配列には、そのフォルダー内のファイルも含まれます。", + "package.json.homepage": "プロジェクトのホームページへの URL です。", + "package.json.keywords": "これにより、'npm search' で一覧表示されるので、パッケージが見つけやすくなります。", + "package.json.license": "ユーザーがどの程度パッケージを使用できるのかを理解し、パッケージの使用に制限があるかどうかを理解できるよう、パッケージに特定のライセンスを指定する必要があります。", + "package.json.licenses": "ユーザーがどの程度パッケージを使用できるのかを理解し、パッケージの使用に制限があるかどうかを理解できるよう、パッケージに特定のライセンスを指定する必要があります。", + "package.json.main": "メイン フィールドは、プログラムへのプライマリ エントリ ポイントであるモジュール ID です。", + "package.json.maintainers": "このパッケージをメンテナンスしているユーザーの一覧。", + "package.json.man": "man プログラムが検索する場所に入れる単一ファイルまたはファイル名の配列のいずれかを指定します。", + "package.json.name": "このパッケージの名前。", + "package.json.person": "このパッケージの作成またはメンテナンスに関わっているユーザー", + "package.json.preferGlobal": "パッケージが主にコマンド ライン アプリケーションでグローバルにインストールする必要のある場合、この値を true に設定しローカルにインストールされたときに警告を表示するようにします。", + "package.json.private": "true に設定すると、npm によって発行が拒否されます。", + "package.json.repository": "コードがある場所を指定します。これは、貢献したい人に役立ちます。", + "package.json.scripts": "'scripts' メンバーは、パッケージのライフサイクル内で何度も実行されるスクリプト コマンドのオブジェクト ハッシュです。キーはライフサイクル イベントで、値はその時点で実行するコマンドです。", + "package.json.underscore": "_ で始まるすべてのプロパティが有効です。", + "package.json.version": "バージョンは、依存関係として npm とバンドルされる node-semver によって解析可能でなければなりません。", + "project.json.authors": "このアプリケーションの作成者", + "project.json.bundleExclude": "公開出力 (kpm バンドル) から除外するファイルの一覧。", + "project.json.code": "コンパイルする必要があるすべてのコード ファイルを指定する glob パターン (データ型: glob パターンを持つ文字列または配列)。例: [ 'Folder1*.cs', 'Folder2*.cs' ]", + "project.json.commands": "このアプリケーションで利用可能なコマンド", + "project.json.compilationOptions": "Roslyn に渡されるコンパイル オプション", + "project.json.configurations": "構成は、コンパイル設定の名前付きグループです。ランタイムにビルドされる既定値には、'Debug' と 'Release' の2 つがあります。", + "project.json.dependencies": "アプリケーションの依存関係。各エントリは Nuget パッケージの名前とバージョンを指定します。", + "project.json.dependency.name": "依存関係のバージョン。", + "project.json.dependency.type": "依存関係の種類。'build' の依存関係が存在するのはビルド時のみです", + "project.json.description": "アプリケーションの説明", + "project.json.exclude": "コンパイルから除外するすべてのコード ファイルを示す glob パターン (データ型: glob パターンを使用する文字列または配列)。", + "project.json.frameworks": "ビルドされるターゲット フレームワークと、構成に固有の依存関係。", + "project.json.preprocess": "プリプロセスするすべてのコード ファイルを示す glob パターン (データ型: glob パターンを使用する文字列)。", + "project.json.resources": "リソースとしてコンパイルする必要があるすべてのファイルを示す glob パターン。", + "project.json.script": "コマンド ライン スクリプト。\r\r利用可能な変数:\r%project:Directory% - プロジェクトのディレクトリ\r%project:Name% - プロジェクト名\r%project:Version% - プロジェクトのバージョン", + "project.json.scripts": "さまざまな段階で実行するスクリプト。", + "project.json.shared": "依存プロジェクトと共有するコード ファイルを指定する glob パターン。例: [ 'Folder1*.cs', 'Folder2*.cs' ]", + "project.json.title": "ASP.NET project.json ファイルの JSON スキーマ", + "project.json.version": "アプリケーションのバージョン。例: 1.2.0.0", + "project.json.webroot": "project.json ファイルで webroot プロパティを指定すると、Web サーバーのルート (パブリック フォルダー) が指定されます。Visual Studio では、このフォルダーはルート IIS に使用されます。静的ファイルはここに配置する必要があります。", + "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": "スキーマの配列 (この場合、少なくとも 1 つが一致する必要があります)。", + "schema.json.default": "既定値。候補に使用されます。", + "schema.json.definitions": "検証に使用されません。$ref を使用してインラインで参照するサブスキーマをここに配置してください", + "schema.json.dependencies": "プロパティ名の配列、またはスキーマへのプロパティ名のマップ。プロパティ名の配列は、キー形式の名前が付いたプロパティが、有効にするためにオブジェクトに含まれている、配列内のプロパティによって決まることを意味します。値がスキーマの場合は、キー内のプロパティがオブジェクトに存在する場合のみ、スキーマがオブジェクトに適用されます。", + "schema.json.description": "要素の詳しい説明。ホバー メニューや候補に使用されます。", + "schema.json.enum": "有効なリテラル値のセット", + "schema.json.exclusiveMaximum": "maximum プロパティを排他にします。", + "schema.json.exclusiveMininum": "minimum プロパティを排他にします。", + "schema.json.id": "スキーマの一意識別子。", + "schema.json.items": "配列に対応。各要素の検証対象となるスキーマ、または各項目を順番 (最初のスキーマで最初の要素、2 番目のスキーマで 2 番目の要素を検証するなど) に検証する際に対象となるスキーマの配列になります。", + "schema.json.maxItems": "配列内に含めることのできる項目の最大数 (その値を含む)。", + "schema.json.maxLength": "文字列の最大長。", + "schema.json.maxProperties": "オブジェクトに含めることのできるプロパティの最大数 (その値を含む)。", + "schema.json.maximum": "最大数値 (既定で含む)。", + "schema.json.minItems": "配列内に含めることのできる項目の最小数 (その値を含む)。", + "schema.json.minLength": "文字列の最小長。", + "schema.json.minProperties": "オブジェクトに含めることのできるプロパティの最小数 (その値を含む)。", + "schema.json.minimum": "最小数値 (既定で含む)。", + "schema.json.multipleOf": "現在の値を割り切れる数値 (つまり、余りなし)", + "schema.json.not": "一致しないスキーマ。", + "schema.json.oneOf": "スキーマの配列 (スキーマのうち 1 つは一致する必要があります)。", + "schema.json.pattern": "文字列を照合する正規表現。これは暗黙的に固定されていません。", + "schema.json.patternProperties": "一致するプロパティのスキーマへのプロパティ名の正規表現のマップ。", + "schema.json.properties": "各プロパティのスキーマへのプロパティ名のマップ。", + "schema.json.required": "このオブジェクトで必要なすべてのプロパティの名前を示す文字列の配列。", + "schema.json.title": "要素のわかりやすいタイトル", + "schema.json.type": "基本的なスキーマの種類のいずれかの文字列 (number、integer、null、array、object、boolean、string) またはこれらの種類のサブセットを示す文字列の配列。", + "schema.json.uniqueItems": "配列内のすべての項目が一意である必要があるかどうか。既定値は false です。", + "snippetSchema.json": "ユーザー スニペット構成", + "snippetSchema.json.body": "スニペットの内容。変数には '${id}'、'${id:label}'、'${1:label}' を使用し、カーソル位置には '$0'、'$1' を使用します。", + "snippetSchema.json.description": "スニペットについての記述。", + "snippetSchema.json.prefix": "intellisense でスニペットを選択するときに使用するプレフィックス", + "tsconfig.json.compilerOptions": ".ts ファイルをコンパイルする方法をTypeScript コンパイラに指示します。", + "tsconfig.json.compilerOptions.charset": "入力ファイルの文字セット", + "tsconfig.json.compilerOptions.declaration": "対応する d.ts ファイルを生成します。", + "tsconfig.json.compilerOptions.diagnostics": "診断情報を表示します。", + "tsconfig.json.compilerOptions.emitBOM": "出力ファイルの先頭に UTF-8 Byte Order Mark (BOM) を生成します。", + "tsconfig.json.compilerOptions.inlineSourceMap": "ソース マップを別個のファイルにせずに、単一のファイルを生成します。", + "tsconfig.json.compilerOptions.inlineSources": "単一のファイルの中にソースおよびソースマップを生成します。--inlineSourceMap が設定される必要があります。", + "tsconfig.json.compilerOptions.listFiles": "コンパイルのファイル名部分を出力します。", + "tsconfig.json.compilerOptions.locale": "エラー メッセージの表示に使用するロケール (例えば en-us)。", + "tsconfig.json.compilerOptions.mapRoot": "生成された場所ではなくデバッガーがマップ ファイルを探す必要がある場所を指定します", + "tsconfig.json.compilerOptions.module": "モジュール コード生成を指定します: 'CommonJS'、'Amd'、'System'、または 'UMD' です。", + "tsconfig.json.compilerOptions.newLine": "ファイルの生成で使用される改行を指定します: 'CRLF' (dos) または 'LF' (unix) です。", + "tsconfig.json.compilerOptions.noEmit": "出力を生成しません。", + "tsconfig.json.compilerOptions.noEmitHelpers": "コンパイルされる出力で __extends などのカスタム ヘルパー関数を生成しません。", + "tsconfig.json.compilerOptions.noEmitOnError": "チェック エラーが報告された場合は、出力を生成しません。", + "tsconfig.json.compilerOptions.noImplicitAny": "暗黙的な 'any' 型を持つ式と宣言に対する警告。", + "tsconfig.json.compilerOptions.noLib": "既定のライブラリ ファイル (lib.d.ts) を含めません。", + "tsconfig.json.compilerOptions.out": "出力を連結して 1 つのファイルを生成します。", + "tsconfig.json.compilerOptions.outDir": "ディレクトリへ出力構造をリダイレクトします。", + "tsconfig.json.compilerOptions.preserveConstEnums": "生成されたコード内の const enum 宣言を消去しません。", + "tsconfig.json.compilerOptions.removeComments": "コメントを出力しません。", + "tsconfig.json.compilerOptions.rootDir": "入力ファイルのルート ディレクトリを指定します。--outDir と一緒に出力ディレクトリ構造を制御するために使用します。", + "tsconfig.json.compilerOptions.sourceMap": "対応する '.map' ファイルを生成します。", + "tsconfig.json.compilerOptions.sourceRoot": "ソースの場所ではなくデバッガーが TypeScript ファイルを探す必要がある場所を指定します。", + "tsconfig.json.compilerOptions.suppressImplicitAnyIndexErrors": "インデックス シグニチャのないオブジェクトにインデックスを作成するため、noImplicitAny エラーを抑制します。", + "tsconfig.json.compilerOptions.target": "ECMAScript のターゲット バージョンを指定します: 'ES3' (既定)、'ES5'、または 'ES6' (実験用)。", + "tsconfig.json.files": "'files' プロパティが tsconfig.json に存在しない場合、コンパイラは既定でディレクトリおよびサブディレクトリを含むすべてのファイルを含めます。'files' プロパティを指定すると、それらのファイルだけが含まれます。", + "tsconfig.json.title": "TypeScript コンパイラの構成ファイルの JSON スキーマ" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/json/common/parser/jsonParser.i18n.json b/i18n/jpn/src/vs/languages/json/common/parser/jsonParser.i18n.json new file mode 100644 index 00000000000..aa233106af3 --- /dev/null +++ b/i18n/jpn/src/vs/languages/json/common/parser/jsonParser.i18n.json @@ -0,0 +1,44 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ColonExpected": "コロンが必要です", + "DisallowedExtraPropWarning": "プロパティ {0} は許可されていません", + "DoubleQuotesExpected": "プロパティ キーは二重引用符で囲む必要があります", + "DuplicateKeyWarning": "オブジェクト キーが重複しています", + "End of file expected": "ファイルの終わりが必要です", + "ExpectedCloseBrace": "コンマまたは閉じ波かっこが必要です", + "ExpectedCloseBracket": "コンマまたは右角かっこが必要です", + "Invalid symbol": "JSON オブジェクト、配列、またはリテラルが必要です", + "InvalidEscapeCharacter": "文字列に無効なエスケープ文字があります", + "InvalidNumberFormat": "無効な数値表示形式", + "InvalidUnicode": "文字列に無効な Unicode シーケンスがあります", + "MaxPropWarning": "オブジェクトには、{0} 個の制限を超えるプロパティが含まれています", + "MinPropWarning": "オブジェクトに含まれるプロパティの数が必要な数 {0} 個を下回っています", + "MissingRequiredPropWarning": "プロパティ \"{0}\" がありません", + "PropertyExpected": "プロパティが必要です", + "RequiredDependentPropWarning": "プロパティ {1} に必要なプロパティ {0} がオブジェクトにありません", + "UnexpectedEndOfComment": "予期しないコメントの終了", + "UnexpectedEndOfNumber": "予期しない数の終了", + "UnexpectedEndOfString": "予期しない文字列の終了", + "ValueExpected": "値が必要です", + "additionalItemsWarning": "スキーマに従って配列に含まれる項目が多すぎます。{0} 個以下にする必要があります。", + "enumWarning": "値が利用可能な値ではありません。有効な値: {0}", + "exclusiveMaximumWarning": "値が排他の最大値 {0} を超えています", + "exclusiveMinimumWarning": "値が排他の最小値 {0} を下回っています", + "maxItemsWarning": "配列の項目が多すぎます。{0} 個以下にする必要があります", + "maxLengthWarning": "文字列は最大長より短くなっています: ", + "maximumWarning": "値が最大値 {0} を超えています", + "minItemsWarning": "配列の項目が少なすぎます。{0} 個以上にする必要があります", + "minLengthWarning": "文字列が最小長より短くなっています: ", + "minimumWarning": "値が最小値 {0} を下回っています", + "multipleOfWarning": "値は {0} で割り切ることができません", + "notSchemaWarning": "許可されていないスキーマと一致します。", + "oneOfWarning": "1 つだけ検証する必要があるときに複数のスキーマと一致します。", + "patternWarning": "文字列が \"{0}\" のパターンと一致しません", + "typeArrayMismatchWarning": "型が正しくありません。{0} のいずれかが必要です", + "typeMismatchWarning": "型が正しくありません。\"{0}\" が必要です", + "uniqueItemsWarning": "配列に重複する項目が含まれています" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/less/common/less.contribution.i18n.json b/i18n/jpn/src/vs/languages/less/common/less.contribution.i18n.json new file mode 100644 index 00000000000..39ca927b14f --- /dev/null +++ b/i18n/jpn/src/vs/languages/less/common/less.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lessConfigurationTitle": "LESS の構成", + "lessLint": "LESS 検証と問題の重大度を制御します。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/less/common/services/intelliSense.i18n.json b/i18n/jpn/src/vs/languages/less/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..1b8f3e3e459 --- /dev/null +++ b/i18n/jpn/src/vs/languages/less/common/services/intelliSense.i18n.json @@ -0,0 +1,60 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "less.builtin.abs": "数字の絶対値", + "less.builtin.acos": "アークコサイン - コサイン関数の逆関数", + "less.builtin.alpha": "`@color` の `alpha` チャネルを返します", + "less.builtin.argb": "#AARRGGBB を作成します", + "less.builtin.asin": "アークサイン - サイン関数の逆関数", + "less.builtin.atan": "アークタンジェント - タンジェント関数の逆関数", + "less.builtin.blue": "`@color` の `blue` チャネルを返します", + "less.builtin.ceil": "整数に切り上げます", + "less.builtin.color": "文字列を解析して色に変換します", + "less.builtin.contrast": "`@color1 is> 43% luma` の場合は `@darkcolor` を返します。それ以外の場合は `@lightcolor` を返します。メモを参照してください。", + "less.builtin.convert": "数値の型を別の型に変換します", + "less.builtin.cos": "コサイン関数", + "less.builtin.darken": "10% 濃いポイントの `@color` を返します", + "less.builtin.data-uri": "リソースをインライン化して、`url()` にフォールバックします", + "less.builtin.desaturate": "飽和度が 10% 低いポイントの `@color` を返します", + "less.builtin.e": "文字列の内容をエスケープします", + "less.builtin.escape": "文字列を URL エンコードします", + "less.builtin.extract": "リスト内の指定した位置にある値を返します", + "less.builtin.fade": "透過性が 50% の `@color` を返します", + "less.builtin.fadein": "透過性が 10% 低いポイントの `@color` を返します", + "less.builtin.fadeout": "透過性が 10% 高いポイントの `@color` を返します", + "less.builtin.floor": "整数に切り捨てます", + "less.builtin.green": "`@color` の `green` チャネルを返します", + "less.builtin.greyscale": "色の彩度を 100% 下げた灰色を返します", + "less.builtin.hsl": "色を作成します", + "less.builtin.hsla": "色を作成します", + "less.builtin.hsv": "色を作成します", + "less.builtin.hsva": "色を作成します", + "less.builtin.hsvhue": "HSV 空間での `@color` の `hue` チャネルを返します", + "less.builtin.hsvsaturation": "HSV 空間での `@color` の `saturation` チャネルを返します", + "less.builtin.hsvvalue": "HSV 空間での `@color` の `value` チャネルを返します", + "less.builtin.hue": "HSL 空間での `@color` の `hue` チャネルを返します", + "less.builtin.length": "値リストに含まれる要素の数を返します", + "less.builtin.lighten": "10% 明るいポイントの `@color` を返します", + "less.builtin.lightness": "HSL 空間での `@color` の `lightness` チャネルを返します", + "less.builtin.luma": "`@color` の `luma` 値 (知覚的な明るさ) を返します", + "less.builtin.max": "1 つ以上の値のうち一番低い値を返します", + "less.builtin.min": "1 つ以上の値のうち一番低い値を返します", + "less.builtin.mix": "`@color1` と `@color2` を混ぜた色を返します", + "less.builtin.mod": "1 番目の引数に対する 2 番目の引数の剰余", + "less.builtin.percentage": "% に変換します (例 0.5 > 50%)", + "less.builtin.pi": "π を返します", + "less.builtin.pow": "1 番目の引数を 2 番目の引数で累乗します", + "less.builtin.red": "`@color` の `red` チャネルを返します", + "less.builtin.replace": "文字列の置換", + "less.builtin.round": "数値を指定した桁数に丸めます", + "less.builtin.saturate": "飽和度が 10% 高いポイントの `@color` を返します", + "less.builtin.saturation": "HSL 空間での `@color` の `saturation` チャネルを返します", + "less.builtin.sin": "サイン関数", + "less.builtin.spin": "色合いを 10 度上げた `@color` を返します", + "less.builtin.sqrt": "数値の平方根を計算します", + "less.builtin.tan": "タンジェント関数", + "less.builtin.unit": "次元の単位を削除または変更します" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/markdown/common/markdown.contribution.i18n.json b/i18n/jpn/src/vs/languages/markdown/common/markdown.contribution.i18n.json new file mode 100644 index 00000000000..c5842871225 --- /dev/null +++ b/i18n/jpn/src/vs/languages/markdown/common/markdown.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "markdownConfigurationTitle": "マークダウン プレビューの構成", + "styles": "マークダウン プレビューで使用する CSS スタイル シートへの URL またはローカル パスのリスト。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/sass/common/parser/sassErrors.i18n.json b/i18n/jpn/src/vs/languages/sass/common/parser/sassErrors.i18n.json new file mode 100644 index 00000000000..4c343ae3be9 --- /dev/null +++ b/i18n/jpn/src/vs/languages/sass/common/parser/sassErrors.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.from": "'from' が必要です", + "expected.in": "'in' が必要です", + "expected.through": "'through' または 'to' が必要です" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/sass/common/sass.contribution.i18n.json b/i18n/jpn/src/vs/languages/sass/common/sass.contribution.i18n.json new file mode 100644 index 00000000000..15b63fb8052 --- /dev/null +++ b/i18n/jpn/src/vs/languages/sass/common/sass.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sassConfigurationTitle": "SASS の構成", + "sassLint": "SASS 検証と問題の重大度を制御します。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/sass/common/services/intelliSense.i18n.json b/i18n/jpn/src/vs/languages/sass/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..e132d950982 --- /dev/null +++ b/i18n/jpn/src/vs/languages/sass/common/services/intelliSense.i18n.json @@ -0,0 +1,81 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sass.builtin.abs": "数値の絶対値を返します。", + "sass.builtin.adjust-color": "色の 1 つ以上の構成要素を増減します。", + "sass.builtin.adjust-hue": "色の色合いを変更します。", + "sass.builtin.alpha": "色の不透明度を取得します。", + "sass.builtin.append": "リストの末尾に 1 つの値を追加します。", + "sass.builtin.blue": "色の青要素を取得します。", + "sass.builtin.call": "SASS 関数を動的に呼び出します。", + "sass.builtin.ceil": "数値を次の自然数に切り上げます。", + "sass.builtin.change-color": "色の 1 つ以上のプロパティを変更します。", + "sass.builtin.comparable": "2 つの数値の加算、減算、または比較が可能かどうかを返します。", + "sass.builtin.complement": "色の補色を返します。", + "sass.builtin.darken": "色を暗くします。", + "sass.builtin.desaturate": "色の飽和度を下げます。", + "sass.builtin.fade-in": "色の不透明度を上げます。", + "sass.builtin.feature-exists": "現在の SASS ランタイムに機能が存在するかどうかを返します。", + "sass.builtin.floor": "数値を 1 つ前の自然数に切り下げます。", + "sass.builtin.function-exists": "指定した名前の関数があるかどうかを返します。", + "sass.builtin.global-variable-exists": "指定した名前の変数がグローバル スコープに存在するかどうかを返します。", + "sass.builtin.grayscale": "色をグレースケールに変換します。", + "sass.builtin.green": "色の緑要素を取得します。", + "sass.builtin.hue": "色の色相要素を取得します。", + "sass.builtin.ie-hex-str": "色を、IE フィルターが認識できる形式に変換します。", + "sass.builtin.index": "リスト内の値の位置を返します。", + "sass.builtin.inspect": "値を SASS で表現した場合の文字列表現を返します。", + "sass.builtin.invert": "色の反転色を返します。", + "sass.builtin.is-superselector": "$super が、$sub がマッチするすべての要素に (そしておそらくそれ以上の要素にも) マッチするかどうかを返します。", + "sass.builtin.join": "2 つのリストを 1 つに結合します。", + "sass.builtin.keywords": "変数引数をとる関数に渡されたキーワードを返します。", + "sass.builtin.length": "リストの長さを返します。", + "sass.builtin.lighten": "色を明るくします。", + "sass.builtin.lightness": "色の輝度要素を取得します。", + "sass.builtin.list-separator": "リストの区切り文字を返します。", + "sass.builtin.map-get": "指定したキーに関連付けられたマップ内の値を返します。", + "sass.builtin.map-has-key": "指定したキーに関連付けられた値がマップ内にあるかどうかを返します。", + "sass.builtin.map-keys": "マップ内のすべてのキーのリストを返します。", + "sass.builtin.map-merge": "2 つのマップをマージして新しいマップを作成します。", + "sass.builtin.map-remove": "キーを除去した新しいマップを返します。", + "sass.builtin.map-values": "マップ内のすべての値のリストを返します。", + "sass.builtin.max": "複数の数値の中から最大値を見つけます。", + "sass.builtin.min": "複数の数値の中から最小値を見つけます。", + "sass.builtin.mix": "2 つの色を混ぜ合わせます。", + "sass.builtin.mixin-exists": "指定した名前の混合が存在するかどうかを返します。", + "sass.builtin.nth": "リスト内の特定の項目を返します。", + "sass.builtin.opacify": "色の不透明度を上げます。", + "sass.builtin.percentage": "単位のない数をパーセンテージに変換します。", + "sass.builtin.quote": "文字列に引用符を追加します。", + "sass.builtin.random": "ランダムな数値を返します。", + "sass.builtin.red": "色の赤要素を取得します。", + "sass.builtin.rgba": "色のアルファ要素を取得します。", + "sass.builtin.round": "数値を最も近い自然数に丸めます。", + "sass.builtin.saturate": "色の飽和度を上げます。", + "sass.builtin.saturation": "色の飽和度要素を取得します。", + "sass.builtin.scale-color": "色の 1 つ以上のプロパティをなめらかに増減します。", + "sass.builtin.selector-append": "間にスペースを入れずに相互にセレクターを追加します。", + "sass.builtin.selector-extend": "$selector 内で $extendee を $extender で拡張します。", + "sass.builtin.selector-nest": "セレクターを (スタイルシート内の入れ子のように) 相互に入れ子にします。", + "sass.builtin.selector-parse": "セレクターを & によって返される形式に解析します。", + "sass.builtin.selector-replace": "$selector 内で $original を $replacement に置換します。", + "sass.builtin.selector-unify": "2 つのセレクターを統合して、両方にマッチする要素にマッチするセレクターを作ります。", + "sass.builtin.set-nth": "リスト内の n 番目の項目を置換します。", + "sass.builtin.simple-selectors": "複合セレクターを構成するシンプルなセレクターを返します。", + "sass.builtin.str-index": "$string で $substring が最初に登場する位置のインデックスを返します。", + "sass.builtin.str-insert": "$string 内の $index の位置に $insert を挿入します。", + "sass.builtin.str-length": "文字列に含まれている文字数を返します。", + "sass.builtin.str-slice": "$string から部分文字列を抽出します。", + "sass.builtin.to-lower-case": "文字列を小文字に変換します。", + "sass.builtin.to-upper-case": "文字列を大文字に変換します。", + "sass.builtin.transparentize": "色の透明度を上げます。", + "sass.builtin.type-of": "値の型を返します。", + "sass.builtin.unit": "数値に関連付けられている単位 (1 つ以上) を返します。", + "sass.builtin.unitless": "数値に単位が付いているかどうかを返します。", + "sass.builtin.unquote": "文字列から引用符を削除します。", + "sass.builtin.variable-exists": "指定した名前の変数が現在のスコープに存在するかどうかを返します。", + "sass.builtin.zip": "複数のリストを結合して 1 つの多次元リストを作ります。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/typescript/common/features/quickFix.i18n.json b/i18n/jpn/src/vs/languages/typescript/common/features/quickFix.i18n.json new file mode 100644 index 00000000000..a70851c1952 --- /dev/null +++ b/i18n/jpn/src/vs/languages/typescript/common/features/quickFix.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "typescript.quickfix.addAsGlobal": "'{0}' をグローバルとしてマークします", + "typescript.quickfix.rename": "名前を '{0}' に変更します", + "typescript.quickfix.typeDefinitions": "型定義 {0} のダウンロード" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/typescript/common/lint/lint.i18n.json b/i18n/jpn/src/vs/languages/typescript/common/lint/lint.i18n.json new file mode 100644 index 00000000000..50f2929ee56 --- /dev/null +++ b/i18n/jpn/src/vs/languages/typescript/common/lint/lint.i18n.json @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "javascript.comparisonOperatorNotStrict": "'!=' と '==' ではなく、'!==' と '===' を使用してください。", + "javascript.functionInsideLoop": "関数がループ内にあります。", + "javascript.missingSemicolon": "セミコロンがありません。", + "javascript.newOnLowercaseFunctions": "小文字の名前の関数がコンストラクターとして使用されています。", + "javascript.reservedKeyword": "予約されたキーワードを使用しないでください。", + "javascript.semicolonInsteadOfBlock": "ブロックではなくセミコロンを使用してください。", + "javascript.typeofCannotBeCompared": "'typeof' 演算子の想定される出力と異なります。", + "javascript.typescriptSpecific": "JavaScript で TypeScript 固有の言語コンストラクトを使用しないでください。", + "layout.curlyBracketsMustNotBeOmitted": "中かっこを省略しないでください。", + "layout.emptyblock": "空のブロックにはコメントが必要です。", + "typescript.looksLikeTripleSlash": "'/// ' を意図しましたか?", + "typescript.missingReturnType": "戻り値の型がありません。", + "typescript.unusedFunction": "未使用のローカル関数です。", + "typescript.unusedImport": "未使用のインポートです。", + "typescript.unusedLocalVariable": "未使用のローカル変数です。", + "typescript.unusedPrivateMember": "未使用のプライベート メンバーです。", + "typescript.variableUsedBeforeDeclared": "宣言されていない変数が使用されています。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/typescript/common/typescript.contribution.i18n.json b/i18n/jpn/src/vs/languages/typescript/common/typescript.contribution.i18n.json new file mode 100644 index 00000000000..2918fcc6fc2 --- /dev/null +++ b/i18n/jpn/src/vs/languages/typescript/common/typescript.contribution.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "現在のドキュメントの単語を常にすべて含めます。", + "baseUrl": "モジュール参照の解決に使用されるベース URL を構成できます (http://requirejs.org/docs/api.html#config-baseUrl)。このオプションは、非同期のモジュール定義 (\"module\": \"amd\") を使用するプロジェクトにのみ適用されます。", + "compilationSettings": "TypeScript の検証の動作を制御します。", + "lint": "検証に関するさまざまな設定を制御します。", + "lint.comparisonOperatorsNotStrict": "'!=' と '==' ではなく、'!==' と '===' を使用してください。", + "lint.curlyBracketsMustNotBeOmitted": "中かっこを省略しないでください。", + "lint.emptyBlocksWithoutComment": "空のブロックにはコメントが必要です。", + "lint.functionsInsideLoops": "関数がループ内にあります。", + "lint.functionsWithoutReturnType": "関数の戻り値の型の注釈を省略しないでください。", + "lint.missingSemicolon": "セミコロンがありません。", + "lint.newOnLowercaseFunctions": "小文字の名前の関数がコンストラクターとして使用されています。", + "lint.reservedKeywords": "予約されたキーワードを使用しないでください。", + "lint.semicolonsInsteadOfBlocks": "ブロックではなくセミコロンを使用してください。", + "lint.tripleSlashReferenceAlike": "3 つのスラッシュを含む参照に誤って入力されたものがないかを探します。", + "lint.typeScriptSpecifics": "JavaScript で TypeScript 固有の言語コンストラクトを使用しないでください。", + "lint.unknownTypeOfResults": "'typeof' 演算子の想定される出力と異なります。", + "lint.unusedFunctions": "未使用のローカル関数です。", + "lint.unusedMembers": "未使用のプライベート メンバーです。", + "lint.unusedVariables": "未使用のローカル変数です。", + "module": "使用されているモジュール システムを示します。", + "noImplicitAny": "明示的な任意の型宣言を適用します。", + "noLib": "DOM およびブラウザー環境の型指定を使用しないでください。", + "scope": "検証の設定が複数ある場合に、適用するサブフォルダーを定義します。", + "suggestSettings": "TypeScript の IntelliSense の動作を制御します。", + "target": "使用されている ECMA-Script のバージョンを示します。", + "tsConfigurationTitle": "TypeScript の構成", + "useCodeSnippetsOnMethodSuggest": "パラメーター シグネチャを含む完全な関数。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/languages/typescript/common/typescriptMode.i18n.json b/i18n/jpn/src/vs/languages/typescript/common/typescriptMode.i18n.json new file mode 100644 index 00000000000..89adbf9b91d --- /dev/null +++ b/i18n/jpn/src/vs/languages/typescript/common/typescriptMode.i18n.json @@ -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. +{ + "err.tooMuchData": "VS Code 用の JavaScript ソース ファイルが多すぎます。jsconfig.json で除外プロパティを使用することを考慮してください。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/platform/configuration/common/configurationRegistry.i18n.json b/i18n/jpn/src/vs/platform/configuration/common/configurationRegistry.i18n.json new file mode 100644 index 00000000000..2c903d0b4a0 --- /dev/null +++ b/i18n/jpn/src/vs/platform/configuration/common/configurationRegistry.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "invalid.properties": "'configuration.properties' は、オブジェクトである必要があります", + "invalid.title": "'configuration.title' は、文字列である必要があります", + "invalid.type": "設定すると、'configuration.type' は 'オブジェクトに設定されなければなりません", + "vscode.extension.contributes.configuration": "構成の設定を提供します。", + "vscode.extension.contributes.configuration.properties": "構成のプロパティの説明です。", + "vscode.extension.contributes.configuration.title": "設定の概要です。このラベルは、設定ファイルでコメントの区切り文字として使用します。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json b/i18n/jpn/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json new file mode 100644 index 00000000000..6c8a3bd3a3f --- /dev/null +++ b/i18n/jpn/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "first.chord": "({0}) が押されました。2 番目のキーを待っています...", + "missing.chord": "キーの組み合わせ ({0}、{1}) はコマンドではありません。", + "unboundCommands": "他に使用できるコマンドは次のとおりです: " +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/electron-main/main.i18n.json b/i18n/jpn/src/vs/workbench/electron-main/main.i18n.json new file mode 100644 index 00000000000..7c583846dee --- /dev/null +++ b/i18n/jpn/src/vs/workbench/electron-main/main.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expired": "期限切れ", + "expiredDetail": "このプレリリース版 {0} は、有効期限が切れています。\n\n{1} にアクセスして、現行リリースをダウンロードしてください。", + "newWindow": "新しいウィンドウ", + "openWebSite": "Web サイトを開く", + "quit": "終了" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json b/i18n/jpn/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json new file mode 100644 index 00000000000..8b6e56d8383 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json @@ -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. +{ + "globalConsoleActionMacLinux": "新しいターミナルを開く", + "globalConsoleActionWin": "新しいコマンド プロンプトを開く", + "scopedConsoleActionMacLinux": "ターミナルで開く", + "scopedConsoleActionWin": "コマンド プロンプトで開く" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/feedback/browser/feedback.i18n.json b/i18n/jpn/src/vs/workbench/parts/feedback/browser/feedback.i18n.json new file mode 100644 index 00000000000..a70ad14a9e6 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/feedback/browser/feedback.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "character left": "文字入力可", + "characters left": "文字入力可", + "commentsHeader": "コメント", + "feedbackSending": "送信中", + "feedbackSendingError": "もう一度やり直してください", + "feedbackSent": "ありがとうございました", + "frownCaption": "悲しい", + "label.sendASmile": "フィードバックをツイートしてください。", + "other ways to contact us": "その他の連絡方法", + "request a missing feature": "欠落している機能を要求する", + "sendFeedback": "フィードバックをツイートする", + "sentiment": "ご感想をお聞かせください。", + "smileCaption": "ハッピー", + "submit a bug": "バグを送信する", + "tell us why?": "理由をお知らせください", + "tweet": "ツイートする" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/files/browser/fileActions.i18n.json b/i18n/jpn/src/vs/workbench/parts/files/browser/fileActions.i18n.json new file mode 100644 index 00000000000..bec803e6da0 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -0,0 +1,62 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "addToWorkingFiles": "アクティブ ファイルを作業ファイルに追加する", + "closeAllFiles": "すべてのファイルを閉じる", + "closeAllLabel": "すべてのファイルを閉じる", + "closeFile": "ファイルを閉じる", + "closeLabel": "ファイルを閉じる", + "closeOtherFiles": "その他のファイルを閉じる", + "closeOtherLabel": "その他のファイルを閉じる", + "compareFiles": "ファイルの比較", + "compareLabels": "{0} ↔ {1}", + "compareSource": "比較対象の選択", + "compareWith": "'{0}' と比較", + "confirmDeleteMessageFile": "'{0}' を完全に削除してもよろしいですか?", + "confirmDeleteMessageFolder": "'{0}' とその内容を完全に削除してもよろしいですか?", + "confirmMoveTrashMessageFile": "'{0}' を削除しますか?", + "confirmMoveTrashMessageFolder": "'{0}' とその内容を削除しますか?", + "confirmOverwrite": "保存先のフォルダーに同じ名前のファイルまたはフォルダーが既に存在します。置き換えてもよろしいですか?", + "copyFile": "コピー", + "createNewFile": "新しいファイル", + "createNewFolder": "新しいフォルダー", + "delete": "削除", + "deleteButtonLabel": "削除(&&D)", + "deleteButtonLabelRecycleBin": "ごみ箱に移動(&&M)", + "deleteButtonLabelTrash": "ゴミ箱に移動(&&M)", + "duplicateFile": "重複", + "emptyFileNameError": "ファイルまたはフォルダーの名前を指定する必要があります。", + "fileNameExistsError": "**{0}** というファイルまたはフォルダーはこの場所に既に存在します。別の名前を指定してください。", + "filePathTooLongError": "名前 **{0}** のパスが長すぎます。名前を短くしてください。", + "focusWorkingFiles": "作業ファイルにフォーカス", + "globalCompareFile": "アクティブ ファイルを比較しています...", + "importFiles": "ファイルのインポート", + "invalidFileNameError": "名前 **{0}** がファイル名またはフォルダー名として無効です。別の名前を指定してください。", + "irreversible": "このアクションは元に戻すことができません。", + "newFile": "新しいファイル", + "newFolder": "新しいフォルダー", + "noFileOpen": "開いており閉じるファイルが現在ありません。", + "noWorkingFiles": "作業ファイルが現在ありません。", + "openFileToAdd": "まずファイルを開いてから作業ファイルに追加してください", + "openFileToCompare": "まずファイルを開いてから別のファイルと比較してください", + "openNextWorkingFile": "次の作業ファイルを開く", + "openPreviousWorkingFile": "前の作業ファイルを開く", + "openToSide": "横に並べて開く", + "pasteFile": "貼り付け", + "permDelete": "完全に削除", + "refresh": "最新の情報に更新", + "rename": "名前変更", + "replaceButtonLabel": "置換(&&R)", + "retry": "再試行", + "revert": "ファイルを元に戻す", + "save": "保存", + "saveAll": "すべて保存", + "saveFiles": "ダーティ ファイルを保存", + "unableToFileToCompare": "選択されたファイルを '{0}' と比較できません。", + "undoBin": "ごみ箱から復元できます。", + "undoTrash": "ゴミ箱から復元できます。", + "warningFileDirty": "ファイル '{0}' は現在保存中です。後でもう一度お試しください。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json b/i18n/jpn/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json new file mode 100644 index 00000000000..a39ff1cb52b --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "createNewBranch": "新しいブランチの作成", + "dupeBranchName": "同じ名前の分岐が既に存在します。", + "invalidBranchName": "分岐名が無効です。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json b/i18n/jpn/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json new file mode 100644 index 00000000000..be80c68e997 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "git": "Git", + "openChange": "変更を開く", + "openInEditor": "エディター ビューに切り替える", + "stageSelectedLines": "選択した行のステージング", + "switchToChangesView": "変更の表示に切り替え" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/jpn/src/vs/workbench/parts/git/browser/gitActions.i18n.json new file mode 100644 index 00000000000..c4faed9db34 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -0,0 +1,51 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "authFailed": "Git リモートで認証が失敗しました。", + "branch": "ブランチ", + "branch2": "ブランチ", + "checkout": "チェックアウト", + "cleanChangesLabel": "変更を取り除く(&&C)", + "commitAll": "すべてコミット", + "commitAll2": "すべてコミット", + "commitStaged": "ステージング済みをコミット", + "commitStaged2": "ステージング済みをコミット", + "confirmPublishMessage": "'{0}' を '{1}' に発行してよろしいですか?", + "confirmPublishMessageButton": "発行(&&P)", + "confirmUndo": "'{0}' の変更を取り除いてよろしいですか?", + "confirmUndoAllMultiple": "{0} ファイルにステージングされていない変更があります。\n\nこのアクションは元に戻すことができません。", + "confirmUndoAllOne": "{0} ファイルにステージングされていない変更があります。\n\nこのアクションは元に戻すことができません。", + "confirmUndoMessage": "変更をすべて取り除いてもよろしいですか?", + "currentBranch": "現在のブランチ '{0}' は最新の状態です。", + "currentBranchPlural": "現在のブランチ '{0}' は、{1} 個のコミットの後で、'{3}' から {2} 個のコミットの前です。", + "currentBranchPluralSingle": "現在のブランチ '{0}' は、{1} 個のコミットの後で、'{3}' から {2} 個のコミットの前です。", + "currentBranchSingle": "現在のブランチ '{0}' は、{1} 個のコミットの後で、'{3}' から {2} 個のコミットの前です。", + "currentBranchSinglePlural": "現在のブランチ '{0}' は、{1} 個のコミットの後で、'{3}' から {2} 個のコミットの前に位置しています。", + "currentlyDetached": "デタッチ モードで同期できません。", + "dirtyChanges": "同期する前に変更をコミットする、元に戻す、または格納します。", + "dirtyTreeCheckout": "チェック アウトできません。まず作業をコミットまたはステージングしてください。", + "dirtyTreePull": "プルできません。まず作業をコミットまたはステージングしてください。", + "init": "初期化", + "irreversible": "このアクションは元に戻すことができません。", + "noUpstream": "現在のブランチ '{0} にはアップストリームのブランチが構成されていません。", + "openChange": "変更を開く", + "openFile": "ファイルを開く", + "publish": "公開", + "publishPickMessage": "リモートを選んで、ブランチ '{0}' を次に公開します:", + "pull": "プル", + "pullWithRebase": "プル (リベース)", + "push": "プッシュ", + "refresh": "最新の情報に更新", + "stageAllChanges": "すべてステージング", + "stageChanges": "ステージ", + "sync": "同期", + "synchronizing": "同期しています...", + "undoAllChanges": "すべて取り除く", + "undoChanges": "取り除く", + "undoLastCommit": "前回のコミットを元に戻す", + "unstage": "ステージング解除", + "unstageAllChanges": "すべてステージング解除" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/git/browser/gitServices.i18n.json b/i18n/jpn/src/vs/workbench/parts/git/browser/gitServices.i18n.json new file mode 100644 index 00000000000..8fcc9e78892 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "badConfigFile": "Git {0}", + "cancel": "キャンセル", + "cantOpen": "この Git リソースを開けません。", + "cantOpenResource": "この Git リソースを開けません。", + "changesFromIndex": "{0} - インデックスでの変更", + "changesFromTree": "{0} - {1} での変更", + "checkNativeConsole": "Git の操作を実行しているときに問題が発生しました。出力を確認するか、コンソールを使用してリポジトリの状態を確認してください。", + "configureUsernameEmail": "Git ユーザー名と電子メールを構成してください。", + "gitIndexChanges": "{0} - インデックスでの変更", + "gitIndexChangesRenamed": "{0} - 名前変更済み - インデックスでの変更", + "gitMergeChanges": "{0} - 変更のマージ", + "showOutput": "出力の表示", + "unmergedChanges": "変更をコミットする前に、まずマージされていない変更を解決する必要があります。", + "workingTreeChanges": "{0} - 作業ツリーでの変更" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json b/i18n/jpn/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json new file mode 100644 index 00000000000..fd12809fade --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "commitMessage": "メッセージ ({0} を押してコミット)", + "commitMessageAriaLabel": "Git: コミット メッセージを入力し、{0} を押してコミットしてください", + "needMessage": "コミット メッセージを入力してください。**{0}** を押すといつでも変更をコミットできます。ステージング済みの変更がある場合は、それらの変更だけがコミットされます。それ以外の場合は、すべての変更がコミットされます。", + "nothingToCommit": "コミットする変更があった時点で、コミット メッセージを入力するか、**{0}** を押して変更をコミットしてください。ステージング済みの変更がある場合は、それらの変更だけがコミットされます。それ以外の場合は、すべての変更がコミットされます。", + "showOutput": "Git 出力の表示", + "treeAriaLabel": "Git 変更の表示" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json b/i18n/jpn/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json new file mode 100644 index 00000000000..a40c2d58062 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "added-char": "A", + "allChanges": "変更", + "ariaLabelChanges": "変更、Git", + "ariaLabelMerge": "マージ、Git", + "ariaLabelStagedChanges": "ステージング済みの変更、Git", + "copied-char": "C", + "deleted-char": "D", + "fileStatusAriaLabel": "フォルダー {1} 内のファイル {0} の状態: {2}、Git", + "ignored-char": "!", + "mergeChanges": "変更のマージ", + "modified-char": "M", + "outsideOfWorkspace": "このファイルは現在のワークスペースの外にあります。", + "renamed-char": "R", + "stagedChanges": "ステージング済みの変更", + "title-conflict-added-by-them": "競合: 他者が追加", + "title-conflict-added-by-us": "競合: こちらが追加", + "title-conflict-both-added": "競合: 両方追加", + "title-conflict-both-deleted": "競合: 両方削除", + "title-conflict-both-modified": "競合: 両方変更", + "title-conflict-deleted-by-them": "競合: 他者が削除", + "title-conflict-deleted-by-us": "競合: こちらが削除", + "title-deleted": "削除済み", + "title-ignored": "無視", + "title-index-added": "インデックスに追加済み", + "title-index-copied": "インデックスでコピー済み", + "title-index-deleted": "インデックスで削除済み", + "title-index-modified": "インデックスで変更済み", + "title-index-renamed": "インデックスで名前を変更済み", + "title-modified": "変更済み", + "title-untracked": "追跡対象外", + "untracked-char": "U" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json b/i18n/jpn/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json new file mode 100644 index 00000000000..039c0098c69 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json @@ -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. +{ + "markdownPreviewNoFile": "まずマークダウン ファイルを開いてからプレビューを表示します。", + "openPreview": "プレビューを開く", + "openPreviewSideBySide": "プレビューを横に表示", + "toggleMarkdownPreview": "プレビューの切り替え" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/output/browser/outputActions.i18n.json b/i18n/jpn/src/vs/workbench/parts/output/browser/outputActions.i18n.json new file mode 100644 index 00000000000..7adae731aee --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/output/browser/outputActions.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "clearOutput": "出力のクリア", + "switchToOutput.label": "出力に切り替え", + "toggleOutput": "出力の切り替え" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json b/i18n/jpn/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json new file mode 100644 index 00000000000..604e330d02b --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json @@ -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. +{ + "QuickCommandsAction.label": "エディター コマンドの表示", + "actionNotEnabled": "コマンド '{0}' は現在のコンテキストでは無効です。", + "canNotRun": "コマンド '{0}' はここからは実行できません。", + "commandLabel": "{0}: {1}", + "entryAriaLabel": "{0}、コマンド", + "noCommandsMatching": "一致するコマンドはありません", + "showTriggerActions": "すべてのコマンドの表示" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json b/i18n/jpn/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json new file mode 100644 index 00000000000..3f033ff1972 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json @@ -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. +{ + "cannotRunGotoLine": "まずテキスト ファイルを開いてから指定行に移動します", + "gotoLine": "指定行へ移動...", + "gotoLineColumnLabel": "行 {0} 列 {1} へ移動", + "gotoLineHandlerAriaLabel": "移動先の行番号を入力してください。", + "gotoLineLabel": "行 {0} へ移動", + "gotoLineLabelEmpty": "移動先の行番号を入力してください", + "gotoLineLabelEmptyWithLimit": "移動先の行番号を 1 ~ {0} の範囲で入力してください" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json b/i18n/jpn/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json new file mode 100644 index 00000000000..acbe177ef29 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "_constructor": "コンストラクター ({0})", + "array": "配列 ({0})", + "boolean": "ブール値 ({0})", + "cannotRunGotoSymbol": "まずテキスト ファイルを開いてからシンボルへ移動します", + "cannotRunGotoSymbolInFile": "残念ながらファイルのシンボル情報がありません", + "class": "クラス ({0})", + "entryAriaLabel": "{0}、シンボル", + "enum": "列挙型 ({0})", + "file": "ファイル ({0})", + "function": "関数 ({0})", + "gotoSymbol": "シンボルへ移動...", + "gotoSymbolHandlerAriaLabel": "入力すると現在アクティブなエディターのシンボルが絞り込まれます。", + "interface": "インターフェイス ({0})", + "key": "キー ({0})", + "method": "メソッド ({0})", + "modules": "モジュール ({0})", + "namespace": "名前空間 ({0})", + "noSymbolsFound": "シンボルが見つかりません", + "noSymbolsMatching": "一致するシンボルはありません。", + "number": "数字 ({0})", + "object": "オブジェクト ({0})", + "package": "パッケージ ({0})", + "property": "プロパティ ({0})", + "rule": "ルール ({0})", + "string": "文字列 ({0})", + "symbols": "シンボル ({0})", + "variable": "変数 ({0})" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json b/i18n/jpn/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json new file mode 100644 index 00000000000..db140eecb84 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "editorCommands": "エディター コマンド", + "entryAriaLabel": "{0}、ピッカーのヘルプ", + "globalCommands": "グローバル コマンド" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json b/i18n/jpn/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json new file mode 100644 index 00000000000..d064da0247e --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json @@ -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. +{ + "fileAndTypeResults": "ファイルとシンボルの結果" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json b/i18n/jpn/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json new file mode 100644 index 00000000000..e7b194b29ce --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "entryAriaLabel": "{0}、ファイル ピッカー", + "searchResults": "検索結果" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json b/i18n/jpn/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json new file mode 100644 index 00000000000..94b07ff6034 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json @@ -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. +{ + "entryAriaLabel": "{0}、シンボル ピッカー", + "noSymbolsMatching": "一致するシンボルはありません。", + "noSymbolsWithoutInput": "入力してシンボルを検索します", + "symbols": "シンボルの結果" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/search/browser/search.contribution.i18n.json b/i18n/jpn/src/vs/workbench/parts/search/browser/search.contribution.i18n.json new file mode 100644 index 00000000000..bf3920ddfeb --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/search/browser/search.contribution.i18n.json @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "exclude": "検索結果でファイルとフォルダーを除外するために glob パターンを構成します。file.exclude 設定からすべての glob パターンを継承します。", + "exclude.boolean": "ファイル パスの照合基準となる glob パターン。これを true または false に設定すると、パターンがそれぞれ有効/無効になります。", + "exclude.when": "一致するファイルの兄弟を追加的に検査します。一致するファイル名の変数として $(basename) を使用します。", + "findInFolder": "フォルダー内を検索", + "name": "検索", + "openAnythingHandlerDescription": "名前でファイルとシンボルを開く", + "openSymbolDescriptionNormal": "名前でシンボルを開く", + "searchConfigurationTitle": "検索構成", + "showSearchViewlet": "検索の表示", + "showTriggerActions": "シンボルをすべて表示", + "view": "表示" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json b/i18n/jpn/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json new file mode 100644 index 00000000000..733decf8757 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ClearSearchResultsAction.label": "検索結果のクリア", + "CollapseAllAction.label": "折りたたむ", + "ConfigureGlobalExclusionsAction.label": "設定を開く", + "RefreshAction.label": "最新の情報に更新", + "RemoveAction.label": "削除", + "SelectOrRemoveAction.removeLabel": "削除", + "SelectOrRemoveAction.selectLabel": "選択", + "ariaSearchResultsStatus": "検索により {1} 個のファイル内の {0} 件の結果が返されました", + "defaultLabel": "入力", + "fileMatchAriaLabel": "フォルダー {2} のファイル {1} 内で {0} 件の一致、検索結果", + "findInFolder": "フォルダー内を検索", + "findPlaceHolder": "Enter を押して検索するか、Esc を押して取り消します", + "globLabel": "{1} のとき {0}", + "global.searchScope.folders": "設定で除外されたファイル", + "label.Search": "検索: 検索語句を入力し Enter を押して検索するか、Esc を押して取り消します", + "label.excludes": "検索除外パターン", + "label.global.excludes": "検索除外パターンを構成しました", + "label.includes": "検索包含パターン", + "moreSearch": "詳細検索の切り替え", + "noMatches": "一致なし", + "noResultsExcludes": "'{0}' を除外した結果はありませんでした - ", + "noResultsFound": "結果はありません。構成された除外の設定を確認してください - ", + "noResultsIncludes": "'{0}' に結果はありません - ", + "noResultsIncludesExcludes": "'{0}' に '{1}' を除外した結果はありません - ", + "openSettings.message": "設定を開く", + "patternDescription": "Glob パターンを使用する", + "patternHelpInclude": "一致するパターン。たとえば、****/*.js** はすべての JavaScript ファイルと一致し、**myFolder/**** は当該フォルダーとすべての子と一致します。\n\n**参照情報**:\n***** は 0 個以上の文字と一致します\n**?** は 1 文字と一致します\n****** は 0 個以上のディレクトリと一致します\n**[a-z]** は文字の範囲と一致します\n**{a,b}** は任意のパターンと一致します)", + "regexp.validationFailure": "この式はすべてに一致します", + "rerunSearch.message": "もう一度検索してください", + "rerunSearchInAll.message": "すべてのファイルでもう一度検索してください", + "searchCanceled": "結果が見つかる前に検索が取り消されました - ", + "searchMatch": "一致する項目が {0} 件見つかりました", + "searchMatches": "一致する項目が {0} 件見つかりました", + "searchMaxResultsWarning": "結果セットにはすべての一致項目のサブセットのみが含まれています。より限定的な検索条件を入力して、検索結果を絞り込んでください。", + "searchResultAria": "{0}、検索結果", + "searchScope.excludes": "除外するファイル", + "searchScope.includes": "含めるファイル", + "treeAriaLabel": "検索結果" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/services/message/browser/messageService.i18n.json b/i18n/jpn/src/vs/workbench/services/message/browser/messageService.i18n.json new file mode 100644 index 00000000000..a6b8329e7c9 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/services/message/browser/messageService.i18n.json @@ -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. +{ + "closeMessages": "通知メッセージを閉じる" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json b/i18n/jpn/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json new file mode 100644 index 00000000000..6ccbbec38cb --- /dev/null +++ b/i18n/jpn/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "pluginHostProcess.crash": "拡張機能ホストが予期せずに終了しました。回復するには、ウィンドウを再度読み込んでください。", + "pluginHostProcess.error": "拡張機能ホストからのエラー: {0}", + "pluginHostProcess.startupFail": "拡張機能ホストが 10 秒以内に開始されませんでした。問題が発生している可能性があります。", + "pluginHostProcess.startupFailDebug": "拡張機能ホストが 10 秒以内に開始されませんでした。先頭行で停止している可能性があり、続行するにはデバッガーが必要です。", + "reloadWindow": "ウィンドウの再読み込み" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/base/browser/ui/actionbar/actionbar.i18n.json b/i18n/kor/src/vs/base/browser/ui/actionbar/actionbar.i18n.json new file mode 100644 index 00000000000..1b468119c2f --- /dev/null +++ b/i18n/kor/src/vs/base/browser/ui/actionbar/actionbar.i18n.json @@ -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. +{ + "titleLabel": "{0}({1})" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/base/browser/ui/findinput/findInput.i18n.json b/i18n/kor/src/vs/base/browser/ui/findinput/findInput.i18n.json new file mode 100644 index 00000000000..c120bdda672 --- /dev/null +++ b/i18n/kor/src/vs/base/browser/ui/findinput/findInput.i18n.json @@ -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. +{ + "caseDescription": "대/소문자 구분", + "defaultLabel": "입력", + "regexDescription": "정규식 사용", + "wordsDescription": "단어 단위로" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/base/browser/ui/messagelist/messageList.i18n.json b/i18n/kor/src/vs/base/browser/ui/messagelist/messageList.i18n.json new file mode 100644 index 00000000000..9ccb4d90f2d --- /dev/null +++ b/i18n/kor/src/vs/base/browser/ui/messagelist/messageList.i18n.json @@ -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. +{ + "alertErrorMessage": "오류: {0}", + "alertInfoMessage": "정보: {0}", + "alertWarningMessage": "경고: {0}", + "close": "닫기", + "error": "오류", + "info": "정보", + "warning": "경고" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json b/i18n/kor/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json new file mode 100644 index 00000000000..37c056d0dba --- /dev/null +++ b/i18n/kor/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingAudioSupport": "오디오 파일 재생을 지원하지 않습니다.", + "missingVideoSupport": "비디오 파일 재생을 지원하지 않습니다.", + "nativeBinaryError": "파일이 텍스트가 아니라 이진이거나 매우 크거나 지원되지 않는 텍스트 인코딩을 사용하기 때문에 편집기에서 파일을 표시할 수 없습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/base/browser/ui/toolbar/toolbar.i18n.json b/i18n/kor/src/vs/base/browser/ui/toolbar/toolbar.i18n.json new file mode 100644 index 00000000000..95ce862ebf7 --- /dev/null +++ b/i18n/kor/src/vs/base/browser/ui/toolbar/toolbar.i18n.json @@ -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. +{ + "more": "자세히" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/base/common/errors.i18n.json b/i18n/kor/src/vs/base/common/errors.i18n.json new file mode 100644 index 00000000000..6bdd6b081a7 --- /dev/null +++ b/i18n/kor/src/vs/base/common/errors.i18n.json @@ -0,0 +1,25 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "error.connection.unknown": "알 수 없는 연결 오류가 발생했습니다. 인터넷에 연결되지 않았거나 연결된 서버가 오프라인 상태입니다.", + "error.connection.unknown.verbose": "알 수 없는 연결 오류({0})", + "error.defaultMessage": "알 수 없는 오류가 발생했습니다. 자세한 내용은 로그를 참조하세요.", + "error.http": "{0}(HTTP {1})", + "error.http.verbose": "{0}(HTTP {1}: {2})", + "error.moreErrors": "{0}(총 {1}개의 오류)", + "error.permission": "사용 권한이 거부되었습니다.", + "error.permission.verbose": "사용 권한이 거부되었습니다(HTTP {0}).", + "illegalArgumentError": "잘못된 인수: {0}", + "illegalArgumentError2": "잘못된 인수", + "illegalStateError": "잘못된 상태: {0}", + "illegalStateError2": "잘못된 상태", + "loaderError": "필요한 파일을 로드하지 못했습니다. 인터넷에 연결되지 않았거나 연결된 서버가 오프라인 상태입니다. 브라우저를 새로 고친 후 다시 시도해 보십시오.", + "loaderErrorNative": "필요한 파일을 로드하지 못했습니다. 응용 프로그램을 다시 시작하여 다시 시도하세요. 세부 정보: {0}", + "message": "{0}. 오류 코드: {1}", + "nodeExceptionMessage": "시스템 오류가 발생했습니다({0}).", + "notImplementedError": "구현 안 됨", + "stackTrace.format": "{0}: {1}" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/base/common/json.i18n.json b/i18n/kor/src/vs/base/common/json.i18n.json new file mode 100644 index 00000000000..298408321f7 --- /dev/null +++ b/i18n/kor/src/vs/base/common/json.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "CloseBraceExpected": "닫는 괄호 필요", + "CloseBracketExpected": "닫는 대괄호 필요", + "ColonExpected": "콜론 필요", + "CommaExpected": "쉼표 필요", + "EOFExpected": "콘텐츠 끝 필요", + "InvalidNumberFormat": "잘못된 숫자 형식", + "PropertyExpected": "속성 이름 필요", + "UnknownSymbol": "잘못된 기호", + "ValeExpected": "값 필요", + "ValueExpected": "값 필요" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/base/common/severity.i18n.json b/i18n/kor/src/vs/base/common/severity.i18n.json new file mode 100644 index 00000000000..54a72acb81a --- /dev/null +++ b/i18n/kor/src/vs/base/common/severity.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sev.error": "오류", + "sev.info": "정보", + "sev.warning": "경고" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/base/common/strings.i18n.json b/i18n/kor/src/vs/base/common/strings.i18n.json new file mode 100644 index 00000000000..c747351499a --- /dev/null +++ b/i18n/kor/src/vs/base/common/strings.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "diff.days": "{0}d", + "diff.days.month": "1개월 전", + "diff.days.verbose": "{0}일 전", + "diff.days.week": "1주일 전", + "diff.days.yesterday": "어제", + "diff.hour.verbose": "1시간 전", + "diff.hours": "{0}h", + "diff.hours.verbose": "{0}시간 전", + "diff.minute.verbose": "1분 전", + "diff.minutes": "{0}m", + "diff.minutes.verbose": "{0}분 전", + "diff.seconds": "{0}s", + "diff.seconds.verbose": "바로 지금", + "format.date": "{0}-{1}-{2} {3}:{4}:{5}", + "format.time": "{0}:{1}:{2}" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/browser/view/viewImpl.i18n.json b/i18n/kor/src/vs/editor/browser/view/viewImpl.i18n.json new file mode 100644 index 00000000000..4118aae2aa7 --- /dev/null +++ b/i18n/kor/src/vs/editor/browser/view/viewImpl.i18n.json @@ -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. +{ + "editorViewAccessibleLabel": "편집기 콘텐츠" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/common/config/commonEditorConfig.i18n.json b/i18n/kor/src/vs/editor/common/config/commonEditorConfig.i18n.json new file mode 100644 index 00000000000..ed0b9c4aeb0 --- /dev/null +++ b/i18n/kor/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "autoClosingBrackets": "괄호를 연 다음에 편집기에서 괄호를 자동으로 닫을지 여부를 제어합니다.", + "cursorBlinking": "커서 깜박임 애니메이션을 제어합니다. 허용되는 값은 '깜박임', '표시' 및 '숨김'입니다.", + "cursorStyle": "커서 스타일을 제어합니다. 허용되는 값은 '블록' 및 '줄'입니다.", + "editorConfigurationTitle": "편집기 구성", + "folding": "편집기에서 코드 접기를 사용할지 여부를 제어합니다.", + "fontFamily": "글꼴 패밀리를 제어합니다.", + "fontLigatures": "글꼴 합자 사용", + "fontSize": "글꼴 크기를 제어합니다.", + "formatOnType": "입력 후 편집기에서 자동으로 줄의 서식을 지정할지 여부를 제어합니다.", + "glyphMargin": "문자 모양 여백의 표시 여부를 제어합니다.", + "hideCursorInOverviewRuler": "커서가 개요 눈금자에서 가려져야 하는지 여부를 제어합니다.", + "ignoreTrimWhitespace": "diff 편집기에서 선행 공백 또는 후행 공백 변경을 diffs로 표시할지 여부를 제어합니다.", + "insertSpaces": "편집기에서 탭에 대한 공백을 삽입할지 여부를 제어합니다. 허용되는 값: \"auto\", true, false. \"auto\"로 설정되면 파일이 열릴 때 값이 추측됩니다.", + "lineHeight": "줄 높이를 제어합니다.", + "lineNumbers": "줄 번호의 표시 여부를 제어합니다.", + "mouseWheelScrollSensitivity": "마우스 휠 스크롤 이벤트의 `deltaX` 및 `deltaY`에서 사용할 승수", + "overviewRulerLanes": "개요 눈금자에서 동일한 위치에 표시될 수 있는 장식 수를 제어합니다.", + "quickSuggestions": "입력하는 동안 빠른 제안을 표시할지 여부를 제어합니다.", + "quickSuggestionsDelay": "빠른 제안을 표시할 지연 시간(밀리초)을 제어합니다.", + "referenceInfos": "편집기에서 지원하는 모드에 대한 참조 정보가 표시되는지 여부를 제어합니다.", + "renderWhitespace": "편집기에서 공백 문자를 렌더링할지 여부를 제어합니다.", + "roundedSelection": "선택 항목의 모서리를 둥글게 할지 여부를 제어합니다.", + "rulers": "세로 눈금자를 표시할 열", + "scrollBeyondLastLine": "편집기에서 마지막 줄 이후로 스크롤할지 여부를 제어합니다.", + "selectionHighlight": "편집기에서 선택 항목과 유사한 일치 항목을 강조 표시할지 여부를 제어합니다.", + "sideBySide": "diff 편집기에서 diff를 나란히 표시할지 인라인으로 표시할지 여부를 제어합니다.", + "suggestOnTriggerCharacters": "트리거 문자를 입력할 때 제안을 자동으로 표시할지 여부를 제어합니다.", + "tabSize": "탭의 렌더링 크기(문자 단위)를 제어합니다. 허용되는 값: \"auto\", 2, 4, 6 등. \"auto\"로 설정되면 파일이 열릴 때 값이 추측됩니다.", + "wordSeparators": "단어 관련 탐색 또는 작업을 수행할 때 단어 구분 기호로 사용되는 문자입니다.", + "wrappingColumn": "편집기에서 몇 개의 문자 이후에 줄을 바꿀지를 제어합니다. 이 값을 0으로 설정하면 뷰포트 너비 줄 바꿈이 설정됩니다.", + "wrappingIndent": "줄 바꿈 행의 들여쓰기를 제어합니다. 'none', 'same' 또는 'indent' 중 하나일 수 있습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/common/controller/cursor.i18n.json b/i18n/kor/src/vs/editor/common/controller/cursor.i18n.json new file mode 100644 index 00000000000..7dc4d4066b6 --- /dev/null +++ b/i18n/kor/src/vs/editor/common/controller/cursor.i18n.json @@ -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. +{ + "corrupt.commands": "명령을 실행하는 동안 예기치 않은 예외가 발생했습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/common/model/textModelWithTokens.i18n.json b/i18n/kor/src/vs/editor/common/model/textModelWithTokens.i18n.json new file mode 100644 index 00000000000..e0730be40aa --- /dev/null +++ b/i18n/kor/src/vs/editor/common/model/textModelWithTokens.i18n.json @@ -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. +{ + "mode.tokenizationSupportFailed": "입력을 토큰화하는 동안 모드에서 오류가 발생했습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json b/i18n/kor/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json new file mode 100644 index 00000000000..e87e4b4d36b --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.clipboard.copyLabel": "복사", + "actions.clipboard.cutLabel": "잘라내기", + "actions.clipboard.pasteLabel": "붙여넣기" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/codelens/browser/codelens.i18n.json b/i18n/kor/src/vs/editor/contrib/codelens/browser/codelens.i18n.json new file mode 100644 index 00000000000..42a7a0290cd --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/codelens/browser/codelens.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "n_references": "{0}개 참조", + "one_reference": "1개 참조", + "unknown_reference": "- 참조" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/comment/common/comment.i18n.json b/i18n/kor/src/vs/editor/contrib/comment/common/comment.i18n.json new file mode 100644 index 00000000000..dc1a8f5e487 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/comment/common/comment.i18n.json @@ -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. +{ + "comment.block": "블록 주석 설정/해제", + "comment.line": "줄 주석 설정/해제", + "comment.line.add": "줄 주석 추가", + "comment.line.remove": "줄 주석 제거" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json b/i18n/kor/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json new file mode 100644 index 00000000000..cee5d91a1b7 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json @@ -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. +{ + "action.showContextMenu.label": "편집기 상황에 맞는 메뉴 표시" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/find/browser/find.i18n.json b/i18n/kor/src/vs/editor/contrib/find/browser/find.i18n.json new file mode 100644 index 00000000000..1f32f3fb8ae --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/find/browser/find.i18n.json @@ -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. +{ + "addSelectionToNextFindMatch": "다음 일치 항목 찾기에 선택 항목 추가", + "findNextMatchAction": "다음 찾기", + "findPreviousMatchAction": "이전 찾기", + "moveSelectionToNextFindMatch": "다음 일치 항목 찾기로 마지막 선택 항목 이동", + "selectAllOccurencesOfFindMatch": "일치 항목 찾기의 모든 항목 선택", + "startFindAction": "찾기", + "startReplace": "바꾸기" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/find/browser/findWidget.i18n.json b/i18n/kor/src/vs/editor/contrib/find/browser/findWidget.i18n.json new file mode 100644 index 00000000000..a4a33042f16 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/find/browser/findWidget.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "label.closeButton": "닫기", + "label.find": "찾기", + "label.matchesLocation": "{0}/{1}", + "label.nextMatchButton": "다음 검색 결과", + "label.noResults": "결과 없음", + "label.previousMatchButton": "이전 검색 결과", + "label.replace": "바꾸기", + "label.replaceAllButton": "모두 바꾸기", + "label.replaceButton": "바꾸기", + "label.toggleReplaceButton": "바꾸기 모드 설정/해제", + "label.toggleSelectionFind": "선택 항목에서 찾기", + "placeholder.find": "찾기", + "placeholder.replace": "바꾸기", + "title.matchesCountLimit": "처음 999개의 결과가 강조 표시되지만 모든 찾기 작업은 전체 텍스트에 대해 수행됩니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/format/common/format.i18n.json b/i18n/kor/src/vs/editor/contrib/format/common/format.i18n.json new file mode 100644 index 00000000000..78d0b5607ca --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/format/common/format.i18n.json @@ -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. +{ + "formatAction.label": "코드 서식" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json b/i18n/kor/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json new file mode 100644 index 00000000000..b572adc9ebb --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.goToDecl.label": "정의로 이동", + "actions.goToDeclToSide.label": "측면에서 정의 열기", + "actions.gotoTypeDecl.label": "형식 정의로 이동", + "actions.previewDecl.label": "정의 피킹(Peeking)", + "multipleResults": "발견된 {0} 정의를 보려면 클릭하세요." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json b/i18n/kor/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json new file mode 100644 index 00000000000..3255bd0817a --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json @@ -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. +{ + "markerAction.next.label": "다음 오류 또는 경고로 이동", + "markerAction.previous.label": "이전 오류 또는 경고로 이동", + "quickfix.multiple.label": "제안 수정:", + "quickfix.single.label": "제안 수정: " +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json b/i18n/kor/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json new file mode 100644 index 00000000000..9e3147cdd15 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json @@ -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. +{ + "modesContentHover.loading": "로드 중..." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json b/i18n/kor/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json new file mode 100644 index 00000000000..0b5fa9832a0 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "InPlaceReplaceAction.next.label": "다음 값으로 바꾸기", + "InPlaceReplaceAction.previous.label": "이전 값으로 바꾸기" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json b/i18n/kor/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json new file mode 100644 index 00000000000..266a42c5548 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lines.copyDown": "아래에 줄 복사", + "lines.copyUp": "위에 줄 복사", + "lines.delete": "줄 삭제", + "lines.indent": "줄 들여쓰기", + "lines.insertAfter": "아래에 줄 삽입", + "lines.insertBefore": "위에 줄 삽입", + "lines.moveDown": "줄 아래로 이동", + "lines.moveUp": "줄 위로 이동", + "lines.outdent": "줄 내어쓰기", + "lines.trimTrailingWhitespace": "후행 공백 자르기" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/links/browser/links.i18n.json b/i18n/kor/src/vs/editor/contrib/links/browser/links.i18n.json new file mode 100644 index 00000000000..0af2ab8359d --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/links/browser/links.i18n.json @@ -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. +{ + "invalid.url": "잘못된 URI: {0}을(를) 열 수 없습니다.", + "label": "링크 열기", + "links.navigate": "Ctrl 키를 누르고 클릭하여 링크로 이동", + "links.navigate.mac": "Cmd 키를 누르고 클릭하여 링크로 이동" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json b/i18n/kor/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json new file mode 100644 index 00000000000..29896d9f4e7 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "mutlicursor.insertAbove": "위에 커서 추가", + "mutlicursor.insertAtEndOfEachLineSelected": "선택한 줄에서 여러 커서 만들기", + "mutlicursor.insertBelow": "아래에 커서 추가" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json b/i18n/kor/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json new file mode 100644 index 00000000000..884202c9ab9 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json @@ -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. +{ + "parameterHints.trigger.label": "매개 변수 힌트 트리거" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json b/i18n/kor/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json new file mode 100644 index 00000000000..1b3f572f3e0 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json @@ -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. +{ + "quickfix.trigger.label": "빠른 수정" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json b/i18n/kor/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json new file mode 100644 index 00000000000..f4a257e3c9d --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickFixSelectionWidget.loading": "로드 중...", + "QuickFixSelectionWidget.noSuggestions": "수정 제안 사항이 없습니다.", + "treeAriaLabel": "빠른 수정" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json b/i18n/kor/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json new file mode 100644 index 00000000000..de4587c73ed --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json @@ -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. +{ + "label": "줄 이동..." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json b/i18n/kor/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json new file mode 100644 index 00000000000..af33690387a --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "GotoLineAction.label": "줄 이동...", + "gotoLineActionInput": "줄 번호를 입력하고 선택적 콜론과 이동할 열 번호를 입력합니다.", + "gotoLineLabelEmptyWithLineAndColumnLimit": "이동할 1과 {0} 사이의 열을 입력합니다.", + "gotoLineLabelEmptyWithLineLimit": "이동할 1과 {0} 사이의 줄 번호 입력합니다.", + "gotoLineLabelValidLine": "줄 {0}(으)로 이동", + "gotoLineLabelValidLineAndColumn": "줄 {0} 및 열 {1}(으)로 이동" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json b/i18n/kor/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json new file mode 100644 index 00000000000..92cd9947ed5 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json @@ -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. +{ + "label": "명령 팔레트" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json b/i18n/kor/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json new file mode 100644 index 00000000000..69604995567 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickCommandAction.label": "명령 팔레트", + "quickCommandActionInput": "실행할 동작의 이름을 입력합니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json b/i18n/kor/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json new file mode 100644 index 00000000000..3f6ae28ea2f --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json @@ -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. +{ + "label": "기호 이동..." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json b/i18n/kor/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json new file mode 100644 index 00000000000..dc6c3a1f691 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json @@ -0,0 +1,20 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickOutlineAction.label": "기호 이동...", + "_constructor": "생성자({0})", + "call": "호출({0})", + "class": "클래스({0})", + "function": "함수({0})", + "interface": "인터페이스({0})", + "method": "메서드({0})", + "modules": "모듈({0})", + "property": "속성({0})", + "quickOutlineActionInput": "탐색할 식별자의 이름을 입력합니다.", + "symbols": "기호({0})", + "variable": "변수({0})", + "variable2": "변수({0})" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json b/i18n/kor/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json new file mode 100644 index 00000000000..250aa5bb0a3 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -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. +{ + "labelLoading": "로드 중...", + "noResults": "결과 없음", + "references.action.label": "모든 참조 찾기", + "references.action.name": "참조 표시" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json b/i18n/kor/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json new file mode 100644 index 00000000000..d8abfe6c11a --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingPreviewMessage": "사용 가능한 미리 보기 없음", + "peekView.alternateTitle": "참조", + "referenceCount": "참조 {0}개", + "referencesCount": "참조 {0}개", + "treeAriaLabel": "참조" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/rename/browser/rename2.i18n.json b/i18n/kor/src/vs/editor/contrib/rename/browser/rename2.i18n.json new file mode 100644 index 00000000000..465a9f190fd --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/rename/browser/rename2.i18n.json @@ -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. +{ + "rename.label": "기호 이름 바꾸기" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/rename/browser/renameModel.i18n.json b/i18n/kor/src/vs/editor/contrib/rename/browser/renameModel.i18n.json new file mode 100644 index 00000000000..2265d961b37 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/rename/browser/renameModel.i18n.json @@ -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. +{ + "cannotLoadFile": "{0} 파일을 로드할 수 없습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json b/i18n/kor/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json new file mode 100644 index 00000000000..4bf58092c96 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json @@ -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. +{ + "smartSelect.jumpBracket": "대괄호로 이동" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json b/i18n/kor/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json new file mode 100644 index 00000000000..127400173af --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "smartSelect.grow": "선택 확장", + "smartSelect.shrink": "선택 축소" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/suggest/browser/suggest.i18n.json b/i18n/kor/src/vs/editor/contrib/suggest/browser/suggest.i18n.json new file mode 100644 index 00000000000..a3ddfaa6897 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/suggest/browser/suggest.i18n.json @@ -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. +{ + "suggest.trigger.label": "제안 항목 트리거" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json b/i18n/kor/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json new file mode 100644 index 00000000000..1482f4777ac --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json @@ -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. +{ + "goback": "돌아가기", + "readMore": "자세히 알아보기...{0}", + "suggestWidget.loading": "로드 중...", + "suggestWidget.noSuggestions": "제안 항목이 없습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json b/i18n/kor/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json new file mode 100644 index 00000000000..5411a7c6c44 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json @@ -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. +{ + "toggle.tabfocusmode": "Tab 키 사용한 포커스 설정 토글" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json b/i18n/kor/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json new file mode 100644 index 00000000000..9befc5560b1 --- /dev/null +++ b/i18n/kor/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json @@ -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. +{ + "label.close": "닫기" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/css/common/css.contribution.i18n.json b/i18n/kor/src/vs/languages/css/common/css.contribution.i18n.json new file mode 100644 index 00000000000..988f874dc73 --- /dev/null +++ b/i18n/kor/src/vs/languages/css/common/css.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "cssConfigurationTitle": "CSS 구성", + "lint": "CSS 유효성 검사 및 문제 심각도를 제어합니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/css/common/cssWorker.i18n.json b/i18n/kor/src/vs/languages/css/common/cssWorker.i18n.json new file mode 100644 index 00000000000..6ee68e06cd1 --- /dev/null +++ b/i18n/kor/src/vs/languages/css/common/cssWorker.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "css.quickfix.rename": "'{0}'(으)로 이름 바꾸기", + "literal.fontface": "@font-face", + "literal.keyframes": "@keyframes {0}" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/css/common/parser/cssErrors.i18n.json b/i18n/kor/src/vs/languages/css/common/parser/cssErrors.i18n.json new file mode 100644 index 00000000000..61bfeb9beee --- /dev/null +++ b/i18n/kor/src/vs/languages/css/common/parser/cssErrors.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.colon": "콜론이 필요합니다.", + "expected.comma": "쉼표가 필요합니다.", + "expected.condt": "조건이 필요합니다.", + "expected.dot": "점이 필요합니다.", + "expected.expression": "식이 필요합니다.", + "expected.ident": "식별자가 필요합니다.", + "expected.lcurly": "{가 필요합니다.", + "expected.lparen": "(가 필요합니다.", + "expected.lsquare": "[가 필요합니다.", + "expected.number": "숫자가 필요합니다.", + "expected.operator": "연산자가 필요합니다.", + "expected.pagedirordecl": "page 지시문 또는 선언이 필요합니다.", + "expected.percentage": "백분율이 필요합니다.", + "expected.propvalue": "속성 값이 필요합니다.", + "expected.rcurly": "}가 필요합니다.", + "expected.rparent": ")가 필요합니다.", + "expected.rsquare": "]가 필요합니다.", + "expected.ruleorselector": "at-rule 또는 선택기가 필요합니다.", + "expected.selector": "선택기가 필요합니다.", + "expected.semicolon": "세미콜론이 필요합니다.", + "expected.stringliteral": "문자열 리터럴이 필요합니다.", + "expected.term": "용어가 필요합니다.", + "expected.uri": "URI가 필요합니다.", + "expected.uriorstring": "URI 또는 문자열이 필요합니다.", + "expected.varname": "변수 이름이 필요합니다.", + "expected.varvalue": "변수 값이 필요합니다.", + "unknown.atrule": "at-rule을 알 수 없음", + "unknown.keyword": "알 수 없는 키워드" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/css/common/services/intelliSense.i18n.json b/i18n/kor/src/vs/languages/css/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..7554e57a223 --- /dev/null +++ b/i18n/kor/src/vs/languages/css/common/services/intelliSense.i18n.json @@ -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. +{ + "css.builtin.hsl": "색상,채도 및 명도 값으로 색을 만듭니다.", + "css.builtin.hsla": "색상, 채도, 명도 및 알파 값으로 색을 만듭니다.", + "css.builtin.rgb": "빨강, 녹색 및 파랑 값으로 색을 만듭니다.", + "css.builtin.rgba": "빨강, 녹색, 파랑 및 알파 값으로 색을 만듭니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/css/common/services/lint.i18n.json b/i18n/kor/src/vs/languages/css/common/services/lint.i18n.json new file mode 100644 index 00000000000..edaca34e7e7 --- /dev/null +++ b/i18n/kor/src/vs/languages/css/common/services/lint.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "keyframes.standardrule.missing": "키 프레임을 정의할 때 표준 규칙 '@keyframes'를 항상 정의합니다.", + "keyframes.vendorspecific.missing": "모든 공급업체 관련 규칙을 항상 포함해야 하는데 {0}이(가) 없습니다.", + "namelist.concatenated": "{0}, '{1}'", + "namelist.single": "'{0}'", + "property.standard.missing": "호환성을 위해 표준 속성 '{0}'도 정의합니다.", + "property.vendorspecific.missing": "모든 공급업체 관련 속성을 항상 포함해야 하는데 {0}이(가) 없습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/css/common/services/lintRules.i18n.json b/i18n/kor/src/vs/languages/css/common/services/lintRules.i18n.json new file mode 100644 index 00000000000..3a8c140ed09 --- /dev/null +++ b/i18n/kor/src/vs/languages/css/common/services/lintRules.i18n.json @@ -0,0 +1,26 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "enableValidation": "모든 유효성 검사 사용 또는 사용 안 함", + "rule.avoidFloat": "'float'를 사용하지 않도록 합니다. Float를 사용하면 레이아웃의 한쪽이 바뀔 경우 CSS가 쉽게 깨질 수 있습니다.", + "rule.avoidIdSelector": "이러한 규칙은 HTML과 긴밀하게 결합되므로 선택기에 ID를 포함하면 안 됩니다.", + "rule.avoidImportant": "!important는 사용하지 않도록 합니다. 이것은 전체 CSS의 특정성에 문제가 있어서 리팩터링해야 함을 나타냅니다.", + "rule.colorFunction": "잘못된 매개 변수 수", + "rule.duplicateDeclarations": "중복된 스타일 정의를 사용하지 마세요.", + "rule.emptyRuleSets": "빈 규칙 집합을 사용하지 마세요.", + "rule.fontFaceProperties": "@font-face 규칙에서 'src' 및 'font-family' 속성을 정의해야 합니다.", + "rule.hexColor": "16진수 색은 3개 또는 6개의 16진수로 구성되어야 합니다.", + "rule.ieHack": "IE 핵(Hack)은 IE7 이상을 지원할 때만 필요합니다.", + "rule.importDirective": "Import 문은 병렬로 로드되지 않습니다.", + "rule.propertyIgnoredDueToDisplay": "display 때문에 속성이 무시됩니다. 예를 들어 'display: inline'을 사용할 경우 width, height, margin-top, margin-bottom 및 float 속성은 적용되지 않습니다.", + "rule.standardvendorprefix.all": "공급업체 관련 접두사를 사용할 때 표준 속성도 포함합니다.", + "rule.universalSelector": "범용 선택기 (*)는 느린 것으로 알려져 있습니다.", + "rule.unknownProperty": "알 수 없는 속성입니다.", + "rule.unknownVendorSpecificProperty": "알 수 없는 공급업체 관련 속성입니다.", + "rule.vendorprefixes.all": "공급업체 관련 접두사를 사용할 경우 다른 모든 공급업체 관련 속성도 포함합니다.", + "rule.withHeightAndBorderPadding": "패딩 또는 테두리를 사용하는 경우 너비 또는 높이를 사용하지 마세요.", + "rule.zeroWidthUnit": "0에는 단위가 필요하지 않습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/javascript/common/javascript.contribution.i18n.json b/i18n/kor/src/vs/languages/javascript/common/javascript.contribution.i18n.json new file mode 100644 index 00000000000..f492893e2e0 --- /dev/null +++ b/i18n/kor/src/vs/languages/javascript/common/javascript.contribution.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "항상 현재 문서의 모든 단어를 포함해야 합니다.", + "compilationSettings": "JavaScript 유효성 검사 작동 방식을 제어합니다.", + "jsConfigurationTitle": "JavaScript 구성", + "lint": "유효성 검사의 다양한 요소를 제어합니다.", + "lint.comparisonOperatorsNotStrict": "'!=' 및 '==' 대신 '!==' 및 '==='를 사용하십시오.", + "lint.curlyBracketsMustNotBeOmitted": "중괄호를 사용하지 마십시오.", + "lint.emptyBlocksWithoutComment": "빈 블록에 설명이 있어야 합니다.", + "lint.forcedTypeConversion": "할당별로 변수 형식을 다시 선언하지 마십시오.", + "lint.functionsInsideLoops": "루프 내부 함수입니다.", + "lint.missingSemicolon": "세미콜론이 누락되었습니다.", + "lint.mixedTypesArithmetics": "숫자는 산술 연산에만 사용하십시오.", + "lint.newOnLowercaseFunctions": "소문자 이름의 함수는 생성자로 사용됩니다.", + "lint.newOnReturningFunctions": "return 문이 있는 함수는 생성자로 사용됩니다.", + "lint.parametersDontMatchSignature": "매개 변수가 함수 서명과 일치하지 않습니다.", + "lint.primitivesInInstanceOf": "기본 형식에 instanceof를 사용하지 마십시오.", + "lint.redeclaredVariables": "변수를 다시 선언하고 해당 형식을 변경하지 마십시오.", + "lint.semicolonsInsteadOfBlocks": "블록 대신 세미콜론을 사용하십시오.", + "lint.tripleSlashReferenceAlike": "잘못 입력된 트리플 슬래시 참조를 찾습니다.", + "lint.undeclaredVariables": "선언되지 않은 변수를 사용하지 마십시오.", + "lint.unknownModule": "알 수 없는 모듈을 필요로 하지 않습니다.", + "lint.unknownProperty": "알려지지 않은 속성을 사용하지 마십시오.", + "lint.unknownTypeOfResults": "'typeof' 연산자의 예기치 않은 출력입니다.", + "lint.unusedFunctions": "사용되지 않는 로컬 함수입니다.", + "lint.unusedVariables": "사용되지 않는 지역 변수입니다.", + "semanticValidation": "JavaScript 파일에 대한 Linter 검사 실행 - validate.lint.* 설정을 재정의합니다.", + "suggestSettings": "JavaScript IntelliSense 작동 방식을 제어합니다.", + "syntaxValidation": "JavaScript 파일에서 구문 오류를 확인하세요.", + "useCodeSnippetsOnMethodSuggest": "매개 변수 서명으로 함수를 완료하십시오." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json b/i18n/kor/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json new file mode 100644 index 00000000000..97852c48a60 --- /dev/null +++ b/i18n/kor/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.bower.default": "Default bower.json", + "json.bower.error.repoaccess": "Bower 리포지토리 요청 실패: {0}", + "json.bower.package.hover": "{0}" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json b/i18n/kor/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json new file mode 100644 index 00000000000..2055b0c8419 --- /dev/null +++ b/i18n/kor/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.nugget.error.repoaccess": "nuget 리포지토리 요청 실패: {0}", + "json.nugget.package.hover": "{0}", + "json.nugget.version.hover": "최신 버전: {0}", + "json.nugget.versiondescription.suggest": "현재 패키지의 최신 버전", + "json.project.default": "Default project.json" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/json/common/json.contribution.i18n.json b/i18n/kor/src/vs/languages/json/common/json.contribution.i18n.json new file mode 100644 index 00000000000..0b940f4225c --- /dev/null +++ b/i18n/kor/src/vs/languages/json/common/json.contribution.i18n.json @@ -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. +{ + "jsonConfiguration.fileMatch": "스키마에 대한 JSON 파일을 확인할 때 일치할 '*'를 포함할 수 있는 파일 패턴입니다.", + "jsonConfiguration.fileMatches": "스키마에 대한 JSON 파일을 확인할 때 일치할 파일 패턴의 배열입니다.", + "jsonConfiguration.schema": "지정된 URL에 대한 스키마 정의입니다. 스키마 URL에 대한 액세스 방지를 위해서만 스키마를 제공해야 합니다.", + "jsonConfiguration.schemaPath": "현재 디렉터리에 있는 스키마의 URL 또는 상대 경로", + "jsonConfiguration.schemas": "현재 프로젝트에서 스키마를 JSON 파일에 연결", + "jsonConfigurationDescription": "JSON 설정 및 스키마를 구성하는 데 사용됩니다.", + "jsonConfigurationTitle": "JSON 구성" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/json/common/json.i18n.json b/i18n/kor/src/vs/languages/json/common/json.i18n.json new file mode 100644 index 00000000000..8017ada9da7 --- /dev/null +++ b/i18n/kor/src/vs/languages/json/common/json.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "array": "배열", + "boolean": "부울", + "number": "숫자", + "object": "개체", + "string": "문자열", + "undefined": "정의되지 않음" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/json/common/jsonIntellisense.i18n.json b/i18n/kor/src/vs/languages/json/common/jsonIntellisense.i18n.json new file mode 100644 index 00000000000..6f1fec3eebe --- /dev/null +++ b/i18n/kor/src/vs/languages/json/common/jsonIntellisense.i18n.json @@ -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. +{ + "json.suggest.default": "기본값" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/json/common/jsonSchemaService.i18n.json b/i18n/kor/src/vs/languages/json/common/jsonSchemaService.i18n.json new file mode 100644 index 00000000000..02bccd86e7b --- /dev/null +++ b/i18n/kor/src/vs/languages/json/common/jsonSchemaService.i18n.json @@ -0,0 +1,169 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "app.plugin.json.activationEvents": "플러그 인에 대한 활성화 이벤트", + "app.plugin.json.contributes": "이 플러그 인의 참여", + "app.plugin.json.contributes.language": "플러그 인의 언어 참여", + "app.plugin.json.contributes.language.aliases": "이 언어에 대한 이름 별칭", + "app.plugin.json.contributes.language.extensions": "이 언어와 관련된 파일 확장명", + "app.plugin.json.contributes.language.filenames": "이 언어와 관련된 파일 이름", + "app.plugin.json.contributes.language.id": "이 언어의 ID", + "app.plugin.json.dependencies": "플러그 인 종속성", + "app.plugin.json.mainModule": "주 JavaScript 파일의 상대 경로", + "app.plugin.json.pluginId": "고유 플러그 인 ID", + "app.plugin.json.scripts": "플러그 인에서 제공된 스크립트", + "app.plugin.json.scripts.compile": "이 플러그 인을 컴파일할 명령줄", + "bower.json.authors": "패키지의 내용을 승인한 사람의 목록입니다.", + "bower.json.dependencies": "종속성은 semver 호환 식별자 또는 URL에 대한 패키지 이름의 간단한 해시를 통해 지정됩니다.", + "bower.json.description": "사용자가 간략한 설명으로 패키지를 식별 및 검색하도록 도와줍니다.", + "bower.json.devDependencies": "패키지 개발(예: 프레임워크 테스트 또는 설명서 작성)에만 필요한 종속성입니다.", + "bower.json.exportsOverride": "grunt-bower-task에서 사용자 지정 설치 위치를 지정하는 데 사용됩니다.", + "bower.json.homepage": "패키지에 대한 자세한 정보를 제공하는 URL입니다. 지정하지 않은 경우 GitHub 끝점인 GitHub 프로젝트로 대체합니다.", + "bower.json.ignore": "패키지를 설치할 때 Bower에서 무시할 파일 목록입니다.", + "bower.json.invalidPatternName": "_로 시작하는 속성은 유효합니다.", + "bower.json.keywords": "키워드로 검색하는 데 사용됩니다. 이름을 모르더라도 패키지를 쉽게 검색할 수 있도록 만들어줍니다.", + "bower.json.license": "SPDS 라이선스 ID 또는 라이선스 경로/url입니다.", + "bower.json.main": "패키지를 사용하는 데 필요한 주 작동 파일입니다.", + "bower.json.moduleType": "이 패키지가 표시되는 모듈의 유형", + "bower.json.packagename": "패키지의 이름입니다.", + "bower.json.private": "true로 설정한 경우 게시가 거부됩니다. 그러면 사설 리포지토리를 실수로 게시하는 것을 방지할 수 있습니다.", + "bower.json.repository": "소스 코드를 찾을 수 있는 리포지토리입니다.", + "bower.json.resolutions": "패키지 간에 충돌이 발생하는 경우에 자동으로 해결할 종속성 버전입니다.", + "bower.json.title": "Bower 구성 파일의 JSON 스키마", + "bower.json.version": "의미 체계 버전 번호입니다.", + "global.json.projects": "이 파일에 상대적인 프로젝트 폴더의 목록입니다.", + "global.json.sources": "이 파일에 상대적인 소스 폴더의 목록입니다.", + "global.json.title": "ASP.NET 글로벌 구성 파일용 JSON 스키마", + "jsconfig.json.compilerOptions": "JavaScript 언어 서비스에 .js 파일의 유효성을 검사하는 방법을 지시합니다.", + "jsconfig.json.compilerOptions.charset": "입력 파일의 문자 집합", + "jsconfig.json.compilerOptions.decorators": "ES7 데코레이터에 대해 실험적 지원을 사용합니다.", + "jsconfig.json.compilerOptions.diagnostics": "진단 정보를 표시합니다.", + "jsconfig.json.compilerOptions.locale": "오류 메시지를 표시하는 데 사용할 로캘(예: en-us)입니다.", + "jsconfig.json.compilerOptions.mapRoot": "디버거가 생성된 위치 대신 맵 파일을 찾아야 하는 위치를 지정합니다.", + "jsconfig.json.compilerOptions.module": "확인할 모듈 코드 생성: 'commonjs', 'amd', 'system' 및 'umd'.", + "jsconfig.json.compilerOptions.noLib": "기본 라이브러리 파일(lib.d.ts)을 포함하지 않습니다.", + "jsconfig.json.compilerOptions.target": "ECMAScript 대상 버전 지정: 'ES3'(기본값), 'ES5' 또는 'ES6'(실험적).", + "jsconfig.json.exclude": "포함되지 않아야 하는 파일과 폴더를 나열합니다. 이 속성은 'files' 속성이 있는 경우 적용되지 않습니다.", + "jsconfig.json.files": "'files' 속성이 jsconfig.json에 없는 경우 언어 서비스는 디렉터리 및 하위 디렉터리를 비롯한 모든 파일을 기본적으로 포함합니다. 'files' 속성이 지정된 경우에는 해당 파일만 포함됩니다.", + "jsconfig.json.title": "JavaScript 구성 파일에 대한 JSON 스키마", + "json.schema.unabletoload": "'{0}'에서 스키마를 로드할 수 없습니다. {1}.", + "package.json.bugs": "문제를 보고할 프로젝트 문제 추적기의 URL 및/또는 메일 주소입니다. 이는 패키지에서 문제를 경험하는 사람들에게 유용합니다.", + "package.json.bugs.email": "문제를 보고할 메일 주소입니다.", + "package.json.bugs.url": "프로젝트 문제 추적기의 URL입니다.", + "package.json.bundleDependencies": "패키지를 게시할 때 포함될 패키지 이름의 배열입니다.", + "package.json.bundledDependencies": "패키지를 게시할 때 포함될 패키지 이름의 배열입니다.", + "package.json.config": "'config' 해시를 사용하여 업그레이드 간에 유지되는, 패키지 스크립트에서 사용되는 구성 매개 변수를 설정할 수 있습니다.", + "package.json.contributors": "이 패키지에 참가한 사람들의 목록입니다.", + "package.json.dependency": "종속성은 버전 범위에 대한 패키지 이름의 간단한 해시를 통해 지정됩니다. 버전 범위는 공백으로 구분된 설명자가 하나 이상 있는 문자열입니다. 종속성은 tarball 또는 git URL로 식별될 수도 있습니다.", + "package.json.descr": "패키지가 'npm search'에 나열되므로 패키지를 검색하는 데 도움이 됩니다.", + "package.json.description": "이 패키지의 NPM 구성입니다.", + "package.json.directories.bin": "'bin' 디렉터리를 지정하면 해당 폴더의 모든 파일이 'bin' 해시로 사용됩니다.", + "package.json.directories.doc": "여기에 마크다운 파일을 배치하세요. 결국 해당 파일은 언젠가 멋지게 표시될 것입니다.", + "package.json.directories.example": "여기에 예제 스크립트를 배치하세요. 해당 스크립트는 언젠가 현명한 방법으로 노출될 수도 있습니다.", + "package.json.directories.lib": "대부분의 라이브러리가 있는 위치를 사람들에게 알리세요. lib 폴더에 특별한 작업은 전혀 수행되지 않지만 유용한 메타 정보입니다.", + "package.json.directories.man": "기본 페이지로 가득 찬 폴더입니다. 신택틱 슈거(syntactic sugar)를 통해 이 폴더를 검색하여 'man' 배열을 생성할 수 있습니다.", + "package.json.files": "'files' 필드는 프로젝트에 포함할 파일의 배열입니다. 배열에서 폴더 이름을 지정하면 해당 폴더의 파일도 포함됩니다.", + "package.json.homepage": "프로젝트 홈 페이지의 URL입니다.", + "package.json.keywords": "패키지가 'npm search'에 나열되므로 패키지를 검색하는 데 도움이 됩니다.", + "package.json.license": "사용할 수 있는 방법과 적용된 제한 사항을 알 수 있도록 패키지의 라이선스를 지정해야 합니다.", + "package.json.licenses": "사용할 수 있는 방법과 적용된 제한 사항을 알 수 있도록 패키지의 라이선스를 지정해야 합니다.", + "package.json.main": "주 필드는 프로그램에 대한 주 진입점인 모듈 ID입니다.", + "package.json.maintainers": "이 패키지를 유지 관리하는 사용자의 목록입니다.", + "package.json.man": "man 프로그램에서 찾도록 배치할 단일 파일이나 파일 이름의 배열을 지정합니다.", + "package.json.name": "패키지의 이름입니다.", + "package.json.person": "이 패키지를 만들거나 유지 관리하는 데 관련된 사용자입니다.", + "package.json.preferGlobal": "패키지가 전역으로 설치되어야 하는 명령줄 응용 프로그램인 경우 이 값을 true로 설정하여 로컬로 설치된 경우 경고를 제공하세요.", + "package.json.private": "true로 설정되면 npm이 게시하지 않습니다.", + "package.json.repository": "코드가 있는 위치를 지정합니다. 이는 참여하려는 사람들에게 유용합니다.", + "package.json.scripts": "'scripts' 멤버는 패키지 수명 주기에서 다양한 시점에 실행되는 스크립트 명령의 개체 해시입니다. 키는 수명 주기 이벤트이고 값은 해당 시점에 실행할 명령입니다.", + "package.json.underscore": "_로 시작하는 속성은 유효합니다.", + "package.json.version": "버전은 node-semver을 통해 구문 분석될 수 있어야 합니다. node-semver은 npm과 함께 종속성으로 포함되어 있습니다.", + "project.json.authors": "응용 프로그램의 작성자", + "project.json.bundleExclude": "게시 출력에서 제외할 파일의 목록입니다(kpm bundle).", + "project.json.code": "컴파일해야 하는 모든 코드 파일을 지정하는 GLOB 패턴입니다(데이터 형식: GLOB 패턴을 포함하는 문자열 또는 배열). 예: [ 'Folder1*.cs', 'Folder2*.cs' ]", + "project.json.commands": "이 응용 프로그램에서 사용할 수 있는 명령", + "project.json.compilationOptions": "Roslyn에게 전달된 컴파일 옵션", + "project.json.configurations": "구성은 컴파일 설정의 명명된 그룹입니다. 런타임에 기본 제공된 두 가지 기본 구성으로 '디버그'와 '릴리스'가 있습니다.", + "project.json.dependencies": "응용 프로그램의 종속성. 각 항목에서는 이름과 Nuget 패키지의 버전을 지정합니다.", + "project.json.dependency.name": "종속성의 버전.", + "project.json.dependency.type": "종속성의 유형. 'build' 종속성은 빌드 시에만 존재합니다.", + "project.json.description": "응용 프로그램 설명", + "project.json.exclude": "컴파일에서 제외할 모든 코드 파일을 나타내는 전역 패턴입니다(데이터 형식: GLOB 패턴을 포함하는 문자열 또는 배열).", + "project.json.frameworks": "작성할 대상 프레임워크 및 구성에 따른 종속성", + "project.json.preprocess": "전처리할 모든 코드 파일을 나타내는 전역 패턴입니다(데이터 형식: GLOB 패턴을 포함하는 문자열).", + "project.json.resources": "리소스로 컴파일할 모든 파일을 나타내는 GLOB 패턴입니다.", + "project.json.script": "명령줄 스크립트입니다.\r\r사용 가능한 변수:\r%project:Directory% - 프로젝트 디렉터리\r%project:Name% - 프로젝트 이름\r%project:Version% - 프로젝트 버전", + "project.json.scripts": "다양한 단계 중에 제외할 스크립트입니다.", + "project.json.shared": "종속 스크립트와 공유할 코드 파일을 지정하는 GLOB 패턴입니다. 예: [ 'Folder1*.cs', 'Folder2*.cs' ]", + "project.json.title": "ASP.NET project.json 파일에 대한 JSON 스키마", + "project.json.version": "응용 프로그램의 버전입니다. 예: 1.2.0.0", + "project.json.webroot": "project.json 파일에서 웹 루트 속성을 지정하여 웹 서버 루트(공용 폴더라고도 함)를 지정합니다. Visual Studio에서 이 폴더는 IIS 루트를 지정하는 데 사용됩니다. 여기에 정적 파일을 넣어야 합니다.", + "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.default": "기본값입니다. 제안에서 사용됩니다.", + "schema.json.definitions": "유효성 검사에 사용되지 않습니다. $ref가 포함된 인라인을 참조하려는 하위 스키마를 여기에 배치합니다.", + "schema.json.dependencies": "속성 이름 배열 또는 스키마에 대한 속성 이름 맵입니다. 속성 이름 배열은 키에 이름이 지정된 속성의 유효성이 개체에 있는 배열의 속성에 따라 결정된다는 것을 의미합니다. 값이 스키마인 경우 키의 속성이 개체에 존재해야 스키마가 개체에 적용됩니다.", + "schema.json.description": "요소의 자세한 설명입니다. 가리킨 항목 메뉴 및 제안에 사용됩니다.", + "schema.json.enum": "유효한 리터럴 값 집합", + "schema.json.exclusiveMaximum": "최대 속성을 배타적으로 설정합니다.", + "schema.json.exclusiveMininum": "최소 속성을 배타적으로 설정합니다.", + "schema.json.id": "스키마의 고유한 식별자입니다.", + "schema.json.items": "배열에 사용됩니다. 순서(첫 번째 스키마에서 첫 번째 요소의 유효성을 검사하고 두 번째 스키마에서 두 번째 요소의 유효성을 검사하는 형식)대로 모든 요소의 유효성을 검사할 스키마이거나 각 아이템의 유효성을 검사할 스키마 배열일 수 있습니다.", + "schema.json.maxItems": "배열 내에 있을 수 있는 최대 항목 수입니다. 포괄적입니다.", + "schema.json.maxLength": "문자열의 최대 길이입니다.", + "schema.json.maxProperties": "개체가 가질 수 있는 최대 속성 수입니다. 포괄적입니다.", + "schema.json.maximum": "최대 숫자 값입니다. 기본적으로 포괄적입니다.", + "schema.json.minItems": "배열 내에 배치할 수 있는 최소 항목 수입니다. 포괄적입니다.", + "schema.json.minLength": "문자열의 최소 길이입니다.", + "schema.json.minProperties": "개체가 가질 수 있는 최소 속성 수입니다. 포괄적입니다.", + "schema.json.minimum": "최소 숫자 값입니다. 기본적으로 포괄적입니다.", + "schema.json.multipleOf": "현재 값을 정확하게 나누어야 하는 숫자(예: 나머지 없음)입니다.", + "schema.json.not": "일치하지 않아야 하는 스키마입니다.", + "schema.json.oneOf": "스키마 배열로, 이러한 스키마 중 하나가 정확하게 일치해야 합니다.", + "schema.json.pattern": "문자열과 일치하는 정규식입니다. 암시적으로 앵커가 지정되지 않습니다.", + "schema.json.patternProperties": "속성 일치를 위한 스키마에 대한 속성 이름의 정규식 맵입니다.", + "schema.json.properties": "각 속성의 스키마에 대한 속성 이름 맵입니다.", + "schema.json.required": "이 개체에 필요한 모든 속성의 이름을 나열하는 문자열 배열입니다.", + "schema.json.title": "요소에 대한 설명이 포함된 제목입니다.", + "schema.json.type": "기본 스키마 유형(숫자, 정수, Null, 배열, 개체, 부울, 문자열) 중 하나의 문자열 또는 해당 유형의 하위 집합을 지정하는 문자열 배열입니다.", + "schema.json.uniqueItems": "배열의 모든 항목이 고유해야 하는지의 여부입니다. 기본값은 false입니다.", + "snippetSchema.json": "사용자 코드 조각 구성", + "snippetSchema.json.body": "코드 조각 콘텐츠입니다. '${id}', '${id:label}', '${1:label}'을 변수에 사용하고 '$0', '$1'을 커서 위치에 사용하세요.", + "snippetSchema.json.description": "코드 조각 설명입니다.", + "snippetSchema.json.prefix": "IntelliSense에서 코드 조각을 선택할 때 사용할 접두사입니다.", + "tsconfig.json.compilerOptions": "TypeScript 컴파일러에 .ts 파일을 컴파일하는 방법을 지시합니다.", + "tsconfig.json.compilerOptions.charset": "입력 파일의 문자 집합", + "tsconfig.json.compilerOptions.declaration": "해당하는 d.ts 파일을 생성합니다.", + "tsconfig.json.compilerOptions.diagnostics": "진단 정보를 표시합니다.", + "tsconfig.json.compilerOptions.emitBOM": "출력 파일의 시작에서 UTF-8 BOM(바이트 순서 표시)을 내보냅니다.", + "tsconfig.json.compilerOptions.inlineSourceMap": "별도의 파일을 사용하는 대신 소스 맵과 함께 단일 파일을 내보냅니다.", + "tsconfig.json.compilerOptions.inlineSources": "단일 파일 내에서 소스 맵과 함께 소스를 내보냅니다. --inlineSourceMap이 설정되어야 합니다.", + "tsconfig.json.compilerOptions.listFiles": "컴파일의 일부로 파일의 이름을 인쇄합니다.", + "tsconfig.json.compilerOptions.locale": "오류 메시지를 표시하는 데 사용할 로캘(예: en-us)입니다.", + "tsconfig.json.compilerOptions.mapRoot": "디버거가 생성된 위치 대신 맵 파일을 찾아야 하는 위치를 지정합니다.", + "tsconfig.json.compilerOptions.module": "모듈 코드 생성 지정: 'CommonJS', 'Amd', 'System' 또는 'UMD'.", + "tsconfig.json.compilerOptions.newLine": "파일을 내보낼 때 사용할 줄 시퀀스의 끝을 지정하며, 'CRLF'(dos) 또는 'LF'(unix)입니다.", + "tsconfig.json.compilerOptions.noEmit": "출력을 내보내지 마세요.", + "tsconfig.json.compilerOptions.noEmitHelpers": "컴파일된 출력에서 __extends와 같은 사용자 지정 도우미 함수를 생성하지 않습니다.", + "tsconfig.json.compilerOptions.noEmitOnError": "형식 검사 오류가 보고되면 출력을 내보내지 마세요.", + "tsconfig.json.compilerOptions.noImplicitAny": "암시된 'any' 형식이 있는 식 및 선언이 발생할 경우 경고 표시", + "tsconfig.json.compilerOptions.noLib": "기본 라이브러리 파일(lib.d.ts)을 포함하지 않습니다.", + "tsconfig.json.compilerOptions.out": "출력을 연결하고 단일 파일로 내보냅니다.", + "tsconfig.json.compilerOptions.outDir": "출력 구조를 디렉터리로 리디렉션합니다.", + "tsconfig.json.compilerOptions.preserveConstEnums": "생성된 코드에서 const 열거형 선언을 지우지 마세요.", + "tsconfig.json.compilerOptions.removeComments": "주석을 출력에 내보내지 마세요.", + "tsconfig.json.compilerOptions.rootDir": "입력 파일의 루트 디렉터리를 지정합니다. --outDir이 포함된 출력 디렉터리 구조를 제어하는 데 사용됩니다.", + "tsconfig.json.compilerOptions.sourceMap": "해당 '.map' 파일을 생성합니다.", + "tsconfig.json.compilerOptions.sourceRoot": "디버거가 소스 위치 대신 TypeScript 파일을 찾아야 하는 위치를 지정합니다.", + "tsconfig.json.compilerOptions.suppressImplicitAnyIndexErrors": "인덱스 서명이 없는 개체 인덱싱에 대한 noImplicitAny 오류를 표시하지 않습니다.", + "tsconfig.json.compilerOptions.target": "ECMAScript 대상 버전 지정: 'ES3'(기본값), 'ES5' 또는 'ES6'(실험적).", + "tsconfig.json.files": "'files' 속성이 tsconfig.json에 없는 경우 컴파일러는 포함하는 디렉터리와 하위 디렉터리의 모든 파일을 기본적으로 포함합니다. 'files' 속성이 지정된 경우에는 해당 파일만 포함됩니다.", + "tsconfig.json.title": "TypeScript 컴파일러의 구성 파일에 대한 JSON 스키마" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/json/common/parser/jsonParser.i18n.json b/i18n/kor/src/vs/languages/json/common/parser/jsonParser.i18n.json new file mode 100644 index 00000000000..5f898f01400 --- /dev/null +++ b/i18n/kor/src/vs/languages/json/common/parser/jsonParser.i18n.json @@ -0,0 +1,44 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ColonExpected": "콜론 필요", + "DisallowedExtraPropWarning": "{0} 속성이 허용되지 않습니다.", + "DoubleQuotesExpected": "속성 키는 큰따옴표로 묶어야 합니다.", + "DuplicateKeyWarning": "중복된 개체 키", + "End of file expected": "파일 끝 필요", + "ExpectedCloseBrace": "쉼표 또는 닫는 중괄호 필요", + "ExpectedCloseBracket": "쉼표 또는 닫는 대괄호 필요", + "Invalid symbol": "JSON 개체, 배열 또는 리터럴 필요", + "InvalidEscapeCharacter": "문자열에 잘못된 이스케이프 문자가 있습니다.", + "InvalidNumberFormat": "잘못된 숫자 형식", + "InvalidUnicode": "문자열에 잘못된 유니코드 시퀀스가 있습니다.", + "MaxPropWarning": "개체의 속성이 제한인 {0}보다 많습니다.", + "MinPropWarning": "개체의 속성이 필요한 수인 {0}보다 적습니다.", + "MissingRequiredPropWarning": "\"{0}\" 속성 누락", + "PropertyExpected": "속성 필요", + "RequiredDependentPropWarning": "개체에 {1} 속성에 필요한 {0} 속성이 없습니다.", + "UnexpectedEndOfComment": "필요하지 않은 주석 끝", + "UnexpectedEndOfNumber": "필요하지 않은 번호 끝", + "UnexpectedEndOfString": "필요하지 않은 문자열 끝", + "ValueExpected": "값 필요", + "additionalItemsWarning": "스키마를 기준으로 배열에 항목이 너무 많습니다. {0}개 이하여야 합니다.", + "enumWarning": "값이 허용되지 않습니다. 유효한 값은 {0}입니다.", + "exclusiveMaximumWarning": "값이 배타적 최대값인 {0}보다 큽니다.", + "exclusiveMinimumWarning": "값이 배타적 최소값인 {0}보다 작습니다.", + "maxItemsWarning": "배열에 항목이 너무 많습니다. {0}개 이하여야 합니다.", + "maxLengthWarning": "문자열이 다음 최대 길이보다 짧습니다. ", + "maximumWarning": "값이 최대값인 {0}보다 큽니다.", + "minItemsWarning": "배열에 항목이 너무 적습니다. {0}개 이상이어야 합니다.", + "minLengthWarning": "문자열이 다음 최소 길이보다 짧습니다. ", + "minimumWarning": "값이 최소값인 {0}보다 작습니다.", + "multipleOfWarning": "값을 {0}(으)로 나눌 수 없습니다.", + "notSchemaWarning": "허용되지 않는 스키마와 일치합니다.", + "oneOfWarning": "하나의 스키마만 유효성 검사해야 하는데 여러 스키마와 일치합니다.", + "patternWarning": "문자열이 \"{0}\" 패턴과 일치하지 않습니다.", + "typeArrayMismatchWarning": "형식이 잘못되었습니다. {0} 중 하나의 형식이어야 합니다.", + "typeMismatchWarning": "형식이 잘못되었습니다. \"{0}\"이어야 합니다.", + "uniqueItemsWarning": "배열에 중복 항목이 있습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/less/common/less.contribution.i18n.json b/i18n/kor/src/vs/languages/less/common/less.contribution.i18n.json new file mode 100644 index 00000000000..f625ec96b01 --- /dev/null +++ b/i18n/kor/src/vs/languages/less/common/less.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lessConfigurationTitle": "LESS 구성", + "lessLint": "LESS 유효성 검사 및 문제 심각도를 제어합니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/less/common/services/intelliSense.i18n.json b/i18n/kor/src/vs/languages/less/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..b51823dca39 --- /dev/null +++ b/i18n/kor/src/vs/languages/less/common/services/intelliSense.i18n.json @@ -0,0 +1,60 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "less.builtin.abs": "숫자의 절대 값", + "less.builtin.acos": "아크코사인 - 코사인 함수의 역수", + "less.builtin.alpha": "`@color`의 `알파` 채널을 반환합니다.", + "less.builtin.argb": "#AARRGGBB를 만듭니다.", + "less.builtin.asin": "아크사인 - 사인 함수의 역수", + "less.builtin.atan": "아크탄젠트 - 탄젠트 함수의 역수", + "less.builtin.blue": "`@color`의 `파란색` 채널을 반환합니다.", + "less.builtin.ceil": "정수로 올림합니다.", + "less.builtin.color": "문자열을 색으로 구문 분석합니다.", + "less.builtin.contrast": "`@color1이(가) > 43% 광도`이면 `@darkcolor`을(를) 반환하고, 그렇지 않으면 `@lightcolor`을(를) 반환합니다. 메모를 참조하세요.", + "less.builtin.convert": "숫자의 형식을 변환합니다.", + "less.builtin.cos": "코사인 함수", + "less.builtin.darken": "10% points darker로 `@color`을(를) 반환합니다.", + "less.builtin.data-uri": "리소스를 인라인 처리하고 `url()`로 대체합니다.", + "less.builtin.desaturate": "10% points less saturated로 `@color`을(를) 반환합니다.", + "less.builtin.e": "이스케이프 문자열 콘텐츠", + "less.builtin.escape": "URL은 문자열을 인코딩합니다.", + "less.builtin.extract": "목록에서 지정된 위치에 있는 값을 반환합니다.", + "less.builtin.fade": "50% 투명도로 `@color`을(를) 반환합니다.", + "less.builtin.fadein": "10% points less transparent로 `@color`을(를) 반환합니다.", + "less.builtin.fadeout": "10% points more transparent로 `@color`을(를) 반환합니다.", + "less.builtin.floor": "정수로 내림합니다.", + "less.builtin.green": "`@color`의 `녹색` 채널을 반환합니다.", + "less.builtin.greyscale": "100% 채도를 낮춘 회색을 반환합니다.", + "less.builtin.hsl": "색을 만듭니다.", + "less.builtin.hsla": "색을 만듭니다.", + "less.builtin.hsv": "색을 만듭니다.", + "less.builtin.hsva": "색을 만듭니다.", + "less.builtin.hsvhue": "HSV 공간에서 `@color`의 `색상` 채널을 반환합니다.", + "less.builtin.hsvsaturation": "HSV 공간에서 `@color`의 `채도` 채널을 반환합니다.", + "less.builtin.hsvvalue": "HSV 공간에서 `@color`의 `값` 채널을 반환합니다.", + "less.builtin.hue": "HSL 공간에서 `@color`의 `색상` 채널을 반환합니다.", + "less.builtin.length": "값 목록에서 요소 수를 반환합니다.", + "less.builtin.lighten": "10% points lighter로 `@color`을(를) 반환합니다.", + "less.builtin.lightness": "HSL 공간에서 `@color`의 `명도` 채널을 반환합니다.", + "less.builtin.luma": "`@color`의 `광도` 값(지각적 밝기)을 반환합니다.", + "less.builtin.max": "하나 이상의 값 중 가장 낮은 값을 반환합니다.", + "less.builtin.min": "하나 이상의 값 중 가장 낮은 값을 반환합니다.", + "less.builtin.mix": "`@color1` 및 `@color2`의 혼합을 반환합니다.", + "less.builtin.mod": "첫 번째 인수 모듈러스 두 번째 인수", + "less.builtin.percentage": "%로 변환합니다(예: 0.5 > 50%).", + "less.builtin.pi": "파이를 반환합니다.", + "less.builtin.pow": "두 번째 인수를 지수로 한 첫 번째 인수의 거듭제곱", + "less.builtin.red": "`@color`의 `빨간색` 채널을 반환합니다.", + "less.builtin.replace": "문자열 바꾸기", + "less.builtin.round": "숫자를 여러 위치로 반올림합니다.", + "less.builtin.saturate": "10% points more saturated로 `@color`을(를) 반환합니다.", + "less.builtin.saturation": "HSL 공간에서 `@color`의 `채도` 채널을 반환합니다.", + "less.builtin.sin": "사인 함수", + "less.builtin.spin": "10도 더 큰 색상으로 `@color`을(를) 반환합니다.", + "less.builtin.sqrt": "숫자의 제곱근을 계산합니다.", + "less.builtin.tan": "탄젠트 함수", + "less.builtin.unit": "차원의 단위를 제거하거나 변경합니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/markdown/common/markdown.contribution.i18n.json b/i18n/kor/src/vs/languages/markdown/common/markdown.contribution.i18n.json new file mode 100644 index 00000000000..ccd4f80d8fb --- /dev/null +++ b/i18n/kor/src/vs/languages/markdown/common/markdown.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "markdownConfigurationTitle": "가격 인하 미리 보기 구성", + "styles": "가격 인하 미리 보기에서 사용할 CSS 스타일시트의 로컬 경로 또는 URL 목록입니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/sass/common/parser/sassErrors.i18n.json b/i18n/kor/src/vs/languages/sass/common/parser/sassErrors.i18n.json new file mode 100644 index 00000000000..660c63d9f7e --- /dev/null +++ b/i18n/kor/src/vs/languages/sass/common/parser/sassErrors.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.from": "'from'이 필요합니다.", + "expected.in": "'in'이 필요합니다.", + "expected.through": "'through' 또는 'to'가 필요합니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/sass/common/sass.contribution.i18n.json b/i18n/kor/src/vs/languages/sass/common/sass.contribution.i18n.json new file mode 100644 index 00000000000..649855bff59 --- /dev/null +++ b/i18n/kor/src/vs/languages/sass/common/sass.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sassConfigurationTitle": "Sass 구성", + "sassLint": "Sass 유효성 검사 및 문제 심각도를 제어합니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/sass/common/services/intelliSense.i18n.json b/i18n/kor/src/vs/languages/sass/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..16813627622 --- /dev/null +++ b/i18n/kor/src/vs/languages/sass/common/services/intelliSense.i18n.json @@ -0,0 +1,81 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sass.builtin.abs": "숫자의 절대 값을 반환합니다.", + "sass.builtin.adjust-color": "색의 여러 가지 구성 요소를 늘리거나 줄입니다.", + "sass.builtin.adjust-hue": "색의 색상을 변경합니다.", + "sass.builtin.alpha": "색의 불투명도 구성 요소를 가져옵니다.", + "sass.builtin.append": "목록의 끝에 단일 값을 추가합니다.", + "sass.builtin.blue": "색의 파란색 구성 요소를 가져옵니다.", + "sass.builtin.call": "Sass 함수를 동적으로 호출합니다.", + "sass.builtin.ceil": "숫자를 다음 정수로 올림합니다.", + "sass.builtin.change-color": "색의 여러 가지 속성을 변경합니다.", + "sass.builtin.comparable": "두 개의 숫자를 더하거나, 빼거나, 비교할 수 있는지 여부를 반환합니다.", + "sass.builtin.complement": "색의 보수를 반환합니다.", + "sass.builtin.darken": "색을 더 어둡게 만듭니다.", + "sass.builtin.desaturate": "색을 더 낮은 채도로 만듭니다.", + "sass.builtin.fade-in": "색을 더 불투명하게 만듭니다.", + "sass.builtin.feature-exists": "현재 Sass 런타임에 기능이 있는지 여부를 반환합니다.", + "sass.builtin.floor": "숫자를 이전 정수로 내림합니다.", + "sass.builtin.function-exists": "지정된 이름의 함수가 있는지 여부를 반환합니다.", + "sass.builtin.global-variable-exists": "지정된 이름의 변수가 전역 범위에 있는지 여부를 반환합니다.", + "sass.builtin.grayscale": "색을 회색조로 변환합니다.", + "sass.builtin.green": "색의 녹색 구성 요소를 가져옵니다.", + "sass.builtin.hue": "색의 색상 구성 요소를 가져옵니다.", + "sass.builtin.ie-hex-str": "색을 IE 필터에서 인식할 수 있는 형식으로 변환합니다.", + "sass.builtin.index": "목록 내에서 값의 위치를 반환합니다.", + "sass.builtin.inspect": "Sass로 표현되는 경우처럼 값의 문자열 표현을 반환합니다.", + "sass.builtin.invert": "색의 역수를 반환합니다.", + "sass.builtin.is-superselector": "$sub이(가) 일치하는 모든 요소와 $super이(가) 일치하는지 여부 등을 반환합니다.", + "sass.builtin.join": "두 목록을 하나로 함께 결합합니다.", + "sass.builtin.keywords": "가변 인수를 사용하는 함수에 전달된 키워드를 반환합니다.", + "sass.builtin.length": "목록의 길이를 반환합니다.", + "sass.builtin.lighten": "색을 더 밝게 만듭니다.", + "sass.builtin.lightness": "색의 명도 구성 요소를 가져옵니다.", + "sass.builtin.list-separator": "목록의 구분 기호를 반환합니다.", + "sass.builtin.map-get": "맵에서 지정된 키와 연결된 값을 반환합니다.", + "sass.builtin.map-has-key": "맵에 지정된 키와 연결된 값이 있는지 여부를 반환합니다.", + "sass.builtin.map-keys": "맵의 모든 키 목록을 반환합니다.", + "sass.builtin.map-merge": "두 맵을 새 맵으로 함께 병합합니다.", + "sass.builtin.map-remove": "키가 제거된 새 맵을 반환합니다.", + "sass.builtin.map-values": "맵의 모든 값 목록을 반환합니다.", + "sass.builtin.max": "여러 숫자의 최대값을 찾습니다.", + "sass.builtin.min": "여러 숫자의 최소값을 찾습니다.", + "sass.builtin.mix": "두 색을 함께 혼합합니다.", + "sass.builtin.mixin-exists": "지정된 이름의 mixin이 있는지 여부를 반환합니다.", + "sass.builtin.nth": "목록의 특정 항목을 반환합니다.", + "sass.builtin.opacify": "색을 더 불투명하게 만듭니다.", + "sass.builtin.percentage": "단위 없는 숫자를 백분율로 변환합니다.", + "sass.builtin.quote": "문자열에 따옴표를 추가합니다.", + "sass.builtin.random": "난수를 반환합니다.", + "sass.builtin.red": "색의 빨간색 구성 요소를 가져옵니다.", + "sass.builtin.rgba": "색의 알파 구성 요소를 변경합니다.", + "sass.builtin.round": "숫자를 가장 가까운 정수로 반올림합니다.", + "sass.builtin.saturate": "색을 더 높은 채도로 만듭니다.", + "sass.builtin.saturation": "색의 채도 구성 요소를 가져옵니다.", + "sass.builtin.scale-color": "색의 여러 가지 속성을 유연하게 확장합니다.", + "sass.builtin.selector-append": "사이에 공백 없이 서로에 선택기를 추가합니다.", + "sass.builtin.selector-extend": "$selector 내에서 $extender(으)로 $extendee을(를) 확장합니다.", + "sass.builtin.selector-nest": "스타일시트에서 중첩된 것처럼 서로의 아래에 선택기를 중첩합니다.", + "sass.builtin.selector-parse": "선택기를 &에서 반환된 형식으로 구문 분석합니다.", + "sass.builtin.selector-replace": "$selector 내에서 $original을(를) $replacement(으)로 바꿉니다.", + "sass.builtin.selector-unify": "두 선택기를 통합하여 둘 다와 일치하는 요소와 일치하는 선택기를 생성합니다.", + "sass.builtin.set-nth": "목록의 n번째 항목을 바꿉니다.", + "sass.builtin.simple-selectors": "복합 선택기를 구성하는 간단한 선택기를 반환합니다.", + "sass.builtin.str-index": "$string에서 처음으로 나타나는 $substring의 인덱스를 반환합니다.", + "sass.builtin.str-insert": "$insert을(를) $index의 $string에 삽입합니다.", + "sass.builtin.str-length": "문자열에서 문자 수를 반환합니다.", + "sass.builtin.str-slice": "$string에서 부분 문자열을 추출합니다.", + "sass.builtin.to-lower-case": "문자열을 소문자로 변환합니다.", + "sass.builtin.to-upper-case": "문자열을 대문자로 변환합니다.", + "sass.builtin.transparentize": "색을 더 투명하게 만듭니다.", + "sass.builtin.type-of": "값의 형식을 반환합니다.", + "sass.builtin.unit": "숫자와 연결된 단위를 반환합니다.", + "sass.builtin.unitless": "숫자에 단위가 있는지 여부를 반환합니다.", + "sass.builtin.unquote": "문자열에서 따옴표를 제거합니다.", + "sass.builtin.variable-exists": "지정된 이름의 변수가 현재 범위에 있는지 여부를 반환합니다.", + "sass.builtin.zip": "여러 목록을 단일 다차원 목록으로 결합합니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/typescript/common/features/quickFix.i18n.json b/i18n/kor/src/vs/languages/typescript/common/features/quickFix.i18n.json new file mode 100644 index 00000000000..5d9777dfded --- /dev/null +++ b/i18n/kor/src/vs/languages/typescript/common/features/quickFix.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "typescript.quickfix.addAsGlobal": "global로 '{0}' 표시", + "typescript.quickfix.rename": "'{0}'(으)로 이름 바꾸기", + "typescript.quickfix.typeDefinitions": "다운로드 형식 정의 {0}" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/typescript/common/lint/lint.i18n.json b/i18n/kor/src/vs/languages/typescript/common/lint/lint.i18n.json new file mode 100644 index 00000000000..f6ceb6652a2 --- /dev/null +++ b/i18n/kor/src/vs/languages/typescript/common/lint/lint.i18n.json @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "javascript.comparisonOperatorNotStrict": "'!=' 및 '==' 대신 '!==' 및 '==='를 사용하십시오.", + "javascript.functionInsideLoop": "루프 내부 함수입니다.", + "javascript.missingSemicolon": "세미콜론이 누락되었습니다.", + "javascript.newOnLowercaseFunctions": "소문자 이름의 함수는 생성자로 사용됩니다.", + "javascript.reservedKeyword": "예약된 키워드를 사용하지 마십시오.", + "javascript.semicolonInsteadOfBlock": "블록 대신 세미콜론을 사용하십시오.", + "javascript.typeofCannotBeCompared": "'typeof' 연산자의 예기치 않은 출력입니다.", + "javascript.typescriptSpecific": "JavaScript에서 TypeScript 관련 언어 구문을 사용하지 마십시오.", + "layout.curlyBracketsMustNotBeOmitted": "중괄호를 사용하지 마십시오.", + "layout.emptyblock": "빈 블록에 설명이 있어야 합니다.", + "typescript.looksLikeTripleSlash": "'/// '을(를) 사용하시겠습니까?", + "typescript.missingReturnType": "반환 형식이 누락되었습니다.", + "typescript.unusedFunction": "사용되지 않는 로컬 함수입니다.", + "typescript.unusedImport": "사용되지 않는 가져오기입니다.", + "typescript.unusedLocalVariable": "사용되지 않는 지역 변수입니다.", + "typescript.unusedPrivateMember": "사용되지 않는 전용 멤버입니다.", + "typescript.variableUsedBeforeDeclared": "변수가 선언되기 전에 사용되었습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/typescript/common/typescript.contribution.i18n.json b/i18n/kor/src/vs/languages/typescript/common/typescript.contribution.i18n.json new file mode 100644 index 00000000000..0fbca244dfe --- /dev/null +++ b/i18n/kor/src/vs/languages/typescript/common/typescript.contribution.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "항상 현재 문서의 모든 단어를 포함해야 합니다.", + "baseUrl": "모듈 참조 해결에 사용되는 기본 URL(http://requirejs.org/docs/api.html#config-baseUrl)의 구성을 허용합니다. 이 옵션은 비동기 모듈 정의(\"module\": \"amd\")를 사용하는 프로젝트에만 적용됩니다.", + "compilationSettings": "TypeScript 유효성 검사 작동 방식을 제어합니다.", + "lint": "유효성 검사의 다양한 요소를 제어합니다.", + "lint.comparisonOperatorsNotStrict": "'!=' 및 '==' 대신 '!==' 및 '==='를 사용하십시오.", + "lint.curlyBracketsMustNotBeOmitted": "중괄호를 사용하지 마십시오.", + "lint.emptyBlocksWithoutComment": "빈 블록에 설명이 있어야 합니다.", + "lint.functionsInsideLoops": "루프 내부 함수입니다.", + "lint.functionsWithoutReturnType": "함수에 반환 형식 주석을 사용하지 마십시오.", + "lint.missingSemicolon": "세미콜론이 누락되었습니다.", + "lint.newOnLowercaseFunctions": "소문자 이름의 함수는 생성자로 사용됩니다.", + "lint.reservedKeywords": "예약된 키워드를 사용하지 마십시오.", + "lint.semicolonsInsteadOfBlocks": "블록 대신 세미콜론을 사용하십시오.", + "lint.tripleSlashReferenceAlike": "잘못 입력된 트리플 슬래시 참조를 찾습니다.", + "lint.typeScriptSpecifics": "JavaScript에서 TypeScript 관련 언어 구문을 사용하지 마십시오.", + "lint.unknownTypeOfResults": "'typeof' 연산자의 예기치 않은 출력입니다.", + "lint.unusedFunctions": "사용되지 않는 로컬 함수입니다.", + "lint.unusedMembers": "사용되지 않는 전용 멤버입니다.", + "lint.unusedVariables": "사용되지 않는 지역 변수입니다.", + "module": "사용 중인 모듈 시스템을 지정합니다.", + "noImplicitAny": "모든 형식 선언을 명시적으로 적용하십시오.", + "noLib": "DOM 및 브라우저 환경에 대한 입력을 사용하지 마십시오.", + "scope": "유효성 검사 설정이 여러 개일 경우 이를 적용할 하위 폴더를 정의하십시오.", + "suggestSettings": "TypeScript IntelliSense 작동 방식을 제어합니다.", + "target": "사용할 ECMA-Script 버전을 지정합니다.", + "tsConfigurationTitle": "TypeScript 구성", + "useCodeSnippetsOnMethodSuggest": "매개 변수 서명으로 함수를 완료하십시오." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/typescript/common/typescriptMode.i18n.json b/i18n/kor/src/vs/languages/typescript/common/typescriptMode.i18n.json new file mode 100644 index 00000000000..42c616f66d9 --- /dev/null +++ b/i18n/kor/src/vs/languages/typescript/common/typescriptMode.i18n.json @@ -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. +{ + "err.tooMuchData": "죄송하지만 VS 코드용 JavaScript 소스 파일이 너무 많습니다. jsconfig.json에서 exclude-property를 사용해 보세요." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/platform/configuration/common/configurationRegistry.i18n.json b/i18n/kor/src/vs/platform/configuration/common/configurationRegistry.i18n.json new file mode 100644 index 00000000000..f3298531786 --- /dev/null +++ b/i18n/kor/src/vs/platform/configuration/common/configurationRegistry.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "invalid.properties": "'configuration.properties'는 개체여야 합니다.", + "invalid.title": "'configuration.title'은 문자열이어야 합니다.", + "invalid.type": "설정된 경우 'configuration.type'을 '개체'로 설정해야 합니다.", + "vscode.extension.contributes.configuration": "구성 설정을 적용합니다.", + "vscode.extension.contributes.configuration.properties": "구성 속성에 대한 설명입니다.", + "vscode.extension.contributes.configuration.title": "설정을 요약합니다. 이 레이블은 설정 파일에서 구분 주석으로 사용됩니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json b/i18n/kor/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json new file mode 100644 index 00000000000..4e48c93066a --- /dev/null +++ b/i18n/kor/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "first.chord": "({0})을(를) 눌렀습니다. 둘째 키는 잠시 기다렸다가 누르세요.", + "missing.chord": "키 조합({0}, {1})은 명령이 아닙니다.", + "unboundCommands": "사용 가능한 다른 명령:" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/electron-main/main.i18n.json b/i18n/kor/src/vs/workbench/electron-main/main.i18n.json new file mode 100644 index 00000000000..5672cd32d83 --- /dev/null +++ b/i18n/kor/src/vs/workbench/electron-main/main.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expired": "만료됨", + "expiredDetail": "{0}의 이 시험판 버전이 만료되었습니다.\n\n{1}을(를) 방문하여 최신 릴리스를 다운로드하세요.", + "newWindow": "새 창", + "openWebSite": "웹 사이트 열기", + "quit": "끝내기" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json b/i18n/kor/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json new file mode 100644 index 00000000000..f5d7a6e9350 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json @@ -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. +{ + "globalConsoleActionMacLinux": "새 터미널 열기", + "globalConsoleActionWin": "새 명령 프롬프트 열기", + "scopedConsoleActionMacLinux": "터미널에서 열기", + "scopedConsoleActionWin": "명령 프롬프트에서 열기" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/feedback/browser/feedback.i18n.json b/i18n/kor/src/vs/workbench/parts/feedback/browser/feedback.i18n.json new file mode 100644 index 00000000000..a2f4f2517a5 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/feedback/browser/feedback.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "character left": "남은 문자", + "characters left": "남은 문자", + "commentsHeader": "설명", + "feedbackSending": "보내는 중", + "feedbackSendingError": "다시 시도하세요.", + "feedbackSent": "감사합니다.", + "frownCaption": "슬픔", + "label.sendASmile": "피드백을 트윗하세요.", + "other ways to contact us": "다른 문의 방법", + "request a missing feature": "누락된 기능 요청", + "sendFeedback": "Tweet 피드백", + "sentiment": "사용 소감을 알려주십시오.", + "smileCaption": "기쁨", + "submit a bug": "버그 제출", + "tell us why?": "이유를 알려 주세요.", + "tweet": "Tweet" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/files/browser/fileActions.i18n.json b/i18n/kor/src/vs/workbench/parts/files/browser/fileActions.i18n.json new file mode 100644 index 00000000000..eb37456d71c --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -0,0 +1,62 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "addToWorkingFiles": "작업 파일에 활성 파일 추가", + "closeAllFiles": "모든 파일 닫기", + "closeAllLabel": "모든 파일 닫기", + "closeFile": "파일 닫기", + "closeLabel": "파일 닫기", + "closeOtherFiles": "다른 파일 닫기", + "closeOtherLabel": "다른 파일 닫기", + "compareFiles": "파일 비교", + "compareLabels": "{0} ↔ {1}", + "compareSource": "비교를 위해 선택", + "compareWith": "'{0}'과(와) 비교", + "confirmDeleteMessageFile": "'{0}'을(를) 영구히 삭제할까요?", + "confirmDeleteMessageFolder": "'{0}'과(와) 해당 내용을 영구히 삭제할까요?", + "confirmMoveTrashMessageFile": "'{0}'을(를) 삭제할까요?", + "confirmMoveTrashMessageFolder": "'{0}'과(와) 해당 내용을 삭제할까요?", + "confirmOverwrite": "이름이 같은 파일 또는 폴더가 대상 폴더에 이미 있습니다. 덮어쓸까요?", + "copyFile": "복사", + "createNewFile": "새 파일", + "createNewFolder": "새 폴더", + "delete": "삭제", + "deleteButtonLabel": "삭제(&&D)", + "deleteButtonLabelRecycleBin": "휴지통으로 이동(&&M)", + "deleteButtonLabelTrash": "휴지통으로 이동(&&M)", + "duplicateFile": "중복", + "emptyFileNameError": "파일 또는 폴더 이름을 입력해야 합니다.", + "fileNameExistsError": "파일 또는 폴더 **{0}**이(가) 이 위치에 이미 있습니다. 다른 이름을 선택하세요.", + "filePathTooLongError": "**{0}**(이)라는 이름을 사용하면 경로가 너무 길어집니다. 짧은 이름을 선택하세요.", + "focusWorkingFiles": "작업 파일에 포커스 설정", + "globalCompareFile": "활성 파일을 다음과 비교...", + "importFiles": "파일 가져오기", + "invalidFileNameError": "**{0}**(이)라는 이름은 파일 또는 폴더 이름으로 올바르지 않습니다. 다른 이름을 선택하세요.", + "irreversible": "이 작업은 취소할 수 없습니다.", + "newFile": "새 파일", + "newFolder": "새 폴더", + "noFileOpen": "현재 열려 있는 닫을 파일이 없습니다.", + "noWorkingFiles": "현재 작업 파일이 없습니다.", + "openFileToAdd": "첫 번째 파일을 열어서 작업 파일에 추가합니다.", + "openFileToCompare": "첫 번째 파일을 열어서 다른 파일과 비교합니다.", + "openNextWorkingFile": "새 작업 파일 열기", + "openPreviousWorkingFile": "이전 작업 파일 열기", + "openToSide": "측면에서 열기", + "pasteFile": "붙여넣기", + "permDelete": "영구히 삭제", + "refresh": "새로 고침", + "rename": "이름 바꾸기", + "replaceButtonLabel": "바꾸기(&&R)", + "retry": "다시 시도", + "revert": "파일 되돌리기", + "save": "저장", + "saveAll": "모두 저장", + "saveFiles": "더티 파일 저장", + "unableToFileToCompare": "선택한 파일을 '{0}'과(와) 비교할 수 없습니다.", + "undoBin": "휴지통에서 복원할 수 있습니다.", + "undoTrash": "휴지통에서 복원할 수 있습니다.", + "warningFileDirty": "현재 '{0}' 파일을 저장하고 있습니다. 나중에 다시 시도하세요." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json b/i18n/kor/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json new file mode 100644 index 00000000000..c4a6b1c7fdb --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "createNewBranch": "새 분기 만들기", + "dupeBranchName": "분기 이름이 이미 있습니다.", + "invalidBranchName": "분기 이름이 잘못되었습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json b/i18n/kor/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json new file mode 100644 index 00000000000..8ba6373cdd2 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "git": "Git", + "openChange": "변경 내용 열기", + "openInEditor": "편집기 보기로 전환", + "stageSelectedLines": "선택한 줄 스테이징", + "switchToChangesView": "변경 내용 보기로 전환" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/kor/src/vs/workbench/parts/git/browser/gitActions.i18n.json new file mode 100644 index 00000000000..e50fe3c97f5 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -0,0 +1,51 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "authFailed": "원격 git에 대한 인증이 실패했습니다.", + "branch": "분기", + "branch2": "분기", + "checkout": "체크 아웃", + "cleanChangesLabel": "변경 내용 정리(&&C)", + "commitAll": "모두 커밋", + "commitAll2": "모두 커밋", + "commitStaged": "스테이징된 항목 커밋", + "commitStaged2": "스테이징된 항목 커밋", + "confirmPublishMessage": "'{0}'을(를) '{1}'에 게시할까요?", + "confirmPublishMessageButton": "게시(&&P)", + "confirmUndo": "'{0}'의 변경 내용을 정리할까요?", + "confirmUndoAllMultiple": "{0}개 파일에 스테이징되지 않은 변경 내용이 있습니다.\n\n이 작업은 취소할 수 없습니다.", + "confirmUndoAllOne": "{0} 파일에 스테이징되지 않은 변경 내용이 있습니다.\n\n이 작업은 취소할 수 없습니다.", + "confirmUndoMessage": "모든 변경 내용을 정리할까요?", + "currentBranch": "현재 '{0}' 분기가 최신 상태입니다.", + "currentBranchPlural": "현재 분기 '{0}'은(는) {1}개의 커밋 뒤에 있고 '{3}'보다는 {2}개의 커밋 앞에 있습니다.", + "currentBranchPluralSingle": "현재 분기 '{0}'은(는) {1}개의 커밋 뒤에 있고 '{3}'보다는 {2}개의 커밋 앞에 있습니다.", + "currentBranchSingle": "현재 분기 '{0}'은(는) {1}개의 커밋 뒤에 있고 '{3}'보다는 {2}개의 커밋 앞에 있습니다.", + "currentBranchSinglePlural": "현재 분기 '{0}'은(는) {1}개의 커밋 뒤에 있고 '{3}'보다는 {2}개의 커밋 앞에 있습니다.", + "currentlyDetached": "분리 모드에서는 동기화할 수 없습니다.", + "dirtyChanges": "동기화하기 전에 변경 내용을 커밋, 실행 취소 또는 저장하세요.", + "dirtyTreeCheckout": "체크 아웃할 수 없습니다. 먼저 작업을 커밋하거나 스테이지하세요.", + "dirtyTreePull": "끌어올 수 없습니다. 먼저 작업을 커밋하거나 스테이지하세요.", + "init": "Init", + "irreversible": "이 작업은 취소할 수 없습니다.", + "noUpstream": "현재 '{0}' 분기에 업스트림 분기가 구성되어 있지 않습니다.", + "openChange": "변경 내용 열기", + "openFile": "파일 열기", + "publish": "게시", + "publishPickMessage": "'{0}' 분기를 다음에 게시하려면 원격을 선택합니다.", + "pull": "풀", + "pullWithRebase": "풀(다시 지정)", + "push": "푸시", + "refresh": "새로 고침", + "stageAllChanges": "모두 스테이징", + "stageChanges": "단계", + "sync": "동기화", + "synchronizing": "동기화 중...", + "undoAllChanges": "모두 정리", + "undoChanges": "정리", + "undoLastCommit": "마지막 커밋 실행 취소", + "unstage": "스테이징 취소", + "unstageAllChanges": "모두 스테이징 취소" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/git/browser/gitServices.i18n.json b/i18n/kor/src/vs/workbench/parts/git/browser/gitServices.i18n.json new file mode 100644 index 00000000000..39a8e79bbf6 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "badConfigFile": "Git {0}", + "cancel": "취소", + "cantOpen": "이 Git 리소스를 열 수 없습니다.", + "cantOpenResource": "이 Git 리소스를 열 수 없습니다.", + "changesFromIndex": "{0} - 인덱스 변경 내용", + "changesFromTree": "{0} - {1} 변경 내용", + "checkNativeConsole": "git 작업을 실행하는 동안 문제가 발생했습니다. 출력을 검토하거나 콘솔을 사용하여 리포지토리의 상태를 확인하세요.", + "configureUsernameEmail": "git 사용자 이름 및 메일을 구성하세요.", + "gitIndexChanges": "{0} - 인덱스 변경 내용", + "gitIndexChangesRenamed": "{0} - 이름 바꿈 - 인덱스의 변경 내용", + "gitMergeChanges": "{0} - 변경 내용 병합", + "showOutput": "출력 표시", + "unmergedChanges": "변경 내용을 커밋하기 전에 먼저 병합되지 않은 변경 내용을 확인해야 합니다.", + "workingTreeChanges": "{0} - 작업 트리 변경 내용" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json b/i18n/kor/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json new file mode 100644 index 00000000000..cdcd6ce4f6e --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "commitMessage": "메시지(커밋하려면 {0} 누름)", + "commitMessageAriaLabel": "Git: 커밋하려면 커밋 메시지를 입력하고 {0}을(를) 누르세요.", + "needMessage": "커밋 메시지를 입력하십시오. 언제든지 **{0}**을(를) 눌러 변경 내용을 커밋할 수 있습니다. 스테이징된 변경 내용이 있으면 해당 변경 내용만 커밋되고 그렇지 않으면 모든 변경 내용이 커밋됩니다.", + "nothingToCommit": "커밋할 변경 내용이 있으면 커밋 메시지를 입력하고 **{0}**을(를) 눌러 변경 내용을 커밋하십시오. 스테이징된 변경 내용이 있으면 해당 변경 내용만 커밋되고 그렇지 않으면 모든 변경 내용이 커밋됩니다.", + "showOutput": "Git 출력 표시", + "treeAriaLabel": "Git 변경 내용 보기" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json b/i18n/kor/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json new file mode 100644 index 00000000000..aa0acf2b267 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "added-char": "A", + "allChanges": "변경 내용", + "ariaLabelChanges": "변경, Git", + "ariaLabelMerge": "병합, Git", + "ariaLabelStagedChanges": "스테이징된 변경 내용, Git", + "copied-char": "C", + "deleted-char": "D", + "fileStatusAriaLabel": "{1} 폴더에 있는 {0} 파일의 상태는 {2}입니다. Git", + "ignored-char": "!", + "mergeChanges": "변경 내용 병합", + "modified-char": "M", + "outsideOfWorkspace": "이 파일은 현재 작업 영역의 외부에 있습니다.", + "renamed-char": "R", + "stagedChanges": "스테이징된 변경 내용", + "title-conflict-added-by-them": "충돌: 타인이 추가", + "title-conflict-added-by-us": "충돌: 자체 추가", + "title-conflict-both-added": "충돌: 양쪽에서 추가", + "title-conflict-both-deleted": "충돌: 양쪽에서 삭제", + "title-conflict-both-modified": "충돌: 양쪽에서 수정", + "title-conflict-deleted-by-them": "충돌: 타인이 삭제", + "title-conflict-deleted-by-us": "충돌: 자체 삭제", + "title-deleted": "삭제됨", + "title-ignored": "무시됨", + "title-index-added": "인덱스에 추가", + "title-index-copied": "인덱스에 복사", + "title-index-deleted": "인덱스에서 삭제", + "title-index-modified": "인덱스에서 수정", + "title-index-renamed": "인덱스에서 이름 변경", + "title-modified": "수정됨", + "title-untracked": "추적되지 않음", + "untracked-char": "U" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json b/i18n/kor/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json new file mode 100644 index 00000000000..308cb945757 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json @@ -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. +{ + "markdownPreviewNoFile": "첫 번째 Markdown 파일을 열어서 미리 보기를 표시합니다.", + "openPreview": "미리 보기 열기", + "openPreviewSideBySide": "측면에서 미리 보기 열기", + "toggleMarkdownPreview": "미리 보기 설정/해제" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/output/browser/outputActions.i18n.json b/i18n/kor/src/vs/workbench/parts/output/browser/outputActions.i18n.json new file mode 100644 index 00000000000..5b58556279d --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/output/browser/outputActions.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "clearOutput": "출력 내용 지우기", + "switchToOutput.label": "출력으로 전환", + "toggleOutput": "출력 설정/해제" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json b/i18n/kor/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json new file mode 100644 index 00000000000..f7fe382513e --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json @@ -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. +{ + "QuickCommandsAction.label": "편집기 명령 표시", + "actionNotEnabled": "'{0}' 명령은 현재 컨텍스트에서 사용할 수 없습니다.", + "canNotRun": "'{0}' 명령은 여기에서 실행할 수 없습니다.", + "commandLabel": "{0}: {1}", + "entryAriaLabel": "{0}, 명령", + "noCommandsMatching": "일치하는 명령 없음", + "showTriggerActions": "모든 명령 표시" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json b/i18n/kor/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json new file mode 100644 index 00000000000..a794556318c --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json @@ -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. +{ + "cannotRunGotoLine": "첫 번째 텍스트 파일을 열어서 줄로 이동합니다.", + "gotoLine": "줄 이동...", + "gotoLineColumnLabel": "줄 {0} 및 열 {1}(으)로 이동", + "gotoLineHandlerAriaLabel": "이동할 줄 번호를 입력합니다.", + "gotoLineLabel": "줄 {0}(으)로 이동", + "gotoLineLabelEmpty": "이동할 줄 번호 입력", + "gotoLineLabelEmptyWithLimit": "이동할 1과 {0} 사이의 줄 번호 입력" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json b/i18n/kor/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json new file mode 100644 index 00000000000..06d9d9bfa46 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "_constructor": "생성자({0})", + "array": "배열({0})", + "boolean": "부울({0})", + "cannotRunGotoSymbol": "첫 번째 텍스트 파일을 열어서 기호로 이동합니다.", + "cannotRunGotoSymbolInFile": "파일에 대한 기호 정보가 없습니다.", + "class": "클래스({0})", + "entryAriaLabel": "{0}, 기호", + "enum": "열거형({0})", + "file": "파일({0})", + "function": "함수({0})", + "gotoSymbol": "기호 이동...", + "gotoSymbolHandlerAriaLabel": "입력하여 현재 활성화된 편집기의 기호를 축소합니다.", + "interface": "인터페이스({0})", + "key": "키({0})", + "method": "메서드({0})", + "modules": "모듈({0})", + "namespace": "네임스페이스({0})", + "noSymbolsFound": "기호를 찾을 수 없음", + "noSymbolsMatching": "일치하는 기호 없음", + "number": "구성원({0})", + "object": "개체({0})", + "package": "패키지({0})", + "property": "속성({0})", + "rule": "규칙({0})", + "string": "문자열({0})", + "symbols": "기호({0})", + "variable": "변수({0})" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json b/i18n/kor/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json new file mode 100644 index 00000000000..d1b60259fe7 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "editorCommands": "편집기 명령", + "entryAriaLabel": "{0}, 선택기 도움말", + "globalCommands": "전역 명령" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json b/i18n/kor/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json new file mode 100644 index 00000000000..08ec9deb42f --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json @@ -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. +{ + "fileAndTypeResults": "파일 및 기호 결과" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json b/i18n/kor/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json new file mode 100644 index 00000000000..5f18c078033 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "entryAriaLabel": "{0}, 파일 선택기", + "searchResults": "검색 결과" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json b/i18n/kor/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json new file mode 100644 index 00000000000..588843ea970 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json @@ -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. +{ + "entryAriaLabel": "{0}, 기호 선택기", + "noSymbolsMatching": "일치하는 기호 없음", + "noSymbolsWithoutInput": "입력하여 기호 검색", + "symbols": "기호 결과" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/search/browser/search.contribution.i18n.json b/i18n/kor/src/vs/workbench/parts/search/browser/search.contribution.i18n.json new file mode 100644 index 00000000000..29be7be3589 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/search/browser/search.contribution.i18n.json @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "exclude": "검색에서 파일 및 폴더를 제외하도록 전역 패턴를 구성합니다. file.exclude 설정에서 모든 전역 패턴을 상속합니다.", + "exclude.boolean": "파일 경로를 일치시킬 GLOB 패턴입니다. 패턴을 사용하거나 사용하지 않도록 설정하려면 true 또는 false로 설정하세요.", + "exclude.when": "일치하는 파일의 형제에 대한 추가 검사입니다. $(basename)을 일치하는 파일 이름에 대한 변수로 사용하세요.", + "findInFolder": "폴더에서 찾기", + "name": "검색", + "openAnythingHandlerDescription": "이름으로 파일 및 기호 열기", + "openSymbolDescriptionNormal": "이름으로 기호 열기", + "searchConfigurationTitle": "구성 검색", + "showSearchViewlet": "검색 표시", + "showTriggerActions": "모든 기호 표시", + "view": "보기" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json b/i18n/kor/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json new file mode 100644 index 00000000000..bef586bc7de --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ClearSearchResultsAction.label": "검색 결과 지우기", + "CollapseAllAction.label": "축소", + "ConfigureGlobalExclusionsAction.label": "설정 열기", + "RefreshAction.label": "새로 고침", + "RemoveAction.label": "제거", + "SelectOrRemoveAction.removeLabel": "제거", + "SelectOrRemoveAction.selectLabel": "선택", + "ariaSearchResultsStatus": "검색에서 {1}개의 파일에 {0}개의 결과를 반환했습니다.", + "defaultLabel": "입력", + "fileMatchAriaLabel": "{2} 폴더의 {1} 파일에 {0}개의 일치 항목이 있음, 검색 결과", + "findInFolder": "폴더에서 찾기", + "findPlaceHolder": "검색하려면 Enter 키를 누르고, 취소하려면 ESC 키를 누르세요.", + "globLabel": "{0}({1}인 경우)", + "global.searchScope.folders": "설정을 통해 제외된 파일", + "label.Search": "검색: 검색어를 입력하고 Enter 키를 눌러서 검색하세요. 취소하려면 Esc 키를 누르세요.", + "label.excludes": "패턴 제외 검색", + "label.global.excludes": "구성된 검색 제외 패턴", + "label.includes": "패턴 포함 검색", + "moreSearch": "검색 세부 정보 설정/해제", + "noMatches": "일치 항목 없음", + "noResultsExcludes": "'{0}'을(를) 제외하는 결과가 없음 - ", + "noResultsFound": "결과가 없습니다. 구성된 확장에 대한 설정을 검토하세요. - ", + "noResultsIncludes": "'{0}'에 결과 없음 - ", + "noResultsIncludesExcludes": "'{0}'에 '{1}'을(를) 제외한 결과 없음 - ", + "openSettings.message": "설정 열기", + "patternDescription": "Glob 패턴 사용", + "patternHelpInclude": "일치 패턴입니다. 예: ****/*.js** - 모든 JavaScript 파일을 일치시킵니다. **myFolder/**** - 해당 폴더와 모든 자식을 일치시킵니다.\n\n**참조**:\n*****은 0개 이상의 문자를 일치시킵니다.\n**?**은 1개의 문자를 일치시킵니다.\n******은 0개 이상의 디렉터리를 일치시킵니다.\n**[a-z]**는 문자 범위를 일치시킵니다.\n**{a,b}**는 패턴을 일치시킵니다.", + "regexp.validationFailure": "식이 모든 항목과 일치", + "rerunSearch.message": "다시 검색", + "rerunSearchInAll.message": "모든 파일에서 다시 검색", + "searchCanceled": "결과를 찾기 이전에 검색이 취소되었습니다. -", + "searchMatch": "일치하는 {0}개 항목을 찾음", + "searchMatches": "일치하는 {0}개 항목을 찾음", + "searchMaxResultsWarning": "결과 집합에는 모든 일치 항목의 하위 집합만 포함됩니다. 결과 범위를 좁히려면 검색을 더 세분화하세요.", + "searchResultAria": "{0}, 검색 결과", + "searchScope.excludes": "제외할 파일", + "searchScope.includes": "포함할 파일", + "treeAriaLabel": "검색 결과" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/services/message/browser/messageService.i18n.json b/i18n/kor/src/vs/workbench/services/message/browser/messageService.i18n.json new file mode 100644 index 00000000000..14358498c6a --- /dev/null +++ b/i18n/kor/src/vs/workbench/services/message/browser/messageService.i18n.json @@ -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. +{ + "closeMessages": "알림 메시지 닫기" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json b/i18n/kor/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json new file mode 100644 index 00000000000..6fc1430dd06 --- /dev/null +++ b/i18n/kor/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "pluginHostProcess.crash": "확장이 예기치 않게 종료되었습니다. 복구하려면 창을 다시 로드하세요.", + "pluginHostProcess.error": "확장 호스트에서 오류가 발생했습니다. {0}", + "pluginHostProcess.startupFail": "확장 호스트가 10초 이내에 시작되지 않았습니다. 문제가 발생했을 수 있습니다.", + "pluginHostProcess.startupFailDebug": "확장 호스트가 10초 이내에 시작되지 않았습니다. 첫 번째 줄에서 중지되었을 수 있으며 계속하려면 디버거가 필요합니다.", + "reloadWindow": "창 다시 로드" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/base/browser/ui/actionbar/actionbar.i18n.json b/i18n/rus/src/vs/base/browser/ui/actionbar/actionbar.i18n.json new file mode 100644 index 00000000000..4ecb2c803f4 --- /dev/null +++ b/i18n/rus/src/vs/base/browser/ui/actionbar/actionbar.i18n.json @@ -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. +{ + "titleLabel": "{0} ({1})" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/base/browser/ui/findinput/findInput.i18n.json b/i18n/rus/src/vs/base/browser/ui/findinput/findInput.i18n.json new file mode 100644 index 00000000000..4f573d42e6c --- /dev/null +++ b/i18n/rus/src/vs/base/browser/ui/findinput/findInput.i18n.json @@ -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. +{ + "caseDescription": "С учетом регистра", + "defaultLabel": "ввод", + "regexDescription": "Использовать регулярное выражение", + "wordsDescription": "Слово целиком" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/base/browser/ui/messagelist/messageList.i18n.json b/i18n/rus/src/vs/base/browser/ui/messagelist/messageList.i18n.json new file mode 100644 index 00000000000..e5230eb6365 --- /dev/null +++ b/i18n/rus/src/vs/base/browser/ui/messagelist/messageList.i18n.json @@ -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. +{ + "alertErrorMessage": "Ошибка: {0}", + "alertInfoMessage": "Сведения: {0}", + "alertWarningMessage": "Предупреждение: {0}", + "close": "Закрыть", + "error": "Ошибка", + "info": "Сведения", + "warning": "Предупреждение" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json b/i18n/rus/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json new file mode 100644 index 00000000000..573b2d156dd --- /dev/null +++ b/i18n/rus/src/vs/base/browser/ui/resourceviewer/resourceViewer.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingAudioSupport": "Воспроизведение аудиофайлов не поддерживается.", + "missingVideoSupport": "Воспроизведение видеофайлов не поддерживается.", + "nativeBinaryError": "Не удается отобразить файл в редакторе, так как он двоичный, очень большой или использует неподдерживаемую кодировку текста." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/base/browser/ui/toolbar/toolbar.i18n.json b/i18n/rus/src/vs/base/browser/ui/toolbar/toolbar.i18n.json new file mode 100644 index 00000000000..d476f8f2447 --- /dev/null +++ b/i18n/rus/src/vs/base/browser/ui/toolbar/toolbar.i18n.json @@ -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. +{ + "more": "Еще" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/base/common/errors.i18n.json b/i18n/rus/src/vs/base/common/errors.i18n.json new file mode 100644 index 00000000000..b42e9659182 --- /dev/null +++ b/i18n/rus/src/vs/base/common/errors.i18n.json @@ -0,0 +1,25 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "error.connection.unknown": "Произошла неизвестная ошибка подключения. Утеряно подключение к Интернету, либо сервер, к которому вы подключены, перешел в автономный режим.", + "error.connection.unknown.verbose": "Неизвестная ошибка подключения ({0})", + "error.defaultMessage": "Произошла неизвестная ошибка. Подробные сведения см. в журнале.", + "error.http": "{0} (HTTP {1})", + "error.http.verbose": "{0} (HTTP {1}: {2})", + "error.moreErrors": "{0} (всего ошибок: {1})", + "error.permission": "Отказано в разрешении", + "error.permission.verbose": "Отказано в разрешении (HTTP {0})", + "illegalArgumentError": "Недопустимый аргумент: {0}", + "illegalArgumentError2": "Недопустимый аргумент", + "illegalStateError": "Недопустимое состояние: {0}", + "illegalStateError2": "Недопустимое состояние", + "loaderError": "Сбой загрузки требуемого файла. Утеряно подключение к Интернету, либо сервер, к которому вы подключены, перешел в автономный режим. Обновите содержимое браузера, чтобы повторить попытку.", + "loaderErrorNative": "Не удалось загрузить требуемый файл. Перезапустите приложение, чтобы повторить попытку. Дополнительные сведения: {0}.", + "message": "{0}. Код ошибки: {1}", + "nodeExceptionMessage": "Произошла системная ошибка ({0})", + "notImplementedError": "Не реализовано", + "stackTrace.format": "{0}: {1}" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/base/common/json.i18n.json b/i18n/rus/src/vs/base/common/json.i18n.json new file mode 100644 index 00000000000..588a69a4db4 --- /dev/null +++ b/i18n/rus/src/vs/base/common/json.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "CloseBraceExpected": "Требуется закрывающая фигурная скобка", + "CloseBracketExpected": "Требуется закрывающая скобка", + "ColonExpected": "Требуется двоеточие", + "CommaExpected": "Требуется запятая", + "EOFExpected": "Требуется конец содержимого", + "InvalidNumberFormat": "Недопустимый числовой формат", + "PropertyExpected": "Требуется имя свойства", + "UnknownSymbol": "Недопустимый символ", + "ValeExpected": "Требуется значение", + "ValueExpected": "Требуется значение" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/base/common/severity.i18n.json b/i18n/rus/src/vs/base/common/severity.i18n.json new file mode 100644 index 00000000000..42e61e9aac3 --- /dev/null +++ b/i18n/rus/src/vs/base/common/severity.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sev.error": "Ошибка", + "sev.info": "Сведения", + "sev.warning": "Предупреждение" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/base/common/strings.i18n.json b/i18n/rus/src/vs/base/common/strings.i18n.json new file mode 100644 index 00000000000..7db145f50ea --- /dev/null +++ b/i18n/rus/src/vs/base/common/strings.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "diff.days": "{0} дн.", + "diff.days.month": "месяц назад", + "diff.days.verbose": "{0} дн. назад", + "diff.days.week": "неделю назад", + "diff.days.yesterday": "вчера", + "diff.hour.verbose": "1 час назад", + "diff.hours": "{0} ч", + "diff.hours.verbose": "{0} ч назад", + "diff.minute.verbose": "1 минуту назад", + "diff.minutes": "{0} мин", + "diff.minutes.verbose": "{0} мин назад", + "diff.seconds": "{0} с", + "diff.seconds.verbose": "только что", + "format.date": "{0}.{1}.{2} {3}:{4}:{5}", + "format.time": "{0}:{1}:{2}" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/browser/view/viewImpl.i18n.json b/i18n/rus/src/vs/editor/browser/view/viewImpl.i18n.json new file mode 100644 index 00000000000..90b3992a47d --- /dev/null +++ b/i18n/rus/src/vs/editor/browser/view/viewImpl.i18n.json @@ -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. +{ + "editorViewAccessibleLabel": "Содержимое редактора" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/common/config/commonEditorConfig.i18n.json b/i18n/rus/src/vs/editor/common/config/commonEditorConfig.i18n.json new file mode 100644 index 00000000000..5865acfb8bf --- /dev/null +++ b/i18n/rus/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "autoClosingBrackets": "Определяет, должен ли редактор автоматически закрывать скобки после открытия.", + "cursorBlinking": "Управляет анимацией мигания курсора. Допустимые значения: \"blink\", \"visible\" и \"hidden\".", + "cursorStyle": "Определяет стиль курсора. Допустимые значения: \"block\" и \"line\".", + "editorConfigurationTitle": "Конфигурация редактора", + "folding": "Определяет, включено ли сворачивание кода в редакторе.", + "fontFamily": "Определяет семейство шрифтов.", + "fontLigatures": "Включает лигатуры шрифта.", + "fontSize": "Управляет размером шрифта.", + "formatOnType": "Управляет параметром, определяющим, должен ли редактор автоматически форматировать строку после ввода.", + "glyphMargin": "Управляет видимостью полей глифа.", + "hideCursorInOverviewRuler": "Управляет скрытием курсора в обзорной линейке.", + "ignoreTrimWhitespace": "Определяет, должен ли редактор различий трактовать несовпадения символов-разделителей как различия.", + "insertSpaces": "Определяет, будет ли редактор вставлять пробелы вместо табуляции. Допустимые значения: \"auto\", true, false. Если задано \"auto\", значение будет автоматически предложено при открытии файла.", + "lineHeight": "Управляет высотой строк.", + "lineNumbers": "Управляет видимостью номеров строк.", + "mouseWheelScrollSensitivity": "Множитель, используемый для параметров deltaX и deltaY событий прокрутки колесика мыши.", + "overviewRulerLanes": "Определяет, сколько украшений могут отображаться на одном месте в обзорной линейке.", + "quickSuggestions": "Определяет, должны ли при вводе текста отображаться краткие предложения.", + "quickSuggestionsDelay": "Управляет длительностью задержки (в мс), перед отображением кратких предложений.", + "referenceInfos": "Определяет, отображает ли редактор справочные сведения для поддерживаемых режимов.", + "renderWhitespace": "Определяет, должны ли в редакторе отображаться символы-разделители.", + "roundedSelection": "Определяет, будут ли выделения иметь скругленные углы.", + "rulers": "Столбцы, в которых должны отображаться вертикальные линейки", + "scrollBeyondLastLine": "Определяет, будет ли содержимое редактора прокручиваться за последнюю строку.", + "selectionHighlight": "Определяет, будет ли редактор выделять фрагменты, совпадающие с выделенным текстом.", + "sideBySide": "Определяет, редактор отличий отображает отличия рядом или в тексте.", + "suggestOnTriggerCharacters": "Определяет, должны ли при вводе триггерных символов автоматически отображаться предложения.", + "tabSize": "Управляет размером отрисовки знаков табуляции. Допустимые значения: \"auto\", 2, 4, 6 и т. д. Если задано \"auto\", значение будет автоматически предложено при открытии файла.", + "wordSeparators": "Символы, которые будут использоваться как разделители слов при выполнении навигации или других операций, связанных со словами.", + "wrappingColumn": "Определяет число символов, после которых текст будет перенесен на следующую строку. Если этот параметр имеет значение 0, используется перенос по ширине окна просмотра.", + "wrappingIndent": "Управляет отступом строк с переносом по словам. Допустимые значения: \"none\", \"same\" или \"indent\"." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/common/controller/cursor.i18n.json b/i18n/rus/src/vs/editor/common/controller/cursor.i18n.json new file mode 100644 index 00000000000..906805f4b8e --- /dev/null +++ b/i18n/rus/src/vs/editor/common/controller/cursor.i18n.json @@ -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. +{ + "corrupt.commands": "Неожиданное исключение при выполнении команды." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/common/model/textModelWithTokens.i18n.json b/i18n/rus/src/vs/editor/common/model/textModelWithTokens.i18n.json new file mode 100644 index 00000000000..1256b38bcf5 --- /dev/null +++ b/i18n/rus/src/vs/editor/common/model/textModelWithTokens.i18n.json @@ -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. +{ + "mode.tokenizationSupportFailed": "Не удалось разметить входные данные." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json b/i18n/rus/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json new file mode 100644 index 00000000000..85b402f165d --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/clipboard/browser/clipboard.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.clipboard.copyLabel": "Копировать", + "actions.clipboard.cutLabel": "Вырезать", + "actions.clipboard.pasteLabel": "Вставить" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/codelens/browser/codelens.i18n.json b/i18n/rus/src/vs/editor/contrib/codelens/browser/codelens.i18n.json new file mode 100644 index 00000000000..e264dd3d4df --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/codelens/browser/codelens.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "n_references": "ссылок: {0}", + "one_reference": "1 ссылка", + "unknown_reference": "— ссылки" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/comment/common/comment.i18n.json b/i18n/rus/src/vs/editor/contrib/comment/common/comment.i18n.json new file mode 100644 index 00000000000..70aaa878cff --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/comment/common/comment.i18n.json @@ -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. +{ + "comment.block": "Закомментировать или раскомментировать блок", + "comment.line": "Закомментировать или раскомментировать строку", + "comment.line.add": "Закомментировать строку", + "comment.line.remove": "Раскомментировать строку" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json b/i18n/rus/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json new file mode 100644 index 00000000000..1d813732e52 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/contextmenu/browser/contextmenu.i18n.json @@ -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. +{ + "action.showContextMenu.label": "Показать контекстное меню редактора" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/find/browser/find.i18n.json b/i18n/rus/src/vs/editor/contrib/find/browser/find.i18n.json new file mode 100644 index 00000000000..3a83b9ab8dc --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/find/browser/find.i18n.json @@ -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. +{ + "addSelectionToNextFindMatch": "Добавить выделение в следующее найденное совпадение", + "findNextMatchAction": "Найти далее", + "findPreviousMatchAction": "Найти ранее", + "moveSelectionToNextFindMatch": "Переместить последнее выделение в следующее найденное совпадение", + "selectAllOccurencesOfFindMatch": "Выбрать все вхождения найденных совпадений", + "startFindAction": "Найти", + "startReplace": "Заменить" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/find/browser/findWidget.i18n.json b/i18n/rus/src/vs/editor/contrib/find/browser/findWidget.i18n.json new file mode 100644 index 00000000000..15cdf523038 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/find/browser/findWidget.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "label.closeButton": "Закрыть", + "label.find": "Найти", + "label.matchesLocation": "{0} из {1}", + "label.nextMatchButton": "Следующее соответствие", + "label.noResults": "Результаты отсутствуют", + "label.previousMatchButton": "Предыдущее соответствие", + "label.replace": "Заменить", + "label.replaceAllButton": "Заменить все", + "label.replaceButton": "Заменить", + "label.toggleReplaceButton": "Режим \"Переключение замены\"", + "label.toggleSelectionFind": "Найти в выделении", + "placeholder.find": "Найти", + "placeholder.replace": "Заменить", + "title.matchesCountLimit": "Отображаются только первые 999 результатов, но все операции поиска выполняются со всем текстом." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/format/common/format.i18n.json b/i18n/rus/src/vs/editor/contrib/format/common/format.i18n.json new file mode 100644 index 00000000000..ed3cde98504 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/format/common/format.i18n.json @@ -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. +{ + "formatAction.label": "Код формата" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json b/i18n/rus/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json new file mode 100644 index 00000000000..5de8f872051 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "actions.goToDecl.label": "Перейти к определению", + "actions.goToDeclToSide.label": "Открыть определение сбоку", + "actions.gotoTypeDecl.label": "Перейти к определению типа", + "actions.previewDecl.label": "Показать определение", + "multipleResults": "Щелкните, чтобы отобразить найденные определения ({0})." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json b/i18n/rus/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json new file mode 100644 index 00000000000..c5e05061ff8 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/gotoError/browser/gotoError.i18n.json @@ -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. +{ + "markerAction.next.label": "Перейти к следующей ошибке или предупреждению", + "markerAction.previous.label": "Перейти к предыдущей ошибке или предупреждению", + "quickfix.multiple.label": "Предложенные исправления: ", + "quickfix.single.label": "Предложенное исправление: " +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json b/i18n/rus/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json new file mode 100644 index 00000000000..afb4cd39d72 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/hover/browser/modesContentHover.i18n.json @@ -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. +{ + "modesContentHover.loading": "Идет загрузка..." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json b/i18n/rus/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json new file mode 100644 index 00000000000..b3ec1f82fd8 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/inPlaceReplace/common/inPlaceReplace.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "InPlaceReplaceAction.next.label": "Заменить следующим значением", + "InPlaceReplaceAction.previous.label": "Заменить предыдущим значением" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json b/i18n/rus/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json new file mode 100644 index 00000000000..4d1879ab7da --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -0,0 +1,17 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lines.copyDown": "Копировать строку снизу", + "lines.copyUp": "Копировать строку сверху", + "lines.delete": "Удалить строку", + "lines.indent": "Увеличить отступ", + "lines.insertAfter": "Вставить строку ниже", + "lines.insertBefore": "Вставить строку выше", + "lines.moveDown": "Переместить строку вниз", + "lines.moveUp": "Переместить строку вверх", + "lines.outdent": "Уменьшить отступ", + "lines.trimTrailingWhitespace": "Удалить конечные символы-разделители" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/links/browser/links.i18n.json b/i18n/rus/src/vs/editor/contrib/links/browser/links.i18n.json new file mode 100644 index 00000000000..247bb8bd44b --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/links/browser/links.i18n.json @@ -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. +{ + "invalid.url": "Недопустимый код URI: невозможно открыть {0}", + "label": "Открыть ссылку", + "links.navigate": "Щелкните с нажатой клавишей Ctrl, чтобы перейти по ссылке", + "links.navigate.mac": "Щелкните с нажатой клавишей Cmd, чтобы перейти по ссылке" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json b/i18n/rus/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json new file mode 100644 index 00000000000..f439cc1bfd4 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/multicursor/common/multicursor.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "mutlicursor.insertAbove": "Добавить курсор выше", + "mutlicursor.insertAtEndOfEachLineSelected": "Создать несколько курсоров на основе выбранных линий", + "mutlicursor.insertBelow": "Добавить курсор ниже" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json b/i18n/rus/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json new file mode 100644 index 00000000000..cd5e78cf6b8 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/parameterHints/browser/parameterHints.i18n.json @@ -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. +{ + "parameterHints.trigger.label": "Переключить подсказки к параметрам" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json b/i18n/rus/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json new file mode 100644 index 00000000000..ca37061159b --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/quickFix/browser/quickFix.i18n.json @@ -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. +{ + "quickfix.trigger.label": "Быстрое исправление" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json b/i18n/rus/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json new file mode 100644 index 00000000000..b8b8d7db557 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickFixSelectionWidget.loading": "Загрузка...", + "QuickFixSelectionWidget.noSuggestions": "Предложения по исправлениям отсутствуют.", + "treeAriaLabel": "Быстрое исправление" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json b/i18n/rus/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json new file mode 100644 index 00000000000..58595c16646 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/quickOpen/browser/gotoLine.contribution.i18n.json @@ -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. +{ + "label": "Перейти к строке..." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json b/i18n/rus/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json new file mode 100644 index 00000000000..33ef4ed677e --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/quickOpen/browser/gotoLine.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "GotoLineAction.label": "Перейти к строке...", + "gotoLineActionInput": "Введите номер строки, затем двоеточие (необязательно) и номер столбца, для перехода", + "gotoLineLabelEmptyWithLineAndColumnLimit": "Введите столбец между 1 и {0} для перехода", + "gotoLineLabelEmptyWithLineLimit": "Введите номер строки от 1 до {0} для перехода", + "gotoLineLabelValidLine": "Перейти к строке {0}", + "gotoLineLabelValidLineAndColumn": "Перейти к строке {0} и столбцу {1}" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json b/i18n/rus/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json new file mode 100644 index 00000000000..3924032353c --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/quickOpen/browser/quickCommand.contribution.i18n.json @@ -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. +{ + "label": "Палитра команд" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json b/i18n/rus/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json new file mode 100644 index 00000000000..b5407d2f66a --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/quickOpen/browser/quickCommand.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickCommandAction.label": "Палитра команд", + "quickCommandActionInput": "Введите имя действия, которое нужно выполнить" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json b/i18n/rus/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json new file mode 100644 index 00000000000..ecc17a2fb08 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/quickOpen/browser/quickOutline.contribution.i18n.json @@ -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. +{ + "label": "Перейти к символу..." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json b/i18n/rus/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json new file mode 100644 index 00000000000..e42b29862ed --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/quickOpen/browser/quickOutline.i18n.json @@ -0,0 +1,20 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "QuickOutlineAction.label": "Перейти к символу...", + "_constructor": "конструкторы ({0})", + "call": "вызовы ({0})", + "class": "классы ({0})", + "function": "функции ({0})", + "interface": "интерфейсы ({0})", + "method": "методы ({0})", + "modules": "модули ({0})", + "property": "свойства ({0})", + "quickOutlineActionInput": "Введите имя идентификатора, к которому нужно перейти", + "symbols": "символы ({0})", + "variable": "переменные ({0})", + "variable2": "переменные ({0})" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json b/i18n/rus/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json new file mode 100644 index 00000000000..5d9111af090 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -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. +{ + "labelLoading": "Загрузка...", + "noResults": "Результаты отсутствуют", + "references.action.label": "Найти все ссылки", + "references.action.name": "Показать ссылки" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json b/i18n/rus/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json new file mode 100644 index 00000000000..82951b88315 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/referenceSearch/browser/referenceSearchWidget.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "missingPreviewMessage": "предварительный просмотр недоступен", + "peekView.alternateTitle": "Ссылки", + "referenceCount": "ссылка {0}", + "referencesCount": "ссылок {0}", + "treeAriaLabel": "Ссылки" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/rename/browser/rename2.i18n.json b/i18n/rus/src/vs/editor/contrib/rename/browser/rename2.i18n.json new file mode 100644 index 00000000000..0bcc4ce2cdf --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/rename/browser/rename2.i18n.json @@ -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. +{ + "rename.label": "Переименовать символ" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/rename/browser/renameModel.i18n.json b/i18n/rus/src/vs/editor/contrib/rename/browser/renameModel.i18n.json new file mode 100644 index 00000000000..6a3bc342874 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/rename/browser/renameModel.i18n.json @@ -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. +{ + "cannotLoadFile": "Не удается загрузить файл {0}" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json b/i18n/rus/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json new file mode 100644 index 00000000000..b1e1079e98b --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/smartSelect/common/jumpToBracket.i18n.json @@ -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. +{ + "smartSelect.jumpBracket": "Перейти к скобке" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json b/i18n/rus/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json new file mode 100644 index 00000000000..937d51a9e11 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/smartSelect/common/smartSelect.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "smartSelect.grow": "Развернуть выделение", + "smartSelect.shrink": "Сжать выделение" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/suggest/browser/suggest.i18n.json b/i18n/rus/src/vs/editor/contrib/suggest/browser/suggest.i18n.json new file mode 100644 index 00000000000..032e964f688 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/suggest/browser/suggest.i18n.json @@ -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. +{ + "suggest.trigger.label": "Переключить предложение" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json b/i18n/rus/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json new file mode 100644 index 00000000000..cd0c7f50234 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json @@ -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. +{ + "goback": "Вернуться", + "readMore": "Подробнее...{0}", + "suggestWidget.loading": "Загрузка...", + "suggestWidget.noSuggestions": "Предложения отсутствуют." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json b/i18n/rus/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json new file mode 100644 index 00000000000..81397cb1809 --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/toggleTabFocusMode/common/toggleTabFocusMode.i18n.json @@ -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. +{ + "toggle.tabfocusmode": "Переключение фокуса ввода с помощью клавиши TAB" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json b/i18n/rus/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json new file mode 100644 index 00000000000..6f6dde161df --- /dev/null +++ b/i18n/rus/src/vs/editor/contrib/zoneWidget/browser/peekViewWidget.i18n.json @@ -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. +{ + "label.close": "Закрыть" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/css/common/css.contribution.i18n.json b/i18n/rus/src/vs/languages/css/common/css.contribution.i18n.json new file mode 100644 index 00000000000..bb7dbf746ab --- /dev/null +++ b/i18n/rus/src/vs/languages/css/common/css.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "cssConfigurationTitle": "Конфигурация CSS", + "lint": "Управляет проверкой CSS и серьезностью проблем." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/css/common/cssWorker.i18n.json b/i18n/rus/src/vs/languages/css/common/cssWorker.i18n.json new file mode 100644 index 00000000000..c45ad9a4fb0 --- /dev/null +++ b/i18n/rus/src/vs/languages/css/common/cssWorker.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "css.quickfix.rename": "Переименовать в \"{0}\"", + "literal.fontface": "@font-face", + "literal.keyframes": "@keyframes {0}" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/css/common/parser/cssErrors.i18n.json b/i18n/rus/src/vs/languages/css/common/parser/cssErrors.i18n.json new file mode 100644 index 00000000000..96ee064dfcd --- /dev/null +++ b/i18n/rus/src/vs/languages/css/common/parser/cssErrors.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.colon": "ожидается двоеточие", + "expected.comma": "ожидается запятая", + "expected.condt": "ожидается условие", + "expected.dot": "ожидается точка", + "expected.expression": "ожидается выражение", + "expected.ident": "ожидается идентификатор", + "expected.lcurly": "ожидается \"{\"", + "expected.lparen": "ожидается \"(\"", + "expected.lsquare": "ожидается \"[\"", + "expected.number": "ожидается число", + "expected.operator": "ожидается оператор", + "expected.pagedirordecl": "ожидается директива или объявление страницы", + "expected.percentage": "ожидается процент", + "expected.propvalue": "ожидается значение свойства", + "expected.rcurly": "ожидается \"}\"", + "expected.rparent": "ожидается \")\"", + "expected.rsquare": "ожидается \"]\"", + "expected.ruleorselector": "ожидается at-правило или селектор", + "expected.selector": "ожидается селектор", + "expected.semicolon": "ожидается точка с запятой", + "expected.stringliteral": "ожидается строковый литерал", + "expected.term": "ожидается термин", + "expected.uri": "ожидается универсальный код ресурса (URI)", + "expected.uriorstring": "ожидается универсальный код ресурса (URI) или строка", + "expected.varname": "ожидается имя переменной", + "expected.varvalue": "ожидается значение переменной", + "unknown.atrule": "неизвестное at-правило", + "unknown.keyword": "неизвестное ключевое слово" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/css/common/services/intelliSense.i18n.json b/i18n/rus/src/vs/languages/css/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..6a8ea262101 --- /dev/null +++ b/i18n/rus/src/vs/languages/css/common/services/intelliSense.i18n.json @@ -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. +{ + "css.builtin.hsl": "Создает цвет на основании значений оттенка, насыщенности и освещенности.", + "css.builtin.hsla": "Создает цвет на основании значений оттенка, насыщенности, освещенности и альфа-фактора.", + "css.builtin.rgb": "Создает цвет на основании значений красного, зеленого и синего цветов.", + "css.builtin.rgba": "Создает цвет на основании значений красного, зеленого, синего цветов и альфа-фактора." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/css/common/services/lint.i18n.json b/i18n/rus/src/vs/languages/css/common/services/lint.i18n.json new file mode 100644 index 00000000000..727e117c8b9 --- /dev/null +++ b/i18n/rus/src/vs/languages/css/common/services/lint.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "keyframes.standardrule.missing": "Всегда определяйте стандартное правило \"@keyframes\" при определении ключевых кадров.", + "keyframes.vendorspecific.missing": "Всегда включайте все зависящие от поставщиков правила. Отсутствует: {0}", + "namelist.concatenated": "{0}, \"{1}\"", + "namelist.single": "\"{0}\"", + "property.standard.missing": "Также для совместимости определяйте стандартное свойство \"{0}\"", + "property.vendorspecific.missing": "Всегда включайте все зависящие от поставщиков свойства. Отсутствует: {0}" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/css/common/services/lintRules.i18n.json b/i18n/rus/src/vs/languages/css/common/services/lintRules.i18n.json new file mode 100644 index 00000000000..11fec01cae2 --- /dev/null +++ b/i18n/rus/src/vs/languages/css/common/services/lintRules.i18n.json @@ -0,0 +1,26 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "enableValidation": "Включает или отключает все проверки", + "rule.avoidFloat": "Старайтесь не использовать \"float\". Из-за элементов \"float\" работа кода CSS может легко нарушиться, если изменить один из аспектов разметки.", + "rule.avoidIdSelector": "Селекторы не должны содержать идентификаторов, потому что эти правила слишком тесно связаны с HTML.", + "rule.avoidImportant": "Старайтесь не использовать !important, так как это признак того, что весь код CSS стал неуправляемым и его надо переработать.", + "rule.colorFunction": "Недопустимое число параметров", + "rule.duplicateDeclarations": "Не использовать дублирующиеся определения стилей", + "rule.emptyRuleSets": "Не использовать пустые наборы правил", + "rule.fontFaceProperties": "Правило @font-face должно определять свойства \"src\" и \"font-family\"", + "rule.hexColor": "Цвета в шестнадцатеричном формате должны содержать три или шесть шестнадцатеричных чисел", + "rule.ieHack": "Полезные советы для Internet Explorer требуются только при поддержке Internet Explorer 7 и более ранних версий", + "rule.importDirective": "Операторы импорта не загружаются параллельно", + "rule.propertyIgnoredDueToDisplay": "Свойство проигнорировано из-за значения свойства display. Например, при \"display: inline\" свойства width, height, margin-top, margin-bottom и float не работают", + "rule.standardvendorprefix.all": "При использовании зависящего от поставщика префикса также указывайте стандартное свойство", + "rule.universalSelector": "Универсальный селектор (*), как известно, функционирует медленно", + "rule.unknownProperty": "Неизвестное свойство.", + "rule.unknownVendorSpecificProperty": "Неизвестное свойство поставщика.", + "rule.vendorprefixes.all": "При использовании зависящего от поставщика префикса также указывайте все остальные свойства поставщика", + "rule.withHeightAndBorderPadding": "Не использовать ширину или высоту при использовании поля или границы", + "rule.zeroWidthUnit": "Для нуля не требуется никакой единицы" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/javascript/common/javascript.contribution.i18n.json b/i18n/rus/src/vs/languages/javascript/common/javascript.contribution.i18n.json new file mode 100644 index 00000000000..83bb12c91cb --- /dev/null +++ b/i18n/rus/src/vs/languages/javascript/common/javascript.contribution.i18n.json @@ -0,0 +1,35 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "Всегда включать все слова из текущего документа.", + "compilationSettings": "Управляет механизмом проверки JavaScript.", + "jsConfigurationTitle": "Конфигурация JavaScript", + "lint": "Управляет разными аспектами проверки.", + "lint.comparisonOperatorsNotStrict": "Используйте \"!==\" и \"===\" вместо \"!=\" и \"==\".", + "lint.curlyBracketsMustNotBeOmitted": "Используйте как можно меньше фигурных скобок.", + "lint.emptyBlocksWithoutComment": "Пустой блок должен сопровождаться комментарием.", + "lint.forcedTypeConversion": "Не следует повторно объявлять тип переменной назначением.", + "lint.functionsInsideLoops": "Функция внутри цикла.", + "lint.missingSemicolon": "Отсутствующая точка с запятой.", + "lint.mixedTypesArithmetics": "Используйте числа только для арифметических операций.", + "lint.newOnLowercaseFunctions": "Функция с именем в нижнем регистре, используемая в качестве конструктора.", + "lint.newOnReturningFunctions": "Функция с оператором return, используемая в качестве конструктора.", + "lint.parametersDontMatchSignature": "Параметр не соответствует сигнатуре функции.", + "lint.primitivesInInstanceOf": "Не используйте instanceof с типами-примитивами.", + "lint.redeclaredVariables": "Не следует повторно объявлять переменную и изменять ее тип.", + "lint.semicolonsInsteadOfBlocks": "Точка с запятой вместо блока.", + "lint.tripleSlashReferenceAlike": "Ищет ссылки с тройной косой чертой, содержащие опечатки.", + "lint.undeclaredVariables": "Не используйте необъявленную переменную.", + "lint.unknownModule": "Не требовать неизвестный модуль", + "lint.unknownProperty": "Не используйте неизвестное свойство.", + "lint.unknownTypeOfResults": "Не является ожидаемым выводом оператора typeof.", + "lint.unusedFunctions": "Неиспользуемая локальная функция.", + "lint.unusedVariables": "Неиспользуемая локальная переменная.", + "semanticValidation": "Запуск проверок Linter для файлов JavaScript — будут переопределены параметры validate.lint.*.", + "suggestSettings": "Управляет работой JavaScript IntelliSense.", + "syntaxValidation": "Проверка файлов JavaScript на предмет ошибок синтаксиса.", + "useCodeSnippetsOnMethodSuggest": "Дополните функции их параметрической подписью." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json b/i18n/rus/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json new file mode 100644 index 00000000000..ae91987c7b0 --- /dev/null +++ b/i18n/rus/src/vs/languages/json/common/contributions/bowerJSONContribution.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.bower.default": "Bower.json по умолчанию", + "json.bower.error.repoaccess": "Сбой запроса в репозиторий браузера: {0}", + "json.bower.package.hover": "{0}" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json b/i18n/rus/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json new file mode 100644 index 00000000000..3c4663f9a7f --- /dev/null +++ b/i18n/rus/src/vs/languages/json/common/contributions/projectJSONContribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "json.nugget.error.repoaccess": "Сбой запроса в репозиторий NuGet: {0}", + "json.nugget.package.hover": "{0}", + "json.nugget.version.hover": "Последняя версия: {0}", + "json.nugget.versiondescription.suggest": "Последняя версия пакета, существующая на данный момент", + "json.project.default": "Project.json по умолчанию" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/json/common/json.contribution.i18n.json b/i18n/rus/src/vs/languages/json/common/json.contribution.i18n.json new file mode 100644 index 00000000000..78c51159934 --- /dev/null +++ b/i18n/rus/src/vs/languages/json/common/json.contribution.i18n.json @@ -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. +{ + "jsonConfiguration.fileMatch": "Шаблон файла, который может содержать \"*\", для сопоставления при преобразовании JSON-файлов в схемы.", + "jsonConfiguration.fileMatches": "Массив шаблонов файлов для сопоставления при преобразовании JSON-файлов в схемы.", + "jsonConfiguration.schema": "Определение схемы для заданного URL-адреса. Необходимо предоставить схему, чтобы исключить возможность получения доступа к URL-адресу схемы.", + "jsonConfiguration.schemaPath": "URL-адрес схемы или относительный путь к схеме в текущем каталоге", + "jsonConfiguration.schemas": "Сопоставить схемы с JSON-файлами в текущем проекте", + "jsonConfigurationDescription": "Используется для настройки параметров и схем JSON.", + "jsonConfigurationTitle": "Конфигурация JSON" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/json/common/json.i18n.json b/i18n/rus/src/vs/languages/json/common/json.i18n.json new file mode 100644 index 00000000000..77d41b0ad45 --- /dev/null +++ b/i18n/rus/src/vs/languages/json/common/json.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "array": "массивы", + "boolean": "логические значения", + "number": "числа", + "object": "объекты", + "string": "строки", + "undefined": "не определено" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/json/common/jsonIntellisense.i18n.json b/i18n/rus/src/vs/languages/json/common/jsonIntellisense.i18n.json new file mode 100644 index 00000000000..c882a3f7159 --- /dev/null +++ b/i18n/rus/src/vs/languages/json/common/jsonIntellisense.i18n.json @@ -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. +{ + "json.suggest.default": "Значение по умолчанию" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/json/common/jsonSchemaService.i18n.json b/i18n/rus/src/vs/languages/json/common/jsonSchemaService.i18n.json new file mode 100644 index 00000000000..98da0c8ff2c --- /dev/null +++ b/i18n/rus/src/vs/languages/json/common/jsonSchemaService.i18n.json @@ -0,0 +1,169 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "app.plugin.json.activationEvents": "События активации для подключаемого модуля", + "app.plugin.json.contributes": "Предоставляемые дополнения этого подключаемого модуля", + "app.plugin.json.contributes.language": "Предоставляемые дополнения языка подключаемого модуля", + "app.plugin.json.contributes.language.aliases": "Псевдонимы имен для этого языка", + "app.plugin.json.contributes.language.extensions": "Расширения файлов, связанные с этим языком", + "app.plugin.json.contributes.language.filenames": "Имена файлов, связанные с этим языком", + "app.plugin.json.contributes.language.id": "Идентификатор этого языка", + "app.plugin.json.dependencies": "Зависимости подключаемого модуля", + "app.plugin.json.mainModule": "Относительный путь к основному файлу JavaScript", + "app.plugin.json.pluginId": "Уникальный идентификатор подключаемого модуля", + "app.plugin.json.scripts": "Скрипты, предложенные подключаемым модулем", + "app.plugin.json.scripts.compile": "Командная строка для компиляции этого подключаемого модуля", + "bower.json.authors": "Список людей, которые являются создателями содержимого пакета.", + "bower.json.dependencies": "Зависимости задаются с помощью простой хэш-функции имени пакета к идентификатору, совместимому с модулем semver, или к URL-адресу.", + "bower.json.description": "Помогите пользователям найти ваш пакет, указав краткое описание.", + "bower.json.devDependencies": "Зависимости, необходимые только для разработки пакета, например, среда тестирования, или для сборки документации. ", + "bower.json.exportsOverride": "Используется модулем grunt-bower-task для задания пользовательского расположения установки.", + "bower.json.homepage": "URL-адрес дополнительных сведений о пакете. Если адрес не указан и используется конечная точка GitHub, происходит откат к проекту GitHub. ", + "bower.json.ignore": "Список файлов, которые следует игнорировать в Bower при установке пакета.", + "bower.json.invalidPatternName": "Допустимым является любое свойство, начинающееся с \"_\".", + "bower.json.keywords": "Используется для поиска по ключевому слову. Упрощает поиск вашего пакета и не требует знания имени пакета.", + "bower.json.license": "Идентификатор лицензии SPDX или URL-адрес или путь к лицензии.", + "bower.json.main": "Основные файлы, необходимые для использования пакета.", + "bower.json.moduleType": "Типы модулей, включенных в пакет", + "bower.json.packagename": "Имя пакета.", + "bower.json.private": "Если в качестве значения будет задано \"true\", то в публикации будет отказано. Это способ предотвратить случайную публикацию частного репозитория.", + "bower.json.repository": "Репозиторий, в котором может быть найден исходный код.", + "bower.json.resolutions": "Версии зависимостей для автоматического разрешения при конфликтах между пакетами.", + "bower.json.title": "JSON-схема для файлов конфигурации Bower", + "bower.json.version": "Номер семантической версии.", + "global.json.projects": "Список папок проекта, относящихся к этому файлу.", + "global.json.sources": "Список исходных папок, относящихся к этому файлу.", + "global.json.title": "Схема JSON для файлов глобальной конфигурации ASP.NET", + "jsconfig.json.compilerOptions": "Указывает языковой службе JavaScript, как проверять JS-файлы.", + "jsconfig.json.compilerOptions.charset": "Набор символов для входных файлов", + "jsconfig.json.compilerOptions.decorators": "Включает экспериментальную поддержку для декораторов ES7.", + "jsconfig.json.compilerOptions.diagnostics": "Отображение сведений диагностики", + "jsconfig.json.compilerOptions.locale": "Языковой стандарт, используемый для отображения сообщений об ошибках, например, ru-ru.", + "jsconfig.json.compilerOptions.mapRoot": "Указывает расположение, в котором отладчик должен искать файлы карты вместо созданных расположений.", + "jsconfig.json.compilerOptions.module": "Создание кода модуля, разрешаемого в \"commonjs\", \"amd\", \"system\" или \"umd\".", + "jsconfig.json.compilerOptions.noLib": "Не включать файл библиотеки по умолчанию (lib.d.ts)", + "jsconfig.json.compilerOptions.target": "Указание целевой версии ECMAScript: \"ES3\" (по умолчанию), \"ES5\" или \"ES6\" (экспериментальная).", + "jsconfig.json.exclude": "Перечисление файлов и папок, которые не следует включать. Это свойство не учитывается, если свойство \"files\" отсутствует.", + "jsconfig.json.files": "Если свойство \"files\" отсутствует в файле jsconfig.json, языковая служба по умолчанию включает все файлы с каталогом и подкаталогами. Если указано свойство \"files\", включаются только эти файлы.", + "jsconfig.json.title": "Схема JSON для файла конфигурации JavaScript", + "json.schema.unabletoload": "Не удается загрузить схему из \"{0}\": {1}.", + "package.json.bugs": "URL-адрес средства отслеживания проблем проекта или адрес электронной почты, на который нужно сообщать о проблемах. Это полезно для людей, у которых возникают проблемы с пакетом.", + "package.json.bugs.email": "Адрес электронной почты, на который будут отправлены сообщения о проблемах.", + "package.json.bugs.url": "URL-адрес средства отслеживания проблем проектов.", + "package.json.bundleDependencies": "Массив имен пакетов, которые будут объединены при публикации пакета.", + "package.json.bundledDependencies": "Массив имен пакетов, которые будут объединены при публикации пакета.", + "package.json.config": "Хэш \"config\" можно использовать, чтобы задать параметры конфигурации в скриптах пакета, которые сохраняются после любых обновлений.", + "package.json.contributors": "Список составителей этого пакета.", + "package.json.dependency": "Зависимости указываются с простым хэшем имени пакета в диапазоне версии. Диапазон версии является строкой с одним или несколькими дескрипторами с разделителями-пробелами. Зависимости можно также определить с помощью архива tar или URL-адреса GIT.", + "package.json.descr": "Это поможет людям найти ваш пакет, так как он отображается в \"поиске NPM\".", + "package.json.description": "Конфигурация NPM этого пакета.", + "package.json.directories.bin": "Если вы укажете каталог \"bin\", то все файлы в этой папке будут использоваться как хэш \"bin\".", + "package.json.directories.doc": "Поместите сюда файлы Markdown. Вполне возможно, что когда-нибудь они будут отображаться красиво.", + "package.json.directories.example": "Поместите сюда примеры скриптов. Вполне возможно, что когда-нибудь их удастся толково использовать.", + "package.json.directories.lib": "Сообщите людям, где находится основная часть вашей библиотеки. С папкой библиотеки ничего особенного никто не делает, но эти метаданные могут быть полезны.", + "package.json.directories.man": "Папка со страницами руководства. Добавьте \"сахар\", чтобы создать массив \"man\", перейдя в папку.", + "package.json.files": "Поле \"файлы\" является массивом файлов, включаемых в проект. Если папка названа в массиве, он также будет включать файлы из этой папки.", + "package.json.homepage": "URL-адрес домашней страницы проекта.", + "package.json.keywords": "Это поможет людям найти ваш пакет, так как он отображается в \"поиске NPM\".", + "package.json.license": "Следует указать лицензию для пакета, чтобы люди знали, что им разрешено использовать его (с учетом применимых ограничений, если они есть).", + "package.json.licenses": "Следует указать лицензию для пакета, чтобы люди знали, что им разрешено использовать его (с учетом применимых ограничений, если они есть).", + "package.json.main": "Основное поле — это идентификатор модуля, который является первой точкой входа в программу.", + "package.json.maintainers": "Список людей, обслуживающих пакет.", + "package.json.man": "Укажите один файл или массив имен файлов для поиска программой man.", + "package.json.name": "Имя пакета.", + "package.json.person": "Человек, вовлеченный в создание или обслуживание этого пакета", + "package.json.preferGlobal": "Если пакет в первую очередь является приложением командной строки, которое следует установить глобально, задайте для него значение \"true\", чтобы отправить предупреждение, если оно установлено локально.", + "package.json.private": "Если задано значение \"true\", NPM откажется публиковать его", + "package.json.repository": "Укажите место хранения кода этого пакета. Это будет полезно для других составителей.", + "package.json.scripts": "Элемент \"Скрипты\" является хэшем объекта команд скрипта, которые запускаются несколько раз в жизненном цикле пакета. Ключ — это событие жизненного цикла, а значение — команда, выполняемая в этой точке.", + "package.json.underscore": "Допустимым является любое свойство, начинающееся с \"_\".", + "package.json.version": "Версия должна быть доступна для анализа node-semver (входит в пакет NPM как зависимость).", + "project.json.authors": "Автор приложения", + "project.json.bundleExclude": "Список файлов, исключаемых из выходных данных публикации (пакет kpm).", + "project.json.code": "Стандартная маска, используемая для указания всех файлов кода. которые необходимо скомпилировать (тип данных: строка или массив со стандартными масками). Пример: [ 'Folder1*.cs', 'Folder2*.cs' ]", + "project.json.commands": "Доступные для этого приложения команды", + "project.json.compilationOptions": "Параметры компиляции, которые передаются в Roslyn", + "project.json.configurations": "Конфигурации — это именованные группы параметров компиляции. Существует два значения по умолчанию, встроенные в среду выполнения, — \"Отладка\" и \"Выпуск\".", + "project.json.dependencies": "Зависимости приложения. В каждой записи указывается имя и версия пакета Nuget.", + "project.json.dependency.name": "Версия зависимости.", + "project.json.dependency.type": "Тип зависимости. Зависимости \"build\" существуют только во время сборки", + "project.json.description": "Описание приложения", + "project.json.exclude": "Стандартная маска, используемая для указания всех файлов кода, которые необходимо исключить из компиляции (тип данных: строка или массив со стандартными масками).", + "project.json.frameworks": "Целевые платформы, которые будут созданы, и зависимости, связанные с конфигурацией.", + "project.json.preprocess": "Стандартная маска, используемая для указания всех файлов кода, для которых необходимо выполнить предварительную обработку (тип данных: строка со стандартной маской).", + "project.json.resources": "Стандартная маска, используемая для указания всех файлов, которые необходимо скомпилировать в качестве ресурсов.", + "project.json.script": "Скрипт или скрипты командной строки.\r\rДоступные переменные:\r%project:Directory% - каталог проекта\r%project:Name% - название проекта\r%project:Version% - версия проекта", + "project.json.scripts": "Скрипты для выполнения на различных этапах.", + "project.json.shared": "Стандартная маска, используемая для указания файлов кода, которые необходимо использовать для зависимых проектов. Пример: [ 'Folder1*.cs', 'Folder2*.cs' ]", + "project.json.title": "JSON-схема для файлов project.json ASP.NET", + "project.json.version": "Версия приложения. Пример: 1.2.0.0", + "project.json.webroot": "Свойство Webroot в файле project.json определяет корень веб-сервера (также называемый общедоступной папкой). В Visual Studio эта папка будет использоваться для создания корня IIS. Статические файлы следует разместить здесь.", + "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.default": "Значение по умолчанию. Используется предложениями.", + "schema.json.definitions": "Не используется для проверки. Поместите сюда вложенные схемы, на которые требуется ссылаться в строке с помощью $ref", + "schema.json.dependencies": "Сопоставление имен свойств массиву имен свойств или схеме. Массив имен свойств означает, что допустимость свойства, именованного в ключе, зависит от свойств массива, присутствующих в объекте. Если значение - схема, эта схема применима к объекту только в том случае, если свойство ключа существует в объекте.", + "schema.json.description": "Длинное описание элемента. Используется в меню наведения и предложениях.", + "schema.json.enum": "Набор допустимых значений литерала", + "schema.json.exclusiveMaximum": "Делает максимальное свойство эксклюзивным.", + "schema.json.exclusiveMininum": "Делает минимальное свойство эксклюзивным.", + "schema.json.id": "Уникальный идентификатор для схемы.", + "schema.json.items": "Для массивов. Может являться схемой, относительно которой проверяется каждый элемент, или массивом схем, относительно которого проверяется каждый элемент по порядку (первая схема проверяет первый элемент, вторая схема проверяет второй элемент и так далее).", + "schema.json.maxItems": "Максимальное число элементов, которые могут находиться внутри массива. Включительно.", + "schema.json.maxLength": "Максимальная длина строки.", + "schema.json.maxProperties": "Максимальное число свойств, которыми может обладать объект. Включительно.", + "schema.json.maximum": "Максимальное числовое значение, включенное по умолчанию.", + "schema.json.minItems": "Минимальное число элементов, которые могут находиться внутри массива. Включительно.", + "schema.json.minLength": "Минимальная длина строки.", + "schema.json.minProperties": "Минимальное число свойств, которыми может обладать объект. Включительно.", + "schema.json.minimum": "Минимальное числовое значение, включенное по умолчанию.", + "schema.json.multipleOf": "Число, которое должно разделять текущее значение без остатка", + "schema.json.not": "Схема, которая не должна соответствовать.", + "schema.json.oneOf": "Массив схем, из которых должна соответствовать только одна.", + "schema.json.pattern": "Регулярное выражение, относительно которого сопоставляется строка. Оно не является неявно прикрепленным.", + "schema.json.patternProperties": "Сопоставление регулярных выражений в именах свойств схемам для соответствующих свойств.", + "schema.json.properties": "Сопоставление имен свойств схемам для каждого свойства.", + "schema.json.required": "Массив строк, перечисляющий имена всех свойств, необходимых в этом объекте.", + "schema.json.title": "Описательное название элемента.", + "schema.json.type": "Строка одного из базовых типов схем (число, целое число, значение null, массив, объект, логическое значение, строка) или массив строк, задающий подмножество тех типов.", + "schema.json.uniqueItems": "Если все элементы массива должны быть уникальными. По умолчанию имеет значение false.", + "snippetSchema.json": "Настройка фрагмента пользователя", + "snippetSchema.json.body": "Содержимое фрагмента. Используйте \"${id}\", \"${id:label}\" и \"${1:label}\" для переменных и \"$0\" и \"$1\" для позиций курсора.", + "snippetSchema.json.description": "Описание фрагмента", + "snippetSchema.json.prefix": "Префикс, используемый при выборе фрагмента в Intellisense.", + "tsconfig.json.compilerOptions": "Сообщает компилятору TypeScript, как следует компилировать TS-файлы", + "tsconfig.json.compilerOptions.charset": "Набор символов для входных файлов", + "tsconfig.json.compilerOptions.declaration": "Создает соответствующие D.TS-файлы.", + "tsconfig.json.compilerOptions.diagnostics": "Отображение сведений диагностики", + "tsconfig.json.compilerOptions.emitBOM": "Выдача метки порядка байтов UTF-8 (BOM) в начале выходных файлов.", + "tsconfig.json.compilerOptions.inlineSourceMap": "Выдача одного файла с исходными сопоставлениями вместо отдельного файла.", + "tsconfig.json.compilerOptions.inlineSources": "Выдача источника с sourcemap в одном файле; требуется задать --inlineSourceMap.", + "tsconfig.json.compilerOptions.listFiles": "Печать имен файлов в рамках компиляции", + "tsconfig.json.compilerOptions.locale": "Языковой стандарт, используемый для отображения сообщений об ошибках, например, ru-ru.", + "tsconfig.json.compilerOptions.mapRoot": "Указывает расположение, в котором отладчик должен искать файлы карты вместо созданных расположений", + "tsconfig.json.compilerOptions.module": "Указание создания кода модуля: \"CommonJS\", \"Amd\", \"System\" или \"UMD\"", + "tsconfig.json.compilerOptions.newLine": "Указывает последовательность конца строки, используемую при порождении файлов: \"CRLF\" (DOS) или \"LF\" (UNIX).", + "tsconfig.json.compilerOptions.noEmit": "Не создавать выходные данные.", + "tsconfig.json.compilerOptions.noEmitHelpers": "Не создавать пользовательские функции вспомогательного приложения, такие как __extends, в скомпилированных выходных данных", + "tsconfig.json.compilerOptions.noEmitOnError": "Не создавать выходные данные при обнаружении ошибок по проверке типа \"any\".", + "tsconfig.json.compilerOptions.noImplicitAny": "Предупреждать о выражениях и объявлениях, имеющих неявный тип \"any\".", + "tsconfig.json.compilerOptions.noLib": "Не включать файл библиотеки по умолчанию (lib.d.ts)", + "tsconfig.json.compilerOptions.out": "Сцепить и вывести выходные данные в одном файле.", + "tsconfig.json.compilerOptions.outDir": "Перенаправить структуру выходных данных в каталог.", + "tsconfig.json.compilerOptions.preserveConstEnums": "Не удалять объявления перечислений констант из созданного кода.", + "tsconfig.json.compilerOptions.removeComments": "Не создавать комментарии в выходных данных.", + "tsconfig.json.compilerOptions.rootDir": "Задает корневой каталог исходных файлов. Используйте для управления структурой выходного каталога с --outDir.", + "tsconfig.json.compilerOptions.sourceMap": "Создает соответствующий MAP-файл.", + "tsconfig.json.compilerOptions.sourceRoot": "Указывает расположение, в котором отладчик должен искать файлы TypeScript вместо исходных расположений.", + "tsconfig.json.compilerOptions.suppressImplicitAnyIndexErrors": "Подавлять ошибки noImplicitAny для объектов индексирования с отсутствующими сигнатурами индекса.", + "tsconfig.json.compilerOptions.target": "Указать целевую версию ECMAScript: \"ES3\" (по умолчанию), \"ES5\" или \"ES6\" (экспериментальная).", + "tsconfig.json.files": "Если свойство \"files\" отсутствует в tsconfig.json, компилятор по умолчанию включает все файлы в содержащем каталоге и подкаталогах. Когда свойство \"files\" указано, включаются только эти файлы.", + "tsconfig.json.title": "Схема JSON для файла конфигурации компилятора TypeScript" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/json/common/parser/jsonParser.i18n.json b/i18n/rus/src/vs/languages/json/common/parser/jsonParser.i18n.json new file mode 100644 index 00000000000..fe8e62e71d5 --- /dev/null +++ b/i18n/rus/src/vs/languages/json/common/parser/jsonParser.i18n.json @@ -0,0 +1,44 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ColonExpected": "Ожидается двоеточие", + "DisallowedExtraPropWarning": "Свойство {0} запрещено", + "DoubleQuotesExpected": "Ключи свойств должны быть заключены в двойные кавычки", + "DuplicateKeyWarning": "Дублирующийся ключ объекта", + "End of file expected": "Ожидается конец файла", + "ExpectedCloseBrace": "Ожидается запятая или закрывающая фигурная скобка.", + "ExpectedCloseBracket": "Ожидается запятая или закрывающая скобка.", + "Invalid symbol": "Ожидается JSON-объект, массив или литерал", + "InvalidEscapeCharacter": "Недопустимый escape-символ в строке", + "InvalidNumberFormat": "Недопустимый числовой формат", + "InvalidUnicode": "Недопустимая последовательность Юникода в строке", + "MaxPropWarning": "У объекта больше свойств, чем предельно допустимо ({0})", + "MinPropWarning": "Объект имеет меньше свойств, чем требуется ({0})", + "MissingRequiredPropWarning": "Отсутствующее свойство \"{0}\"", + "PropertyExpected": "Ожидалось свойство", + "RequiredDependentPropWarning": "В объекте отсутствует свойство {0}, требуемое свойством {1}", + "UnexpectedEndOfComment": "Непредвиденное окончание комментария", + "UnexpectedEndOfNumber": "Непредвиденное окончание числа", + "UnexpectedEndOfString": "Непредвиденное окончание строки", + "ValueExpected": "Ожидаемое значение", + "additionalItemsWarning": "Согласно схеме, в массиве слишком много элементов. Ожидаемое количество - не более {0}", + "enumWarning": "Значение не является допустимым. Допустимые значения: {0}", + "exclusiveMaximumWarning": "Значение превышает эксклюзивный максимум {0}", + "exclusiveMinimumWarning": "Значение ниже эксклюзивного минимума {0}", + "maxItemsWarning": "В массиве слишком много элементов. Ожидаемое количество - не более {0}", + "maxLengthWarning": "Строка короче максимальной длины", + "maximumWarning": "Значение превышает максимум, {0}", + "minItemsWarning": "В массиве слишком мало элементов. Ожидаемое количество - не менее {0}", + "minLengthWarning": "Строка короче минимальной длины", + "minimumWarning": "Значение меньше минимума, {0}", + "multipleOfWarning": "Значение не делится на {0}", + "notSchemaWarning": "Соответствует неразрешенной схеме.", + "oneOfWarning": "Соответствует нескольким схемам, хотя достаточно, чтобы проверку прошла только одна.", + "patternWarning": "Строка не соответствует шаблону \"{0}\"", + "typeArrayMismatchWarning": "Неверный тип. Ожидаемый тип - один из {0}", + "typeMismatchWarning": "Неверный тип. Ожидаемый тип: \"{0}\"", + "uniqueItemsWarning": "Массив дублирующихся единиц" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/less/common/less.contribution.i18n.json b/i18n/rus/src/vs/languages/less/common/less.contribution.i18n.json new file mode 100644 index 00000000000..027a3650f2a --- /dev/null +++ b/i18n/rus/src/vs/languages/less/common/less.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "lessConfigurationTitle": "Конфигурация LESS", + "lessLint": "Управляет проверкой LESS и серьезностью проблем." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/less/common/services/intelliSense.i18n.json b/i18n/rus/src/vs/languages/less/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..33eafbb8c26 --- /dev/null +++ b/i18n/rus/src/vs/languages/less/common/services/intelliSense.i18n.json @@ -0,0 +1,60 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "less.builtin.abs": "абсолютная величина числа", + "less.builtin.acos": "арккосинус — обратная функция к косинусу", + "less.builtin.alpha": "возвращает канал \"альфа\" для \"@color\"", + "less.builtin.argb": "создает #AARRGGBB", + "less.builtin.asin": "арксинус — обратная функция к синусу", + "less.builtin.atan": "арктангенс — обратная функция к тангенсу", + "less.builtin.blue": "возвращает канал \"синий\" для \"@color\"", + "less.builtin.ceil": "округляет до целого числа", + "less.builtin.color": "анализирует строку и преобразовывает в цвет", + "less.builtin.contrast": "вернуть значение \"@darkcolor\", если значение \"@color1\" > 43 % яркости, иначе вернуть значение \"@lightcolor\"; см. примечания", + "less.builtin.convert": "конвертирует число из одного типа в другой", + "less.builtin.cos": "косинус", + "less.builtin.darken": "вернуть \"@color\" на 10 % темнее", + "less.builtin.data-uri": "внедряет ресурс и использует для перехода адрес \"url()\"", + "less.builtin.desaturate": "вернуть \"@color\" со значением насыщенности меньше на 10 %", + "less.builtin.e": "экранировать содержимое строки", + "less.builtin.escape": "URL-адрес кодирует строку", + "less.builtin.extract": "возвращает значение для определенной позиции в списке", + "less.builtin.fade": "вернуть \"@color\" со значением прозрачности в 50 %", + "less.builtin.fadein": "вернуть \"@color\" со значением прозрачности меньше на 10 %", + "less.builtin.fadeout": "вернуть \"@color\" со значением прозрачности больше на 10 %", + "less.builtin.floor": "округляет в меньшую сторону до целого числа", + "less.builtin.green": "возвращает канал \"зеленый\" для \"@color\"", + "less.builtin.greyscale": "возвращает серый, 100 % ненасыщенный цвет", + "less.builtin.hsl": "создает цвет", + "less.builtin.hsla": "создает цвет", + "less.builtin.hsv": "создает цвет", + "less.builtin.hsva": "создает цвет", + "less.builtin.hsvhue": "возвращает канал \"оттенок\" для \"@color\" в пространстве HSV", + "less.builtin.hsvsaturation": "возвращает канал \"насыщенность\" для \"@color\" в пространстве HSV", + "less.builtin.hsvvalue": "возвращает канал \"значение\" для \"@color\" в пространстве HSV", + "less.builtin.hue": "возвращает канал \"оттенок\" для \"@color\" в пространстве HSL", + "less.builtin.length": "возвращает число элементов в списке значений", + "less.builtin.lighten": "вернуть \"@color\" на 10 % светлее", + "less.builtin.lightness": "возвращает канал \"освещенность\" для \"@color\" в пространстве HSL", + "less.builtin.luma": "возвращает значение \"яркость\" (сенсорная яркость) для \"@color\"", + "less.builtin.max": "возвращает наименьшее из одного или нескольких значений", + "less.builtin.min": "возвращает наименьшее из одного или нескольких значений", + "less.builtin.mix": "вернуть сочетание \"@color1\" и \"@color2\"", + "less.builtin.mod": "остаток от деления первого аргумента на второй", + "less.builtin.percentage": "преобразовывает в процентное значение, например, 0.5 > 50 %", + "less.builtin.pi": "возвращает число пи", + "less.builtin.pow": "первый аргумент, возведенный в степень, указанную вторым аргументом", + "less.builtin.red": "возвращает канал \"красный\" для \"@color\"", + "less.builtin.replace": "замена строки", + "less.builtin.round": "округляет число до указанного количества разрядов", + "less.builtin.saturate": "вернуть \"@color\" со значением насыщенности больше на 10 %", + "less.builtin.saturation": "возвращает канал \"насыщенность\" для \"@color\" в пространстве HSL", + "less.builtin.sin": "синус", + "less.builtin.spin": "вернуть \"@color\" со значением оттенка больше на 10 градусов", + "less.builtin.sqrt": "вычисляет квадратный корень числа", + "less.builtin.tan": "тангенс", + "less.builtin.unit": "удаление или изменение единицы измерения" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/markdown/common/markdown.contribution.i18n.json b/i18n/rus/src/vs/languages/markdown/common/markdown.contribution.i18n.json new file mode 100644 index 00000000000..098355309a3 --- /dev/null +++ b/i18n/rus/src/vs/languages/markdown/common/markdown.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "markdownConfigurationTitle": "Конфигурация предварительного просмотра markdown", + "styles": "Список URL-адресов или локальных путей к стилям CSS для использования в предварительном просмотре markdown." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/sass/common/parser/sassErrors.i18n.json b/i18n/rus/src/vs/languages/sass/common/parser/sassErrors.i18n.json new file mode 100644 index 00000000000..171030a05fe --- /dev/null +++ b/i18n/rus/src/vs/languages/sass/common/parser/sassErrors.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expected.from": "ожидается \"from\"", + "expected.in": "Ожидается \"in\"", + "expected.through": "ожидается \"through\" или \"to\"" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/sass/common/sass.contribution.i18n.json b/i18n/rus/src/vs/languages/sass/common/sass.contribution.i18n.json new file mode 100644 index 00000000000..dd4432a314b --- /dev/null +++ b/i18n/rus/src/vs/languages/sass/common/sass.contribution.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sassConfigurationTitle": "Конфигурация SASS", + "sassLint": "Управляет проверкой SASS и серьезностью проблем." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/sass/common/services/intelliSense.i18n.json b/i18n/rus/src/vs/languages/sass/common/services/intelliSense.i18n.json new file mode 100644 index 00000000000..db0d98f2718 --- /dev/null +++ b/i18n/rus/src/vs/languages/sass/common/services/intelliSense.i18n.json @@ -0,0 +1,81 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "sass.builtin.abs": "Возвращает абсолютную величину числа.", + "sass.builtin.adjust-color": "Увеличивает или уменьшает значение одного или нескольких компонентов цвета.", + "sass.builtin.adjust-hue": "Изменяет оттенок цвета.", + "sass.builtin.alpha": "Возвращает значение компонента \"непрозрачность\" цвета.", + "sass.builtin.append": "Добавляет одно значение в конец списка.", + "sass.builtin.blue": "Возвращает значение компонента \"синий\" цвета.", + "sass.builtin.call": "Динамически вызывает функцию Sass.", + "sass.builtin.ceil": "Округляет число до следующего целого числа.", + "sass.builtin.change-color": "Изменяет одно или несколько свойств цвета.", + "sass.builtin.comparable": "Показывает, можно ли сложить, вычесть или сравнить два числа.", + "sass.builtin.complement": "Возвращает дополнение цвета.", + "sass.builtin.darken": "Делает цвет темнее.", + "sass.builtin.desaturate": "Делает цвет менее насыщенным.", + "sass.builtin.fade-in": "Делает цвет более непрозрачным.", + "sass.builtin.feature-exists": "Показывает, существует ли конкретная функция в текущей среде выполнения Sass.", + "sass.builtin.floor": "Округляет число до наименьшего предыдущего целого числа.", + "sass.builtin.function-exists": "Показывает, существует ли функция с указанным именем.", + "sass.builtin.global-variable-exists": "Показывает, существует ли переменная с указанным именем в глобальной области.", + "sass.builtin.grayscale": "Конвертирует цвет в оттенок серого.", + "sass.builtin.green": "Возвращает компонент \"зеленый\" цвета.", + "sass.builtin.hue": "Возвращает компонент \"оттенок\" цвета.", + "sass.builtin.ie-hex-str": "Конвертирует цвет в формат, распознаваемый фильтрами IE.", + "sass.builtin.index": "Возвращает позицию значения в списке.", + "sass.builtin.inspect": "Возвращает строковое представление значения, как оно было бы представлено в Sass.", + "sass.builtin.invert": "Возвращает инверсию цвета.", + "sass.builtin.is-superselector": "Показывает, соответствует ли $super всем элементам, как и $sub, или большему числу элементов.", + "sass.builtin.join": "Объединяет два списка в один.", + "sass.builtin.keywords": "Возвращает ключевые слова, переданные функции, которая использует переменные аргументы.", + "sass.builtin.length": "Возвращает длину списка.", + "sass.builtin.lighten": "Делает цвет светлее.", + "sass.builtin.lightness": "Возвращает компонент \"освещенность\" цвета.", + "sass.builtin.list-separator": "Возвращает разделитель элементов списка.", + "sass.builtin.map-get": "Возвращает значение карты, связанное с указанным ключом.", + "sass.builtin.map-has-key": "Показывает, имеет ли карта значение, связанное с указанным ключом.", + "sass.builtin.map-keys": "Возвращает список всех ключей карты.", + "sass.builtin.map-merge": "Осуществляет слияние двух карт в одну новую.", + "sass.builtin.map-remove": "Возвращает новую карту с удаленными ключами.", + "sass.builtin.map-values": "Возвращает список всех значений карты.", + "sass.builtin.max": "Находит максимальное из нескольких чисел.", + "sass.builtin.min": "Находит минимальное из нескольких чисел.", + "sass.builtin.mix": "Совмещает два цвета.", + "sass.builtin.mixin-exists": "Показывает, существует ли сочетание с указанным именем.", + "sass.builtin.nth": "Возвращает определенный элемент в списке.", + "sass.builtin.opacify": "Делает цвет более непрозрачным.", + "sass.builtin.percentage": "Конвертирует безразмерное число в проценты.", + "sass.builtin.quote": "Добавляет кавычки к строке.", + "sass.builtin.random": "Возвращает случайное число.", + "sass.builtin.red": "Возвращает компонент \"красный\" цвета.", + "sass.builtin.rgba": "Изменяет компонент \"альфа\" цвета.", + "sass.builtin.round": "Округляет число до ближайшего целого числа.", + "sass.builtin.saturate": "Делает цвет более насыщенным.", + "sass.builtin.saturation": "Возвращает компонент \"насыщенность\" цвета.", + "sass.builtin.scale-color": "Плавно масштабирует одно или несколько свойств цвета.", + "sass.builtin.selector-append": "Присоединяет селекторы друг к другу без пробелов между ними.", + "sass.builtin.selector-extend": "Расширяет $extendee с помощью $extender в $selector.", + "sass.builtin.selector-nest": "Вкладывает селектор один под другой, как они были бы вложены в таблице стилей.", + "sass.builtin.selector-parse": "Анализирует селектор в формате, возвращенном &.", + "sass.builtin.selector-replace": "Заменяет исходный $original на $replacement в $selector.", + "sass.builtin.selector-unify": "Объединяет два селектора в один, который соответствует тем же элементам, что и два исходных селектора.", + "sass.builtin.set-nth": "Заменяет n-ный элемент в списке.", + "sass.builtin.simple-selectors": "Возвращает простые селекторы, которые включены в составной селектор.", + "sass.builtin.str-index": "Возвращает индекс первого вхождения подстроки $substring в строке $string.", + "sass.builtin.str-insert": "Вставляет $insert в строку $string в место, обозначенное индексом $index.", + "sass.builtin.str-length": "Возвращает число знаков в строке.", + "sass.builtin.str-slice": "Извлекает подстроку из строки $string.", + "sass.builtin.to-lower-case": "Конвертирует строку с использованием нижнего регистра.", + "sass.builtin.to-upper-case": "Конвертирует строку с использованием верхнего регистра.", + "sass.builtin.transparentize": "Делает цвет более прозрачным.", + "sass.builtin.type-of": "Возвращает тип значения.", + "sass.builtin.unit": "Возвращает единицу измерения (единицы измерения), связанные с числом.", + "sass.builtin.unitless": "Показывает, имеет ли число единицы измерения.", + "sass.builtin.unquote": "Удаляет кавычки из строки.", + "sass.builtin.variable-exists": "Показывает, существует ли переменная с указанным именем в текущей области.", + "sass.builtin.zip": "Объединяет несколько списков в один многомерный список." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/typescript/common/features/quickFix.i18n.json b/i18n/rus/src/vs/languages/typescript/common/features/quickFix.i18n.json new file mode 100644 index 00000000000..cc8970b69b4 --- /dev/null +++ b/i18n/rus/src/vs/languages/typescript/common/features/quickFix.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "typescript.quickfix.addAsGlobal": "Пометить свойство \"{0}\" как глобальное", + "typescript.quickfix.rename": "Переименовать в \"{0}\"", + "typescript.quickfix.typeDefinitions": "Скачать определение типа {0}" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/typescript/common/lint/lint.i18n.json b/i18n/rus/src/vs/languages/typescript/common/lint/lint.i18n.json new file mode 100644 index 00000000000..2ec356add58 --- /dev/null +++ b/i18n/rus/src/vs/languages/typescript/common/lint/lint.i18n.json @@ -0,0 +1,24 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "javascript.comparisonOperatorNotStrict": "Используйте \"!==\" и \"===\" вместо \"!=\" и \"==\".", + "javascript.functionInsideLoop": "Функция внутри цикла.", + "javascript.missingSemicolon": "Отсутствующая точка с запятой.", + "javascript.newOnLowercaseFunctions": "Функция с именем в нижнем регистре, используемая в качестве конструктора.", + "javascript.reservedKeyword": "Не используйте зарезервированные ключевые слова.", + "javascript.semicolonInsteadOfBlock": "Точка с запятой вместо блока.", + "javascript.typeofCannotBeCompared": "Не является ожидаемым выводом оператора typeof.", + "javascript.typescriptSpecific": "Не используйте языковую конструкцию, характерную для TypeScript, в JavaScript.", + "layout.curlyBracketsMustNotBeOmitted": "Используйте как можно меньше фигурных скобок.", + "layout.emptyblock": "Пустой блок должен сопровождаться комментарием.", + "typescript.looksLikeTripleSlash": "Имелось в виду \"/// \"?", + "typescript.missingReturnType": "Отсутствующий возвращаемый тип.", + "typescript.unusedFunction": "Неиспользуемая локальная функция.", + "typescript.unusedImport": "Неиспользуемый импорт.", + "typescript.unusedLocalVariable": "Неиспользуемая локальная переменная.", + "typescript.unusedPrivateMember": "Неиспользуемый частный член.", + "typescript.variableUsedBeforeDeclared": "Переменная сначала используется, а затем объявляется." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/typescript/common/typescript.contribution.i18n.json b/i18n/rus/src/vs/languages/typescript/common/typescript.contribution.i18n.json new file mode 100644 index 00000000000..0e1ac1c38fd --- /dev/null +++ b/i18n/rus/src/vs/languages/typescript/common/typescript.contribution.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "allwaysAllWords": "Всегда включать все слова из текущего документа.", + "baseUrl": "Позволяет настроить базовый URL-адрес, используемый для разрешения ссылок на модуль (http://requirejs.org/docs/api.html#config-baseUrl). Этот параметр применим только к проектам, использующим определение асинхронных модулей (\"module\": \"amd\").", + "compilationSettings": "Управляет механизмом проверки TypeScript.", + "lint": "Управляет разными аспектами проверки.", + "lint.comparisonOperatorsNotStrict": "Используйте \"!==\" и \"===\" вместо \"!=\" и \"==\".", + "lint.curlyBracketsMustNotBeOmitted": "Используйте как можно меньше фигурных скобок.", + "lint.emptyBlocksWithoutComment": "Пустой блок должен сопровождаться комментарием.", + "lint.functionsInsideLoops": "Функция внутри цикла.", + "lint.functionsWithoutReturnType": "Используйте как можно меньше аннотаций возвращаемого типа для функций.", + "lint.missingSemicolon": "Отсутствующая точка с запятой.", + "lint.newOnLowercaseFunctions": "Функция с именем в нижнем регистре, используемая в качестве конструктора.", + "lint.reservedKeywords": "Не используйте зарезервированные ключевые слова.", + "lint.semicolonsInsteadOfBlocks": "Точка с запятой вместо блока.", + "lint.tripleSlashReferenceAlike": "Ищет ссылки с тройной косой чертой, содержащие опечатки.", + "lint.typeScriptSpecifics": "Не используйте языковую конструкцию, характерную для TypeScript, в JavaScript.", + "lint.unknownTypeOfResults": "Не является ожидаемым выводом оператора typeof.", + "lint.unusedFunctions": "Неиспользуемая локальная функция.", + "lint.unusedMembers": "Неиспользуемый частный член.", + "lint.unusedVariables": "Неиспользуемая локальная переменная.", + "module": "Задает используемую модульную систему.", + "noImplicitAny": "Явно примените объявления любого типа.", + "noLib": "Не используйте ввод с клавиатуры в DOM и браузерной среде.", + "scope": "При наличии нескольких проверяющих параметров определяет вложенную папку, к которой они применяются.", + "suggestSettings": "Управляет работой TypeScript IntelliSense.", + "target": "Задает используемую версию ECMA-Script.", + "tsConfigurationTitle": "Конфигурация TypeScript", + "useCodeSnippetsOnMethodSuggest": "Дополните функции их параметрической подписью." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/languages/typescript/common/typescriptMode.i18n.json b/i18n/rus/src/vs/languages/typescript/common/typescriptMode.i18n.json new file mode 100644 index 00000000000..49a3242bd37 --- /dev/null +++ b/i18n/rus/src/vs/languages/typescript/common/typescriptMode.i18n.json @@ -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. +{ + "err.tooMuchData": "Слишком много исходных файлов JavaScript для кода VS. Рассмотрите возможность использования exclude-property в jsconfig.json." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/platform/configuration/common/configurationRegistry.i18n.json b/i18n/rus/src/vs/platform/configuration/common/configurationRegistry.i18n.json new file mode 100644 index 00000000000..dfd189e4344 --- /dev/null +++ b/i18n/rus/src/vs/platform/configuration/common/configurationRegistry.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "invalid.properties": "configuration.properties должно быть объектом", + "invalid.title": "configuration.title должно быть строкой", + "invalid.type": "Если тип configuration.type задан, то он должен иметь значение object", + "vscode.extension.contributes.configuration": "Добавляет параметры конфигурации.", + "vscode.extension.contributes.configuration.properties": "Описание свойств конфигурации.", + "vscode.extension.contributes.configuration.title": "Краткая сводка параметров. Эта метка будет использоваться в файле параметров в качестве разделяющего комментария." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json b/i18n/rus/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json new file mode 100644 index 00000000000..854c64cc05d --- /dev/null +++ b/i18n/rus/src/vs/platform/keybinding/browser/keybindingServiceImpl.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "first.chord": "Была нажата клавиша ({0}). Ожидание нажатия второй клавиши сочетания...", + "missing.chord": "Сочетание клавиш ({0} и {1}) не является командой.", + "unboundCommands": "Доступные команды: " +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/electron-main/main.i18n.json b/i18n/rus/src/vs/workbench/electron-main/main.i18n.json new file mode 100644 index 00000000000..6443e6bb8a2 --- /dev/null +++ b/i18n/rus/src/vs/workbench/electron-main/main.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "expired": "Срок действия истек", + "expiredDetail": "Срок действия этой предварительной версии {0} истек.\n\nЧтобы скачать текущую версию, посетите сайт {1}.", + "newWindow": "Новое окно", + "openWebSite": "Открыть веб-сайт", + "quit": "Выйти" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json b/i18n/rus/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json new file mode 100644 index 00000000000..25057345590 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/execution/electron-browser/terminal.contribution.i18n.json @@ -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. +{ + "globalConsoleActionMacLinux": "Открыть новый терминал", + "globalConsoleActionWin": "Открыть новую командную строку", + "scopedConsoleActionMacLinux": "Открыть в терминале", + "scopedConsoleActionWin": "Открыть в командной строке" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/feedback/browser/feedback.i18n.json b/i18n/rus/src/vs/workbench/parts/feedback/browser/feedback.i18n.json new file mode 100644 index 00000000000..eb6451d3c5d --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/feedback/browser/feedback.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "character left": "символ слева", + "characters left": "символов слева", + "commentsHeader": "Комментарии", + "feedbackSending": "Отправляется", + "feedbackSendingError": "Повторите попытку", + "feedbackSent": "Спасибо", + "frownCaption": "Плохо", + "label.sendASmile": "Отправьте нам твит со своим отзывом.", + "other ways to contact us": "Другие способы связаться с нами", + "request a missing feature": "Запросить отсутствующую возможность", + "sendFeedback": "Отправить твит с отзывом", + "sentiment": "Каковы ваши впечатления?", + "smileCaption": "Хорошо", + "submit a bug": "Сообщить об ошибке", + "tell us why?": "Расскажите нам о причинах", + "tweet": "Твит" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/files/browser/fileActions.i18n.json b/i18n/rus/src/vs/workbench/parts/files/browser/fileActions.i18n.json new file mode 100644 index 00000000000..7fa0311eda6 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -0,0 +1,62 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "addToWorkingFiles": "Добавить активный файл в рабочие файлы", + "closeAllFiles": "Закрыть все файлы", + "closeAllLabel": "Закрыть все файлы", + "closeFile": "Закрыть файл", + "closeLabel": "Закрыть файл", + "closeOtherFiles": "Закрыть другие файлы", + "closeOtherLabel": "Закрыть другие файлы", + "compareFiles": "Сравнить файлы", + "compareLabels": "{0} ↔ {1}", + "compareSource": "Выбрать для сравнения", + "compareWith": "Сравнить с \"{0}\"", + "confirmDeleteMessageFile": "Вы действительно хотите удалить \"{0}\" без возможности восстановления?", + "confirmDeleteMessageFolder": "Вы действительно хотите удалить папку \"{0}\" и ее содержимое без возможности восстановления?", + "confirmMoveTrashMessageFile": "Вы действительно хотите удалить \"{0}\"?", + "confirmMoveTrashMessageFolder": "Вы действительно хотите удалить папку \"{0}\" и ее содержимое?", + "confirmOverwrite": "Файл или папка с таким именем уже существует в конечной папке. Заменить их?", + "copyFile": "Копировать", + "createNewFile": "Создать файл", + "createNewFolder": "Создать папку", + "delete": "Удалить", + "deleteButtonLabel": "&&Удалить", + "deleteButtonLabelRecycleBin": "&&Переместить в корзину", + "deleteButtonLabelTrash": "&&Переместить в удаленные", + "duplicateFile": "Дублировать", + "emptyFileNameError": "Необходимо указать имя файла или папки.", + "fileNameExistsError": "Файл или папка **{0}** уже существует в данном расположении. Выберите другое имя.", + "filePathTooLongError": "Из-за использования имени **{0}** путь слишком длинный. Выберите более короткое имя.", + "focusWorkingFiles": "Фокус на рабочие файлы", + "globalCompareFile": "Сравнить активный файл с...", + "importFiles": "Импорт файлов", + "invalidFileNameError": "Имя **{0}** недопустимо для файла или папки. Выберите другое имя.", + "irreversible": "Это действие необратимо!", + "newFile": "Создать файл", + "newFolder": "Создать папку", + "noFileOpen": "В настоящее время нет открытого файла, который можно было бы закрыть.", + "noWorkingFiles": "В настоящее время нет рабочих файлов.", + "openFileToAdd": "Чтобы добавить файл в рабочие файлы, сначала откройте его.", + "openFileToCompare": "Чтобы сравнить файл с другим файлом, сначала откройте его.", + "openNextWorkingFile": "Открыть следующий рабочий файл", + "openPreviousWorkingFile": "Открыть предыдущий рабочий файл", + "openToSide": "Открыть сбоку", + "pasteFile": "Вставить", + "permDelete": "Удалить навсегда", + "refresh": "Обновить", + "rename": "Переименовать", + "replaceButtonLabel": "&&Заменить", + "retry": "Повторить попытку", + "revert": "Отменить изменения в файле", + "save": "Сохранить", + "saveAll": "Сохранить все", + "saveFiles": "Сохранить файлы с изменениями", + "unableToFileToCompare": "Выбранный файл нельзя сравнить с \"{0}\".", + "undoBin": "Вы можете выполнить восстановление из корзины.", + "undoTrash": "Вы можете выполнить восстановление из корзины.", + "warningFileDirty": "В данный момент файл \"{0}\" сохраняется, повторите попытку позднее." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json b/i18n/rus/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json new file mode 100644 index 00000000000..55364270a75 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/git/browser/gitActionItems.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "createNewBranch": "Создать новую ветвь", + "dupeBranchName": "Имя ветви уже существует.", + "invalidBranchName": "Недопустимое имя ветви." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json b/i18n/rus/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json new file mode 100644 index 00000000000..ae2b418366a --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/git/browser/gitActions.contribution.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "git": "GIT", + "openChange": "Открыть изменение", + "openInEditor": "Переключиться в представление редактора", + "stageSelectedLines": "Промежуточно сохранить выделенные строки", + "switchToChangesView": "Переключиться в представление изменений" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/rus/src/vs/workbench/parts/git/browser/gitActions.i18n.json new file mode 100644 index 00000000000..2cc689b1f87 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -0,0 +1,51 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "authFailed": "Сбой аутентификации для команды git remote.", + "branch": "Ветвь", + "branch2": "Ветвь", + "checkout": "Извлечь", + "cleanChangesLabel": "&&Отменить изменения", + "commitAll": "Зафиксировать все", + "commitAll2": "Зафиксировать все", + "commitStaged": "Зафиксировать промежуточно сохраненные изменения", + "commitStaged2": "Зафиксировать промежуточно сохраненные изменения", + "confirmPublishMessage": "Действительно опубликовать \"{0}\" в \"{1}\"?", + "confirmPublishMessageButton": "&&Опубликовать", + "confirmUndo": "Действительно отменить изменения в {0}?", + "confirmUndoAllMultiple": "Имеются изменения в файлах ({0}), промежуточное сохранение которых не выполнено.\n\nЭто действие необратимо!", + "confirmUndoAllOne": "Имеются изменения в файле ({0}), промежуточное сохранение которых не выполнено.\n\nЭто действие необратимо!", + "confirmUndoMessage": "Действительно отменить все изменения?", + "currentBranch": "Текущая ветвь \"{0}\" обновлена.", + "currentBranchPlural": "Текущая ветвь \"{0}\" находится на {1} фиксаций до и {2} фиксаций после \"{3}\".", + "currentBranchPluralSingle": "Текущая ветвь \"{0}\" находится на {1} фиксаций до и {2} фиксаций после \"{3}\".", + "currentBranchSingle": "Текущая ветвь \"{0}\" находится на {1} фиксаций до и {2} фиксаций после \"{3}\".", + "currentBranchSinglePlural": "Текущая ветвь \"{0}\" находится на {1} фиксаций до и {2} фиксаций после \"{3}\".", + "currentlyDetached": "Нельзя выполнить синхронизацию в отключенном режиме.", + "dirtyChanges": "Зафиксируйте, отмените или создайте временную копию изменений перед синхронизацией.", + "dirtyTreeCheckout": "Не удается извлечь. Сначала нужно зафиксировать работу или промежуточно сохранить ее.", + "dirtyTreePull": "Не удается запросить. Сначала нужно зафиксировать работу или промежуточно сохранить ее.", + "init": "Инициализация", + "irreversible": "Это действие необратимо!", + "noUpstream": "Для текущей ветви \"{0}\" не настроена восходящая ветвь.", + "openChange": "Открыть изменение", + "openFile": "Открыть файл", + "publish": "Опубликовать", + "publishPickMessage": "Выберите удаленный сервер, на котором нужно опубликовать ветвь \"{0}\":", + "pull": "Получить", + "pullWithRebase": "Получить (переместить изменения из одной ветви в другую)", + "push": "Отправить", + "refresh": "Обновить", + "stageAllChanges": "Промежуточно сохранить все", + "stageChanges": "Промежуточно сохранить", + "sync": "Синхронизация", + "synchronizing": "Идет синхронизация...", + "undoAllChanges": "Очистить все", + "undoChanges": "Очистить", + "undoLastCommit": "Отменить последнюю фиксацию", + "unstage": "Отменить промежуточное сохранение", + "unstageAllChanges": "Отменить промежуточное сохранение всего" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/git/browser/gitServices.i18n.json b/i18n/rus/src/vs/workbench/parts/git/browser/gitServices.i18n.json new file mode 100644 index 00000000000..0f7536d459a --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -0,0 +1,21 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "badConfigFile": "GIT {0}", + "cancel": "Отмена", + "cantOpen": "Невозможно открыть этот ресурс GIT.", + "cantOpenResource": "Невозможно открыть этот ресурс GIT.", + "changesFromIndex": "{0} — изменения в индексе", + "changesFromTree": "{0} — изменения в {1}", + "checkNativeConsole": "Ошибка при выполнении операции GIT. Проверьте выходные данные или используйте консоль для проверки состояния репозитория.", + "configureUsernameEmail": "Настройте ваши имя пользователя и электронную почту GIT.", + "gitIndexChanges": "{0} — изменения в индексе", + "gitIndexChangesRenamed": "{0} — переименовано — изменения в индексе", + "gitMergeChanges": "{0} — объединить изменения", + "showOutput": "Показать выходные данные", + "unmergedChanges": "Перед сохранением необходимо сначала разрешить необъединенные изменения.", + "workingTreeChanges": "{0} — изменения в рабочем дереве" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json b/i18n/rus/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json new file mode 100644 index 00000000000..ccbe2d34714 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/git/browser/views/changes/changesView.i18n.json @@ -0,0 +1,13 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "commitMessage": "Сообщение (чтобы зафиксировать, нажмите {0})", + "commitMessageAriaLabel": "GIT: введите сообщение фиксации и нажмите {0}, чтобы выполнить фиксацию", + "needMessage": "Предоставьте сообщение фиксации. В любом случае можно нажать кнопку **{0}**, чтобы зафиксировать изменения. При наличии промежуточно сохраненных изменений зафиксированы будут только они. В противном случае фиксируются все изменения.", + "nothingToCommit": "Как только появятся изменения для фиксации, введите сообщение фиксации и нажмите кнопку **{0}**, чтобы зафиксировать изменения. При наличии промежуточно сохраненных изменений зафиксированы будут только они. В противном случае фиксируются все изменения.", + "showOutput": "Показать выходные данные GIT", + "treeAriaLabel": "Представление изменений GIT" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json b/i18n/rus/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json new file mode 100644 index 00000000000..254628765e8 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/git/browser/views/changes/changesViewer.i18n.json @@ -0,0 +1,38 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "added-char": "A", + "allChanges": "Изменения", + "ariaLabelChanges": "Изменения, GIT", + "ariaLabelMerge": "Объединение, GIT", + "ariaLabelStagedChanges": "Промежуточно сохраненные изменения, GIT", + "copied-char": "C", + "deleted-char": "D", + "fileStatusAriaLabel": "Файл {0} в папке {1} имеет состояние {2}, GIT", + "ignored-char": "!", + "mergeChanges": "Объединить изменения", + "modified-char": "M", + "outsideOfWorkspace": "Этот файл находится за пределами текущей рабочей области.", + "renamed-char": "R", + "stagedChanges": "Промежуточно сохраненные изменения", + "title-conflict-added-by-them": "Конфликт: добавлено ими", + "title-conflict-added-by-us": "Конфликт: добавлено нами", + "title-conflict-both-added": "Конфликт: оба добавлены", + "title-conflict-both-deleted": "Конфликт: оба удалены", + "title-conflict-both-modified": "Конфликт: оба изменены", + "title-conflict-deleted-by-them": "Конфликт: удалено ими", + "title-conflict-deleted-by-us": "Конфликт: удалено нами", + "title-deleted": "Удалено", + "title-ignored": "Проигнорировано", + "title-index-added": "Добавлено в индекс", + "title-index-copied": "Скопировано в индекс", + "title-index-deleted": "Удалено из индекса", + "title-index-modified": "Изменено в индексе", + "title-index-renamed": "Переименовано в индексе", + "title-modified": "Изменено", + "title-untracked": "Не отслеживается", + "untracked-char": "U" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json b/i18n/rus/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json new file mode 100644 index 00000000000..797e2e14691 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/markdown/browser/markdownActions.i18n.json @@ -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. +{ + "markdownPreviewNoFile": "Для предварительного просмотра сначала откройте файл Markdown.", + "openPreview": "Открыть предварительный просмотр", + "openPreviewSideBySide": "Открыть область предварительного просмотра сбоку", + "toggleMarkdownPreview": "Переключить предварительный просмотр" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/output/browser/outputActions.i18n.json b/i18n/rus/src/vs/workbench/parts/output/browser/outputActions.i18n.json new file mode 100644 index 00000000000..0f077a9b1f2 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/output/browser/outputActions.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "clearOutput": "Очистить выходные данные", + "switchToOutput.label": "Переключиться на выходные данные", + "toggleOutput": "Переключить выходные данные" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json b/i18n/rus/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json new file mode 100644 index 00000000000..ab858cdf68d --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/quickopen/browser/commandsHandler.i18n.json @@ -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. +{ + "QuickCommandsAction.label": "Показать команды редактора", + "actionNotEnabled": "Команда {0} не разрешена в текущем контексте.", + "canNotRun": "Выполнить команду {0} отсюда невозможно.", + "commandLabel": "{0}: {1}", + "entryAriaLabel": "{0}, команды", + "noCommandsMatching": "Нет соответствующих команд", + "showTriggerActions": "Показать все команды" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json b/i18n/rus/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json new file mode 100644 index 00000000000..911fa595a7b --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/quickopen/browser/gotoLineHandler.i18n.json @@ -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. +{ + "cannotRunGotoLine": "Чтобы перейти к строке, сначала откройте текстовый файл", + "gotoLine": "Перейти к строке...", + "gotoLineColumnLabel": "Перейти к строке {0} и столбцу {1}", + "gotoLineHandlerAriaLabel": "Введите номер строки, к которой нужно перейти.", + "gotoLineLabel": "Перейти к строке {0}", + "gotoLineLabelEmpty": "Введите номер строки для перехода", + "gotoLineLabelEmptyWithLimit": "Введите номер строки от 1 до {0} для перехода" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json b/i18n/rus/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json new file mode 100644 index 00000000000..a4f15a1ffb8 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/quickopen/browser/gotoSymbolHandler.i18n.json @@ -0,0 +1,34 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "_constructor": "конструкторы ({0})", + "array": "массивы ({0})", + "boolean": "логические значения ({0})", + "cannotRunGotoSymbol": "Чтобы перейти к символу, сначала откройте текстовый файл", + "cannotRunGotoSymbolInFile": "К сожалению, у нас нет символьной информации для файла", + "class": "классы ({0})", + "entryAriaLabel": "{0}, символы", + "enum": "перечисления ({0})", + "file": "файлы ({0})", + "function": "функции ({0})", + "gotoSymbol": "Перейти к символу...", + "gotoSymbolHandlerAriaLabel": "Введите, чтобы ограничить символы активного в настоящий момент редактора.", + "interface": "интерфейсы ({0})", + "key": "ключи ({0})", + "method": "методы ({0})", + "modules": "модули ({0})", + "namespace": "пространства имен ({0})", + "noSymbolsFound": "Символы не найдены", + "noSymbolsMatching": "Нет соответствующих символов", + "number": "числа ({0})", + "object": "объекты ({0})", + "package": "пакеты ({0})", + "property": "свойства ({0})", + "rule": "правила ({0})", + "string": "строки ({0})", + "symbols": "символы ({0})", + "variable": "переменные ({0})" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json b/i18n/rus/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json new file mode 100644 index 00000000000..ece0eee6ca2 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/quickopen/browser/helpHandler.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "editorCommands": "команды редактора", + "entryAriaLabel": "{0}, справка по средству выбора", + "globalCommands": "глобальные команды" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json b/i18n/rus/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json new file mode 100644 index 00000000000..c5af77410c6 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/search/browser/openAnythingHandler.i18n.json @@ -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. +{ + "fileAndTypeResults": "результаты файлов и символов" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json b/i18n/rus/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json new file mode 100644 index 00000000000..20c6ed60499 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/search/browser/openFileHandler.i18n.json @@ -0,0 +1,9 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "entryAriaLabel": "{0}, средство выбора файлов", + "searchResults": "результаты поиска" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json b/i18n/rus/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json new file mode 100644 index 00000000000..5706e8b0295 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/search/browser/openSymbolHandler.i18n.json @@ -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. +{ + "entryAriaLabel": "{0}, средство выбора символов", + "noSymbolsMatching": "Нет соответствующих символов", + "noSymbolsWithoutInput": "Введите запрос, чтобы найти символы", + "symbols": "результаты символов" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/search/browser/search.contribution.i18n.json b/i18n/rus/src/vs/workbench/parts/search/browser/search.contribution.i18n.json new file mode 100644 index 00000000000..cc3a0b57c76 --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/search/browser/search.contribution.i18n.json @@ -0,0 +1,18 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "exclude": "Настройте стандартные маски для исключения файлов и папок при поиске. Все стандартные маски наследуются от параметра file.exclude.", + "exclude.boolean": "Стандартная маска, соответствующая путям к файлам. Задайте значение true или false, чтобы включить или отключить маску.", + "exclude.when": "Дополнительная проверка элементов того же уровня соответствующего файла. Используйте $(basename) в качестве переменной для соответствующего имени файла.", + "findInFolder": "Найти в папке", + "name": "Поиск", + "openAnythingHandlerDescription": "Открыть файлы и символы по имени", + "openSymbolDescriptionNormal": "Открыть символ по имени", + "searchConfigurationTitle": "Конфигурация поиска", + "showSearchViewlet": "Показать средство поиска", + "showTriggerActions": "Показать все символы", + "view": "Просмотреть" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json b/i18n/rus/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json new file mode 100644 index 00000000000..518faeea3fe --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/search/browser/searchViewlet.i18n.json @@ -0,0 +1,45 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "ClearSearchResultsAction.label": "Очистить результаты поиска", + "CollapseAllAction.label": "Свернуть", + "ConfigureGlobalExclusionsAction.label": "Открыть параметры", + "RefreshAction.label": "Обновить", + "RemoveAction.label": "Удалить", + "SelectOrRemoveAction.removeLabel": "Удалить", + "SelectOrRemoveAction.selectLabel": "Выделить", + "ariaSearchResultsStatus": "Поиск вернул результатов: {0} в файлах: {1}", + "defaultLabel": "ввод", + "fileMatchAriaLabel": "Совпадений {0} в файле {1} в папке {2}, результат поиска", + "findInFolder": "Найти в папке", + "findPlaceHolder": "Нажмите клавишу ВВОД, чтобы выполнить поиск, или ESCAPE для отмены", + "globLabel": "{0}, когда {1}", + "global.searchScope.folders": "файлы, исключенные в параметрах", + "label.Search": "Поиск: введите условие поиска и нажмите клавишу ВВОД, чтобы выполнить поиск, или ESCAPE для отмены", + "label.excludes": "Шаблоны исключения из поиска", + "label.global.excludes": "Настроенные шаблоны исключения из поиска", + "label.includes": "Шаблоны включения в поиск", + "moreSearch": "Переключить сведения о поиске", + "noMatches": "нет совпадений", + "noResultsExcludes": "Результаты не найдены за исключением \"{0}\" — ", + "noResultsFound": "Результаты не найдены. Проверьте параметры настроенных исключений — ", + "noResultsIncludes": "Результаты в \"{0}\" не найдены — ", + "noResultsIncludesExcludes": "Не найдено результатов в \"{0}\", исключая \"{1}\", — ", + "openSettings.message": "Открыть параметры", + "patternDescription": "Использовать стандартные маски", + "patternHelpInclude": "Шаблон для сопоставления. Например, ****/*.js** соответствует всем файлам JavaScript, а **myFolder/**** соответствует этой папке со всеми дочерними элементами.\n\n**Ссылка**:\n***** соответствует 0 или более символов\n**?** соответствует 1 символу\n****** соответствует 0 или более каталогов\n**[a-z]** соответствует диапазону символов\n**{a,b}** соответствует любому из шаблонов", + "regexp.validationFailure": "Выражение сопоставляет все", + "rerunSearch.message": "Выполнить поиск еще раз", + "rerunSearchInAll.message": "Выполните поиск во всех файлах", + "searchCanceled": "Поиск был отменен до того, как были найдены какие-либо результаты — ", + "searchMatch": "Найдено {0} соответствие", + "searchMatches": "Найдено {0} соответствий", + "searchMaxResultsWarning": "Результирующий набор включает только подмножество всех соответствий. Чтобы уменьшить число результатов, сузьте условия поиска.", + "searchResultAria": "{0}, результат поиска", + "searchScope.excludes": "исключаемые файлы", + "searchScope.includes": "включаемые файлы", + "treeAriaLabel": "Результаты поиска" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/services/message/browser/messageService.i18n.json b/i18n/rus/src/vs/workbench/services/message/browser/messageService.i18n.json new file mode 100644 index 00000000000..3a0fb133ed0 --- /dev/null +++ b/i18n/rus/src/vs/workbench/services/message/browser/messageService.i18n.json @@ -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. +{ + "closeMessages": "Закрыть уведомления" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json b/i18n/rus/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json new file mode 100644 index 00000000000..a666b013047 --- /dev/null +++ b/i18n/rus/src/vs/workbench/services/thread/electron-browser/threadService.i18n.json @@ -0,0 +1,12 @@ +/*--------------------------------------------------------------------------------------------- + * 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. +{ + "pluginHostProcess.crash": "Узел расширения неожиданно завершил работу. Чтобы восстановить его, перезагрузите окно.", + "pluginHostProcess.error": "Ошибка от узла расширения: {0}", + "pluginHostProcess.startupFail": "Узел расширения не запустился через 10 секунд. Возможно, имеется проблема.", + "pluginHostProcess.startupFailDebug": "Узел расширения не запустился через 10 секунд. Возможно, его выполнение было остановлено в первой строке, и для продолжения его работы требуется отладчик.", + "reloadWindow": "Перезагрузить окно" +} \ No newline at end of file