diff --git a/i18n/chs/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json b/i18n/chs/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json index 7156d79dadc..ded02f2a8c0 100644 --- a/i18n/chs/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json +++ b/i18n/chs/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json @@ -5,7 +5,7 @@ // Do not edit this file. It is machine generated. { "assocDescriptionFile": "将所有匹配其文件名内的 glob 模式的文件映像到具有给定 ID 的语言。", - "assocDescriptionPath": "将所有匹配其完整路径内的 glob 模式的文件映像到具有给定 ID 的语言。", + "assocDescriptionPath": "将所有匹配其路径内绝对路径 glob 模式的文件映像到具有给定 ID 的语言。", "assocLabelFile": "带扩展名的文件", "assocLabelPath": "带路径的文件" } \ No newline at end of file diff --git a/i18n/chs/extensions/php/package.i18n.json b/i18n/chs/extensions/php/package.i18n.json new file mode 100644 index 00000000000..63a8fa85f3b --- /dev/null +++ b/i18n/chs/extensions/php/package.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. +{ + "configuration.title": "PHP 配置选项", + "configuration.validate.enable": "不管 php 验证是否已启用。", + "configuration.validate.executablePath": "指向可执行的 php。", + "configuration.validate.run": "不管 linter 是在 save 还是在 type 上运行。" +} \ No newline at end of file diff --git a/i18n/chs/extensions/typescript/out/typescriptServiceClient.i18n.json b/i18n/chs/extensions/typescript/out/typescriptServiceClient.i18n.json index fb7f43257f0..8280b789732 100644 --- a/i18n/chs/extensions/typescript/out/typescriptServiceClient.i18n.json +++ b/i18n/chs/extensions/typescript/out/typescriptServiceClient.i18n.json @@ -7,5 +7,6 @@ "noServerFound": "路径 {0} 未指向有效的 tsserver 安装。将禁用 TypeScript 语言功能。", "serverCouldNotBeStarted": "无法启动 TypeScript 语言服务器。错误消息为: {0}", "serverDied": "在过去 5 分钟内,TypeScript 语言服务意外中止 5 次。请考虑启用 bug 报告。", - "serverDiedAfterStart": "TypeScript 语言服务在其启动后已中止 5 次。服务不会重启。请启用 bug 报告。" + "serverDiedAfterStart": "TypeScript 语言服务在其启动后已中止 5 次。服务不会重启。请启用 bug 报告。", + "versionNumber.custom": "自定义" } \ No newline at end of file diff --git a/i18n/chs/extensions/typescript/out/utils/projectStatus.i18n.json b/i18n/chs/extensions/typescript/out/utils/projectStatus.i18n.json index a0455538a9f..a11a1dccb96 100644 --- a/i18n/chs/extensions/typescript/out/utils/projectStatus.i18n.json +++ b/i18n/chs/extensions/typescript/out/utils/projectStatus.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "cmdCreate": "创建 jsconfig.json 文件...", - "hint.tooltip": "创建一个项目就可以获得更好的 IntelliSense、更好的符号搜索以及更多内容。", - "hintCreate": "创建一个项目,体验更好的 IntelliSense 和代码导航。", - "hintExclude": "“{0}” 属于大型项目。为了提高性能,排除包含许多文件的文件夹,例如: {1}...", + "cmdCreate": "创建 jsconfig.json", + "hintCreate": "创建 jsconfig.json 以跨越整个工作区启用更丰富的 IntelliSense 和代码导航。", + "hintExclude": "为了提高性能,排除包含许多文件的文件夹,例如: {0}", + "hintExclude.generic": "为了获得更好的性能,排除具有许多文件的文件夹。", + "ignore.cmdCreate": "忽略", "large.label": "配置排除", - "large.tooltip": "一个项目中包含过多文件可能会导致糟糕的性能。排除具有很多文件的文件夹,例如: {0}...", - "open": "配置排除..." + "open": "配置排除" } \ 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 index 554cce0361b..fcc485f6464 100644 --- a/i18n/chs/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/chs/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -31,6 +31,7 @@ "roundedSelection": "控制选项是否有圆角", "rulers": "显示垂直标尺的列", "scrollBeyondLastLine": "控制编辑器是否将滚动超出最后一行", + "selectionClipboard": "控制 Linux 主要剪贴板是否应受到支持。", "selectionHighlight": "控制编辑器是否应突出显示选项的近似匹配", "sideBySide": "控制差异编辑器是否显示并行差异或内联差异", "suggestOnTriggerCharacters": "控制键入触发器字符时是否应自动显示建议", diff --git a/i18n/chs/src/vs/editor/common/modes/modesRegistry.i18n.json b/i18n/chs/src/vs/editor/common/modes/modesRegistry.i18n.json new file mode 100644 index 00000000000..83bc31d55b9 --- /dev/null +++ b/i18n/chs/src/vs/editor/common/modes/modesRegistry.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. +{ + "plainText.alias": "纯文本" +} \ 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 index 85fd59283de..26898c3d2f2 100644 --- a/i18n/chs/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json +++ b/i18n/chs/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -8,5 +8,6 @@ "actions.goToDeclToSide.label": "打开侧边的定义", "actions.gotoTypeDecl.label": "转到类型定义", "actions.previewDecl.label": "查看定义", + "meta.title": " – {0} 定义", "multipleResults": "单击此处显示找到的 {0} 个定义。" } \ 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 index 4959334d465..78038330899 100644 --- a/i18n/chs/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json +++ b/i18n/chs/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -13,5 +13,7 @@ "lines.moveDown": "向下移动行", "lines.moveUp": "向上移动行", "lines.outdent": "行减少缩进", + "lines.sortAscending": "按升序排列行", + "lines.sortDescending": "按降序排列行", "lines.trimTrailingWhitespace": "裁剪尾随空格" } \ 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 index 2e0d546dd97..b8701bf9288 100644 --- a/i18n/chs/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json +++ b/i18n/chs/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -6,5 +6,7 @@ { "QuickFixSelectionWidget.loading": "正在加载...", "QuickFixSelectionWidget.noSuggestions": "无修复建议。", + "ariaCurrentFix": "{0},快速修复建议", + "quickFixAriaAccepted": "{0},已接受", "treeAriaLabel": "快速修复" } \ 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 index 88bec9e8da7..c8f193dbe1f 100644 --- a/i18n/chs/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json +++ b/i18n/chs/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "labelLoading": "正在加载...", + "meta.titleReference": " – {0} 个引用", "noResults": "无结果", "references.action.label": "查找所有引用", "references.action.name": "显示引用" diff --git a/i18n/chs/src/vs/editor/node/textMate/TMSnippets.i18n.json b/i18n/chs/src/vs/editor/node/textMate/TMSnippets.i18n.json index 98006ee46bf..171fb3bcf2c 100644 --- a/i18n/chs/src/vs/editor/node/textMate/TMSnippets.i18n.json +++ b/i18n/chs/src/vs/editor/node/textMate/TMSnippets.i18n.json @@ -7,7 +7,7 @@ "invalid.language": "“contributes.{0}.language”中存在未知的语言。提供的值: {1}", "invalid.path.0": "“contributes.{0}.path”中应为字符串。提供的值: {1}", "invalid.path.1": "“contributes.{0}.path”({1})应包含在扩展的文件夹({2})内。这可能会使扩展不可移植。", - "vscode.extension.contributes.snippets": "用于 textmate 代码片段。", + "vscode.extension.contributes.snippets": "用于 TextMate 代码片段。", "vscode.extension.contributes.snippets-language": "此代码片段参与的语言 ID。", "vscode.extension.contributes.snippets-path": "代码片段文件的路径。该路径相对于扩展文件夹,通常以 \"./snippets/\" 开头。" } \ No newline at end of file diff --git a/i18n/chs/src/vs/languages/html/common/html.contribution.i18n.json b/i18n/chs/src/vs/languages/html/common/html.contribution.i18n.json new file mode 100644 index 00000000000..ec828371466 --- /dev/null +++ b/i18n/chs/src/vs/languages/html/common/html.contribution.i18n.json @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "format.endWithNewline": "以新行结束。", + "format.extraLiners": "标记列表,以逗号分隔,其前应有额外新行。\"null\" 默认为“标头、正文、/html”。", + "format.indentHandlebars": "格式和缩进 {{#foo}} 和 {{/foo}}。", + "format.indentInnerHtml": "缩进 和 部分。", + "format.maxPreserveNewLines": "要保留在一个区块中的换行符的最大数量。对于无限制使用 \"null\"。", + "format.preserveNewLines": "是否要保留元素前面的现有换行符。仅适用于元素前,不适用于标记内或文本。", + "format.unformatted": "标记列表,以逗号分隔,不应重设格式。\"null\" 默认为所有内联标记。", + "format.wrapLineLength": "每行最大字符数(0 = 禁用)。", + "htmlConfigurationTitle": "HTML 配置" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/browser/actions/configureLocale.i18n.json b/i18n/chs/src/vs/workbench/browser/actions/configureLocale.i18n.json new file mode 100644 index 00000000000..4c78dcc5f58 --- /dev/null +++ b/i18n/chs/src/vs/workbench/browser/actions/configureLocale.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. +{ + "configureLocale": "配置区域设置", + "displayLanguage": "定义 VSCode 的显示语言。", + "fail.createSettings": "无法创建“{0}”({1})。", + "restart": "要更改值需要重启 VSCode。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json b/i18n/chs/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json index 51f3a23ec6b..d810cd2133a 100644 --- a/i18n/chs/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json +++ b/i18n/chs/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json @@ -12,7 +12,6 @@ "configureAssociations": "配置文件关联...", "configureAssociationsExt": "“{0}”的配置文件关联...", "configuredLanguage": "已配置语言", - "defaultEncoding": "配置的编码", "disableTabMode": "禁用辅助功能模式", "endOfLineCarriageReturnLineFeed": "CRLF", "endOfLineLineFeed": "LF", @@ -26,7 +25,7 @@ "noEditor": "此时没有处于活动状态的文本编辑器", "noFileEditor": "此时无活动文件", "noWritableCodeEditor": "活动代码编辑器为只读模式。", - "persistFileAssociations": "你可以将文件名配置为从 **files.associations** 部分的语言关联。", + "persistFileAssociations": "你可以将文件名配置为 **files.associations** 部分中的语言关联。该更改可能需要重启才能在已打开的文件上生效。", "pickAction": "选择操作", "pickEncodingForReopen": "选择文件编码以重新打开文件", "pickEncodingForSave": "选择用于保存的文件编码", diff --git a/i18n/chs/src/vs/workbench/electron-browser/crashReporter.i18n.json b/i18n/chs/src/vs/workbench/electron-browser/crashReporter.i18n.json index 652e8be63d1..faffae7c397 100644 --- a/i18n/chs/src/vs/workbench/electron-browser/crashReporter.i18n.json +++ b/i18n/chs/src/vs/workbench/electron-browser/crashReporter.i18n.json @@ -4,6 +4,6 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "telemetry.enableCrashReporting": "启用要发送给 Microsoft 的故障报告。\n\t// 此选项需重启 VSCode 才可生效。", + "telemetry.enableCrashReporting": "启用要发送给 Microsoft 的故障报表。\n\t// 此选项需重启才可生效。", "telemetryConfigurationTitle": "遥测配置" } \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json b/i18n/chs/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json index f5014f3730c..28df837812b 100644 --- a/i18n/chs/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json +++ b/i18n/chs/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json @@ -12,7 +12,7 @@ "changeNow": "立即更改", "continue": "继续", "editFile": "编辑“{0}”", - "exists": "请删除“{1}”中的别名引用“{0}”,然后重试此操作。", + "exists": "请删除“{1}”(行 {2})中的别名引用“{0}”,然后重试此操作。", "install": "在 PATH 中安装 \"code\" 命令", "later": "稍后", "laterInfo": "请记住,你始终可以从命令面板运行“{0}”操作。", diff --git a/i18n/chs/src/vs/workbench/electron-main/main.i18n.json b/i18n/chs/src/vs/workbench/electron-main/main.i18n.json index 93e501877e0..8f7dddc34c1 100644 --- a/i18n/chs/src/vs/workbench/electron-main/main.i18n.json +++ b/i18n/chs/src/vs/workbench/electron-main/main.i18n.json @@ -4,9 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "expired": "已过期", - "expiredDetail": "此预发行版 {0} 已过期。\n\n请访问 {1} 以下载当前版本。", - "newWindow": "新建窗口", - "openWebSite": "打开网站", - "quit": "退出" + "newWindow": "新建窗口" } \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/electron-main/menus.i18n.json b/i18n/chs/src/vs/workbench/electron-main/menus.i18n.json index 8e288f0f08a..3ca0efaa0bd 100644 --- a/i18n/chs/src/vs/workbench/electron-main/menus.i18n.json +++ b/i18n/chs/src/vs/workbench/electron-main/menus.i18n.json @@ -64,10 +64,10 @@ "miReplace": "替换(&&R)", "miReportIssues": "报告问题(&&I)", "miRestartToUpdate": "重启以更新...", - "miRevert": "还原文件", + "miRevert": "还原文件(&&I)", "miSave": "保存(&&S)", - "miSaveAll": "全部保存(&&A)", - "miSaveAs": "另存为...", + "miSaveAll": "全部保存(&&L)", + "miSaveAs": "另存为(&&A)...", "miSelectAll": "全选(&&S)", "miSelectTheme": "颜色主题(&&C)", "miSplitEditor": "拆分编辑器(&&E)", @@ -85,7 +85,7 @@ "miUserVoice": "请求功能(&&R)", "miViewDebug": "调试(&&D)", "miViewExplorer": "资源管理器(&&E)", - "miViewGit": "GIT (&&G)", + "miViewGit": "Git (&&G)", "miViewSearch": "搜索(&&S)", "miZoomIn": "放大(&&Z)", "miZoomOut": "缩小(&&U)", diff --git a/i18n/chs/src/vs/workbench/node/extensionHostMain.i18n.json b/i18n/chs/src/vs/workbench/node/extensionHostMain.i18n.json index 2a434caf8a8..052e5be79a7 100644 --- a/i18n/chs/src/vs/workbench/node/extensionHostMain.i18n.json +++ b/i18n/chs/src/vs/workbench/node/extensionHostMain.i18n.json @@ -4,5 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionTestError": "路径 {0} 未指向有效的扩展测试运行程序。" + "extensionTestError": "路径 {0} 未指向有效的扩展测试运行程序。", + "extensionUnderDevelopment": "正在 {0} 中加载开发扩展", + "overwritingExtension": "使用 {1} 覆盖扩展 {0}。" } \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/node/extensionPoints.i18n.json b/i18n/chs/src/vs/workbench/node/extensionPoints.i18n.json new file mode 100644 index 00000000000..1ad047b3689 --- /dev/null +++ b/i18n/chs/src/vs/workbench/node/extensionPoints.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. +{ + "fileReadFail": "无法读取文件 {0}: {1}。", + "jsonParseFail": "未能分析 {0}: {1}。", + "missingNLSKey": "无法找到键 {0} 的消息。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/extensions/common/extensions.i18n.json b/i18n/chs/src/vs/workbench/parts/extensions/common/extensions.i18n.json index 771d67be284..7b29c3664fe 100644 --- a/i18n/chs/src/vs/workbench/parts/extensions/common/extensions.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/extensions/common/extensions.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionsCategory": "扩展" + "extensions": "扩展" } \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json b/i18n/chs/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json index 416da14c894..b0f282e02a7 100644 --- a/i18n/chs/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json @@ -4,6 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "close": "关闭", "deleteSure": "是否确定要卸载“{0}”?", "installExtension": "安装扩展", "restartNow": "立即重启", diff --git a/i18n/chs/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json b/i18n/chs/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json index 90db652dc75..1000da7559e 100644 --- a/i18n/chs/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json @@ -9,6 +9,5 @@ "multipleIssues": "扩展({0} 个问题)", "multipleUpdates": "扩展({0} 个可用更新)", "oneIssue": "扩展(1 个问题)", - "oneUpdate": "扩展(1 个可用更新)", - "uninstall": "卸载" + "oneUpdate": "扩展(1 个可用更新)" } \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json b/i18n/chs/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json index d138090b58e..7afb86e27b9 100644 --- a/i18n/chs/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json @@ -10,5 +10,6 @@ "invalidVersion": "无效的扩展: 清单版本不匹配。", "missingGalleryInformation": "库信息缺失", "noCompatible": "找不到可与此代码版本兼容的 {0} 版本。", - "notExists": "找不到扩展" + "notExists": "找不到扩展", + "restartCode": "请重启代码再重新安装 {0}。" } \ 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 index e977614db89..0d917e5a259 100644 --- a/i18n/chs/src/vs/workbench/parts/files/browser/fileActions.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -30,6 +30,7 @@ "emptyFileNameError": "必须提供文件或文件夹名。", "fileNameExistsError": "此位置已存在文件或文件夹 **{0}**。请选择其他名称。", "filePathTooLongError": "名称 **{0}** 导致路径太长。请选择更短的名称。", + "focusFilesExplorer": "关注文件资源浏览器", "focusWorkingFiles": "关注工作文件", "globalCompareFile": "比较活动文件与...", "importFiles": "导入文件", 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 index 3799fa1d8ba..aac605016f1 100644 --- a/i18n/chs/src/vs/workbench/parts/git/browser/gitServices.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -12,10 +12,12 @@ "changesFromTree": "{0} - 对 {1} 的更改", "checkNativeConsole": "运行 GIT 操作存在问题。请审阅输出或使用控制台检查你的存储库的状态。", "configureUsernameEmail": "请配置 GIT 用户名和电子邮件。", + "download": "下载", "gitIndexChanges": "{0} - 对索引的更改", "gitIndexChangesRenamed": "{0} - 已重命名 - 索引更改", "gitMergeChanges": "{0} - 合并更改", "showOutput": "显示输出", "unmergedChanges": "提交更改前,你应首先解决未合并的更改。", + "updateGit": "你似乎已安装 git {0}。在 git >=2.0.0 情况下代码工作最佳。", "workingTreeChanges": "{0} - 对工作树的更改" } \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json b/i18n/chs/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json index dc434090ab8..535ccbd02ef 100644 --- a/i18n/chs/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json @@ -4,13 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "dotnetBuild": "创建用于使用 dotnet 生成编译的 tasks.json 文件。", - "grunt": "为 Grunt 创建一个 tasks.json 文件。如果存在 jake 文件,则将自动检测任务。", - "gulp": "为 Grunt 创建一个 tasks.json 文件。如果存在 jake 文件,则将自动检测任务。", - "jake": "为 Jake 创建一个 tasks.json 文件。如果存在 jake 文件,则将自动检测任务。", - "msbuild": "创建用于使用 msbuild 编译的 tasks.json 文件。", - "tsc.config": "创建用于编译 TypeScript 项目的 tasks.json 文件。", - "tsc.openFile": "创建用于编译当前打开的 TypeScript 文件的 tasks.json 文件。", - "tsc.specificFile": "创建用于编译特定的 TypeScript 文件的 tasks.json 文件。", - "tsc.watch": "创建用于编译观看模式的 TypeScript 文件的 tasks.json 文件。" + "dotnetCore": "执行 .NET Core 生成命令", + "externalCommand": "运行任意外部命令的示例", + "msbuild": "执行生成目标", + "tsc.config": "创建 TypeScript 项目", + "tsc.watch": "编译观看模式的 TypeScript 项目" } \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json b/i18n/chs/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json index bf3517c8947..c75f8be40ed 100644 --- a/i18n/chs/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json @@ -8,8 +8,11 @@ "CleanAction.label": "运行清理任务", "CloseMessageAction.label": "关闭", "ConfigureTaskRunnerAction.autoDetect": "自动检测系统任务失败。请使用默认模板。有关详细信息,请参阅任务输出。", + "ConfigureTaskRunnerAction.autoDetecting": "适用于 {0} 的自动检测任务", "ConfigureTaskRunnerAction.failed": "无法在 \".vscode\" 文件夹中创建 \"tasks.json\" 文件。查看任务输出了解详细信息。", "ConfigureTaskRunnerAction.label": "配置任务运行程序", + "ConfigureTaskRunnerAction.noWorkspace": "任务仅在工作区文件夹上可用。", + "ConfigureTaskRunnerAction.quickPick.template": "选择任务运行程序", "JsonSchema.args": "传递到命令的其他参数。", "JsonSchema.command": "要执行的命令。可以是外部程序或 shell 命令。", "JsonSchema.echoCommand": "控制是否将已执行的命令回显到输出。默认值为 false。", diff --git a/i18n/chs/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json b/i18n/chs/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json index c51436a5f18..294fa0b309e 100644 --- a/i18n/chs/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json @@ -4,10 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "TaskSystemDetector.buildTaskDetected": "检测到名为“{0}”的生成任务。", "TaskSystemDetector.noGruntProgram": "你的系统上没有安装 Grunt。运行 npm install -g grunt 以安装它。", "TaskSystemDetector.noGulpProgram": "你的系统上没有安装 Gulp。运行 npm install -g gulp 以安装它。", "TaskSystemDetector.noGulpTasks": "正在运行的 gulp --tasks-simple 没有列出任何任务。你运行 npm 安装了吗?", "TaskSystemDetector.noJakeProgram": "你的系统上没有安装 Jake。运行 npm install -g jake 以安装它。", "TaskSystemDetector.noJakeTasks": "正在运行的 jake --tasks 没有列出任何任务。你运行 npm 安装了吗?", - "TaskSystemDetector.noProgram": "找不到程序 {0}。消息是 {1}" + "TaskSystemDetector.noProgram": "找不到程序 {0}。消息是 {1}", + "TaskSystemDetector.testTaskDetected": "测试检测到的名为“{0}”的测试任务。" } \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json b/i18n/chs/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json new file mode 100644 index 00000000000..c21a4b6cf25 --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/update/electron-browser/update.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. +{ + "close": "关闭", + "license": "读取许可证", + "licenseChanged": "我们的许可条款已更改,请检查它们。", + "releaseNotes": "欢迎使用 {0} v{1}! 是否要阅读发布说明?" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/services/themes/node/themeService.i18n.json b/i18n/chs/src/vs/workbench/services/themes/node/themeService.i18n.json index bc328717bb9..cfac63ee42d 100644 --- a/i18n/chs/src/vs/workbench/services/themes/node/themeService.i18n.json +++ b/i18n/chs/src/vs/workbench/services/themes/node/themeService.i18n.json @@ -6,6 +6,7 @@ { "error.cannotloadtheme": "无法加载 {0}", "error.cannotparse": "问题分析 plist 文件: {0}", + "error.cannotparsejson": "在分析 JSON 主题文件 {0} 时出现问题", "invalid.path.1": "“contributes.{0}.path”({1})应包含在扩展的文件夹({2})内。这可能会使扩展不可移植。", "reqarray": "扩展点“{0}”必须是数组。 ", "reqpath": "“contributes.{0}.path”中应为字符串。提供的值: {1}", diff --git a/i18n/cht/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json b/i18n/cht/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json index b6e76cc36b6..0fe42510a37 100644 --- a/i18n/cht/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json +++ b/i18n/cht/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json @@ -5,7 +5,7 @@ // Do not edit this file. It is machine generated. { "assocDescriptionFile": "將檔案名稱符合 Glob 模式的所有檔案,對應至具有指定識別碼的語言。", - "assocDescriptionPath": "將完整路徑符合 Glob 模式的所有檔案,對應至具有指定識別碼的語言。", + "assocDescriptionPath": "將符合檔案路徑中之絕對路徑 Glob 模式的所有檔案,對應到具有指定識別碼的語言。", "assocLabelFile": "檔案副檔名", "assocLabelPath": "檔案路徑" } \ No newline at end of file diff --git a/i18n/cht/extensions/php/package.i18n.json b/i18n/cht/extensions/php/package.i18n.json new file mode 100644 index 00000000000..6375a2a0b99 --- /dev/null +++ b/i18n/cht/extensions/php/package.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. +{ + "configuration.title": "PHP 設定選項", + "configuration.validate.enable": "是否啟用 PHP 驗證。", + "configuration.validate.executablePath": "指向 PHP 可執行檔。", + "configuration.validate.run": "是否在儲存或輸入時執行 linter。" +} \ No newline at end of file diff --git a/i18n/cht/extensions/typescript/out/typescriptServiceClient.i18n.json b/i18n/cht/extensions/typescript/out/typescriptServiceClient.i18n.json index 9df971111a3..7b8dd920f0f 100644 --- a/i18n/cht/extensions/typescript/out/typescriptServiceClient.i18n.json +++ b/i18n/cht/extensions/typescript/out/typescriptServiceClient.i18n.json @@ -7,5 +7,6 @@ "noServerFound": "路徑 {0} 未指向有效的 tsserver 安裝。將停用 TypeScript 語言功能。", "serverCouldNotBeStarted": "無法啟動 TypeScript 語言伺服器。錯誤訊息為: {0}", "serverDied": "Typescript 語言服務在過去 5 分鐘內意外中止 5 次。請考慮開啟問題報告。", - "serverDiedAfterStart": "Typescript 語言服務在啟動後立即中止 5 次。服務將不會重新啟動。請開啟問題報告。" + "serverDiedAfterStart": "Typescript 語言服務在啟動後立即中止 5 次。服務將不會重新啟動。請開啟問題報告。", + "versionNumber.custom": "自訂" } \ No newline at end of file diff --git a/i18n/cht/extensions/typescript/out/utils/projectStatus.i18n.json b/i18n/cht/extensions/typescript/out/utils/projectStatus.i18n.json index 14a5b8e8b3d..8cb01c4de98 100644 --- a/i18n/cht/extensions/typescript/out/utils/projectStatus.i18n.json +++ b/i18n/cht/extensions/typescript/out/utils/projectStatus.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "cmdCreate": "建立 jsconfig.json 檔案...", - "hint.tooltip": "擁有專案,並擁有更好的 IntelliSense、符號搜尋等更多功能。", - "hintCreate": "擁有專案並體驗更好的 IntelliSense 和程式碼瀏覽。", - "hintExclude": "'{0}' 是大型專案。如需更好的效能,請排除含有大量檔案的資料夾,如: {1}...", - "large.label": "設定排除", - "large.tooltip": "專案中有太多檔案可能會降低效能。請排除含有大量檔案的資料夾,如: {0}...", - "open": "設定排除..." + "cmdCreate": "建立 jsconfig.json", + "hintCreate": "建立 jsconfig.json,為整個工作區提供用更豐富的 IntelliSense 與程式碼巡覽功能。", + "hintExclude": "如需更好的效能,請排除包含大量檔案的資料夾,例如: {0}", + "hintExclude.generic": "如需更好的效能,請排除包含大量檔案的資料夾。", + "ignore.cmdCreate": "忽略", + "large.label": "設定排除項目", + "open": "設定排除項目" } \ 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 index 267dfd3c466..80fb71809f3 100644 --- a/i18n/cht/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/cht/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -31,6 +31,7 @@ "roundedSelection": "控制選取範圍是否有圓角", "rulers": "要在其中顯示垂直尺規的資料行", "scrollBeyondLastLine": "控制編輯器是否會捲動到最後一行之後", + "selectionClipboard": "控制是否應支援 Linux 主要剪貼簿。", "selectionHighlight": "控制編輯器是否應反白顯示與選取範圍相似的符合項", "sideBySide": "控制 Diff 編輯器要並排或內嵌顯示差異", "suggestOnTriggerCharacters": "控制輸入觸發字元時,是否應自動顯示建議", diff --git a/i18n/cht/src/vs/editor/common/modes/modesRegistry.i18n.json b/i18n/cht/src/vs/editor/common/modes/modesRegistry.i18n.json new file mode 100644 index 00000000000..280918fd14c --- /dev/null +++ b/i18n/cht/src/vs/editor/common/modes/modesRegistry.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. +{ + "plainText.alias": "純文字" +} \ 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 index 76045aadbcf..fe635162914 100644 --- a/i18n/cht/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json +++ b/i18n/cht/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -8,5 +8,6 @@ "actions.goToDeclToSide.label": "在一側開啟定義", "actions.gotoTypeDecl.label": "移至類型定義", "actions.previewDecl.label": "預覽定義", + "meta.title": " - {0} 個定義", "multipleResults": "按一下以顯示找到的 {0} 個定義。" } \ 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 index 569746a20c0..58666246a67 100644 --- a/i18n/cht/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json +++ b/i18n/cht/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -13,5 +13,7 @@ "lines.moveDown": "下移一行", "lines.moveUp": "上移一行", "lines.outdent": "凸排行", + "lines.sortAscending": "遞增排序行", + "lines.sortDescending": "遞減排序行", "lines.trimTrailingWhitespace": "修剪尾端空白" } \ 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 index 1189e8ad4c0..45296f1c3ba 100644 --- a/i18n/cht/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json +++ b/i18n/cht/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -6,5 +6,7 @@ { "QuickFixSelectionWidget.loading": "正在載入...", "QuickFixSelectionWidget.noSuggestions": "沒有修正建議。", + "ariaCurrentFix": "{0},快速檢修建議", + "quickFixAriaAccepted": "{0},接受", "treeAriaLabel": "Quick Fix" } \ 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 index 010dbdc2586..ec9ecdcd760 100644 --- a/i18n/cht/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json +++ b/i18n/cht/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "labelLoading": "正在載入...", + "meta.titleReference": " - {0} 個參考", "noResults": "沒有結果", "references.action.label": "尋找所有參考", "references.action.name": "顯示參考" diff --git a/i18n/cht/src/vs/editor/node/textMate/TMSnippets.i18n.json b/i18n/cht/src/vs/editor/node/textMate/TMSnippets.i18n.json index db4a3385be2..ccb527dce91 100644 --- a/i18n/cht/src/vs/editor/node/textMate/TMSnippets.i18n.json +++ b/i18n/cht/src/vs/editor/node/textMate/TMSnippets.i18n.json @@ -7,7 +7,7 @@ "invalid.language": "`contributes.{0}.language` 中的不明語言。提供的值: {1}", "invalid.path.0": "`contributes.{0}.path` 中的預期字串。提供的值: {1}", "invalid.path.1": "要包含在擴充功能資料夾 ({2}) 中的預期 `contributes.{0}.path` ({1})。這可能會使擴充功能無法移植。", - "vscode.extension.contributes.snippets": "提供 textmate 程式碼片段。", + "vscode.extension.contributes.snippets": "提供 TextMate 程式碼片段。", "vscode.extension.contributes.snippets-language": "要予以提供此程式碼片段的語言識別碼。", "vscode.extension.contributes.snippets-path": "程式碼片段檔案的路徑。此路徑是擴充功能資料夾的相對路徑,而且一般會以 './snippets/' 開頭。" } \ No newline at end of file diff --git a/i18n/cht/src/vs/languages/html/common/html.contribution.i18n.json b/i18n/cht/src/vs/languages/html/common/html.contribution.i18n.json new file mode 100644 index 00000000000..eb82b369bef --- /dev/null +++ b/i18n/cht/src/vs/languages/html/common/html.contribution.i18n.json @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "format.endWithNewline": "以新行字元結尾。", + "format.extraLiners": "前方應有額外新行字元的標記清單,須以逗號分隔。'null' 的預設值為 \"head, body, /html\"。", + "format.indentHandlebars": "格式化並縮排 {{#foo}} 及 {{/foo}}。", + "format.indentInnerHtml": "縮排 及 區段。", + "format.maxPreserveNewLines": "一個區塊要保留的最大分行符號數。使用 'null' 表示無限制。", + "format.preserveNewLines": "是否應保留項目前方現有的分行符號。僅適用於項目前方,而不適用於標記內或文字。", + "format.unformatted": "不應重新格式化的標記清單,須以逗號分隔。'null' 的預設值為所有內嵌標記。", + "format.wrapLineLength": "每行的字元數上限 (0 = 停用)。", + "htmlConfigurationTitle": "HTML 設定" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/platform/extensions/common/extensionsRegistry.i18n.json b/i18n/cht/src/vs/platform/extensions/common/extensionsRegistry.i18n.json index 446bad104af..561a1a14568 100644 --- a/i18n/cht/src/vs/platform/extensions/common/extensionsRegistry.i18n.json +++ b/i18n/cht/src/vs/platform/extensions/common/extensionsRegistry.i18n.json @@ -20,7 +20,7 @@ "vscode.extension.categories": "VS Code 資源庫用來將擴充功能歸類的分類。", "vscode.extension.contributes": "此封裝所代表的所有 VS Code 擴充功能比重。", "vscode.extension.displayName": "VS Code 資源庫中使用的擴充功能顯示名稱。", - "vscode.extension.extensionDependencies": "其它擴充功能的相依性。擴充功能識別碼一律為 ${發行者}.${名稱}。例如: vscode.csharp。", + "vscode.extension.extensionDependencies": "其它擴充功能的相依性。擴充功能識別碼一律為 ${publisher}.${name}。例如: vscode.csharp。", "vscode.extension.galleryBanner": "用於 VS Code Marketplace 的橫幅。", "vscode.extension.galleryBanner.color": "VS Code Marketplace 頁首的橫幅色彩。", "vscode.extension.galleryBanner.theme": "橫幅中使用的字型色彩佈景主題。", diff --git a/i18n/cht/src/vs/workbench/browser/actions/configureLocale.i18n.json b/i18n/cht/src/vs/workbench/browser/actions/configureLocale.i18n.json new file mode 100644 index 00000000000..e08d9927ca2 --- /dev/null +++ b/i18n/cht/src/vs/workbench/browser/actions/configureLocale.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. +{ + "configureLocale": "設定地區設定", + "displayLanguage": "定義 VSCode 的顯示語言。", + "fail.createSettings": "無法建立 '{0}' ({1})。", + "restart": "變更值必須重新啟動 VSCode。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json b/i18n/cht/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json index efd52999894..5f4b2af6dda 100644 --- a/i18n/cht/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json +++ b/i18n/cht/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json @@ -12,7 +12,6 @@ "configureAssociations": "設定檔案關聯...", "configureAssociationsExt": "為 '{0}' 設定檔案關聯...", "configuredLanguage": "設定的語言", - "defaultEncoding": "設定的編碼", "disableTabMode": "停用協助工具模式", "endOfLineCarriageReturnLineFeed": "CRLF", "endOfLineLineFeed": "LF", @@ -26,7 +25,7 @@ "noEditor": "目前沒有使用中的文字編輯器", "noFileEditor": "目前沒有使用中的檔案", "noWritableCodeEditor": "使用中的程式碼編輯器為唯讀。", - "persistFileAssociations": "您可以從 **files.associations** 區段將檔案名稱設定為語言關聯", + "persistFileAssociations": "您可以在 **files.associations** 區段中,將檔案名稱設定為語言關聯。對於已經開啟的檔案,必須留待重新啟動之後,變更才會生效。", "pickAction": "選取動作", "pickEncodingForReopen": "選取檔案的編碼以重新開啟檔案", "pickEncodingForSave": "選取用來儲存的檔案編碼", diff --git a/i18n/cht/src/vs/workbench/electron-browser/crashReporter.i18n.json b/i18n/cht/src/vs/workbench/electron-browser/crashReporter.i18n.json index 85f27d29d44..1e338423f23 100644 --- a/i18n/cht/src/vs/workbench/electron-browser/crashReporter.i18n.json +++ b/i18n/cht/src/vs/workbench/electron-browser/crashReporter.i18n.json @@ -4,6 +4,6 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "telemetry.enableCrashReporting": "允許將當機報告傳送給 Microsoft。\n\t//此選項需要重新啟動 VSCode 才能生效。", + "telemetry.enableCrashReporting": "允許將當機報告傳送給 Microsoft。\n\t//此選項需要重新啟動才會生效。", "telemetryConfigurationTitle": "遙測組態" } \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json b/i18n/cht/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json index 46b45e00507..e61ac97eec9 100644 --- a/i18n/cht/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json +++ b/i18n/cht/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json @@ -12,7 +12,7 @@ "changeNow": "立即變更", "continue": "繼續", "editFile": "編輯 '{0}'", - "exists": "請移除 '{1}' 中參考 '{0}' 的別名,然後重試此動作。", + "exists": "請移除參考 '{1}' (第 {2} 行) 中之 '{0}' 的別名,然後重試此動作。", "install": "在 PATH 中安裝 'code' 命令", "later": "稍後", "laterInfo": "請記住,您一律可以從命令選擇區執行 '{0}' 動作。", diff --git a/i18n/cht/src/vs/workbench/electron-main/main.i18n.json b/i18n/cht/src/vs/workbench/electron-main/main.i18n.json index 230bf103654..568de8c1bd5 100644 --- a/i18n/cht/src/vs/workbench/electron-main/main.i18n.json +++ b/i18n/cht/src/vs/workbench/electron-main/main.i18n.json @@ -4,9 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "expired": "已到期", - "expiredDetail": "{0} 的這個發行前版本已到期。\n\n請瀏覽 {1} 以下載目前的版本。", - "newWindow": "開新視窗", - "openWebSite": "開啟網站", - "quit": "離開" + "newWindow": "開新視窗" } \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/electron-main/menus.i18n.json b/i18n/cht/src/vs/workbench/electron-main/menus.i18n.json index d947a67a068..3b5fa97942a 100644 --- a/i18n/cht/src/vs/workbench/electron-main/menus.i18n.json +++ b/i18n/cht/src/vs/workbench/electron-main/menus.i18n.json @@ -64,10 +64,10 @@ "miReplace": "取代(&R)", "miReportIssues": "回報問題(&I)", "miRestartToUpdate": "重新啟動以更新...", - "miRevert": "還原檔案", + "miRevert": "還原檔案(&&I)", "miSave": "儲存(&S)", - "miSaveAll": "全部儲存(&A)", - "miSaveAs": "另存新檔...", + "miSaveAll": "全部儲存(&&L)", + "miSaveAs": "另存新檔(&&A)...", "miSelectAll": "全選(&S)", "miSelectTheme": "色彩佈景主題(&C)", "miSplitEditor": "分割編輯器(&E)", diff --git a/i18n/cht/src/vs/workbench/node/extensionHostMain.i18n.json b/i18n/cht/src/vs/workbench/node/extensionHostMain.i18n.json index e5f1bca63de..d8bb347608f 100644 --- a/i18n/cht/src/vs/workbench/node/extensionHostMain.i18n.json +++ b/i18n/cht/src/vs/workbench/node/extensionHostMain.i18n.json @@ -4,5 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionTestError": "路徑 {0} 並未指向有效的擴充功能測試執行器。" + "extensionTestError": "路徑 {0} 並未指向有效的擴充功能測試執行器。", + "extensionUnderDevelopment": "正在載入位於 {0} 的開發延伸模組", + "overwritingExtension": "正在以 {1} 覆寫延伸模組 {0}。" } \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/node/extensionPoints.i18n.json b/i18n/cht/src/vs/workbench/node/extensionPoints.i18n.json new file mode 100644 index 00000000000..4a19fe27444 --- /dev/null +++ b/i18n/cht/src/vs/workbench/node/extensionPoints.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. +{ + "fileReadFail": "無法讀取檔案 {0}: {1}。", + "jsonParseFail": "無法剖析 {0}: {1}。", + "missingNLSKey": "找不到金鑰 {0} 的訊息。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/extensions/common/extensions.i18n.json b/i18n/cht/src/vs/workbench/parts/extensions/common/extensions.i18n.json index 1abb4cc2e6e..a4d7930693a 100644 --- a/i18n/cht/src/vs/workbench/parts/extensions/common/extensions.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/extensions/common/extensions.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionsCategory": "擴充功能" + "extensions": "延伸模組" } \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json b/i18n/cht/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json index b4ba85277e8..6ebe27290ed 100644 --- a/i18n/cht/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json @@ -4,6 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "close": "關閉", "deleteSure": "確定要解除安裝 '{0}' 嗎?", "installExtension": "安裝擴充功能", "restartNow": "立即重新啟動", diff --git a/i18n/cht/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json b/i18n/cht/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json index b15cc873138..36cd3bef87c 100644 --- a/i18n/cht/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json @@ -4,11 +4,10 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensions": "擴充功能", + "extensions": "延伸模組", "extensionsInstalling": "擴充功能 (有 {0} 個正在安裝...)", "multipleIssues": "擴充功能 (有 {0} 個問題)", "multipleUpdates": "擴充功能 (有 {0} 項更新可用)", "oneIssue": "擴充功能 (有 1 個問題)", - "oneUpdate": "擴充功能 (有 1 項更新可用)", - "uninstall": "解除安裝" + "oneUpdate": "擴充功能 (有 1 項更新可用)" } \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json b/i18n/cht/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json index e5d9b289f09..65eb230dcd2 100644 --- a/i18n/cht/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json @@ -10,5 +10,6 @@ "invalidVersion": "擴充功能無效: 資訊清單版本不符。", "missingGalleryInformation": "遺漏資源庫資訊", "noCompatible": "找不到與此 Code 版本相容的 {0} 版本。", - "notExists": "找不到擴充功能" + "notExists": "找不到擴充功能", + "restartCode": "請先重新啟動 Code,然後再重新安裝 {0}。" } \ 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 index 8e9ae171908..41c51e6e997 100644 --- a/i18n/cht/src/vs/workbench/parts/files/browser/fileActions.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -30,6 +30,7 @@ "emptyFileNameError": "必須提供檔案或資料夾名稱。", "fileNameExistsError": "這個位置已存在檔案或資料夾 **{0}**。請選擇不同的名稱。", "filePathTooLongError": "名稱 **{0}** 導致路徑太長。請選擇較短的名稱。", + "focusFilesExplorer": "將焦點設在檔案總管上", "focusWorkingFiles": "將焦點放在工作檔案上", "globalCompareFile": "使用中檔案的比較對象...", "importFiles": "匯入檔案", diff --git a/i18n/cht/src/vs/workbench/parts/files/electron-browser/textFileServices.i18n.json b/i18n/cht/src/vs/workbench/parts/files/electron-browser/textFileServices.i18n.json index 7766a61e85a..c18b42dd0f0 100644 --- a/i18n/cht/src/vs/workbench/parts/files/electron-browser/textFileServices.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/files/electron-browser/textFileServices.i18n.json @@ -8,7 +8,7 @@ "cancel": "取消", "dontSave": "不要儲存(&N)", "save": "儲存(&S)", - "saveAll": "全部儲存(&S)", + "saveAll": "全部儲存(&&S)", "saveChangesDetail": "如果您不儲存變更,這些變更將會遺失。", "saveChangesMessage": "要儲存對 {0} 所做的變更嗎?", "saveChangesMessages": "要儲存對下列檔案所做的變更嗎?" 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 index 43a1154590b..90e8bc08c1b 100644 --- a/i18n/cht/src/vs/workbench/parts/git/browser/gitServices.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -12,10 +12,12 @@ "changesFromTree": "{0} - {1} 上的變更", "checkNativeConsole": "執行 Git 作業時發生問題。請檢閱輸出或使用主控台來查看儲存機制的狀態。", "configureUsernameEmail": "請設定您的 Git 使用者名稱及電子郵件。", + "download": "下載", "gitIndexChanges": "{0} - 索引上的變更", "gitIndexChangesRenamed": "{0} - 已重新命名 - 索引的變更", "gitMergeChanges": "{0} - 合併變更", "showOutput": "顯示輸出", "unmergedChanges": "您在認可變更前應先解決未合併的變更。", + "updateGit": "您似乎已經安裝 GIT {0}。Code 搭配 GIT >=2.0.0 的成效最佳。", "workingTreeChanges": "{0} - 工作樹狀目錄上的變更" } \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json b/i18n/cht/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json index dc4f766db27..d7c26da6aa6 100644 --- a/i18n/cht/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json @@ -4,13 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "dotnetBuild": "建立使用 dotnet 組建進行編譯的 tasks.json。", - "grunt": "為 Grunt 建立 tasks.json 檔案。若 jake 檔案存在,則會自動偵測工作。", - "gulp": "為 gulp 建立 tasks.json 檔案。若 gulp 檔案存在,則會自動偵測工作。", - "jake": "為 Jake 建立 tasks.json 檔案。若 jake 檔案存在,則會自動偵測工作。", - "msbuild": "建立使用 msbuild 進行編譯的 tasks.json。", - "tsc.config": "建立編譯 TypeScript 專案的 tasks.json。", - "tsc.openFile": "建立編譯開啟中 TypeScript 檔案的 tasks.json。", - "tsc.specificFile": "建立編譯特定 TypeScript 檔案的 tasks.json。", - "tsc.watch": "建立在監看模式中編譯 TypeScript 專案的 tasks.json。" + "dotnetCore": "執行 .NET Core 建置命令", + "externalCommand": "執行任意外部命令的範例", + "msbuild": "執行建置目標", + "tsc.config": "編譯 TypeScript 專案", + "tsc.watch": "在監看模式中編譯 TypeScript 專案" } \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json b/i18n/cht/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json index ce0be4b8956..3273548f05d 100644 --- a/i18n/cht/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json @@ -8,8 +8,11 @@ "CleanAction.label": "執行清除工作", "CloseMessageAction.label": "關閉", "ConfigureTaskRunnerAction.autoDetect": "自動偵測工作系統失敗。正在使用預設範本。如需詳細資料,請參閱工作輸出。", + "ConfigureTaskRunnerAction.autoDetecting": "自動偵測 {0} 的工作", "ConfigureTaskRunnerAction.failed": "無法在 '.vscode' 資料夾中建立 'tasks.json' 檔案。如需詳細資訊,請參閱工作輸出。", "ConfigureTaskRunnerAction.label": "設定工作執行器", + "ConfigureTaskRunnerAction.noWorkspace": "這些工作只會出現在工作區資料夾中。", + "ConfigureTaskRunnerAction.quickPick.template": "選取工作執行器", "JsonSchema.args": "傳遞至命令的其他引數。", "JsonSchema.command": "要執行的命令。可以是外部程式或殼層命令。", "JsonSchema.echoCommand": "控制是否將執行的命令傳到輸出。預設為 False。", diff --git a/i18n/cht/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json b/i18n/cht/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json index a9e46f8d51e..d3394987e76 100644 --- a/i18n/cht/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json @@ -4,10 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "TaskSystemDetector.buildTaskDetected": "偵測到名為 '{0}' 的建置工作。", "TaskSystemDetector.noGruntProgram": "您的系統尚未安裝 Grunt。請執行 npm install -g grunt 進行安裝。", "TaskSystemDetector.noGulpProgram": "您的系統尚未安裝 Gulp。請執行 npm install -g gulp 進行安裝。", "TaskSystemDetector.noGulpTasks": "執行 Gulp --tasks-simple 未列出任何工作。是否已執行 npm 安裝?", "TaskSystemDetector.noJakeProgram": "您的系統尚未安裝 Jake。請執行 npm install -g jake 進行安裝。", "TaskSystemDetector.noJakeTasks": "執行 Jake --tasks 未列出任何工作。是否已執行 npm 安裝?", - "TaskSystemDetector.noProgram": "找不到程式 {0}。訊息為 {1}" + "TaskSystemDetector.noProgram": "找不到程式 {0}。訊息為 {1}", + "TaskSystemDetector.testTaskDetected": "偵測到名為 '{0}' 的測試工作。" } \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json b/i18n/cht/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json new file mode 100644 index 00000000000..68a103c04b4 --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/update/electron-browser/update.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. +{ + "close": "關閉", + "license": "閱讀授權", + "licenseChanged": "授權條款已有所變更,請仔細閱讀。", + "releaseNotes": "歡迎使用 {0} v{1}! 您要閱讀版本資訊嗎?" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/services/themes/node/themeService.i18n.json b/i18n/cht/src/vs/workbench/services/themes/node/themeService.i18n.json index c79ece6ad1c..acce34cf9a2 100644 --- a/i18n/cht/src/vs/workbench/services/themes/node/themeService.i18n.json +++ b/i18n/cht/src/vs/workbench/services/themes/node/themeService.i18n.json @@ -6,6 +6,7 @@ { "error.cannotloadtheme": "無法載入 {0}", "error.cannotparse": "剖析 plist 檔案時發生問題: {0}", + "error.cannotparsejson": "剖析 JSON 佈景主題檔案 {0} 時發生問題", "invalid.path.1": "要包含在擴充功能資料夾 ({2}) 中的預期 `contributes.{0}.path` ({1})。這可能會使擴充功能無法移植。", "reqarray": "擴充點 `{0}` 必須是陣列。", "reqpath": "`contributes.{0}.path` 中的預期字串。提供的值: {1}", diff --git a/i18n/deu/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json b/i18n/deu/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json index 6163a17864b..d22e6186466 100644 --- a/i18n/deu/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json +++ b/i18n/deu/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json @@ -5,7 +5,7 @@ // Do not edit this file. It is machine generated. { "assocDescriptionFile": "Ordnet alle Dateien, deren Dateinamen mit dem Globmuster übereinstimmen, der Sprache mit der angegebenen ID zu.", - "assocDescriptionPath": "Ordnet alle Dateien, deren vollständiger Pfad mit dem Globmuster übereinstimmt, der Sprache mit der angegebenen ID zu.", + "assocDescriptionPath": "Ordnet alle Dateien, die mit dem absoluten Pfad des Globmusters in ihrem Pfad übereinstimmen, der Sprache mit der angegebenen ID zu.", "assocLabelFile": "Dateien mit Erweiterung", "assocLabelPath": "Dateien mit Pfad" } \ No newline at end of file diff --git a/i18n/deu/extensions/php/package.i18n.json b/i18n/deu/extensions/php/package.i18n.json new file mode 100644 index 00000000000..6d333fcd1e0 --- /dev/null +++ b/i18n/deu/extensions/php/package.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. +{ + "configuration.title": "PHP-Konfigurationsoptionen", + "configuration.validate.enable": "Gibt an, ob PHP-Überprüfung aktiviert ist.", + "configuration.validate.executablePath": "Zeigt auf die ausführbare PHP-Datei.", + "configuration.validate.run": "Gibt an, ob der Linter beim Speichern oder bei der Eingabe ausgeführt wird." +} \ No newline at end of file diff --git a/i18n/deu/extensions/typescript/out/typescriptServiceClient.i18n.json b/i18n/deu/extensions/typescript/out/typescriptServiceClient.i18n.json index 5cb6277d392..fd0f8ee06ac 100644 --- a/i18n/deu/extensions/typescript/out/typescriptServiceClient.i18n.json +++ b/i18n/deu/extensions/typescript/out/typescriptServiceClient.i18n.json @@ -7,5 +7,6 @@ "noServerFound": "Der Pfad \"{0}\" verweist nicht auf eine gültige Tsserver-Installation. TypeScript-Sprachfeatures werden deaktiviert.", "serverCouldNotBeStarted": "Der TypeScript-Sprachserver konnte nicht gestartet werden. Fehlermeldung: {0}", "serverDied": "Der TypeScript-Sprachdienst wurde während der letzten 5 Minuten 5 Mal unerwartet beendet. Öffnen Sie ggf. einen Fehlerbericht.", - "serverDiedAfterStart": "Der TypeScript-Sprachdienst wurde 5 Mal direkt nach seinem Start beendet. Der Dienst wird nicht neu gestartet. Bitte öffnen Sie einen Fehlerbericht." + "serverDiedAfterStart": "Der TypeScript-Sprachdienst wurde 5 Mal direkt nach seinem Start beendet. Der Dienst wird nicht neu gestartet. Bitte öffnen Sie einen Fehlerbericht.", + "versionNumber.custom": "benutzerdefiniert" } \ No newline at end of file diff --git a/i18n/deu/extensions/typescript/out/utils/projectStatus.i18n.json b/i18n/deu/extensions/typescript/out/utils/projectStatus.i18n.json index 5c1c8f400f1..e191b6ae763 100644 --- a/i18n/deu/extensions/typescript/out/utils/projectStatus.i18n.json +++ b/i18n/deu/extensions/typescript/out/utils/projectStatus.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "cmdCreate": "Datei \"jsconfig.json\" erstellen...", - "hint.tooltip": "Verwenden Sie ein Projekt und bessere IntelliSense-Funktionen, bessere Symbolsuche und vieles mehr.", - "hintCreate": "Verwenden Sie ein Projekt, und nutzen Sie bessere IntelliSense- und Codenavigationsfunktionen.", - "hintExclude": "\"{0}\" ist ein großes Projekt. Schließen Sie Ordner mit vielen Dateien aus, um eine bessere Leistung zu erzielen, beispielsweise: {1}...", + "cmdCreate": "\"jsconfig.json\" erstellen", + "hintCreate": "Erstellen Sie eine Datei \"jsconfig.json\", um leistungsfähigere IntelliSense-Funktionen und Codenavigation im gesamten Arbeitsbereich zu ermöglichen.", + "hintExclude": "Schließen Sie Ordner mit vielen Dateien aus, um eine bessere Leistung zu erzielen, beispielsweise: {0}", + "hintExclude.generic": "Schließen Sie Ordner mit vielen Dateien aus, um eine bessere Leistung zu erzielen.", + "ignore.cmdCreate": "Ignorieren", "large.label": "Auszuschließende Elemente konfigurieren", - "large.tooltip": "Zu viele Dateien in einem Projekt führen ggf. zu schlechter Leistung. Schließen Sie Ordner mit vielen Dateien aus, beispielsweise: {0}...", - "open": "Auszuschließende Elemente konfigurieren..." + "open": "Auszuschließende Elemente konfigurieren" } \ 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 index 2e817c9f74b..c392fc478d4 100644 --- a/i18n/deu/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/deu/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -31,6 +31,7 @@ "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.", + "selectionClipboard": "Steuert, ob die primäre Linux-Zwischenablage unterstützt werden soll.", "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.", diff --git a/i18n/deu/src/vs/editor/common/modes/modesRegistry.i18n.json b/i18n/deu/src/vs/editor/common/modes/modesRegistry.i18n.json new file mode 100644 index 00000000000..5339cf095c5 --- /dev/null +++ b/i18n/deu/src/vs/editor/common/modes/modesRegistry.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. +{ + "plainText.alias": "Nur-Text" +} \ 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 index 0326a4e9483..0269202686a 100644 --- a/i18n/deu/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json +++ b/i18n/deu/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -8,5 +8,6 @@ "actions.goToDeclToSide.label": "Definition an der Seite öffnen", "actions.gotoTypeDecl.label": "Gehe zu Typdefinition", "actions.previewDecl.label": "Peek-Definition", + "meta.title": " – {0} Definitionen", "multipleResults": "Klicken Sie, um die gefundenen {0}-Definitionen anzuzeigen." } \ 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 index 36e57586bbb..7dd455c72f4 100644 --- a/i18n/deu/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json +++ b/i18n/deu/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -13,5 +13,7 @@ "lines.moveDown": "Zeile nach unten verschieben", "lines.moveUp": "Zeile nach oben verschieben", "lines.outdent": "Zeile ausrücken", + "lines.sortAscending": "Zeilen aufsteigend sortieren", + "lines.sortDescending": "Zeilen absteigend sortieren", "lines.trimTrailingWhitespace": "Nachgestelltes Leerzeichen kürzen" } \ 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 index fde5b2c8ef6..91aba3b2d6f 100644 --- a/i18n/deu/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json +++ b/i18n/deu/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -6,5 +6,7 @@ { "QuickFixSelectionWidget.loading": "Wird geladen...", "QuickFixSelectionWidget.noSuggestions": "Keine Problembehebungsvorschläge.", + "ariaCurrentFix": "{0}, Vorschlag für Quick Fix", + "quickFixAriaAccepted": "{0}, angenommen", "treeAriaLabel": "Schneller Fix" } \ 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 index 7ddfb0d07ab..612beac1c3f 100644 --- a/i18n/deu/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json +++ b/i18n/deu/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "labelLoading": "Wird geladen...", + "meta.titleReference": " – {0} Verweise", "noResults": "Keine Ergebnisse", "references.action.label": "Alle Verweise suchen", "references.action.name": "Verweise anzeigen" diff --git a/i18n/deu/src/vs/languages/html/common/html.contribution.i18n.json b/i18n/deu/src/vs/languages/html/common/html.contribution.i18n.json new file mode 100644 index 00000000000..478a00796d1 --- /dev/null +++ b/i18n/deu/src/vs/languages/html/common/html.contribution.i18n.json @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "format.endWithNewline": "Endet mit einer neuen Zeile.", + "format.extraLiners": "Die Liste der Tags (durch Kommas getrennt), vor denen eine zusätzliche neue Zeile eingefügt werden soll. \"null\" verwendet standardmäßig \"head, body, /HTML\".", + "format.indentHandlebars": "Formatiert {{#foo}} und {{/foo}} und nimmt einen Einzug vor.", + "format.indentInnerHtml": "Nimmt einen Einzug für - und -Abschnitte vor.", + "format.maxPreserveNewLines": "Die maximale Anzahl von Zeilenumbrüchen, die in einem Block beibehalten werden soll. Verwenden Sie \"null\" für eine unbegrenzte Anzahl.", + "format.preserveNewLines": "Gibt an, ob vorhandene Zeilenumbrüche vor Elemente beibehalten werden sollen. Funktioniert nur vor Elementen, nicht in Tags oder für Text.", + "format.unformatted": "Die Liste der Tags (durch Kommas getrennt), die nicht erneut formatiert werden sollen. \"null\" bezieht sich standardmäßig auf alle Inlinetags.", + "format.wrapLineLength": "Die maximale Anzahl von Zeichen pro Zeile (0 = deaktiviert).", + "htmlConfigurationTitle": "HTML-Konfiguration" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/browser/actions/configureLocale.i18n.json b/i18n/deu/src/vs/workbench/browser/actions/configureLocale.i18n.json new file mode 100644 index 00000000000..1d82e3c41f1 --- /dev/null +++ b/i18n/deu/src/vs/workbench/browser/actions/configureLocale.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. +{ + "configureLocale": "Gebietsschema konfigurieren", + "displayLanguage": "Definiert die Anzeigesprache von VSCode.", + "fail.createSettings": "{0} ({1}) kann nicht erstellt werden.", + "restart": "Das Ändern des Werts erfordert einen Neustart von VSCode." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json b/i18n/deu/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json index ed8950beca7..93c4fdbae3c 100644 --- a/i18n/deu/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json +++ b/i18n/deu/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json @@ -12,7 +12,6 @@ "configureAssociations": "Dateizuordnungen konfigurieren...", "configureAssociationsExt": "Dateizuordnung für \"{0}\" konfigurieren...", "configuredLanguage": "Konfigurierte Sprache", - "defaultEncoding": "Konfigurierte Codierung", "disableTabMode": "Barrierefreiheitsmodus deaktivieren", "endOfLineCarriageReturnLineFeed": "CRLF", "endOfLineLineFeed": "LF", @@ -26,7 +25,7 @@ "noEditor": "Zurzeit ist kein Text-Editor aktiv.", "noFileEditor": "Zurzeit ist keine Datei aktiv.", "noWritableCodeEditor": "Der aktive Code-Editor ist schreibgeschützt.", - "persistFileAssociations": "Sie können Zuordnungen zwischen dem Dateinamen und der Sprache im Abschnitt **files.associations** konfigurieren.", + "persistFileAssociations": "Sie können Zuordnungen zwischen dem Dateinamen und der Sprache im Abschnitt **files.associations** konfigurieren. Für die Änderungen ist ggf. ein Neustart erforderlich, damit sie für bereits geöffnete Dateien wirksam werden.", "pickAction": "Aktion auswählen", "pickEncodingForReopen": "Dateicodierung zum erneuten Öffnen der Datei auswählen", "pickEncodingForSave": "Dateicodierung auswählen, mit der gespeichert werden soll", diff --git a/i18n/deu/src/vs/workbench/electron-browser/crashReporter.i18n.json b/i18n/deu/src/vs/workbench/electron-browser/crashReporter.i18n.json index 561f2c7a785..b49d00d4be9 100644 --- a/i18n/deu/src/vs/workbench/electron-browser/crashReporter.i18n.json +++ b/i18n/deu/src/vs/workbench/electron-browser/crashReporter.i18n.json @@ -4,6 +4,6 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "telemetry.enableCrashReporting": "Aktiviert Absturzberichte, die an Microsoft gesendet werden.\n\t// Diese Option erfordert einen Neustart von VSCode.", + "telemetry.enableCrashReporting": "Aktiviert Absturzberichte, die an Microsoft gesendet werden.\n\t// Diese Option erfordert einen Neustart, damit sie wirksam wird.", "telemetryConfigurationTitle": "Telemetriekonfiguration" } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json b/i18n/deu/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json index 4faf0f3f68f..34e5f2e36e8 100644 --- a/i18n/deu/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json +++ b/i18n/deu/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json @@ -12,7 +12,7 @@ "changeNow": "Jetzt ändern", "continue": "Weiter", "editFile": "{0} bearbeiten", - "exists": "Bitte entfernen Sie den Alias in \"{1}\", der auf \"{0}\" verweist, und wiederholen Sie diese Aktion.", + "exists": "Bitte entfernen Sie den Alias in \"{1}\" (Zeile {2}), der auf \"{0}\" verweist, und wiederholen Sie diese Aktion.", "install": "Befehl \"code\" in \"PATH\" installieren", "later": "Später", "laterInfo": "Denken Sie daran, dass Sie die Aktion \"{0}\" immer über die Befehlspalette ausführen können.", diff --git a/i18n/deu/src/vs/workbench/electron-main/main.i18n.json b/i18n/deu/src/vs/workbench/electron-main/main.i18n.json index c8fde9a0c06..01638af00f2 100644 --- a/i18n/deu/src/vs/workbench/electron-main/main.i18n.json +++ b/i18n/deu/src/vs/workbench/electron-main/main.i18n.json @@ -4,9 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // 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" + "newWindow": "Neues Fenster" } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/electron-main/menus.i18n.json b/i18n/deu/src/vs/workbench/electron-main/menus.i18n.json index d9fbde44241..4a92719b796 100644 --- a/i18n/deu/src/vs/workbench/electron-main/menus.i18n.json +++ b/i18n/deu/src/vs/workbench/electron-main/menus.i18n.json @@ -64,10 +64,10 @@ "miReplace": "&&Ersetzen", "miReportIssues": "&&Probleme melden", "miRestartToUpdate": "Für Update neu starten...", - "miRevert": "Datei wiederherstellen", + "miRevert": "D&&atei wiederherstellen", "miSave": "&&Speichern", - "miSaveAll": "&&Alles speichern", - "miSaveAs": "Speichern unter...", + "miSaveAll": "A&&lles speichern", + "miSaveAs": "Speichern &&unter...", "miSelectAll": "&&Alles auswählen", "miSelectTheme": "&&Farbdesign", "miSplitEditor": "&&Editor teilen", diff --git a/i18n/deu/src/vs/workbench/node/extensionHostMain.i18n.json b/i18n/deu/src/vs/workbench/node/extensionHostMain.i18n.json index e72f0170a4a..86879ef9e27 100644 --- a/i18n/deu/src/vs/workbench/node/extensionHostMain.i18n.json +++ b/i18n/deu/src/vs/workbench/node/extensionHostMain.i18n.json @@ -4,5 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionTestError": "Der Pfad \"{0}\" verweist nicht auf einen gültigen Test Runner für eine Extension." + "extensionTestError": "Der Pfad \"{0}\" verweist nicht auf einen gültigen Test Runner für eine Extension.", + "extensionUnderDevelopment": "Die Entwicklungsextension unter {0} wird geladen.", + "overwritingExtension": "Die Extension {0} wird mit {1} überschrieben." } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/node/extensionPoints.i18n.json b/i18n/deu/src/vs/workbench/node/extensionPoints.i18n.json new file mode 100644 index 00000000000..36e7e79b667 --- /dev/null +++ b/i18n/deu/src/vs/workbench/node/extensionPoints.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. +{ + "fileReadFail": "Die Datei \"{0}\" kann nicht gelesen werden: {1}", + "jsonParseFail": "Fehler beim Analysieren von {0}: {1}.", + "missingNLSKey": "Die Nachricht für den Schlüssel {0} wurde nicht gefunden." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/extensions/common/extensions.i18n.json b/i18n/deu/src/vs/workbench/parts/extensions/common/extensions.i18n.json index 9972d4e0a8c..9cb829782e9 100644 --- a/i18n/deu/src/vs/workbench/parts/extensions/common/extensions.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/extensions/common/extensions.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionsCategory": "Extensions" + "extensions": "Extensions" } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json b/i18n/deu/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json index 2e672e7c0f2..65c31874066 100644 --- a/i18n/deu/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json @@ -4,6 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "close": "Schließen", "deleteSure": "Möchten Sie \"{0}\" deinstallieren?", "installExtension": "Extension installieren", "restartNow": "Jetzt neu starten", diff --git a/i18n/deu/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json b/i18n/deu/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json index 5d710f5429b..933c99b1790 100644 --- a/i18n/deu/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json @@ -9,6 +9,5 @@ "multipleIssues": "Extensions ({0} Probleme)", "multipleUpdates": "Extensions ({0} Updates verfügbar)", "oneIssue": "Extensions (1 Problem)", - "oneUpdate": "Extensions (1 Update verfügbar)", - "uninstall": "Deinstallieren" + "oneUpdate": "Extensions (1 Update verfügbar)" } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json b/i18n/deu/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json index ff5fdb65096..21d67fe0c29 100644 --- a/i18n/deu/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json @@ -10,5 +10,6 @@ "invalidVersion": "Die Extension ist ungültig: Manifestversionskonflikt.", "missingGalleryInformation": "Kataloginformationen fehlen.", "noCompatible": "Eine kompatible Version von {0} mit dieser Version des Codes wurde nicht gefunden.", - "notExists": "Die Extension wurde nicht gefunden." + "notExists": "Die Extension wurde nicht gefunden.", + "restartCode": "Bitte starten Sie Code vor der Neuinstallation von {0} neu." } \ 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 index acc4a187b23..e282836f8fb 100644 --- a/i18n/deu/src/vs/workbench/parts/files/browser/fileActions.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -30,6 +30,7 @@ "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.", + "focusFilesExplorer": "Fokus auf Datei-Explorer", "focusWorkingFiles": "Fokus auf Arbeitsdateien", "globalCompareFile": "Aktive Datei vergleichen mit...", "importFiles": "Dateien importieren", 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 index 37a7e34e746..7b71b72d5c5 100644 --- a/i18n/deu/src/vs/workbench/parts/git/browser/gitServices.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -12,10 +12,12 @@ "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.", + "download": "Herunterladen", "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.", + "updateGit": "Git {0} scheint installiert zu sein. Code funktioniert am besten mit Git >= 2.0.0.", "workingTreeChanges": "{0} - Änderungen an der Arbeitsstruktur" } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json b/i18n/deu/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json index 61f7aaf019c..e1113750fe9 100644 --- a/i18n/deu/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json @@ -4,13 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "dotnetBuild": "Erstellt eine Datei \"tasks.json\", die die Kompilierung mithilfe des DotNet-Builds ausführt.", - "grunt": "Erstellt eine Datei \"tasks.json\" für Grunt. Wenn eine Jake-Datei vorhanden ist, werden Tasks automatisch erkannt.", - "gulp": "Erstellt eine Datei \"tasks.json\" für Gulp. Wenn eine Gulp-Datei vorhanden ist, werden Tasks automatisch erkannt.", - "jake": "Erstellt eine Datei \"tasks.json\" für Jake. Wenn eine Jake-Datei vorhanden ist, werden Tasks automatisch erkannt.", - "msbuild": "Erstellt eine Datei \"tasks.json\", die die Kompilierung mithilfe von MSBuild ausführt.", - "tsc.config": "Erstellt eine Datei \"tasks.json\", die ein TypeScript-Projekt kompiliert.", - "tsc.openFile": "Erstellt eine Datei \"tasks.json\", die die zurzeit geöffnete TypeScript-Datei kompiliert.", - "tsc.specificFile": "Erstellt eine Datei \"tasks.json\", die eine bestimmte TypeScript-Datei kompiliert.", - "tsc.watch": "Erstellt eine Datei \"tasks.json\", die ein TypeScript-Projekt im Überwachungsmodus kompiliert." + "dotnetCore": "Führt den .NET Core-Buildbefehl aus.", + "externalCommand": "Ein Beispiel für das Ausführen eines beliebigen externen Befehls.", + "msbuild": "Führt das Buildziel aus.", + "tsc.config": "Kompiliert ein TypeScript-Projekt.", + "tsc.watch": "Kompiliert ein TypeScript-Projekt im Überwachungsmodus." } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json b/i18n/deu/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json index 7231b17bfc0..94bb365c653 100644 --- a/i18n/deu/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json @@ -8,8 +8,11 @@ "CleanAction.label": "Bereinigungstask ausführen", "CloseMessageAction.label": "Schließen", "ConfigureTaskRunnerAction.autoDetect": "Fehler bei der automatischen Erkennung des Tasksystems. Die Standardvorlage wird verwendet. Einzelheiten finden Sie in der Taskausgabe.", + "ConfigureTaskRunnerAction.autoDetecting": "Tasks für {0} werden automatisch erkannt.", "ConfigureTaskRunnerAction.failed": "Die Datei \"tasks.json\" kann nicht im Ordner \".vscode\" erstellt werden. Einzelheiten finden Sie in der Taskausgabe.", "ConfigureTaskRunnerAction.label": "Taskausführung konfigurieren", + "ConfigureTaskRunnerAction.noWorkspace": "Tasks sind nur für einen Arbeitsbereichsordner verfügbar.", + "ConfigureTaskRunnerAction.quickPick.template": "Taskausführung auswählen", "JsonSchema.args": "Weitere Argumente, die an den Befehl übergeben werden.", "JsonSchema.command": "Der auszuführende Befehl. Es kann sich um ein externes Programm oder einen Shellbefehl handeln.", "JsonSchema.echoCommand": "Steuert, ob der ausgeführte Befehl in der Ausgabe angezeigt wird. Der Standardwert ist \"false\".", diff --git a/i18n/deu/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json b/i18n/deu/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json index 94066f9b800..b0ea502cffb 100644 --- a/i18n/deu/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json @@ -4,10 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "TaskSystemDetector.buildTaskDetected": "Ein Buildtask namens \"{0}\" wurde erkannt.", "TaskSystemDetector.noGruntProgram": "Grunt ist auf Ihrem System nicht installiert. Führen Sie \"npm install -g grunt\" aus, um die Anwendung zu installieren.", "TaskSystemDetector.noGulpProgram": "Gulp ist auf Ihrem System nicht installiert. Führen Sie \"npm install -g gulp\" aus, um die Anwendung zu installieren.", "TaskSystemDetector.noGulpTasks": "Die Ausführung von \"gulp -tasks-simple\" hat keine Tasks aufgelistet. Haben Sie \"npm install\" ausgeführt?", "TaskSystemDetector.noJakeProgram": "Jake ist auf Ihrem System nicht installiert. Führen Sie \"npm install -g jake\" aus, um die Anwendung zu installieren.", "TaskSystemDetector.noJakeTasks": "Die Ausführung von \"jake -tasks\" hat keine Tasks aufgelistet. Haben Sie \"npm install\" ausgeführt?", - "TaskSystemDetector.noProgram": "Das Programm {0} wurde nicht gefunden. Die Meldung lautet: {1}" + "TaskSystemDetector.noProgram": "Das Programm {0} wurde nicht gefunden. Die Meldung lautet: {1}", + "TaskSystemDetector.testTaskDetected": "Ein Testtask namens \"{0}\" wurde erkannt." } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json b/i18n/deu/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json new file mode 100644 index 00000000000..7a21037ca0d --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/update/electron-browser/update.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. +{ + "close": "Schließen", + "license": "Lizenz lesen", + "licenseChanged": "Unsere Lizenzbedingungen haben sich geändert. Bitte lesen Sie sie.", + "releaseNotes": "Willkommen bei {0} v{1}! Möchten Sie die Hinweise zu dieser Version lesen?" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/services/themes/node/themeService.i18n.json b/i18n/deu/src/vs/workbench/services/themes/node/themeService.i18n.json index f05f6b864cb..77dbb2be677 100644 --- a/i18n/deu/src/vs/workbench/services/themes/node/themeService.i18n.json +++ b/i18n/deu/src/vs/workbench/services/themes/node/themeService.i18n.json @@ -6,6 +6,7 @@ { "error.cannotloadtheme": "{0} kann nicht geladen werden.", "error.cannotparse": "Probleme beim Analysieren der PLIST-Datei: {0}", + "error.cannotparsejson": "Probleme beim Analysieren der JSON-Designdatei: {0}", "invalid.path.1": "Es wurde erwartet, dass \"contributes.{0}.path\" ({1}) im Ordner ({2}) der Extension enthalten ist. Dies führt ggf. dazu, dass die Extension nicht portierbar ist.", "reqarray": "Der Extensionpunkt \"{0}\" muss ein Array sein.", "reqpath": "In \"contributes.{0}.path\" wurde eine Zeichenfolge erwartet. Bereitgestellter Wert: {1}", diff --git a/i18n/esn/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json b/i18n/esn/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json index 6038f6da08f..18708c94517 100644 --- a/i18n/esn/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json +++ b/i18n/esn/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json @@ -5,7 +5,7 @@ // Do not edit this file. It is machine generated. { "assocDescriptionFile": "Asigna todos los archivos cuyo nombre coincide con el patrón global al lenguaje con el identificador especificado.", - "assocDescriptionPath": "Asigna todos los archivos cuya ruta de acceso completa coincide con el patrón global al lenguaje con el identificador especificado.", + "assocDescriptionPath": "Asigna todos los archivos cuya ruta de acceso al lenguaje con el identificador especificado coincide con el patrón global de ruta de acceso absoluta.", "assocLabelFile": "Archivos con extensión", "assocLabelPath": "Archivos con ruta de acceso" } \ No newline at end of file diff --git a/i18n/esn/extensions/php/package.i18n.json b/i18n/esn/extensions/php/package.i18n.json new file mode 100644 index 00000000000..e4a90878f4d --- /dev/null +++ b/i18n/esn/extensions/php/package.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. +{ + "configuration.title": "Opciones de configuración de PHP", + "configuration.validate.enable": "Indica si la validación de PHP está habilitada o no.", + "configuration.validate.executablePath": "Señala al ejecutable PHP.", + "configuration.validate.run": "Indica si linter se ejecuta al guardar o al escribir." +} \ No newline at end of file diff --git a/i18n/esn/extensions/typescript/out/typescriptServiceClient.i18n.json b/i18n/esn/extensions/typescript/out/typescriptServiceClient.i18n.json index 6958401086b..1551a651a9e 100644 --- a/i18n/esn/extensions/typescript/out/typescriptServiceClient.i18n.json +++ b/i18n/esn/extensions/typescript/out/typescriptServiceClient.i18n.json @@ -7,5 +7,6 @@ "noServerFound": "La ruta de acceso {0} no apunta a una instalación válida de tsserver. Las características del lenguaje TypeScript se deshabilitan.", "serverCouldNotBeStarted": "El servidor del lenguaje TypeScript no se pudo iniciar. El mensaje de error es: {0}", "serverDied": "El servicio de lenguaje Typescript finalizó de forma inesperada cinco veces en los últimos cinco minutos. Considere la posibilidad de abrir un informe de errores.", - "serverDiedAfterStart": "El servicio de lenguaje Typescript finalizó de forma inesperada cinco veces después de haberse iniciado y no se reiniciará. Abra un informe de errores." + "serverDiedAfterStart": "El servicio de lenguaje Typescript finalizó de forma inesperada cinco veces después de haberse iniciado y no se reiniciará. Abra un informe de errores.", + "versionNumber.custom": "personalizada" } \ No newline at end of file diff --git a/i18n/esn/extensions/typescript/out/utils/projectStatus.i18n.json b/i18n/esn/extensions/typescript/out/utils/projectStatus.i18n.json index 42dcad083f3..003acd7bd40 100644 --- a/i18n/esn/extensions/typescript/out/utils/projectStatus.i18n.json +++ b/i18n/esn/extensions/typescript/out/utils/projectStatus.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "cmdCreate": "Crear archivo jsconfig.json...", - "hint.tooltip": "Trabaje con proyectos y experimente un uso mejorado de IntelliSense y de la búsqueda de símbolos, entre otros.", - "hintCreate": "Trabaje con proyectos y experimente un uso mejorado de IntelliSense y de la navegación de código.", - "hintExclude": "'{0}' es un proyecto grande. Para mejorar el rendimiento, excluya las carpetas con muchos archivos, como: {1}...", + "cmdCreate": "Crear jsconfig.json", + "hintCreate": "Cree un archivo jsconfig.json para mejorar IntelliSense y la navegación de código en toda el área de trabajo.", + "hintExclude": "Para mejorar el rendimiento, excluya las carpetas con muchos archivos, como: {0}.", + "hintExclude.generic": "Para mejorar el rendimiento, excluya las carpetas con muchos archivos.", + "ignore.cmdCreate": "Ignorar", "large.label": "Configurar exclusiones", - "large.tooltip": "La existencia de demasiados archivos en un proyecto puede provocar la disminución del rendimiento. Excluya las carpetas con muchos archivos, como: {0}...", - "open": "Configurar exclusiones..." + "open": "Configurar exclusiones" } \ 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 index d78d507e628..350159f7641 100644 --- a/i18n/esn/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/esn/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -31,6 +31,7 @@ "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", + "selectionClipboard": "Controla si el portapapeles principal de Linux debe admitirse.", "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", diff --git a/i18n/esn/src/vs/editor/common/modes/modesRegistry.i18n.json b/i18n/esn/src/vs/editor/common/modes/modesRegistry.i18n.json new file mode 100644 index 00000000000..7d104992984 --- /dev/null +++ b/i18n/esn/src/vs/editor/common/modes/modesRegistry.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. +{ + "plainText.alias": "Texto sin 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 index 78dc2f1a23c..c0874a1d8d2 100644 --- a/i18n/esn/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json +++ b/i18n/esn/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -8,5 +8,6 @@ "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", + "meta.title": " – {0} definiciones", "multipleResults": "Haga clic para mostrar las {0} definiciones encontradas." } \ 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 index cebb7517ee5..9d3718ab3c9 100644 --- a/i18n/esn/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json +++ b/i18n/esn/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -13,5 +13,7 @@ "lines.moveDown": "Mover línea hacia abajo", "lines.moveUp": "Mover línea hacia arriba", "lines.outdent": "Anular sangría de línea", + "lines.sortAscending": "Ordenar líneas en orden ascendente", + "lines.sortDescending": "Ordenar líneas en orden descendente", "lines.trimTrailingWhitespace": "Recortar espacio final" } \ 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 index 7baa7434621..bd12dbdc45c 100644 --- a/i18n/esn/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json +++ b/i18n/esn/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -6,5 +6,7 @@ { "QuickFixSelectionWidget.loading": "Cargando...", "QuickFixSelectionWidget.noSuggestions": "No hay sugerencias de correcciones.", + "ariaCurrentFix": "{0}, sugerencia de corrección rápida", + "quickFixAriaAccepted": "{0}, aceptada", "treeAriaLabel": "Corrección rápida" } \ 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 index 2958a4a8f85..c14457e8907 100644 --- a/i18n/esn/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json +++ b/i18n/esn/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "labelLoading": "Cargando...", + "meta.titleReference": " – {0} referencias", "noResults": "No hay ningún resultado", "references.action.label": "Buscar todas las referencias", "references.action.name": "Mostrar referencias" 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 index 0475b58e200..5083c66225d 100644 --- a/i18n/esn/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json +++ b/i18n/esn/src/vs/editor/contrib/suggest/browser/suggestWidget.i18n.json @@ -10,7 +10,7 @@ "readMore": "Leer más...{0}", "suggestWidget.loading": "Cargando...", "suggestWidget.noSuggestions": "No hay sugerencias.", - "suggestionAriaAccepted": "{0}, aceptado", + "suggestionAriaAccepted": "{0}, aceptada", "suggestionAriaLabel": "{0}, sugerencia", "suggestionWithDetailsAriaLabel": "{0}, sugerencia, con detalles" } \ No newline at end of file diff --git a/i18n/esn/src/vs/languages/html/common/html.contribution.i18n.json b/i18n/esn/src/vs/languages/html/common/html.contribution.i18n.json new file mode 100644 index 00000000000..0bb5326b5ed --- /dev/null +++ b/i18n/esn/src/vs/languages/html/common/html.contribution.i18n.json @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "format.endWithNewline": "Finalizar con una nueva línea.", + "format.extraLiners": "Lista de etiquetas, separadas por comas, que deben tener una nueva línea adicional delante. \"null\" tiene como valores predeterminados \"head, body, /html\".", + "format.indentHandlebars": "Formato y sangría {{#foo}} y {{/foo}}.", + "format.indentInnerHtml": "Aplicar sangría a las secciones y .", + "format.maxPreserveNewLines": "Número máximo de saltos de línea que deben conservarse en un fragmento. Use \"null\" para que el número sea ilimitado.", + "format.preserveNewLines": "Indica si los saltos de línea existentes delante de los elementos deben conservarse. Solo funciona delante de los elementos, no dentro de las etiquetas o con texto.", + "format.unformatted": "Lista de etiquetas, separadas por comas, a las que no se debe volver a aplicar formato. El valor predeterminado de \"null\" son todas las etiquetas alineadas.", + "format.wrapLineLength": "Cantidad máxima de caracteres por línea (0 = deshabilitar).", + "htmlConfigurationTitle": "Configuración HTML" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/browser/actions/configureLocale.i18n.json b/i18n/esn/src/vs/workbench/browser/actions/configureLocale.i18n.json new file mode 100644 index 00000000000..b2c2f55fb27 --- /dev/null +++ b/i18n/esn/src/vs/workbench/browser/actions/configureLocale.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. +{ + "configureLocale": "Definir configuración regional", + "displayLanguage": "Define el lenguaje para mostrar de VSCode.", + "fail.createSettings": "No se puede crear '{0}' ({1}).", + "restart": "Al cambiar el valor, es necesario reiniciar VSCode." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json b/i18n/esn/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json index 47e7eedc9df..4db4ecaec55 100644 --- a/i18n/esn/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json +++ b/i18n/esn/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json @@ -12,7 +12,6 @@ "configureAssociations": "Configurar asociaciones de archivos...", "configureAssociationsExt": "Configurar asociación de archivos para '{0}'...", "configuredLanguage": "Lenguaje configurado", - "defaultEncoding": "Codificación configurada", "disableTabMode": "Deshabilitar modo de accesibilidad", "endOfLineCarriageReturnLineFeed": "CRLF", "endOfLineLineFeed": "LF", @@ -26,7 +25,7 @@ "noEditor": "No hay ningún editor de texto activo en este momento.", "noFileEditor": "No hay ningún archivo activo en este momento.", "noWritableCodeEditor": "El editor de código activo es de solo lectura.", - "persistFileAssociations": "El nombre de archivo se puede configurar para las asociaciones de lenguaje desde la sección **files.associations**", + "persistFileAssociations": "El nombre de archivo se puede configurar para las asociaciones de lenguaje de la sección **files.associations**. Puede que sea necesario reiniciar para que los cambios se apliquen a los archivos abiertos.", "pickAction": "Seleccionar acción", "pickEncodingForReopen": "Seleccionar codificación de archivo para reabrir archivo", "pickEncodingForSave": "Seleccionar codificación de archivo para guardar", diff --git a/i18n/esn/src/vs/workbench/electron-browser/crashReporter.i18n.json b/i18n/esn/src/vs/workbench/electron-browser/crashReporter.i18n.json index 54b6cd0825f..a4b8a6ad0bb 100644 --- a/i18n/esn/src/vs/workbench/electron-browser/crashReporter.i18n.json +++ b/i18n/esn/src/vs/workbench/electron-browser/crashReporter.i18n.json @@ -4,6 +4,6 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "telemetry.enableCrashReporting": "Habilite los informes de bloqueo para enviarlos a Microsoft.\n\t// Esta opción requiere que se reinicie VSCode para surtir efecto.", + "telemetry.enableCrashReporting": "Habilite los informes de bloqueo para enviarlos a Microsoft.\n\t// Esta opción requiere que se reinicie para surtir efecto.", "telemetryConfigurationTitle": "Configuración de telemetría" } \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json b/i18n/esn/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json index cd4fd37e68f..c555878a023 100644 --- a/i18n/esn/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json +++ b/i18n/esn/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json @@ -12,7 +12,7 @@ "changeNow": "Cambiar ahora", "continue": "Continuar", "editFile": "Editar '{0}'", - "exists": "Quite el alias que hace referencia a '{0}' en '{1}' y pruebe a realizar esta acción de nuevo.", + "exists": "Quite el alias que hace referencia a '{0}' en '{1}' (línea {2}) y pruebe a realizar esta acción de nuevo.", "install": "Instalar el comando \"code\" en PATH", "later": "Más tarde", "laterInfo": "Recuerde que siempre puede ejecutar la acción '{0}' desde la paleta de comandos.", diff --git a/i18n/esn/src/vs/workbench/electron-main/main.i18n.json b/i18n/esn/src/vs/workbench/electron-main/main.i18n.json index a422c6cccee..ca1f5b199d4 100644 --- a/i18n/esn/src/vs/workbench/electron-main/main.i18n.json +++ b/i18n/esn/src/vs/workbench/electron-main/main.i18n.json @@ -4,9 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // 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" + "newWindow": "Nueva ventana" } \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/electron-main/menus.i18n.json b/i18n/esn/src/vs/workbench/electron-main/menus.i18n.json index 90fef350b63..093a1a49dec 100644 --- a/i18n/esn/src/vs/workbench/electron-main/menus.i18n.json +++ b/i18n/esn/src/vs/workbench/electron-main/menus.i18n.json @@ -64,10 +64,10 @@ "miReplace": "&&Reemplazar", "miReportIssues": "&&Notificar problemas", "miRestartToUpdate": "Reiniciar para actualizar...", - "miRevert": "Revertir archivo", + "miRevert": "Revertir a&&rchivo", "miSave": "&&Guardar", - "miSaveAll": "Guardar &&todo", - "miSaveAs": "Guardar como...", + "miSaveAll": "Guardar t&&odo", + "miSaveAs": "Guardar &&como...", "miSelectAll": "&&Seleccionar todo", "miSelectTheme": "&&Tema de color", "miSplitEditor": "Dividir &&editor", diff --git a/i18n/esn/src/vs/workbench/node/extensionHostMain.i18n.json b/i18n/esn/src/vs/workbench/node/extensionHostMain.i18n.json index aaf288558db..11d6bdb2d6e 100644 --- a/i18n/esn/src/vs/workbench/node/extensionHostMain.i18n.json +++ b/i18n/esn/src/vs/workbench/node/extensionHostMain.i18n.json @@ -4,5 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionTestError": "La ruta de acceso {0} no apunta a un ejecutor de pruebas de extensión." + "extensionTestError": "La ruta de acceso {0} no apunta a un ejecutor de pruebas de extensión.", + "extensionUnderDevelopment": "Cargando la extensión de desarrollo en {0}", + "overwritingExtension": "Sobrescribiendo la extensión {0} con {1}." } \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/node/extensionPoints.i18n.json b/i18n/esn/src/vs/workbench/node/extensionPoints.i18n.json new file mode 100644 index 00000000000..07635ee3df5 --- /dev/null +++ b/i18n/esn/src/vs/workbench/node/extensionPoints.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. +{ + "fileReadFail": "No se puede leer el archivo {0}: {1}.", + "jsonParseFail": "No se pudo analizar {0}: {1}.", + "missingNLSKey": "No se encontró un mensaje para la clave {0}." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/extensions/common/extensions.i18n.json b/i18n/esn/src/vs/workbench/parts/extensions/common/extensions.i18n.json index 969ff9ec165..db1c3efd21a 100644 --- a/i18n/esn/src/vs/workbench/parts/extensions/common/extensions.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/extensions/common/extensions.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionsCategory": "Extensiones" + "extensions": "Extensiones" } \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json b/i18n/esn/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json index 6327cf13e43..7c4145a3745 100644 --- a/i18n/esn/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json @@ -4,6 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "close": "Cerrar", "deleteSure": "¿Seguro que quiere desinstalar '{0}'?", "installExtension": "Instalar extensión", "restartNow": "Reiniciar ahora", diff --git a/i18n/esn/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json b/i18n/esn/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json index 778d667439f..ddca2eb32cb 100644 --- a/i18n/esn/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json @@ -9,6 +9,5 @@ "multipleIssues": "Extensiones ({0} problemas)", "multipleUpdates": "Extensiones ({0} actualizaciones disponibles)", "oneIssue": "Extensiones (1 problema)", - "oneUpdate": "Extensiones (1 actualización disponible)", - "uninstall": "Desinstalar" + "oneUpdate": "Extensiones (1 actualización disponible)" } \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json b/i18n/esn/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json index a4260e43346..709d0301d11 100644 --- a/i18n/esn/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json @@ -10,5 +10,6 @@ "invalidVersion": "Extensión no válida: La versión del manifiesto no coincide.", "missingGalleryInformation": "Falta información de la galería", "noCompatible": "No se encontró una versión de {0} compatible con esta versión de Code.", - "notExists": "No se encontró la extensión" + "notExists": "No se encontró la extensión", + "restartCode": "Reinicie Code antes de volver a instalar {0}." } \ 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 index c84c769af24..f2e9859d73e 100644 --- a/i18n/esn/src/vs/workbench/parts/files/browser/fileActions.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -30,6 +30,7 @@ "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.", + "focusFilesExplorer": "Enfocar Explorador de archivos", "focusWorkingFiles": "Enfocar archivos de trabajo", "globalCompareFile": "Comparar archivo activo con...", "importFiles": "Importar archivos", 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 index dc2d4396890..9ff09d97a57 100644 --- a/i18n/esn/src/vs/workbench/parts/git/browser/gitServices.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -12,10 +12,12 @@ "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.", + "download": "Descargar", "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.", + "updateGit": "Parece que tiene GIT {0} instalado. Code funciona mejor con GIT >=2.0.0.", "workingTreeChanges": "{0} - Cambios del árbol de trabajo" } \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json b/i18n/esn/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json index 75b47a9af9a..b8ab5235183 100644 --- a/i18n/esn/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json @@ -4,13 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "dotnetBuild": "Crea un archivo tasks.json que compila con dotnet build.", - "grunt": "Crea un archivo tasks.json para Grunt. Si hay un archivo Jake, las tareas se detectarán automáticamente.", - "gulp": "Crea un archivo tasks.json para Gulp. Si hay un archivo de Gulp, las tareas se detectarán automáticamente.", - "jake": "Crea un archivo tasks.json para Jake. Si hay un archivo Jake, las tareas se detectarán automáticamente.", - "msbuild": "Crea un archivo tasks.json que compila con MSBuild.", - "tsc.config": "Crea un archivo tasks.json que compila un proyecto de TypeScript.", - "tsc.openFile": "Crea un archivo tasks.json que compila el archivo TypeScript abierto actualmente.", - "tsc.specificFile": "Crea un archivo tasks.json que compila un archivo TypeScript específico.", - "tsc.watch": "Crea un archivo tasks.json que compila un proyecto de TypeScript en modo de inspección." + "dotnetCore": "Ejecuta el comando de compilación de .NET Core", + "externalCommand": "Ejemplo para ejecutar un comando arbitrario externo", + "msbuild": "Ejecuta el destino de compilación", + "tsc.config": "Compila un proyecto de TypeScript", + "tsc.watch": "Compila un proyecto de TypeScript en modo de inspección" } \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json b/i18n/esn/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json index e8e027838f6..f926df3ee6b 100644 --- a/i18n/esn/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json @@ -8,8 +8,11 @@ "CleanAction.label": "Ejecutar tarea de limpieza", "CloseMessageAction.label": "Cerrar", "ConfigureTaskRunnerAction.autoDetect": "Error de detección automática del sistema de tareas. Se usa la plantilla predeterminada. Consulte el resultado de la tarea para obtener más detalles", + "ConfigureTaskRunnerAction.autoDetecting": "Detectando tareas automáticamente para {0}", "ConfigureTaskRunnerAction.failed": "No se puede crear el archivo \"tasks.json\" dentro de la carpeta \".vscode\". Consulte el resultado de la tarea para obtener más detalles.", "ConfigureTaskRunnerAction.label": "Configurar ejecutor de tareas", + "ConfigureTaskRunnerAction.noWorkspace": "Las tareas solo están disponibles en una carpeta del área de trabajo.", + "ConfigureTaskRunnerAction.quickPick.template": "Seleccionar un ejecutador de tareas", "JsonSchema.args": "Argumentos adicionales que se pasan al comando.", "JsonSchema.command": "El comando que se va a ejecutar. Puede ser un programa externo o un comando shell.", "JsonSchema.echoCommand": "Controla si el comando ejecutado se muestra en la salida. El valor predeterminado es false.", diff --git a/i18n/esn/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json b/i18n/esn/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json index 0175e961098..7b0bd631e4c 100644 --- a/i18n/esn/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json @@ -4,10 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "TaskSystemDetector.buildTaskDetected": "Se detectó una tarea de compilación llamada '{0}'.", "TaskSystemDetector.noGruntProgram": "Grunt no está instalado en el sistema. Ejecute \"npm install -g grunt\" para instalarlo.", "TaskSystemDetector.noGulpProgram": "Gulp no está instalado en el sistema. Ejecute \"npm install -g gulp\" para instalarlo.", "TaskSystemDetector.noGulpTasks": "Al ejecutar --tasks-simple de Gulp no se enumera ninguna tarea. ¿Ha ejecutado \"npm install\"?", "TaskSystemDetector.noJakeProgram": "Jake no está instalado en el sistema. Ejecute \"npm install -g jake\" para instalarlo.", "TaskSystemDetector.noJakeTasks": "Al ejecutar --tasks de jake no se enumera ninguna tarea. ¿Ha ejecutado \"npm install\"?", - "TaskSystemDetector.noProgram": "El programa {0} no se encontró. El mensaje es {1}" + "TaskSystemDetector.noProgram": "El programa {0} no se encontró. El mensaje es {1}", + "TaskSystemDetector.testTaskDetected": "Se detectó una tarea de prueba llamada '{0}'." } \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json b/i18n/esn/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json new file mode 100644 index 00000000000..5b301e89369 --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/update/electron-browser/update.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. +{ + "close": "Cerrar", + "license": "Leer licencia", + "licenseChanged": "Los términos de licencia han cambiado, revíselos.", + "releaseNotes": "{0} v{1}. ¿Quiere leer las notas de la versión?" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/services/themes/node/themeService.i18n.json b/i18n/esn/src/vs/workbench/services/themes/node/themeService.i18n.json index 5e280340819..b027afbc137 100644 --- a/i18n/esn/src/vs/workbench/services/themes/node/themeService.i18n.json +++ b/i18n/esn/src/vs/workbench/services/themes/node/themeService.i18n.json @@ -6,6 +6,7 @@ { "error.cannotloadtheme": "No se puede cargar {0}", "error.cannotparse": "Problemas al analizar el archivo .plist: {0}", + "error.cannotparsejson": "Problemas al analizar el archivo de tema JSON: {0}", "invalid.path.1": "Se esperaba que \"contributes.{0}.path\" ({1}) se incluyera en la carpeta de la extensión ({2}). Esto puede hacer que la extensión no sea portátil.", "reqarray": "El punto de extensión `{0}` debe ser una matriz.", "reqpath": "Se esperaba una cadena en \"contributes.{0}.path\". Valor proporcionado: {1}", diff --git a/i18n/fra/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json b/i18n/fra/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json index 8729c9d347b..fa1b2dbc687 100644 --- a/i18n/fra/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json +++ b/i18n/fra/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json @@ -5,7 +5,7 @@ // Do not edit this file. It is machine generated. { "assocDescriptionFile": "Mappez au langage avec l'ID donné tous les fichiers dont le nom correspond au modèle Glob.", - "assocDescriptionPath": "Mappez au langage avec l'ID donné tous les fichiers dont le chemin complet correspond au modèle Glob.", + "assocDescriptionPath": "Mappez au langage ayant l'ID spécifié tous les fichiers dont le chemin correspond au modèle Glob de chemin absolu.", "assocLabelFile": "Fichiers avec extension", "assocLabelPath": "Fichiers avec chemin" } \ No newline at end of file diff --git a/i18n/fra/extensions/php/package.i18n.json b/i18n/fra/extensions/php/package.i18n.json new file mode 100644 index 00000000000..fae477c3844 --- /dev/null +++ b/i18n/fra/extensions/php/package.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. +{ + "configuration.title": "Options de configuration PHP", + "configuration.validate.enable": "Spécifie si la validation PHP est activée ou non.", + "configuration.validate.executablePath": "Pointe vers l'exécutable PHP.", + "configuration.validate.run": "Spécifie si les vérifications lint sont exécutées au moment de l'enregistrement ou de la saisie." +} \ No newline at end of file diff --git a/i18n/fra/extensions/typescript/out/typescriptServiceClient.i18n.json b/i18n/fra/extensions/typescript/out/typescriptServiceClient.i18n.json index f51ccf60505..76e8a1884f4 100644 --- a/i18n/fra/extensions/typescript/out/typescriptServiceClient.i18n.json +++ b/i18n/fra/extensions/typescript/out/typescriptServiceClient.i18n.json @@ -7,5 +7,6 @@ "noServerFound": "Le chemin {0} ne pointe pas vers une installation valide de tsserver. Les fonctionnalités du langage TypeScript vont être désactivées.", "serverCouldNotBeStarted": "Impossible de démarrer le serveur de langage TypeScript. Message d'erreur : {0}", "serverDied": "Le service de langage TypeScript s'est subitement arrêté 5 fois au cours des 5 dernières minutes. Pensez à ouvrir un rapport de bogues.", - "serverDiedAfterStart": "Le service de langage TypeScript s'est subitement arrêté 5 fois juste après le démarrage et ne sera pas redémarré. Ouvrez un rapport de bogues." + "serverDiedAfterStart": "Le service de langage TypeScript s'est subitement arrêté 5 fois juste après le démarrage et ne sera pas redémarré. Ouvrez un rapport de bogues.", + "versionNumber.custom": "personnalisé" } \ No newline at end of file diff --git a/i18n/fra/extensions/typescript/out/utils/projectStatus.i18n.json b/i18n/fra/extensions/typescript/out/utils/projectStatus.i18n.json index aa0d7cd1b37..019b7e31f65 100644 --- a/i18n/fra/extensions/typescript/out/utils/projectStatus.i18n.json +++ b/i18n/fra/extensions/typescript/out/utils/projectStatus.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "cmdCreate": "Créer jsconfig.json-file...", - "hint.tooltip": "Définissez un projet et bénéficiez, entre autres, de fonctionnalités IntelliSense améliorées et d'un meilleur outil de recherche des symboles.", - "hintCreate": "Définissez un projet et bénéficiez de fonctionnalités IntelliSense améliorées et d'une meilleure navigation dans le code.", - "hintExclude": "'{0}' est un projet volumineux. Pour accroître les performances, excluez les dossiers contenant de nombreux fichiers, comme {1}...", + "cmdCreate": "Créer jsconfig.json", + "hintCreate": "Créez un fichier jsconfig.json pour améliorer les fonctionnalités IntelliSense et la navigation au sein du code dans l'ensemble de l'espace de travail.", + "hintExclude": "Pour accroître les performances, excluez les dossiers contenant de nombreux fichiers, par exemple : {0}", + "hintExclude.generic": "Pour accroître les performances, excluez les dossiers contenant de nombreux fichiers.", + "ignore.cmdCreate": "Ignorer", "large.label": "Configurer les exclusions", - "large.tooltip": "Un projet contenant trop de fichiers peut entraîner une dégradation des performances. Excluez les dossiers contenant de nombreux fichiers, comme {0}...", - "open": "Configurer les exclusions..." + "open": "Configurer les exclusions" } \ 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 index 57ed0d76e58..47e9d6db556 100644 --- a/i18n/fra/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/fra/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -31,6 +31,7 @@ "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", + "selectionClipboard": "Contrôle si le presse-papiers primaire Linux doit être pris en charge.", "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", diff --git a/i18n/fra/src/vs/editor/common/modes/modesRegistry.i18n.json b/i18n/fra/src/vs/editor/common/modes/modesRegistry.i18n.json new file mode 100644 index 00000000000..ceaaa4ef30c --- /dev/null +++ b/i18n/fra/src/vs/editor/common/modes/modesRegistry.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. +{ + "plainText.alias": "Texte brut" +} \ 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 index fc4ededdd76..3090375f2d1 100644 --- a/i18n/fra/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json +++ b/i18n/fra/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -8,5 +8,6 @@ "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", + "meta.title": " – {0} définitions", "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/linesOperations/common/linesOperations.i18n.json b/i18n/fra/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json index 02b8774eb41..12f839e5129 100644 --- a/i18n/fra/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json +++ b/i18n/fra/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -13,5 +13,7 @@ "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.sortAscending": "Trier les lignes dans l'ordre croissant", + "lines.sortDescending": "Trier les lignes dans l'ordre décroissant", "lines.trimTrailingWhitespace": "Découper l'espace blanc de fin" } \ 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 index c92d588f9d5..5665fa22b76 100644 --- a/i18n/fra/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json +++ b/i18n/fra/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -6,5 +6,7 @@ { "QuickFixSelectionWidget.loading": "Chargement en cours...", "QuickFixSelectionWidget.noSuggestions": "Pas de suggestions de correctif.", + "ariaCurrentFix": "{0}, suggestion de correction rapide", + "quickFixAriaAccepted": "{0}, accepté", "treeAriaLabel": "Correctif rapide" } \ 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 index c0b90745e90..0059867cf59 100644 --- a/i18n/fra/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json +++ b/i18n/fra/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "labelLoading": "Chargement en cours...", + "meta.titleReference": " – {0} références", "noResults": "Aucun résultat", "references.action.label": "Rechercher toutes les références", "references.action.name": "Afficher les références" diff --git a/i18n/fra/src/vs/languages/html/common/html.contribution.i18n.json b/i18n/fra/src/vs/languages/html/common/html.contribution.i18n.json new file mode 100644 index 00000000000..7cd8dc5556c --- /dev/null +++ b/i18n/fra/src/vs/languages/html/common/html.contribution.i18n.json @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "format.endWithNewline": "Finissez par un caractère de nouvelle ligne.", + "format.extraLiners": "Liste de balises, séparées par une virgule, qui doivent être précédées d'une nouvelle ligne. 'null' prend par défaut la valeur \"head, body, /html\".", + "format.indentHandlebars": "Mettez en forme et en retrait {{#foo}}, ainsi que {{/foo}}.", + "format.indentInnerHtml": "Mettez en retrait les sections et .", + "format.maxPreserveNewLines": "Nombre maximal de sauts de ligne à conserver dans un bloc. Utilisez 'null' pour indiquer une valeur illimitée.", + "format.preserveNewLines": "Spécifie si les sauts de ligne existants qui précèdent les éléments doivent être conservés. Fonctionne uniquement devant les éléments, pas dans les balises, ni pour du texte.", + "format.unformatted": "Liste des balises, séparées par des virgules, qui ne doivent pas être remises en forme. 'null' correspond par défaut à toutes les balises intralignes.", + "format.wrapLineLength": "Nombre maximal de caractères par ligne (0 = désactiver).", + "htmlConfigurationTitle": "Configuration HTML" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/browser/actions/configureLocale.i18n.json b/i18n/fra/src/vs/workbench/browser/actions/configureLocale.i18n.json new file mode 100644 index 00000000000..1753ca1ae2b --- /dev/null +++ b/i18n/fra/src/vs/workbench/browser/actions/configureLocale.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. +{ + "configureLocale": "Configurer les paramètres régionaux", + "displayLanguage": "Définit le langage affiché par VSCode.", + "fail.createSettings": "Impossible de créer '{0}' ({1}).", + "restart": "Si la valeur change, VSCode doit redémarrer." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json b/i18n/fra/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json index 7f9a3ed6fbb..710b6d5d6f4 100644 --- a/i18n/fra/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json +++ b/i18n/fra/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json @@ -12,7 +12,6 @@ "configureAssociations": "Configurer les associations de fichiers...", "configureAssociationsExt": "Configurer l'association de fichier pour '{0}'...", "configuredLanguage": "Langage configuré", - "defaultEncoding": "Encodage configuré", "disableTabMode": "Désactiver le mode d'accessibilité", "endOfLineCarriageReturnLineFeed": "CRLF", "endOfLineLineFeed": "LF", @@ -26,7 +25,7 @@ "noEditor": "Aucun éditeur de texte actif actuellement", "noFileEditor": "Aucun fichier actif actuellement", "noWritableCodeEditor": "L'éditeur de code actif est en lecture seule.", - "persistFileAssociations": "Vous pouvez configurer les associations entre les noms de fichiers et les langages dans la section **files.associations**", + "persistFileAssociations": "Vous pouvez configurer les associations entre les noms de fichiers et les langages dans la section **files.associations**. Vous devrez peut-être effectuer un redémarrage pour que les changements soient pris en compte sur les fichiers déjà ouverts.", "pickAction": "Sélectionner une action", "pickEncodingForReopen": "Sélectionner l'encodage du fichier pour rouvrir le fichier", "pickEncodingForSave": "Sélectionner l'encodage du fichier à utiliser pour l'enregistrement", diff --git a/i18n/fra/src/vs/workbench/electron-browser/crashReporter.i18n.json b/i18n/fra/src/vs/workbench/electron-browser/crashReporter.i18n.json index 4deab47bb6b..b7da33163e1 100644 --- a/i18n/fra/src/vs/workbench/electron-browser/crashReporter.i18n.json +++ b/i18n/fra/src/vs/workbench/electron-browser/crashReporter.i18n.json @@ -4,6 +4,6 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "telemetry.enableCrashReporting": "Activez l'envoi de rapports d'incidents à Microsoft.\n\t// Cette option nécessite le redémarrage de VSCode pour être prise en compte.", + "telemetry.enableCrashReporting": "Activez l'envoi de rapports d'incidents à Microsoft.\n\t// Cette option nécessite un redémarrage pour être prise en compte.", "telemetryConfigurationTitle": "Configuration de la télémétrie" } \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json b/i18n/fra/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json index 44ac507e02b..673a46971f9 100644 --- a/i18n/fra/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json +++ b/i18n/fra/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json @@ -12,7 +12,7 @@ "changeNow": "Changer maintenant", "continue": "Continuer", "editFile": "Modifier '{0}'", - "exists": "Supprimez l'alias faisant référence à '{0}' dans '{1}', puis réessayez cette action.", + "exists": "Supprimez l'alias faisant référence à '{0}' dans '{1}' (ligne {2}), puis réessayez cette action.", "install": "Installer la commande 'code' dans PATH", "later": "Plus tard", "laterInfo": "N'oubliez pas que vous pouvez toujours exécuter l'action '{0}' à partir de la palette de commandes.", diff --git a/i18n/fra/src/vs/workbench/electron-main/main.i18n.json b/i18n/fra/src/vs/workbench/electron-main/main.i18n.json index 482106affde..d7bb4256809 100644 --- a/i18n/fra/src/vs/workbench/electron-main/main.i18n.json +++ b/i18n/fra/src/vs/workbench/electron-main/main.i18n.json @@ -4,9 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // 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" + "newWindow": "Nouvelle fenêtre" } \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/electron-main/menus.i18n.json b/i18n/fra/src/vs/workbench/electron-main/menus.i18n.json index 78e1ee5f77f..e89fa419247 100644 --- a/i18n/fra/src/vs/workbench/electron-main/menus.i18n.json +++ b/i18n/fra/src/vs/workbench/electron-main/menus.i18n.json @@ -64,10 +64,10 @@ "miReplace": "&&Remplacer", "miReportIssues": "S&&ignaler les problèmes", "miRestartToUpdate": "Redémarrer pour mettre à jour...", - "miRevert": "Rétablir le fichier", + "miRevert": "Rétablir le f&&ichier", "miSave": "Enregi&&strer", "miSaveAll": "Enregistrer to&&ut", - "miSaveAs": "Enregistrer sous...", + "miSaveAs": "Enregistrer &&sous...", "miSelectAll": "&&Sélectionner tout", "miSelectTheme": "Thème de &&couleur", "miSplitEditor": "Fractionner l'édit&&eur", diff --git a/i18n/fra/src/vs/workbench/node/extensionHostMain.i18n.json b/i18n/fra/src/vs/workbench/node/extensionHostMain.i18n.json index f30faa3442f..7858fb93e39 100644 --- a/i18n/fra/src/vs/workbench/node/extensionHostMain.i18n.json +++ b/i18n/fra/src/vs/workbench/node/extensionHostMain.i18n.json @@ -4,5 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionTestError": "Le chemin {0} ne pointe pas vers un Test Runner d'extension valide." + "extensionTestError": "Le chemin {0} ne pointe pas vers un Test Runner d'extension valide.", + "extensionUnderDevelopment": "Chargement de l'extension de développement sur {0}", + "overwritingExtension": "Remplacement de l'extension {0} par {1}." } \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/node/extensionPoints.i18n.json b/i18n/fra/src/vs/workbench/node/extensionPoints.i18n.json new file mode 100644 index 00000000000..725a4dac217 --- /dev/null +++ b/i18n/fra/src/vs/workbench/node/extensionPoints.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. +{ + "fileReadFail": "Impossible de lire le fichier {0} : {1}.", + "jsonParseFail": "Échec de l'analyse de {0} : {1}.", + "missingNLSKey": "Le message est introuvable pour la clé {0}." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/extensions/common/extensions.i18n.json b/i18n/fra/src/vs/workbench/parts/extensions/common/extensions.i18n.json index 9972d4e0a8c..9cb829782e9 100644 --- a/i18n/fra/src/vs/workbench/parts/extensions/common/extensions.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/extensions/common/extensions.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionsCategory": "Extensions" + "extensions": "Extensions" } \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json b/i18n/fra/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json index 99b38864af4..b666e11d709 100644 --- a/i18n/fra/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json @@ -4,6 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "close": "Fermer", "deleteSure": "Voulez-vous vraiment désinstaller '{0}' ?", "installExtension": "Installer l'extension", "restartNow": "Redémarrer maintenant", diff --git a/i18n/fra/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json b/i18n/fra/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json index 668054d2148..6a25338983e 100644 --- a/i18n/fra/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json @@ -9,6 +9,5 @@ "multipleIssues": "Extensions ({0} problèmes)", "multipleUpdates": "Extensions ({0} mises à jour disponibles)", "oneIssue": "Extensions (1 problème)", - "oneUpdate": "Extensions (1 mise à jour disponible)", - "uninstall": "Désinstaller" + "oneUpdate": "Extensions (1 mise à jour disponible)" } \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json b/i18n/fra/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json index a6231c01ca1..508cfe4b7b3 100644 --- a/i18n/fra/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json @@ -10,5 +10,6 @@ "invalidVersion": "Extension non valide : non-correspondance de la version du manifeste.", "missingGalleryInformation": "Les informations relatives à la galerie sont manquantes", "noCompatible": "Version compatible de {0} introuvable avec cette version de Code.", - "notExists": "Extension introuvable" + "notExists": "Extension introuvable", + "restartCode": "Redémarrez Code avant de réinstaller {0}." } \ 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 index b7e2db0a3d7..389664bd7ca 100644 --- a/i18n/fra/src/vs/workbench/parts/files/browser/fileActions.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -30,6 +30,7 @@ "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.", + "focusFilesExplorer": "Focus sur l'Explorateur de fichiers", "focusWorkingFiles": "Focus sur les fichiers de travail", "globalCompareFile": "Comparer le fichier actif à...", "importFiles": "Importer des fichiers", 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 index 3a031f111e9..35a054d3acc 100644 --- a/i18n/fra/src/vs/workbench/parts/git/browser/gitServices.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -12,10 +12,12 @@ "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.", + "download": "Télécharger", "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.", + "updateGit": "Il semble que git {0} soit installé. Code fonctionne mieux avec git >=2.0.0.", "workingTreeChanges": "{0} - Modifications de l'arborescence de travail" } \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json b/i18n/fra/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json index 90ee11c1972..8901fd510ba 100644 --- a/i18n/fra/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json @@ -4,13 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "dotnetBuild": "Crée un tasks.json qui effectue la compilation avec la build dotnet.", - "grunt": "Crée un fichier tasks.json pour Grunt. Si un fichier jake est présent, les tâches sont détectées automatiquement.", - "gulp": "Crée un fichier tasks.json pour gulp. Si un fichier gulp est présent, les tâches sont détectées automatiquement.", - "jake": "Crée un fichier tasks.json pour Jake. Si un fichier jake est présent, les tâches sont détectées automatiquement.", - "msbuild": "Crée un tasks.json qui effectue la compilation avec msbuild.", - "tsc.config": "Crée un tasks.json qui compile un projet TypeScript.", - "tsc.openFile": "Crée un tasks.json qui compile le fichier TypeScript actuellement ouvert.", - "tsc.specificFile": "Crée un tasks.json qui compile un fichier TypeScript spécifique.", - "tsc.watch": "Crée un tasks.json qui compile un projet TypeScript en mode espion." + "dotnetCore": "Exécute une commande de génération .NET Core", + "externalCommand": "Exemple d'exécution d'une commande externe arbitraire", + "msbuild": "Exécute la cible de génération", + "tsc.config": "Compile un projet TypeScript", + "tsc.watch": "Compile un projet TypeScript en mode espion" } \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json b/i18n/fra/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json index c7ae598103a..c1fa6740a1f 100644 --- a/i18n/fra/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json @@ -8,8 +8,11 @@ "CleanAction.label": "Exécuter la tâche de nettoyage", "CloseMessageAction.label": "Fermer", "ConfigureTaskRunnerAction.autoDetect": "En raison de l'échec de la détection automatique du système de tâche, le modèle par défaut va être utilisé. Pour plus d'informations, consultez la sortie de la tâche.", + "ConfigureTaskRunnerAction.autoDetecting": "Détection automatique des tâches pour {0}", "ConfigureTaskRunnerAction.failed": "Impossible de créer le fichier 'tasks.json' dans le dossier '.vscode'. Pour plus d'informations, consultez la sortie de la tâche.", "ConfigureTaskRunnerAction.label": "Configurer l'exécuteur de tâches", + "ConfigureTaskRunnerAction.noWorkspace": "Les tâches ne sont disponibles que dans un dossier d'espace de travail.", + "ConfigureTaskRunnerAction.quickPick.template": "Sélectionner un exécuteur de tâches", "JsonSchema.args": "Arguments supplémentaires passés à la commande.", "JsonSchema.command": "Commande à exécuter. Il peut s'agir d'un programme externe ou d'une commande d'interpréteur de commandes.", "JsonSchema.echoCommand": "Contrôle si la commande exécutée fait l'objet d'un écho dans la sortie. La valeur par défaut est false.", diff --git a/i18n/fra/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json b/i18n/fra/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json index 0f016750a83..1481bfc078a 100644 --- a/i18n/fra/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json @@ -4,10 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "TaskSystemDetector.buildTaskDetected": "La tâche de génération nommée '{0}' a été détectée.", "TaskSystemDetector.noGruntProgram": "Grunt n'est pas installé sur votre système. Exécutez npm install -g grunt pour l'installer.", "TaskSystemDetector.noGulpProgram": "Gulp n'est pas installé sur votre système. Exécutez npm install -g gulp pour l'installer.", "TaskSystemDetector.noGulpTasks": "L'exécution de gulp --tasks-simple n'a listé aucune tâche. Avez-vous exécuté npm install ?", "TaskSystemDetector.noJakeProgram": "Jake n'est pas installé sur votre système. Exécutez npm install -g jake pour l'installer.", "TaskSystemDetector.noJakeTasks": "L'exécution de jake --tasks n'a listé aucune tâche. Avez-vous exécuté npm install ?", - "TaskSystemDetector.noProgram": "Le programme {0} est introuvable. Message : {1}" + "TaskSystemDetector.noProgram": "Le programme {0} est introuvable. Message : {1}", + "TaskSystemDetector.testTaskDetected": "La tâche de test nommée '{0}' a été détectée." } \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json b/i18n/fra/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json new file mode 100644 index 00000000000..6585b65718e --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/update/electron-browser/update.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. +{ + "close": "Fermer", + "license": "Lire la licence", + "licenseChanged": "Nos termes du contrat de licence ont changé. Prenez un instant pour les consulter.", + "releaseNotes": "Bienvenue dans {0} v{1} ! Voulez-vous lire les notes de publication ?" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/services/themes/node/themeService.i18n.json b/i18n/fra/src/vs/workbench/services/themes/node/themeService.i18n.json index da927c4fbcf..302396e2087 100644 --- a/i18n/fra/src/vs/workbench/services/themes/node/themeService.i18n.json +++ b/i18n/fra/src/vs/workbench/services/themes/node/themeService.i18n.json @@ -6,6 +6,7 @@ { "error.cannotloadtheme": "Impossible de charger {0}", "error.cannotparse": "Problèmes durant l'analyse du fichier plist : {0}", + "error.cannotparsejson": "Problèmes durant l'analyse du fichier de thème JSON : {0}", "invalid.path.1": "'contributes.{0}.path' ({1}) est censé être inclus dans le dossier ({2}) de l'extension. Cela risque de rendre l'extension non portable.", "reqarray": "Le point d'extension '{0}' doit être un tableau.", "reqpath": "Chaîne attendue dans 'contributes.{0}.path'. Valeur fournie : {1}", diff --git a/i18n/ita/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json b/i18n/ita/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json index 021a87e4dba..97dc1e5eb01 100644 --- a/i18n/ita/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json +++ b/i18n/ita/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "assocDescriptionFile": "Esegue il mapping di tutti i file corrispondenti al criterio GLOB nel nome file alla lingua con l'ID specificato.", - "assocDescriptionPath": "Esegue il mapping di tutti i file corrispondenti al criterio GLOB nel percorso completo alla lingua con l'ID specificato.", + "assocDescriptionFile": "Esegue il mapping di tutti i file il cui nome file corrisponde al criterio GLOB alla lingua con l'ID specificato.", + "assocDescriptionPath": "Esegue il mapping di tutti i file il cui percorso assoluto corrisponde al criterio GLOB alla lingua con l'ID specificato.", "assocLabelFile": "File con estensione", "assocLabelPath": "File con percorso" } \ No newline at end of file diff --git a/i18n/ita/extensions/php/package.i18n.json b/i18n/ita/extensions/php/package.i18n.json new file mode 100644 index 00000000000..dad08d06721 --- /dev/null +++ b/i18n/ita/extensions/php/package.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. +{ + "configuration.title": "Opzioni di configurazione PHP", + "configuration.validate.enable": "Indica se la convalida PHP è abilitata o meno.", + "configuration.validate.executablePath": "Punta all'eseguibile di PHP.", + "configuration.validate.run": "Indica se il linter viene eseguito durante il salvataggio o la digitazione." +} \ No newline at end of file diff --git a/i18n/ita/extensions/typescript/out/typescriptServiceClient.i18n.json b/i18n/ita/extensions/typescript/out/typescriptServiceClient.i18n.json index 64ea5b28ff7..9fc939c2cb7 100644 --- a/i18n/ita/extensions/typescript/out/typescriptServiceClient.i18n.json +++ b/i18n/ita/extensions/typescript/out/typescriptServiceClient.i18n.json @@ -7,5 +7,6 @@ "noServerFound": "Il percorso {0} non punta a un'installazione valida di tsserver. Le funzionalità del linguaggio TypeScript verranno disabilitate.", "serverCouldNotBeStarted": "Non è stato possibile avviare il linguaggio TypeScript. Messaggio di errore: {0}", "serverDied": "Il servizio di linguaggio Typescript è stato arrestato in modo imprevisto per cinque volte negli ultimi cinque minuti. Provare ad aprire una segnalazione bug.", - "serverDiedAfterStart": "Il servizio di linguaggio Typescript è stato arrestato in modo imprevisto per cinque volte dopo che è stato avviato e non verrà riavviato. Aprire una segnalazione bug." + "serverDiedAfterStart": "Il servizio di linguaggio Typescript è stato arrestato in modo imprevisto per cinque volte dopo che è stato avviato e non verrà riavviato. Aprire una segnalazione bug.", + "versionNumber.custom": "personalizzato" } \ No newline at end of file diff --git a/i18n/ita/extensions/typescript/out/utils/projectStatus.i18n.json b/i18n/ita/extensions/typescript/out/utils/projectStatus.i18n.json index 342ad5372a5..1acd80b042e 100644 --- a/i18n/ita/extensions/typescript/out/utils/projectStatus.i18n.json +++ b/i18n/ita/extensions/typescript/out/utils/projectStatus.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "cmdCreate": "Crea file jsconfig.json...", - "hint.tooltip": "Funzionalità avanzate per IntelliSense e la ricerca di simboli e molto altro ancora per il progetto.", - "hintCreate": "Funzionalità avanzate per IntelliSense e gli spostamenti nel codice per il progetto.", - "hintExclude": "'{0}' è un progetto di grandi dimensioni. Per prestazioni ottimali escludere le cartelle che contengono molti file, come {1}...", + "cmdCreate": "Crea jsconfig.json", + "hintCreate": "Consente di creare un file jsconfig.json per disporre di funzionalità avanzate IntelliSense e di spostamento nel codice nell'intera area di lavoro.", + "hintExclude": "Per prestazioni ottimali escludere le cartelle che contengono molti file, come {0}", + "hintExclude.generic": "Per prestazioni ottimali escludere le cartelle che contengono molti file.", + "ignore.cmdCreate": "Ignora", "large.label": "Configura esclusioni", - "large.tooltip": "Un numero eccessivo di file in un progetto può causare problemi di prestazioni. Escludere le cartelle che contengono molti file, come {0}...", - "open": "Configura esclusioni..." + "open": "Configura esclusioni" } \ 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 index 7b15a379548..c909e309eaa 100644 --- a/i18n/ita/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/ita/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -31,6 +31,7 @@ "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", + "selectionClipboard": "Controlla se gli appunti primari di Linux devono essere supportati.", "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", diff --git a/i18n/ita/src/vs/editor/common/modes/modesRegistry.i18n.json b/i18n/ita/src/vs/editor/common/modes/modesRegistry.i18n.json new file mode 100644 index 00000000000..2eb2790fa76 --- /dev/null +++ b/i18n/ita/src/vs/editor/common/modes/modesRegistry.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. +{ + "plainText.alias": "Testo normale" +} \ 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 index 657ab723833..b41edad8a66 100644 --- a/i18n/ita/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json +++ b/i18n/ita/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -8,5 +8,6 @@ "actions.goToDeclToSide.label": "Apri definizione lateralmente", "actions.gotoTypeDecl.label": "Vai alla definizione di tipo", "actions.previewDecl.label": "Visualizza la definizione", + "meta.title": " - Definizioni di {0}", "multipleResults": "Fare clic per visualizzare le {0} definizioni trovate." } \ 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 index 31879c2762e..da08ba5eaf1 100644 --- a/i18n/ita/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json +++ b/i18n/ita/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -13,5 +13,7 @@ "lines.moveDown": "Sposta la riga in basso", "lines.moveUp": "Sposta la riga in alto", "lines.outdent": "Riduci il rientro per la riga", + "lines.sortAscending": "Ordinamento righe crescente", + "lines.sortDescending": "Ordinamento righe decrescente", "lines.trimTrailingWhitespace": "Taglia spazio vuoto finale" } \ 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 index 26563373593..389d87cf44c 100644 --- a/i18n/ita/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json +++ b/i18n/ita/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -6,5 +6,7 @@ { "QuickFixSelectionWidget.loading": "Caricamento...", "QuickFixSelectionWidget.noSuggestions": "Non sono disponibili suggerimenti per la correzione.", + "ariaCurrentFix": "{0}, suggerimento per correzione rapida", + "quickFixAriaAccepted": "{0}, accettata", "treeAriaLabel": "Correzione rapida" } \ 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 index 0275df937aa..c873febae5b 100644 --- a/i18n/ita/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json +++ b/i18n/ita/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "labelLoading": "Caricamento...", + "meta.titleReference": " - Riferimenti di {0}", "noResults": "Nessun risultato", "references.action.label": "Trova tutti i riferimenti", "references.action.name": "Mostra i riferimenti" diff --git a/i18n/ita/src/vs/languages/html/common/html.contribution.i18n.json b/i18n/ita/src/vs/languages/html/common/html.contribution.i18n.json new file mode 100644 index 00000000000..5fecc78042a --- /dev/null +++ b/i18n/ita/src/vs/languages/html/common/html.contribution.i18n.json @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "format.endWithNewline": "Termina con un carattere di nuova riga.", + "format.extraLiners": "Elenco di tag, separati da virgole, che devono essere preceduti da un carattere di nuova riga. Con 'null' viene usata l'impostazione predefinita \"head, body, /html\".", + "format.indentHandlebars": "Applica la formattazione e imposta un rientro per {{#foo}} e {{/foo}}.", + "format.indentInnerHtml": "Imposta un rientro per le sezioni e .", + "format.maxPreserveNewLines": "Numero massimo di interruzioni di riga da mantenere in un unico blocco. Per non impostare un numero massimo, usare 'null'.", + "format.preserveNewLines": "Indica se è necessario mantenere interruzioni di riga esistenti prima degli elementi. Funziona solo prima degli elementi e non all'interno di tag o per il testo.", + "format.unformatted": "Elenco di tag, separati da virgole, che non devono essere riformattati. Con 'null' viene usata l'impostazione predefinita che prevede l'uso di tutti tag inline.", + "format.wrapLineLength": "Numero massimo di caratteri per riga (0 = disabilita).", + "htmlConfigurationTitle": "Configurazione HTML" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/browser/actions/configureLocale.i18n.json b/i18n/ita/src/vs/workbench/browser/actions/configureLocale.i18n.json new file mode 100644 index 00000000000..a4ce48d7487 --- /dev/null +++ b/i18n/ita/src/vs/workbench/browser/actions/configureLocale.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. +{ + "configureLocale": "Configura impostazioni locali", + "displayLanguage": "Definisce la lingua visualizzata di VSCode.", + "fail.createSettings": "Non è possibile creare '{0}' ({1}).", + "restart": "Se si modifica il valore, è necessario riavviare VSCode." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/browser/actions/openSettings.i18n.json b/i18n/ita/src/vs/workbench/browser/actions/openSettings.i18n.json index b26f391e340..d437216e94a 100644 --- a/i18n/ita/src/vs/workbench/browser/actions/openSettings.i18n.json +++ b/i18n/ita/src/vs/workbench/browser/actions/openSettings.i18n.json @@ -12,7 +12,7 @@ "emptySettingsHeader": "Inserire le impostazioni in questo file per sovrascrivere quelle predefinite", "emptySettingsHeader1": "Inserire le impostazioni in questo file per sovrascrivere quelle utente e predefinite.", "fail.createSettings": "Non è possibile creare '{0}' ({1}).", - "neverShowAgain": "Non visualizzare più", + "neverShowAgain": "Non visualizzare più questo messaggio", "openFolderFirst": "Aprire prima una cartella per creare le impostazioni dell'area di lavoro", "openGlobalKeybindings": "Apri tasti di scelta rapida", "openGlobalSettings": "Apri impostazioni utente", diff --git a/i18n/ita/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json b/i18n/ita/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json index d187f9dea86..b1f821ebb80 100644 --- a/i18n/ita/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json +++ b/i18n/ita/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json @@ -12,7 +12,6 @@ "configureAssociations": "Configura associazioni file...", "configureAssociationsExt": "Configura associazione file per '{0}'...", "configuredLanguage": "Linguaggio configurato", - "defaultEncoding": "Codifica configurata", "disableTabMode": "Disabilita modalità accessibilità", "endOfLineCarriageReturnLineFeed": "CRLF", "endOfLineLineFeed": "LF", @@ -26,7 +25,7 @@ "noEditor": "Al momento non ci sono editor di testo attivi", "noFileEditor": "Al momento non ci sono file attivi", "noWritableCodeEditor": "L'editor di testo attivo è di sola lettura.", - "persistFileAssociations": "È possibile configurare le associazioni tra nome file e linguaggio dalla sezione **files.associations**", + "persistFileAssociations": "È possibile configurare le associazioni tra nome file e lingua nella sezione **files.associations**. Per rendere effettive le modifiche su file già aperti, potrebbe essere necessario riavviare.", "pickAction": "Seleziona azione", "pickEncodingForReopen": "Seleziona codifica per la riapertura del file", "pickEncodingForSave": "Seleziona codifica per il salvataggio del file", diff --git a/i18n/ita/src/vs/workbench/electron-browser/crashReporter.i18n.json b/i18n/ita/src/vs/workbench/electron-browser/crashReporter.i18n.json index 043734c183a..e02bac9e3c3 100644 --- a/i18n/ita/src/vs/workbench/electron-browser/crashReporter.i18n.json +++ b/i18n/ita/src/vs/workbench/electron-browser/crashReporter.i18n.json @@ -4,6 +4,6 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "telemetry.enableCrashReporting": "Consente l'invio di segnalazioni di arresto anomalo a Microsoft.\n\t// Per rendere effettiva questa opzione, è necessario riavviare Visual Studio Code.", + "telemetry.enableCrashReporting": "Consente l'invio di segnalazioni di arresto anomalo del sistema a Microsoft.\n\t// Per rendere effettiva questa opzione, è necessario riavviare.", "telemetryConfigurationTitle": "Configurazione della telemetria" } \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json b/i18n/ita/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json index b2639e87bee..1dda3341363 100644 --- a/i18n/ita/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json +++ b/i18n/ita/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json @@ -12,7 +12,7 @@ "changeNow": "Cambia ora", "continue": "Continua", "editFile": "Modifica '{0}'", - "exists": "Rimuovere l'alias che fa riferimento a '{0}' in '{1}' e ripetere l'azione.", + "exists": "Rimuovere l'alias che fa riferimento a '{0}' in '{1}' (riga {2}) e ripetere l'azione.", "install": "Installa il comando 'code' in PATH", "later": "In seguito", "laterInfo": "Nota: è sempre possibile eseguire l'azione '{0}' dal riquadro comandi.", diff --git a/i18n/ita/src/vs/workbench/electron-main/main.i18n.json b/i18n/ita/src/vs/workbench/electron-main/main.i18n.json index d19ec2fd96c..958a049ade7 100644 --- a/i18n/ita/src/vs/workbench/electron-main/main.i18n.json +++ b/i18n/ita/src/vs/workbench/electron-main/main.i18n.json @@ -4,9 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // 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" + "newWindow": "Nuova finestra" } \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/electron-main/menus.i18n.json b/i18n/ita/src/vs/workbench/electron-main/menus.i18n.json index fb85426a32e..adc85b529c0 100644 --- a/i18n/ita/src/vs/workbench/electron-main/menus.i18n.json +++ b/i18n/ita/src/vs/workbench/electron-main/menus.i18n.json @@ -64,10 +64,10 @@ "miReplace": "&&Sostituisci", "miReportIssues": "&&Segnala problemi", "miRestartToUpdate": "Riavvia per aggiornare...", - "miRevert": "Ripristina file", + "miRevert": "Ripristina f&&ile", "miSave": "&&Salva", "miSaveAll": "Salva &&tutto", - "miSaveAs": "Salva con nome...", + "miSaveAs": "Salva &&con nome...", "miSelectAll": "&&Seleziona tutto", "miSelectTheme": "&&Tema colori", "miSplitEditor": "Dividi &&editor", diff --git a/i18n/ita/src/vs/workbench/node/extensionHostMain.i18n.json b/i18n/ita/src/vs/workbench/node/extensionHostMain.i18n.json index fb562a4de45..50bf2fabd03 100644 --- a/i18n/ita/src/vs/workbench/node/extensionHostMain.i18n.json +++ b/i18n/ita/src/vs/workbench/node/extensionHostMain.i18n.json @@ -4,5 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionTestError": "Il percorso {0} non punta a un Test Runner di estensioni valido." + "extensionTestError": "Il percorso {0} non punta a un Test Runner di estensioni valido.", + "extensionUnderDevelopment": "Caricamento dell'estensione di sviluppo in {0}", + "overwritingExtension": "Sovrascrittura dell'estensione {0} con {1}." } \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/node/extensionPoints.i18n.json b/i18n/ita/src/vs/workbench/node/extensionPoints.i18n.json new file mode 100644 index 00000000000..4ca437e49a7 --- /dev/null +++ b/i18n/ita/src/vs/workbench/node/extensionPoints.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. +{ + "fileReadFail": "Non è possibile leggere il file {0}: {1}.", + "jsonParseFail": "Non è stato possibile analizzare {0}: {1}.", + "missingNLSKey": "Il messaggio per la chiave {0} non è stato trovato." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/extensions/common/extensions.i18n.json b/i18n/ita/src/vs/workbench/parts/extensions/common/extensions.i18n.json index d39b178632c..a8d07968288 100644 --- a/i18n/ita/src/vs/workbench/parts/extensions/common/extensions.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/extensions/common/extensions.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionsCategory": "Estensioni" + "extensions": "Estensioni" } \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json b/i18n/ita/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json index ca8053baa7c..9c6228deb19 100644 --- a/i18n/ita/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json @@ -4,6 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "close": "Chiudi", "deleteSure": "Disinstallare '{0}'?", "installExtension": "Installa estensione", "restartNow": "Riavvia ora", diff --git a/i18n/ita/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json b/i18n/ita/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json index ac1d01408e1..d4a5e112fa1 100644 --- a/i18n/ita/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json @@ -9,6 +9,5 @@ "multipleIssues": "Estensioni ({0} problemi)", "multipleUpdates": "Estensioni ({0} aggiornamenti disponibili)", "oneIssue": "Estensioni (1 problema)", - "oneUpdate": "Estensioni (1 aggiornamento disponibile)", - "uninstall": "Disinstalla" + "oneUpdate": "Estensioni (1 aggiornamento disponibile)" } \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json b/i18n/ita/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json index ea4aa6f8933..41415162aba 100644 --- a/i18n/ita/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json @@ -10,5 +10,6 @@ "invalidVersion": "Estensione non valida: la versione del manifesto non corrisponde.", "missingGalleryInformation": "Mancano le informazioni della raccolta", "noCompatible": "Non è stata trovata una versione di {0} compatibile con questa versione di Visual Studio Code.", - "notExists": "L'estensione non è stata trovata" + "notExists": "L'estensione non è stata trovata", + "restartCode": "Riavviare Code prima di reinstallare {0}." } \ 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 index 5411653210c..be6264a3596 100644 --- a/i18n/ita/src/vs/workbench/parts/files/browser/fileActions.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -30,6 +30,7 @@ "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.", + "focusFilesExplorer": "Stato attivo su Esplora file", "focusWorkingFiles": "Stato attivo su file di lavoro", "globalCompareFile": "Confronta file attivo con...", "importFiles": "Importa 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 index 4c4c975ef44..18c98617afa 100644 --- a/i18n/ita/src/vs/workbench/parts/git/browser/gitServices.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -12,10 +12,12 @@ "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.", + "download": "Scarica", "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.", + "updateGit": "La versione installata di GIT è la {0}. Per il corretto funzionamento di Code è consigliabile usare una versione di GIT non inferiore alla 2.0.0.", "workingTreeChanges": "{0} - Modifiche nell'albero di lavoro" } \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json b/i18n/ita/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json index fae09151f09..72ac864365d 100644 --- a/i18n/ita/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json @@ -4,13 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "dotnetBuild": "Consente di creare un file tasks.json per la compilazione con la build dotnet.", - "grunt": "Consente di creare un file tasks.json per Grunt. Se è presente un file jake, le attività verranno rilevate automaticamente.", - "gulp": "Consente di creare un file tasks.json per gulp. Se è presente un file gulp, le attività verranno rilevate automaticamente.", - "jake": "Consente di creare un file tasks.json per Jake. Se è presente un file jake, le attività verranno rilevate automaticamente.", - "msbuild": "Consente di creare un file tasks.json per la compilazione con msbuild.", - "tsc.config": "Consente di creare un file tasks.json per la compilazione di un progetto TypeScript.", - "tsc.openFile": "Consente di creare un file tasks.json per la compilazione del file TypeScript attualmente aperto.", - "tsc.specificFile": "Consente di creare un file tasks.json per la compilazione di un file TypeScript specifico.", - "tsc.watch": "Consente di creare un file tasks.json per la compilazione di un progetto TypeScript in modalità espressione di controllo." + "dotnetCore": "Esegue il comando di compilazione di .NET Core", + "externalCommand": "Esempio per eseguire un comando esterno arbitrario", + "msbuild": "Esegue la destinazione di compilazione", + "tsc.config": "Compila un progetto TypeScript", + "tsc.watch": "Compila un progetto TypeScript in modalità espressione di controllo" } \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json b/i18n/ita/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json index dcf6f9b7622..be115c8b6f3 100644 --- a/i18n/ita/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json @@ -8,8 +8,11 @@ "CleanAction.label": "Esegui attività di pulizia", "CloseMessageAction.label": "Chiudi", "ConfigureTaskRunnerAction.autoDetect": "Il rilevamento automatico del sistema dell'attività non è riuscito. Verrà usato il modello predefinito. Per i dettagli, vedere l'output dell'attività.", + "ConfigureTaskRunnerAction.autoDetecting": "Rilevamento automatico delle attività per {0}", "ConfigureTaskRunnerAction.failed": "Non è possibile creare il file 'tasks.json' all'interno della cartella '.vscode'. Per dettagli, vedere l'output dell'attività.", "ConfigureTaskRunnerAction.label": "Configura esecuzione attività", + "ConfigureTaskRunnerAction.noWorkspace": "Le attività sono disponibili solo per una cartella dell'area di lavoro.", + "ConfigureTaskRunnerAction.quickPick.template": "Seleziona strumento di esecuzione attività", "JsonSchema.args": "Argomenti aggiuntivi passati al comando.", "JsonSchema.command": "Comando da eseguire. Può essere un programma esterno o un comando della shell.", "JsonSchema.echoCommand": "Controlla se l'eco del comando eseguito viene incluso nell'output. Il valore predefinito è false.", diff --git a/i18n/ita/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json b/i18n/ita/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json index bbd4b5dc9e8..c2fbc3cea8d 100644 --- a/i18n/ita/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json @@ -4,10 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "TaskSystemDetector.buildTaskDetected": "È stata rilevata l'attività di compilazione denominata '{0}'.", "TaskSystemDetector.noGruntProgram": "Grunt non è installato nel sistema. Eseguire npm install -g grunt per installarlo.", "TaskSystemDetector.noGulpProgram": "Gulp non è installato nel sistema. Eseguire npm install -g gulp per installarlo.", "TaskSystemDetector.noGulpTasks": "Eseguendo gulp --tasks-simple non è stata elencata alcuna attività. È stato eseguito npm install?", "TaskSystemDetector.noJakeProgram": "Jake non è installato nel sistema. Eseguire npm install -g jake per installarlo.", "TaskSystemDetector.noJakeTasks": "Eseguendo jake --tasks non è stata elencata alcuna attività. È stato eseguito npm install?", - "TaskSystemDetector.noProgram": "Il programma {0} non è stato trovato. Messaggio: {1}" + "TaskSystemDetector.noProgram": "Il programma {0} non è stato trovato. Messaggio: {1}", + "TaskSystemDetector.testTaskDetected": "È stata rilevata l'attività di test denominata '{0}'." } \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json b/i18n/ita/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json new file mode 100644 index 00000000000..64b58af12f7 --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/update/electron-browser/update.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. +{ + "close": "Chiudi", + "license": "Leggi licenza", + "licenseChanged": "I termini della licenza sono cambiati. Leggerli con attenzione.", + "releaseNotes": "Benvenuti in {0} versione {1}. Leggere le note sulla versione?" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/services/themes/node/themeService.i18n.json b/i18n/ita/src/vs/workbench/services/themes/node/themeService.i18n.json index 9151d97a44c..260f15efa46 100644 --- a/i18n/ita/src/vs/workbench/services/themes/node/themeService.i18n.json +++ b/i18n/ita/src/vs/workbench/services/themes/node/themeService.i18n.json @@ -6,6 +6,7 @@ { "error.cannotloadtheme": "Non è possibile caricare {0}", "error.cannotparse": "Problemi durante l'analisi del file plist: {0}", + "error.cannotparsejson": "Problemi durante l'analisi del file di tema di JSON: {0}", "invalid.path.1": "Valore previsto di `contributes.{0}.path` ({1}) da includere nella cartella dell'estensione ({2}). L'estensione potrebbe non essere più portatile.", "reqarray": "Il punto di estensione `{0}` deve essere una matrice.", "reqpath": "È previsto un valore stringa in `contributes.{0}.path`. Valore specificato: {1}", diff --git a/i18n/jpn/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json b/i18n/jpn/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json index 96654a68f1f..3a590da8660 100644 --- a/i18n/jpn/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json +++ b/i18n/jpn/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json @@ -5,7 +5,7 @@ // Do not edit this file. It is machine generated. { "assocDescriptionFile": "ファイル名が glob パターンに対応しているすべてのファイルを、指定された ID の言語にマップします。", - "assocDescriptionPath": "完全なパスが glob パターンに対応しているすべてのファイルを、指定された ID の言語にマップします。", + "assocDescriptionPath": "絶対パスの glob パターンがパスと一致するすべてのファイルを、指定した ID の言語にマップします。", "assocLabelFile": "当該拡張子のファイル", "assocLabelPath": "当該パスのファイル" } \ No newline at end of file diff --git a/i18n/jpn/extensions/php/package.i18n.json b/i18n/jpn/extensions/php/package.i18n.json new file mode 100644 index 00000000000..e708c4dfb28 --- /dev/null +++ b/i18n/jpn/extensions/php/package.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. +{ + "configuration.title": "PHP の構成オプション", + "configuration.validate.enable": "PHP の検証が有効かどうか。", + "configuration.validate.executablePath": "PHP の実行可能ファイルをポイントします。", + "configuration.validate.run": "リンターを保存時に実行するか、入力時に実行するか。" +} \ No newline at end of file diff --git a/i18n/jpn/extensions/typescript/out/typescriptServiceClient.i18n.json b/i18n/jpn/extensions/typescript/out/typescriptServiceClient.i18n.json index b3972f796f9..09ce2ec062d 100644 --- a/i18n/jpn/extensions/typescript/out/typescriptServiceClient.i18n.json +++ b/i18n/jpn/extensions/typescript/out/typescriptServiceClient.i18n.json @@ -7,5 +7,6 @@ "noServerFound": "パス {0} は、有効な tsserver インストールを指していません。TypeScript 言語機能は使用できなくなります。", "serverCouldNotBeStarted": "TypeScript 言語サーバーを起動できません。エラー メッセージ: {0}", "serverDied": "Typescript 言語サービスは、直前の 5 分間に 5 回、予期せずに停止しました。障害報告を開くことをご検討ください。", - "serverDiedAfterStart": "Typesrript 言語サービスは、開始直後に 5 回停止しました。サービスは再開されません。障害報告を開いてください。" + "serverDiedAfterStart": "Typesrript 言語サービスは、開始直後に 5 回停止しました。サービスは再開されません。障害報告を開いてください。", + "versionNumber.custom": "カスタム" } \ No newline at end of file diff --git a/i18n/jpn/extensions/typescript/out/utils/projectStatus.i18n.json b/i18n/jpn/extensions/typescript/out/utils/projectStatus.i18n.json index 13da2bd7939..a0f849fa6f9 100644 --- a/i18n/jpn/extensions/typescript/out/utils/projectStatus.i18n.json +++ b/i18n/jpn/extensions/typescript/out/utils/projectStatus.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "cmdCreate": "jsconfig.json-file を作成します...", - "hint.tooltip": "プロジェクトがあれば、IntelliSense やシンボル検索などを向上させられます。", - "hintCreate": "プロジェクトがあれば、IntelliSense やコード参照を向上させられます。", - "hintExclude": "'{0}' が大規模プロジェクトです。パフォーマンスを改善するには、多数のファイルがあるフォルダー (例: {1}) を除外してください...", + "cmdCreate": "jsconfig.json を作成", + "hintCreate": "IntelliSense の機能とワークスペース全体でのコード ナビゲーションを強化するには、jsconfig.json を作成します。", + "hintExclude": "パフォーマンスを向上させるには、多数のファイルがあるフォルダーを除外してください。例: {0}", + "hintExclude.generic": "パフォーマンスを向上させるには、多数のファイルがあるフォルダーを除外してください。", + "ignore.cmdCreate": "無視", "large.label": "除外の構成", - "large.tooltip": "プロジェクト内のファイルが多すぎて、パフォーマンスが低下している可能性があります。多数のファイルがあるフォルダーを除外してください。例: {0}...", - "open": "除外の構成..." + "open": "除外の構成" } \ 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 index 2f92d2fbc7e..12d6c6bfeaa 100644 --- a/i18n/jpn/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/jpn/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -31,6 +31,7 @@ "roundedSelection": "選択範囲の角を丸くするかどうかを制御します", "rulers": "垂直ルーラーを表示する列", "scrollBeyondLastLine": "エディターで最後の行を越えてスクロールするかどうかを制御します", + "selectionClipboard": "Linux の PRIMARY クリップボードをサポートするかどうかを制御します。", "selectionHighlight": "エディターで選択範囲に類似する一致箇所を強調表示するかどうかを制御します", "sideBySide": "差分エディターが差分を横に並べて表示するか、行内に表示するかを制御します", "suggestOnTriggerCharacters": "トリガー文字の入力時に候補が自動的に表示されるようにするかどうかを制御します", diff --git a/i18n/jpn/src/vs/editor/common/modes/modesRegistry.i18n.json b/i18n/jpn/src/vs/editor/common/modes/modesRegistry.i18n.json new file mode 100644 index 00000000000..5cf13a2f38c --- /dev/null +++ b/i18n/jpn/src/vs/editor/common/modes/modesRegistry.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. +{ + "plainText.alias": "プレーンテキスト" +} \ 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 index fda9f139959..03953f7870c 100644 --- a/i18n/jpn/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json +++ b/i18n/jpn/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -8,5 +8,6 @@ "actions.goToDeclToSide.label": "定義を横に開く", "actions.gotoTypeDecl.label": "型の定義へ移動", "actions.previewDecl.label": "ピークの定義", + "meta.title": " - {0} の定義", "multipleResults": "クリックして、見つかった {0} の定義を表示します。" } \ 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 index cd36a17f892..7ba70304702 100644 --- a/i18n/jpn/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json +++ b/i18n/jpn/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -13,5 +13,7 @@ "lines.moveDown": "行を下へ移動", "lines.moveUp": "行を上へ移動", "lines.outdent": "行のインデント解除", + "lines.sortAscending": "行を昇順に並べ替え", + "lines.sortDescending": "行を降順に並べ替え", "lines.trimTrailingWhitespace": "末尾の空白のトリミング" } \ 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 index f2fb4b944d2..c76162607bd 100644 --- a/i18n/jpn/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json +++ b/i18n/jpn/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -6,5 +6,7 @@ { "QuickFixSelectionWidget.loading": "読み込んでいます...", "QuickFixSelectionWidget.noSuggestions": "修正候補はありません。", + "ariaCurrentFix": "{0}、クイック修正候補", + "quickFixAriaAccepted": "{0}、受け入れ済み", "treeAriaLabel": "クイック修正" } \ 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 index e3e16856a4c..8f85178b9d6 100644 --- a/i18n/jpn/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json +++ b/i18n/jpn/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "labelLoading": "読み込んでいます...", + "meta.titleReference": " - {0} の参照", "noResults": "結果がありません", "references.action.label": "すべての参照の検索", "references.action.name": "参照の表示" diff --git a/i18n/jpn/src/vs/languages/html/common/html.contribution.i18n.json b/i18n/jpn/src/vs/languages/html/common/html.contribution.i18n.json new file mode 100644 index 00000000000..ea14ac8dca9 --- /dev/null +++ b/i18n/jpn/src/vs/languages/html/common/html.contribution.i18n.json @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "format.endWithNewline": "末尾に改行を入れます。", + "format.extraLiners": "先頭に改行を 1 つ入れるタグを、コンマで区切って列挙します。'null' は、既定値の \"head, body, /html\" を表します。", + "format.indentHandlebars": "書式設定とインデント {{#foo}} および {{/foo}}。", + "format.indentInnerHtml": " セクションと セクションをインデントします。", + "format.maxPreserveNewLines": "1 つのチャンク内に保持できる改行の最大数。無制限にするには、'null' を使います。", + "format.preserveNewLines": "要素の前にある既存の改行を保持するかどうか。要素の前でのみ機能し、タグの内側やテキストに対しては機能しません。", + "format.unformatted": "再フォーマットしてはならないタグを、コンマで区切ってリストにします。'null' は、既定値の \"すべてのインライン タグ\" を表します。", + "format.wrapLineLength": "1 行あたりの最大文字数 (0 = 無効にする)。", + "htmlConfigurationTitle": "HTML 構成" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/browser/actions/configureLocale.i18n.json b/i18n/jpn/src/vs/workbench/browser/actions/configureLocale.i18n.json new file mode 100644 index 00000000000..bf3e8a5131d --- /dev/null +++ b/i18n/jpn/src/vs/workbench/browser/actions/configureLocale.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. +{ + "configureLocale": "ロケールの構成", + "displayLanguage": "VSCode の表示言語を定義します。", + "fail.createSettings": "'{0}' ({1}) を作成できません。", + "restart": "VSCode の再起動に必要な値を変更します。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json b/i18n/jpn/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json index 37c3c3412bb..b1a40a6cec2 100644 --- a/i18n/jpn/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json +++ b/i18n/jpn/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json @@ -12,7 +12,6 @@ "configureAssociations": "ファイルの関連付けの構成...", "configureAssociationsExt": "'{0}' に対するファイルの関連付けの構成...", "configuredLanguage": "構成済みの言語", - "defaultEncoding": "構成済みのエンコード", "disableTabMode": "アクセシビリティ モードを無効にする", "endOfLineCarriageReturnLineFeed": "CRLF", "endOfLineLineFeed": "LF", @@ -26,7 +25,7 @@ "noEditor": "現在アクティブなテキスト エディターはありません", "noFileEditor": "現在アクティブなファイルはありません", "noWritableCodeEditor": "アクティブなコード エディターは読み取り専用です。", - "persistFileAssociations": "**files.associations** セクションから、ファイル名と言語の関連付けを構成できます。", + "persistFileAssociations": "**files.associations** セクションで、ファイル名と言語の関連付けを構成できます。既に開いているファイルにこの変更を適用するには、再起動が必要な場合があります。", "pickAction": "アクションの選択", "pickEncodingForReopen": "ファイルを再度開くときのファイルのエンコードの選択", "pickEncodingForSave": "保存時のファイルのエンコードの選択", diff --git a/i18n/jpn/src/vs/workbench/electron-browser/crashReporter.i18n.json b/i18n/jpn/src/vs/workbench/electron-browser/crashReporter.i18n.json index 22eb0b760b2..8e0952112b7 100644 --- a/i18n/jpn/src/vs/workbench/electron-browser/crashReporter.i18n.json +++ b/i18n/jpn/src/vs/workbench/electron-browser/crashReporter.i18n.json @@ -4,6 +4,6 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "telemetry.enableCrashReporting": "クラッシュ報告を Microsoft に送信できるようにします。\n\t// このオプションを有効にするには、VSCode の再起動が必要です。", + "telemetry.enableCrashReporting": "クラッシュ レポートを Microsoft に送信するように設定します。\n\t// このオプションを有効にするには、再起動が必要です。", "telemetryConfigurationTitle": "テレメトリ構成" } \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json b/i18n/jpn/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json index a6263793add..dcef4e053e4 100644 --- a/i18n/jpn/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json +++ b/i18n/jpn/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json @@ -12,7 +12,7 @@ "changeNow": "今すぐ変更", "continue": "続行", "editFile": "'{0}' の編集", - "exists": "'{1}' 内の '{0}' を参照する別名を削除してから、この操作をやり直してください。", + "exists": "'{1}' 内の '{0}' (行 {2}) を参照する別名を削除してから、この操作をやり直してください。", "install": "PATH 内に 'code' コマンドをインストールします", "later": "後で", "laterInfo": "いつでもコマンド パレットから '{0}' アクションを実行できることに留意してください。", diff --git a/i18n/jpn/src/vs/workbench/electron-main/main.i18n.json b/i18n/jpn/src/vs/workbench/electron-main/main.i18n.json index 7c583846dee..73582264e61 100644 --- a/i18n/jpn/src/vs/workbench/electron-main/main.i18n.json +++ b/i18n/jpn/src/vs/workbench/electron-main/main.i18n.json @@ -4,9 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "expired": "期限切れ", - "expiredDetail": "このプレリリース版 {0} は、有効期限が切れています。\n\n{1} にアクセスして、現行リリースをダウンロードしてください。", - "newWindow": "新しいウィンドウ", - "openWebSite": "Web サイトを開く", - "quit": "終了" + "newWindow": "新しいウィンドウ" } \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/electron-main/menus.i18n.json b/i18n/jpn/src/vs/workbench/electron-main/menus.i18n.json index 68c9af69d46..7eb78ff9999 100644 --- a/i18n/jpn/src/vs/workbench/electron-main/menus.i18n.json +++ b/i18n/jpn/src/vs/workbench/electron-main/menus.i18n.json @@ -64,10 +64,10 @@ "miReplace": "置換(&&R)", "miReportIssues": "問題の報告(&&I)", "miRestartToUpdate": "更新のために再起動します...", - "miRevert": "ファイルを元に戻す", + "miRevert": "ファイルを元に戻す(&&I)", "miSave": "保存(&&S)", - "miSaveAll": "すべて保存(&&A)", - "miSaveAs": "名前を付けて保存...", + "miSaveAll": "すべて保存(&&L)", + "miSaveAs": "名前を付けて保存(&&A)...", "miSelectAll": "すべて選択(&&S)", "miSelectTheme": "配色テーマ(&&C)", "miSplitEditor": "エディターを分割(&&E)", diff --git a/i18n/jpn/src/vs/workbench/node/extensionHostMain.i18n.json b/i18n/jpn/src/vs/workbench/node/extensionHostMain.i18n.json index 2190a5033cb..c2e37ce0c3b 100644 --- a/i18n/jpn/src/vs/workbench/node/extensionHostMain.i18n.json +++ b/i18n/jpn/src/vs/workbench/node/extensionHostMain.i18n.json @@ -4,5 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionTestError": "パス {0} は有効な拡張機能テスト ランナーを指していません。" + "extensionTestError": "パス {0} は有効な拡張機能テスト ランナーを指していません。", + "extensionUnderDevelopment": "開発の拡張機能を {0} に読み込んでいます", + "overwritingExtension": "拡張機能 {0} を {1} で上書きしています。" } \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/node/extensionPoints.i18n.json b/i18n/jpn/src/vs/workbench/node/extensionPoints.i18n.json new file mode 100644 index 00000000000..fd7f50f491b --- /dev/null +++ b/i18n/jpn/src/vs/workbench/node/extensionPoints.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. +{ + "fileReadFail": "ファイル {0} を読み取れません: {1}。", + "jsonParseFail": "{0} を解析できません: {1}。", + "missingNLSKey": "キー {0} のメッセージが見つかりませんでした。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/extensions/common/extensions.i18n.json b/i18n/jpn/src/vs/workbench/parts/extensions/common/extensions.i18n.json index 29cdf1dbfda..0c663eac98f 100644 --- a/i18n/jpn/src/vs/workbench/parts/extensions/common/extensions.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/extensions/common/extensions.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionsCategory": "拡張機能" + "extensions": "拡張機能" } \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json b/i18n/jpn/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json index fa387a0dbac..d0df2eafedd 100644 --- a/i18n/jpn/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json @@ -4,6 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "close": "閉じる", "deleteSure": "'{0}' をアンインストールしてもよろしいですか?", "installExtension": "拡張機能のインストール", "restartNow": "今すぐ再起動", diff --git a/i18n/jpn/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json b/i18n/jpn/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json index 0321f978dfe..c3f8eab1ec6 100644 --- a/i18n/jpn/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json @@ -9,6 +9,5 @@ "multipleIssues": "拡張機能 ({0} 個の問題)", "multipleUpdates": "拡張機能 ({0} 個の更新プログラムが利用可能)", "oneIssue": "拡張機能 (1 つの問題)", - "oneUpdate": "拡張機能 (1 つの更新プログラムが利用可能)", - "uninstall": "アンインストール" + "oneUpdate": "拡張機能 (1 つの更新プログラムが利用可能)" } \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json b/i18n/jpn/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json index 94f68f26ed5..892e2daa08a 100644 --- a/i18n/jpn/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json @@ -10,5 +10,6 @@ "invalidVersion": "正しくない拡張機能: マニフェストのバージョンが一致しません。", "missingGalleryInformation": "ギャラリー情報がありません", "noCompatible": "Code のこのバージョンと互換性のある {0} のバージョンが見つかりませんでした。", - "notExists": "拡張機能を見つけられませんでした" + "notExists": "拡張機能を見つけられませんでした", + "restartCode": "{0} を再インストールする前に、Code を再起動してください。" } \ 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 index 70819b29f8f..afb51cd8614 100644 --- a/i18n/jpn/src/vs/workbench/parts/files/browser/fileActions.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -30,6 +30,7 @@ "emptyFileNameError": "ファイルまたはフォルダーの名前を指定する必要があります。", "fileNameExistsError": "**{0}** というファイルまたはフォルダーはこの場所に既に存在します。別の名前を指定してください。", "filePathTooLongError": "名前 **{0}** のパスが長すぎます。名前を短くしてください。", + "focusFilesExplorer": "ファイル エクスプローラーにフォーカスを置く", "focusWorkingFiles": "作業ファイルにフォーカス", "globalCompareFile": "アクティブ ファイルを比較しています...", "importFiles": "ファイルのインポート", 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 index 8fcc9e78892..96b0906eb19 100644 --- a/i18n/jpn/src/vs/workbench/parts/git/browser/gitServices.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -12,10 +12,12 @@ "changesFromTree": "{0} - {1} での変更", "checkNativeConsole": "Git の操作を実行しているときに問題が発生しました。出力を確認するか、コンソールを使用してリポジトリの状態を確認してください。", "configureUsernameEmail": "Git ユーザー名と電子メールを構成してください。", + "download": "ダウンロード", "gitIndexChanges": "{0} - インデックスでの変更", "gitIndexChangesRenamed": "{0} - 名前変更済み - インデックスでの変更", "gitMergeChanges": "{0} - 変更のマージ", "showOutput": "出力の表示", "unmergedChanges": "変更をコミットする前に、まずマージされていない変更を解決する必要があります。", + "updateGit": "git {0} がインストールされているようです。Code は 2.0.0 以上の git で最適に動作します。", "workingTreeChanges": "{0} - 作業ツリーでの変更" } \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json b/i18n/jpn/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json index 024008256e9..457a6293f28 100644 --- a/i18n/jpn/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json @@ -4,13 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "dotnetBuild": "dotnet ビルドを使用してコンパイルする tasks.json を作成します。", - "grunt": "Grunt 用の tasks.json ファイルを作成します。Grunt ファイルが存在する場合、タスクが自動検出されます。", - "gulp": "gulp 用の tasks.json ファイルを作成します。gulp ファイルが存在する場合、タスクが自動検出されます。", - "jake": "Jake 用の tasks.json ファイルを作成します。jake ファイルが存在する場合、タスクが自動検出されます。", - "msbuild": "msbuild を使用してコンパイルする tasks.json を作成します。", - "tsc.config": "TypeScript プロジェクトをコンパイルする tasks.json を作成します。", - "tsc.openFile": "現在開いている TypeScript ファイルをコンパイルする tasks.json を作成します。", - "tsc.specificFile": "特定の TypeScript ファイルをコンパイルする tasks.json を作成します。", - "tsc.watch": "ウォッチ モードで TypeScript プロジェクトをコンパイルする tasks.json を作成します。" + "dotnetCore": ".NET Core ビルド コマンドの実行", + "externalCommand": "任意の外部コマンドを実行する例", + "msbuild": "ビルド ターゲットを実行", + "tsc.config": "TypeScript プロジェクトをコンパイル", + "tsc.watch": "ウォッチ モードで TypeScript プロジェクトをコンパイル" } \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json b/i18n/jpn/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json index c1f284dd682..d38b3343b30 100644 --- a/i18n/jpn/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json @@ -8,8 +8,11 @@ "CleanAction.label": "クリーン タスクの実行", "CloseMessageAction.label": "閉じる", "ConfigureTaskRunnerAction.autoDetect": "タスク システムの自動検出が失敗しました。既定のテンプレートを使用しています。詳細については、タスク出力を参照してください", + "ConfigureTaskRunnerAction.autoDetecting": "{0} のタスクを自動検出", "ConfigureTaskRunnerAction.failed": "'.vscode' フォルダー内に 'tasks.json' ファイルを作成できません。詳細については、タスク出力を参照してください。", "ConfigureTaskRunnerAction.label": "タスク ランナーの構成", + "ConfigureTaskRunnerAction.noWorkspace": "タスクはワークスペース フォルダーでのみ利用可能です。", + "ConfigureTaskRunnerAction.quickPick.template": "タスク ランナーを選択", "JsonSchema.args": "さらにコマンドに渡される引数。", "JsonSchema.command": "実行されるコマンド。外部プログラムかシェル コマンドです。", "JsonSchema.echoCommand": "実行されるコマンドが出力にエコーされるかどうかを制御します。既定は false です。", diff --git a/i18n/jpn/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json b/i18n/jpn/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json index d6e6515a1d6..14e97caa4ab 100644 --- a/i18n/jpn/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json @@ -4,10 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "TaskSystemDetector.buildTaskDetected": "名前 '{0}' のビルド タスクが検出されしました。", "TaskSystemDetector.noGruntProgram": "システムに Grunt がインストールされていません。npm install -g grunt を実行してインストールしてください。", "TaskSystemDetector.noGulpProgram": "システムに Gulp がインストールされていません。npm install -g gulp を実行してインストールしてください。", "TaskSystemDetector.noGulpTasks": "gulp --tasks-simple が実行されましたがタスクの一覧は表示されませんでした。npm install を実行しましたか?", "TaskSystemDetector.noJakeProgram": "システムに Jake がインストールされていません。npm install -g jake を実行してインストールしてください。", "TaskSystemDetector.noJakeTasks": "jake --tasks が実行されましたがタスクの一覧は表示されませんでした。npm install を実行しましたか?", - "TaskSystemDetector.noProgram": "プログラム {0} が見つかりませんでした。メッセージは {1} です" + "TaskSystemDetector.noProgram": "プログラム {0} が見つかりませんでした。メッセージは {1} です", + "TaskSystemDetector.testTaskDetected": "名前 '{0}' のテスト タスクが検出されしました。" } \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json b/i18n/jpn/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json new file mode 100644 index 00000000000..d4fa760b9b2 --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/update/electron-browser/update.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. +{ + "close": "閉じる", + "license": "ライセンスの閲覧", + "licenseChanged": "ライセンス条項が変更されました。内容をご確認ください。", + "releaseNotes": "{0} v{1} へようこそ! リリース ノートを読みますか?" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/services/themes/node/themeService.i18n.json b/i18n/jpn/src/vs/workbench/services/themes/node/themeService.i18n.json index dc66a1fa35e..1431c706d0b 100644 --- a/i18n/jpn/src/vs/workbench/services/themes/node/themeService.i18n.json +++ b/i18n/jpn/src/vs/workbench/services/themes/node/themeService.i18n.json @@ -6,6 +6,7 @@ { "error.cannotloadtheme": "{0} を読み込めません", "error.cannotparse": "plist ファイルの解析中に問題が発生しました: {0}", + "error.cannotparsejson": "JSON テーマ ファイルの解析中に問題が起きました: {0}", "invalid.path.1": "拡張機能のフォルダー ({2}) の中に `contributes.{0}.path` ({1}) が含まれている必要があります。これにより拡張を移植できなくなる可能性があります。", "reqarray": "拡張点 `{0}` は配列でなければなりません。", "reqpath": "`contributes.{0}.path` に文字列が必要です。提供された値: {1}", diff --git a/i18n/kor/extensions/json/server/out/configuration.i18n.json b/i18n/kor/extensions/json/server/out/configuration.i18n.json index 6c73652191c..8013471d72b 100644 --- a/i18n/kor/extensions/json/server/out/configuration.i18n.json +++ b/i18n/kor/extensions/json/server/out/configuration.i18n.json @@ -5,7 +5,7 @@ // Do not edit this file. It is machine generated. { "schema.json": "스키마를 사용하는 JSON 파일을 설명합니다. 자세한 내용은 json-schema.org를 참조하세요.", - "schema.json.$schema": "이 문서를 확인할 비교 대상 스키마 ", + "schema.json.$schema": "이 문서를 비교 확인할 스키마 ", "schema.json.additionalItems": "항목이 배열로 설정된 경우의 배열에만 사용됩니다. 해당 배열이 스키마인 경우 항목 배열에서 항목을 지정한 후 이 스키마에서 항목의 유효성을 검사합니다. false인 경우 추가 항목의 유효성 검사가 실패합니다.", "schema.json.additionalProperties": "스키마 또는 부울 중 하나입니다. 스키마인 경우 'properties' 또는 'patternProperties'와 일치하지 않는 모든 속성의 유효성을 검사하는 데 사용됩니다. false인 경우 둘 중 하나와 일치하지 않는 모든 속성으로 인해 이 스키마가 실패합니다.", "schema.json.allOf": "모든 스키마가 일치해야 하는 스키마 배열입니다.", diff --git a/i18n/kor/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json b/i18n/kor/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json index a57a0912617..9aeee0e0d8a 100644 --- a/i18n/kor/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json +++ b/i18n/kor/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json @@ -5,7 +5,7 @@ // Do not edit this file. It is machine generated. { "assocDescriptionFile": "파일 이름에서 GLOB 패턴과 일치하는 모든 파일을 지정된 ID를 사용하는 언어에 매핑합니다.", - "assocDescriptionPath": "전체 경로에서 GLOB 패턴과 일치하는 모든 파일을 지정된 ID를 사용하는 언어에 매핑합니다.", + "assocDescriptionPath": "경로에서 절대 경로 GLOB 패턴과 일치하는 모든 파일을 지정된 ID를 사용하는 언어에 매핑합니다.", "assocLabelFile": "확장명이 있는 파일", "assocLabelPath": "경로가 있는 파일" } \ No newline at end of file diff --git a/i18n/kor/extensions/php/package.i18n.json b/i18n/kor/extensions/php/package.i18n.json new file mode 100644 index 00000000000..482dc068794 --- /dev/null +++ b/i18n/kor/extensions/php/package.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. +{ + "configuration.title": "PHP 구성 옵션", + "configuration.validate.enable": "php 유효성 검사의 사용 여부입니다.", + "configuration.validate.executablePath": "php 실행 파일을 가리킵니다.", + "configuration.validate.run": "저장 시 또는 입력 시 Linter의 실행 여부입니다." +} \ No newline at end of file diff --git a/i18n/kor/extensions/typescript/out/typescriptServiceClient.i18n.json b/i18n/kor/extensions/typescript/out/typescriptServiceClient.i18n.json index 2176a089ebe..9027d3e6dce 100644 --- a/i18n/kor/extensions/typescript/out/typescriptServiceClient.i18n.json +++ b/i18n/kor/extensions/typescript/out/typescriptServiceClient.i18n.json @@ -7,5 +7,6 @@ "noServerFound": "경로 {0}이(가) 올바른 tsserver 설치를 가리키지 않습니다. TypeScript 언어 기능이 사용되지 않도록 설정됩니다.", "serverCouldNotBeStarted": "TypeScript 언어 서버를 시작할 수 없습니다. 오류 메시지: {0}", "serverDied": "Typescript 언어 서비스가 지난 5분 동안 예기치 않게 5번 종료되었습니다. 버그 보고서를 열어 보세요.", - "serverDiedAfterStart": "Typescript 언어 서비스가 시작된 직후 5번 종료되었습니다. 서비스가 다시 시작되지 않습니다. 버그 보고서를 열어 보세요." + "serverDiedAfterStart": "Typescript 언어 서비스가 시작된 직후 5번 종료되었습니다. 서비스가 다시 시작되지 않습니다. 버그 보고서를 열어 보세요.", + "versionNumber.custom": "사용자 지정" } \ No newline at end of file diff --git a/i18n/kor/extensions/typescript/out/utils/projectStatus.i18n.json b/i18n/kor/extensions/typescript/out/utils/projectStatus.i18n.json index 07b7aaccd17..cd8e8c3a66d 100644 --- a/i18n/kor/extensions/typescript/out/utils/projectStatus.i18n.json +++ b/i18n/kor/extensions/typescript/out/utils/projectStatus.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "cmdCreate": "jsconfig.json 파일 만들기...", - "hint.tooltip": "프로젝트 및 향상된 IntelliSense와 기호 검색 기능 등을 보유합니다.", - "hintCreate": "프로젝트를 보유하고 개선된 IntelliSense와 코드 탐색 기능을 경험합니다.", - "hintExclude": "프로젝트 '{0}'의 크기가 큽니다. 성능 개선을 위해 {1}과(와) 같이 파일이 많은 폴더를 제외하세요.", + "cmdCreate": "jsconfig.json 만들기", + "hintCreate": "jsconfig.json을 만들면 작업 영역 전반에서 IntelliSense와 코드 탐색 기능을 다양하게 설정할 수 있습니다.", + "hintExclude": "성능 개선을 위해 {0}과(와) 같이 파일이 많은 폴더를 제외하세요.", + "hintExclude.generic": "성능 개선을 위해 파일이 많은 폴더를 제외하세요.", + "ignore.cmdCreate": "무시", "large.label": "제외 구성", - "large.tooltip": "프로젝트에 파일이 너무 많아 성능이 떨어질 수 있습니다. {0}과(와) 같이 파일이 많은 폴더는 제외합니다.", - "open": "제외 구성..." + "open": "제외 구성" } \ 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 index 9969ffea65f..1f029d12a73 100644 --- a/i18n/kor/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/kor/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -31,6 +31,7 @@ "roundedSelection": "선택 항목의 모서리를 둥글게 할지 여부를 제어합니다.", "rulers": "세로 눈금자를 표시할 열", "scrollBeyondLastLine": "편집기에서 마지막 줄 이후로 스크롤할지 여부를 제어합니다.", + "selectionClipboard": "Linux 주 클립보드의 지원 여부를 제어합니다.", "selectionHighlight": "편집기에서 선택 항목과 유사한 일치 항목을 강조 표시할지 여부를 제어합니다.", "sideBySide": "diff 편집기에서 diff를 나란히 표시할지 인라인으로 표시할지 여부를 제어합니다.", "suggestOnTriggerCharacters": "트리거 문자를 입력할 때 제안을 자동으로 표시할지 여부를 제어합니다.", diff --git a/i18n/kor/src/vs/editor/common/modes/modesRegistry.i18n.json b/i18n/kor/src/vs/editor/common/modes/modesRegistry.i18n.json new file mode 100644 index 00000000000..3e83dbeb0f7 --- /dev/null +++ b/i18n/kor/src/vs/editor/common/modes/modesRegistry.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. +{ + "plainText.alias": "일반 텍스트" +} \ 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 index b572adc9ebb..92cb00495ee 100644 --- a/i18n/kor/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json +++ b/i18n/kor/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -8,5 +8,6 @@ "actions.goToDeclToSide.label": "측면에서 정의 열기", "actions.gotoTypeDecl.label": "형식 정의로 이동", "actions.previewDecl.label": "정의 피킹(Peeking)", + "meta.title": " – 정의 {0}개", "multipleResults": "발견된 {0} 정의를 보려면 클릭하세요." } \ 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 index 266a42c5548..4aee41750fd 100644 --- a/i18n/kor/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json +++ b/i18n/kor/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -13,5 +13,7 @@ "lines.moveDown": "줄 아래로 이동", "lines.moveUp": "줄 위로 이동", "lines.outdent": "줄 내어쓰기", + "lines.sortAscending": "줄을 오름차순 정렬", + "lines.sortDescending": "줄을 내림차순으로 정렬", "lines.trimTrailingWhitespace": "후행 공백 자르기" } \ 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 index f4a257e3c9d..aa700e6b8ee 100644 --- a/i18n/kor/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json +++ b/i18n/kor/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -6,5 +6,7 @@ { "QuickFixSelectionWidget.loading": "로드 중...", "QuickFixSelectionWidget.noSuggestions": "수정 제안 사항이 없습니다.", + "ariaCurrentFix": "{0}, 빠른 수정 제안", + "quickFixAriaAccepted": "{0}, 수락됨", "treeAriaLabel": "빠른 수정" } \ 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 index 250aa5bb0a3..65c06576f10 100644 --- a/i18n/kor/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json +++ b/i18n/kor/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "labelLoading": "로드 중...", + "meta.titleReference": " – 참조 {0}개", "noResults": "결과 없음", "references.action.label": "모든 참조 찾기", "references.action.name": "참조 표시" diff --git a/i18n/kor/src/vs/editor/node/textMate/TMSnippets.i18n.json b/i18n/kor/src/vs/editor/node/textMate/TMSnippets.i18n.json index 2495cd0a51f..c3395642498 100644 --- a/i18n/kor/src/vs/editor/node/textMate/TMSnippets.i18n.json +++ b/i18n/kor/src/vs/editor/node/textMate/TMSnippets.i18n.json @@ -7,7 +7,7 @@ "invalid.language": "`contributes.{0}.language`에 알 수 없는 언어가 있습니다. 제공된 값: {1}", "invalid.path.0": "`contributes.{0}.path`에 문자열이 필요합니다. 제공된 값: {1}", "invalid.path.1": "확장 폴더({2})에 포함할 `contributes.{0}.path`({1})가 필요합니다. 확장이 이식 불가능해질 수 있습니다.", - "vscode.extension.contributes.snippets": "textmate 코드 조각을 적용합니다.", + "vscode.extension.contributes.snippets": "TextMate 코드 조각을 적용합니다.", "vscode.extension.contributes.snippets-language": "이 코드 조각이 적용되는 언어 ID입니다.", "vscode.extension.contributes.snippets-path": "코드 조작 파일의 경로입니다. 이 경로는 확장 폴더에 상대적이며 일반적으로 './snippets/'로 시작합니다." } \ No newline at end of file diff --git a/i18n/kor/src/vs/languages/html/common/html.contribution.i18n.json b/i18n/kor/src/vs/languages/html/common/html.contribution.i18n.json new file mode 100644 index 00000000000..b3d50a001b9 --- /dev/null +++ b/i18n/kor/src/vs/languages/html/common/html.contribution.i18n.json @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "format.endWithNewline": "줄 바꿈으로 끝납니다.", + "format.extraLiners": "쉼표로 분리된 태그 목록으로 앞에 줄 바꿈을 추가로 넣어야 합니다. \"head, body, /html\"의 기본값은 'null'로 설정됩니다.", + "format.indentHandlebars": "{{#foo}} 및 {{/foo}}를 서식 지정하고 들여쓰기합니다.", + "format.indentInnerHtml": " 및 섹션을 들여쓰기합니다.", + "format.maxPreserveNewLines": "청크 한 개에 유지할 수 있는 최대 줄 바꿈 수입니다. 무제한일 때는 'null'을 사용합니다.", + "format.preserveNewLines": "요소 앞에 있는 기존 줄 바꿈의 유지 여부입니다. 요소 앞에만 적용되며 태그 안이나 텍스트에는 적용되지 않습니다.", + "format.unformatted": "쉼표로 분리된 태그 목록으로, 서식을 다시 지정해서는 안 됩니다. 모든 인라인 태그의 기본값은 'null'로 설정됩니다.", + "format.wrapLineLength": "한 줄의 최대 문자 수 입니다(0 = 사용 안 함).", + "htmlConfigurationTitle": "HTML 구성" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/browser/actions/configureLocale.i18n.json b/i18n/kor/src/vs/workbench/browser/actions/configureLocale.i18n.json new file mode 100644 index 00000000000..145560f6e84 --- /dev/null +++ b/i18n/kor/src/vs/workbench/browser/actions/configureLocale.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. +{ + "configureLocale": "로캘 구성", + "displayLanguage": "VSCode의 표시 언어를 정의합니다.", + "fail.createSettings": "'{0}'({1})을(를) 만들 수 없습니다.", + "restart": "값을 변경하려면 VSCode를 다시 시작해야 합니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json b/i18n/kor/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json index 761df1a658d..254acac2ae4 100644 --- a/i18n/kor/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json +++ b/i18n/kor/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json @@ -12,7 +12,6 @@ "configureAssociations": "파일 연결 구성...", "configureAssociationsExt": "'{0}'에 대한 파일 연결 구성...", "configuredLanguage": "구성된 언어", - "defaultEncoding": "구성된 인코딩", "disableTabMode": "접근성 모드 사용 안 함", "endOfLineCarriageReturnLineFeed": "CRLF", "endOfLineLineFeed": "LF", @@ -26,7 +25,7 @@ "noEditor": "현재 활성 텍스트 편집기 없음", "noFileEditor": "현재 활성 파일 없음", "noWritableCodeEditor": "활성 코드 편집기는 읽기 전용입니다.", - "persistFileAssociations": "**files.associations** 섹션에서 파일 이름과 언어를 연결하도록 구성할 수 있습니다.", + "persistFileAssociations": "**files.associations** 섹션에서 파일 이름과 언어를 연결하도록 구성할 수 있습니다. 변경 내용을 이미 열린 파일에 적용하려면 다시 시작해야 할 수 있습니다.", "pickAction": "작업 선택", "pickEncodingForReopen": "파일을 다시 열 파일 인코딩 선택", "pickEncodingForSave": "파일을 저장할 파일 인코딩 선택", diff --git a/i18n/kor/src/vs/workbench/electron-browser/crashReporter.i18n.json b/i18n/kor/src/vs/workbench/electron-browser/crashReporter.i18n.json index 89067ec67a7..b1239ce1bb0 100644 --- a/i18n/kor/src/vs/workbench/electron-browser/crashReporter.i18n.json +++ b/i18n/kor/src/vs/workbench/electron-browser/crashReporter.i18n.json @@ -4,6 +4,6 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "telemetry.enableCrashReporting": "충돌 보고서를 Microsoft에 전송할 수 있습니다.\n\t// 이 옵션을 적용하려면 VSCode를 다시 시작해야 합니다.", + "telemetry.enableCrashReporting": "충돌 보고서를 Microsoft에 전송할 수 있도록 설정합니다.\n\t// 이 옵션을 적용하려면 다시 시작해야 합니다.", "telemetryConfigurationTitle": "원격 분석 구성" } \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json b/i18n/kor/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json index d9a13bc6ec6..7f48e5b90bb 100644 --- a/i18n/kor/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json +++ b/i18n/kor/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json @@ -12,7 +12,7 @@ "changeNow": "지금 변경", "continue": "계속", "editFile": "'{0}' 편집", - "exists": "'{1}'에서 '{0}'을(를) 참조하는 별칭을 제거하고 이 작업을 다시 시도하세요.", + "exists": "'{1}'(줄 {2})에서 '{0}'을(를) 참조하는 별칭을 제거하고 이 작업을 다시 시도하세요.", "install": "PATH에 'code' 명령 설치", "later": "이상", "laterInfo": "명령 팔레트에서 '{0}' 작업을 항상 실행할 수 있습니다.", diff --git a/i18n/kor/src/vs/workbench/electron-main/main.i18n.json b/i18n/kor/src/vs/workbench/electron-main/main.i18n.json index 5672cd32d83..ac2a1209236 100644 --- a/i18n/kor/src/vs/workbench/electron-main/main.i18n.json +++ b/i18n/kor/src/vs/workbench/electron-main/main.i18n.json @@ -4,9 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "expired": "만료됨", - "expiredDetail": "{0}의 이 시험판 버전이 만료되었습니다.\n\n{1}을(를) 방문하여 최신 릴리스를 다운로드하세요.", - "newWindow": "새 창", - "openWebSite": "웹 사이트 열기", - "quit": "끝내기" + "newWindow": "새 창" } \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/electron-main/menus.i18n.json b/i18n/kor/src/vs/workbench/electron-main/menus.i18n.json index c362e61be6b..6b9b23f98c7 100644 --- a/i18n/kor/src/vs/workbench/electron-main/menus.i18n.json +++ b/i18n/kor/src/vs/workbench/electron-main/menus.i18n.json @@ -64,10 +64,10 @@ "miReplace": "바꾸기(&&R)", "miReportIssues": "문제 보고(&&I)", "miRestartToUpdate": "업데이트하기 위해 다시 시작...", - "miRevert": "파일 되돌리기", + "miRevert": "파일 되돌리기(&&I)", "miSave": "저장(&&S)", - "miSaveAll": "모두 저장(&&A)", - "miSaveAs": "다른 이름으로 저장...", + "miSaveAll": "모두 저장(&&L)", + "miSaveAs": "다른 이름으로 저장(&&A)...", "miSelectAll": "모두 선택(&&S)", "miSelectTheme": "색 테마(&&C)", "miSplitEditor": "편집기 분할(&&E)", diff --git a/i18n/kor/src/vs/workbench/node/extensionHostMain.i18n.json b/i18n/kor/src/vs/workbench/node/extensionHostMain.i18n.json index d77e097b6ea..0b048adfacc 100644 --- a/i18n/kor/src/vs/workbench/node/extensionHostMain.i18n.json +++ b/i18n/kor/src/vs/workbench/node/extensionHostMain.i18n.json @@ -4,5 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionTestError": "경로 {0}이(가) 유효한 확장 Test Runner를 가리키지 않습니다." + "extensionTestError": "경로 {0}이(가) 유효한 확장 Test Runner를 가리키지 않습니다.", + "extensionUnderDevelopment": "{0}에서 개발 확장 로드 중", + "overwritingExtension": "확장 {0}을(를) {1}(으)로 덮어쓰는 중입니다." } \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/node/extensionPoints.i18n.json b/i18n/kor/src/vs/workbench/node/extensionPoints.i18n.json new file mode 100644 index 00000000000..4ef70e48875 --- /dev/null +++ b/i18n/kor/src/vs/workbench/node/extensionPoints.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. +{ + "fileReadFail": "파일 {0}을(를) 읽을 수 없음: {1}.", + "jsonParseFail": "{0}을(를) 구문 분석하지 못함: {1}.", + "missingNLSKey": "키 {0}에 대한 메시지를 찾을 수 없습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/extensions/common/extensions.i18n.json b/i18n/kor/src/vs/workbench/parts/extensions/common/extensions.i18n.json index 85d1f44db08..a1803247556 100644 --- a/i18n/kor/src/vs/workbench/parts/extensions/common/extensions.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/extensions/common/extensions.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionsCategory": "확장" + "extensions": "확장" } \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json b/i18n/kor/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json index 87174d6450a..436855a1644 100644 --- a/i18n/kor/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json @@ -4,6 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "close": "닫기", "deleteSure": "'{0}'을(를) 제거할까요?", "installExtension": "확장 설치", "restartNow": "지금 다시 시작", diff --git a/i18n/kor/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json b/i18n/kor/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json index 0da9bd86f78..487b664d371 100644 --- a/i18n/kor/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json @@ -9,6 +9,5 @@ "multipleIssues": "확장(문제 {0}개)", "multipleUpdates": "확장(업데이트 {0}개 사용 가능)", "oneIssue": "확장(문제 1개)", - "oneUpdate": "확장(업데이트 1개 사용 가능)", - "uninstall": "제거" + "oneUpdate": "확장(업데이트 1개 사용 가능)" } \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json b/i18n/kor/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json index 02fdc6714fe..9bb77d04659 100644 --- a/i18n/kor/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json @@ -10,5 +10,6 @@ "invalidVersion": "잘못된 확장: 매니페스트 버전이 일치하지 않습니다.", "missingGalleryInformation": "갤러리 정보가 없습니다.", "noCompatible": "이 버전의 코드에서 {0}의 호환 버전을 찾을 수 없습니다.", - "notExists": "확장을 찾을 수 없음" + "notExists": "확장을 찾을 수 없음", + "restartCode": "{0}을(를) 다시 설치하기 전에 Code를 다시 시작하세요." } \ 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 index 8027ddc5b94..604dc60204c 100644 --- a/i18n/kor/src/vs/workbench/parts/files/browser/fileActions.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -30,6 +30,7 @@ "emptyFileNameError": "파일 또는 폴더 이름을 입력해야 합니다.", "fileNameExistsError": "파일 또는 폴더 **{0}**이(가) 이 위치에 이미 있습니다. 다른 이름을 선택하세요.", "filePathTooLongError": "**{0}**(이)라는 이름을 사용하면 경로가 너무 길어집니다. 짧은 이름을 선택하세요.", + "focusFilesExplorer": "파일 탐색기에 포커스 설정", "focusWorkingFiles": "작업 파일에 포커스 설정", "globalCompareFile": "활성 파일을 다음과 비교...", "importFiles": "파일 가져오기", 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 index 39a8e79bbf6..5fd14e2e521 100644 --- a/i18n/kor/src/vs/workbench/parts/git/browser/gitServices.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -12,10 +12,12 @@ "changesFromTree": "{0} - {1} 변경 내용", "checkNativeConsole": "git 작업을 실행하는 동안 문제가 발생했습니다. 출력을 검토하거나 콘솔을 사용하여 리포지토리의 상태를 확인하세요.", "configureUsernameEmail": "git 사용자 이름 및 메일을 구성하세요.", + "download": "다운로드", "gitIndexChanges": "{0} - 인덱스 변경 내용", "gitIndexChangesRenamed": "{0} - 이름 바꿈 - 인덱스의 변경 내용", "gitMergeChanges": "{0} - 변경 내용 병합", "showOutput": "출력 표시", "unmergedChanges": "변경 내용을 커밋하기 전에 먼저 병합되지 않은 변경 내용을 확인해야 합니다.", + "updateGit": "Git {0}이(가) 설치된 것 같습니다. Code는 2.0.0 이하의 Git에서 최적으로 작동합니다.", "workingTreeChanges": "{0} - 작업 트리 변경 내용" } \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json b/i18n/kor/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json index 05d4b59f7ca..5c07a2de71f 100644 --- a/i18n/kor/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json @@ -4,13 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "dotnetBuild": "dotnet 빌드를 사용하여 컴파일하는 tasks.json을 생성합니다.", - "grunt": "Grunt용 tasks.json 파일을 생성합니다. Jake 파일이 있으면 작업이 자동으로 감지됩니다.", - "gulp": "Gulp용 tasks.json 파일을 생성합니다. Gulp 파일이 있으면 작업이 자동으로 감지됩니다.", - "jake": "Jake용 tasks.json 파일을 생성합니다. Jake 파일이 있으면 작업이 자동으로 감지됩니다.", - "msbuild": "msbuild를 사용하여 컴파일하는 tasks.json을 생성합니다.", - "tsc.config": "TypeScript 프로젝트를 컴파일하는 tasks.json을 생성합니다.", - "tsc.openFile": "현재 열려 있는 TypeScript 파일을 컴파일하는 tasks.json을 생성합니다.", - "tsc.specificFile": "특정 TypeScript 파일을 컴파일하는 tasks.json을 생성합니다.", - "tsc.watch": "감시 모드로 TypeScript 프로젝트를 컴파일하는 tasks.json을 생성합니다." + "dotnetCore": ".NET Core 빌드 명령을 실행합니다.", + "externalCommand": "임의의 외부 명령을 실행하는 예", + "msbuild": "빌드 대상을 실행합니다.", + "tsc.config": "TypeScript 프로젝트를 컴파일합니다.", + "tsc.watch": "TypeScript 프로젝트를 감시 모드에서 컴파일합니다." } \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json b/i18n/kor/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json index 43dfd42a3f3..d53b37a9878 100644 --- a/i18n/kor/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json @@ -8,8 +8,11 @@ "CleanAction.label": "정리 작업 실행", "CloseMessageAction.label": "닫기", "ConfigureTaskRunnerAction.autoDetect": "작업 시스템을 자동으로 감지하지 못했습니다. 기본 템플릿을 사용하는 중입니다. 자세한 내용은 작업 출력을 참조하세요.", + "ConfigureTaskRunnerAction.autoDetecting": "{0} 작업을 자동 검색 중", "ConfigureTaskRunnerAction.failed": "'.vscode' 폴더 내에 'tasks.json' 파일을 만들 수 없습니다. 자세한 내용은 작업 출력을 참조하세요.", "ConfigureTaskRunnerAction.label": "Task Runner 구성", + "ConfigureTaskRunnerAction.noWorkspace": "작업은 작업 영역 폴더에서만 사용할 수 있습니다.", + "ConfigureTaskRunnerAction.quickPick.template": "Task Runner 선택", "JsonSchema.args": "명령에 전달되는 추가 인수입니다.", "JsonSchema.command": "실행할 명령이며, 외부 프로그램 또는 셸 명령입니다.", "JsonSchema.echoCommand": "실행된 명령을 출력에 에코할지 여부를 제어합니다. 기본값은 false입니다.", diff --git a/i18n/kor/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json b/i18n/kor/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json index b58a427b3d6..211e1c054dd 100644 --- a/i18n/kor/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json @@ -4,10 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "TaskSystemDetector.buildTaskDetected": "이름이 '{0}'인 빌드 작업이 발견되었습니다.", "TaskSystemDetector.noGruntProgram": "Grunt가 시스템에 설치되어 있지 않습니다. npm install -g grunt를 실행하여 설치하세요.", "TaskSystemDetector.noGulpProgram": "Gulp가 시스템에 설치되어 있지 않습니다. npm install -g gulp를 실행하여 설치하세요.", "TaskSystemDetector.noGulpTasks": "gulp --tasks-simple을 실행해도 작업이 나열되지 않습니다. npm install을 실행했나요?", "TaskSystemDetector.noJakeProgram": "Jake가 시스템에 설치되어 있지 않습니다. npm install -g jake를 실행하여 설치하세요.", "TaskSystemDetector.noJakeTasks": "jake --tasks를 실행해도 작업이 나열되지 않습니다. npm install을 실행했나요?", - "TaskSystemDetector.noProgram": "{0} 프로그램을 찾을 수 없습니다. 메시지는 {1}입니다." + "TaskSystemDetector.noProgram": "{0} 프로그램을 찾을 수 없습니다. 메시지는 {1}입니다.", + "TaskSystemDetector.testTaskDetected": "이름이 '{0}'인 테스트 작업이 발견되었습니다." } \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json b/i18n/kor/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json new file mode 100644 index 00000000000..9dbaa0353f9 --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/update/electron-browser/update.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. +{ + "close": "닫기", + "license": "라이선스 읽기", + "licenseChanged": "사용 조건이 변경되었습니다. 자세히 읽어보세요.", + "releaseNotes": "{0} v{1}을(를) 시작합니다. 릴리스 정보를 확인하시겠습니까?" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/services/themes/node/themeService.i18n.json b/i18n/kor/src/vs/workbench/services/themes/node/themeService.i18n.json index 741edbf21d4..7bd9f984734 100644 --- a/i18n/kor/src/vs/workbench/services/themes/node/themeService.i18n.json +++ b/i18n/kor/src/vs/workbench/services/themes/node/themeService.i18n.json @@ -6,6 +6,7 @@ { "error.cannotloadtheme": "{0}을(를) 로드할 수 없습니다.", "error.cannotparse": "plist 파일을 구문 분석하는 동안 문제가 발생했습니다. {0}", + "error.cannotparsejson": "JSON 테마 파일을 구문 분석하는 중 문제 발생: {0}", "invalid.path.1": "확장 폴더({2})에 포함할 `contributes.{0}.path`({1})가 필요합니다. 확장이 이식 불가능해질 수 있습니다.", "reqarray": "확장점 `{0}`은(는) 배열이어야 합니다.", "reqpath": "`contributes.{0}.path`에 문자열이 필요합니다. 제공된 값: {1}", diff --git a/i18n/rus/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json b/i18n/rus/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json index ed1bbe21182..e63c146f53c 100644 --- a/i18n/rus/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json +++ b/i18n/rus/extensions/json/server/out/jsoncontributions/fileAssociationContribution.i18n.json @@ -5,7 +5,7 @@ // Do not edit this file. It is machine generated. { "assocDescriptionFile": "Сопоставить все файлы, соответствующие стандартной маске в имени файла, с языком с указанным кодом.", - "assocDescriptionPath": "Сопоставить все файлы, соответствующие стандартной маске в полном пути, с языком с указанным кодом.", + "assocDescriptionPath": "Сопоставление всех файлов, соответствующих стандартной маске в абсолютном пути, с языком с указанным идентификатором.", "assocLabelFile": "Файлы с расширением", "assocLabelPath": "Файлы с путем" } \ No newline at end of file diff --git a/i18n/rus/extensions/php/package.i18n.json b/i18n/rus/extensions/php/package.i18n.json new file mode 100644 index 00000000000..98653ca8151 --- /dev/null +++ b/i18n/rus/extensions/php/package.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. +{ + "configuration.title": "Параметры конфигурации PHP", + "configuration.validate.enable": "Включена ли проверка PHP.", + "configuration.validate.executablePath": "Указывает на исполняемый файл PHP.", + "configuration.validate.run": "Запускается ли Linter при сохранении или в типе." +} \ No newline at end of file diff --git a/i18n/rus/extensions/typescript/out/typescriptServiceClient.i18n.json b/i18n/rus/extensions/typescript/out/typescriptServiceClient.i18n.json index c50d49bd56a..54381e7927b 100644 --- a/i18n/rus/extensions/typescript/out/typescriptServiceClient.i18n.json +++ b/i18n/rus/extensions/typescript/out/typescriptServiceClient.i18n.json @@ -7,5 +7,6 @@ "noServerFound": "Путь \"{0}\" не указывает на допустимый файл программы установки tsserver. Возможности языка TypeScript будут отключены.", "serverCouldNotBeStarted": "Не удалось запустить сервер языка TypeScript. Сообщение об ошибке: {0}", "serverDied": "Служба языка Typescript пять раз непредвиденно завершила работу за последние пять минут. Отправьте отчет об ошибке.", - "serverDiedAfterStart": "Служба языка Typesrript пять раз завершила работу сразу после запуска. Служба не будет перезапущена. Отправьте отчет об ошибке." + "serverDiedAfterStart": "Служба языка Typesrript пять раз завершила работу сразу после запуска. Служба не будет перезапущена. Отправьте отчет об ошибке.", + "versionNumber.custom": "пользовательский" } \ No newline at end of file diff --git a/i18n/rus/extensions/typescript/out/utils/projectStatus.i18n.json b/i18n/rus/extensions/typescript/out/utils/projectStatus.i18n.json index b01eec4b6c3..10ffe20e9ea 100644 --- a/i18n/rus/extensions/typescript/out/utils/projectStatus.i18n.json +++ b/i18n/rus/extensions/typescript/out/utils/projectStatus.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "cmdCreate": "Создание файла jsconfig.json...", - "hint.tooltip": "Используйте проекты и улучшенные возможности IntelliSense, символьный поиск и многое другое.", - "hintCreate": "Используйте проекты и улучшенные возможности IntelliSense и навигации по коду.", - "hintExclude": "\"{0}\" — это большой проект. Для повышения производительности исключите папки со множеством файлов, например: {1}...", + "cmdCreate": "Создать jsconfig.json", + "hintCreate": "Создайте jsconfig.json, чтобы предоставить больше возможностей IntelliSense и обеспечить навигацию по всей рабочей области.", + "hintExclude": "Для повышения производительности исключите папки со множеством файлов, например: {0}", + "hintExclude.generic": "Для лучшей производительности исключите папки с большим количеством файлов.", + "ignore.cmdCreate": "Пропустить", "large.label": "Настройка исключений", - "large.tooltip": "Слишком большое число файлов в проекте может ухудшить производительность. Исключите папки со множеством файлов, например: {0}...", - "open": "Настройка исключений..." + "open": "Настроить исключения" } \ 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 index ed10a1b103c..a54b2f6d92b 100644 --- a/i18n/rus/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/rus/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -31,6 +31,7 @@ "roundedSelection": "Определяет, будут ли выделения иметь скругленные углы.", "rulers": "Столбцы, в которых должны отображаться вертикальные линейки", "scrollBeyondLastLine": "Определяет, будет ли содержимое редактора прокручиваться за последнюю строку.", + "selectionClipboard": "Контролирует, следует ли поддерживать первичный буфер обмена Linux.", "selectionHighlight": "Определяет, будет ли редактор выделять фрагменты, совпадающие с выделенным текстом.", "sideBySide": "Определяет, как редактор несовпадений отображает отличия: рядом или в тексте.", "suggestOnTriggerCharacters": "Определяет, должны ли при вводе триггерных символов автоматически отображаться предложения.", diff --git a/i18n/rus/src/vs/editor/common/modes/modesRegistry.i18n.json b/i18n/rus/src/vs/editor/common/modes/modesRegistry.i18n.json new file mode 100644 index 00000000000..e3bc652c5f0 --- /dev/null +++ b/i18n/rus/src/vs/editor/common/modes/modesRegistry.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. +{ + "plainText.alias": "Обычный текст" +} \ 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 index 5de8f872051..b097aa9339b 100644 --- a/i18n/rus/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json +++ b/i18n/rus/src/vs/editor/contrib/goToDeclaration/browser/goToDeclaration.i18n.json @@ -8,5 +8,6 @@ "actions.goToDeclToSide.label": "Открыть определение сбоку", "actions.gotoTypeDecl.label": "Перейти к определению типа", "actions.previewDecl.label": "Показать определение", + "meta.title": " — определения {0}", "multipleResults": "Щелкните, чтобы отобразить найденные определения ({0})." } \ 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 index 4d1879ab7da..0c3c0542cce 100644 --- a/i18n/rus/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json +++ b/i18n/rus/src/vs/editor/contrib/linesOperations/common/linesOperations.i18n.json @@ -13,5 +13,7 @@ "lines.moveDown": "Переместить строку вниз", "lines.moveUp": "Переместить строку вверх", "lines.outdent": "Уменьшить отступ", + "lines.sortAscending": "Сортировка строк по возрастанию", + "lines.sortDescending": "Сортировка строк по убыванию", "lines.trimTrailingWhitespace": "Удалить конечные символы-разделители" } \ 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 index b8b8d7db557..7abec0d5a8e 100644 --- a/i18n/rus/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json +++ b/i18n/rus/src/vs/editor/contrib/quickFix/browser/quickFixSelectionWidget.i18n.json @@ -6,5 +6,7 @@ { "QuickFixSelectionWidget.loading": "Загрузка...", "QuickFixSelectionWidget.noSuggestions": "Предложения по исправлениям отсутствуют.", + "ariaCurrentFix": "{0}, предложенное быстрое исправление", + "quickFixAriaAccepted": "{0}, принято", "treeAriaLabel": "Быстрое исправление" } \ 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 index 5d9111af090..66f2061265c 100644 --- a/i18n/rus/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json +++ b/i18n/rus/src/vs/editor/contrib/referenceSearch/browser/referenceSearch.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "labelLoading": "Загрузка...", + "meta.titleReference": " — ссылки {0}", "noResults": "Результаты отсутствуют", "references.action.label": "Найти все ссылки", "references.action.name": "Показать ссылки" diff --git a/i18n/rus/src/vs/languages/html/common/html.contribution.i18n.json b/i18n/rus/src/vs/languages/html/common/html.contribution.i18n.json new file mode 100644 index 00000000000..d75d51df930 --- /dev/null +++ b/i18n/rus/src/vs/languages/html/common/html.contribution.i18n.json @@ -0,0 +1,16 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "format.endWithNewline": "Завершение с помощью новой строки.", + "format.extraLiners": "Список тегов с разделителями-запятыми и дополнительными новыми строками между ними. Значение \"null\" по умолчанию ставится для \"head, body, /html\".", + "format.indentHandlebars": "Формат и отступ {{#foo}} и {{/foo}}.", + "format.indentInnerHtml": "Отступ и разделы .", + "format.maxPreserveNewLines": "Максимальное число разрывов строк для сохранения в блоке. Чтобы указать неограниченное число строк, используйте \"null\".", + "format.preserveNewLines": "Следует ли сохранять разрывы строк перед элементами. Работает только перед элементами, а не внутри тегов или для текста.", + "format.unformatted": "Список тегов с разделителями-запятыми, который не следует повторно форматировать. Значение \"null\" по умолчанию ставится для всех внутренних тегов.", + "format.wrapLineLength": "Максимальное число символов на строку (0 = disable).", + "htmlConfigurationTitle": "Конфигурация HTML" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/browser/actions/configureLocale.i18n.json b/i18n/rus/src/vs/workbench/browser/actions/configureLocale.i18n.json new file mode 100644 index 00000000000..8e108716b1d --- /dev/null +++ b/i18n/rus/src/vs/workbench/browser/actions/configureLocale.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. +{ + "configureLocale": "Настроить языковой стандарт", + "displayLanguage": "Определяет язык интерфейса VSCode.", + "fail.createSettings": "Невозможно создать \"{0}\" ({1}).", + "restart": "Для изменения значения требуется перезапуск VSCode." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json b/i18n/rus/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json index 2c36aeb4c2c..8e0312bb557 100644 --- a/i18n/rus/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json +++ b/i18n/rus/src/vs/workbench/browser/parts/editor/editorStatus.i18n.json @@ -12,7 +12,6 @@ "configureAssociations": "Настройка сопоставлений файлов...", "configureAssociationsExt": "Настройка сопоставлений файлов для \"{0}\"...", "configuredLanguage": "Настроенный язык", - "defaultEncoding": "Кодировка по умолчанию", "disableTabMode": "Отключить режим специальных возможностей", "endOfLineCarriageReturnLineFeed": "CRLF", "endOfLineLineFeed": "LF", @@ -26,7 +25,7 @@ "noEditor": "В данный момент нет активного текстового редактора", "noFileEditor": "В данный момент нет активного файла", "noWritableCodeEditor": "Активный редактор кода доступен только для чтения.", - "persistFileAssociations": "Вы можете настроить имя файла для сопоставления языка из раздела **files.associations**", + "persistFileAssociations": "Вы можете настроить имя файла для сопоставления языка из раздела **files.associations**. Чтобы изменения вступили в силу в открытых файлах, может потребоваться перезагрузка.", "pickAction": "Выберите действие", "pickEncodingForReopen": "Выберите кодировку файла для его повторного открытия", "pickEncodingForSave": "Выберите кодировку файла для его сохранения", diff --git a/i18n/rus/src/vs/workbench/electron-browser/crashReporter.i18n.json b/i18n/rus/src/vs/workbench/electron-browser/crashReporter.i18n.json index 70b33535b55..5094779efc1 100644 --- a/i18n/rus/src/vs/workbench/electron-browser/crashReporter.i18n.json +++ b/i18n/rus/src/vs/workbench/electron-browser/crashReporter.i18n.json @@ -4,6 +4,6 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "telemetry.enableCrashReporting": "Разрешить отправку отчетов о сбоях в корпорацию Майкрософт.\n\t// Чтобы этот параметр вступил в силу, необходимо перезапустить VSCode.", + "telemetry.enableCrashReporting": "Разрешить отправку отчетов о сбоях в корпорацию Майкрософт.\n\t// Чтобы этот параметр вступил в силу, требуется перезагрузка.", "telemetryConfigurationTitle": "Конфигурация телеметрии" } \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json b/i18n/rus/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json index 04ec25373dd..e2e94b30848 100644 --- a/i18n/rus/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json +++ b/i18n/rus/src/vs/workbench/electron-browser/darwin/cli.contribution.i18n.json @@ -12,7 +12,7 @@ "changeNow": "Изменить сейчас", "continue": "Продолжить", "editFile": "Изменить \"{0}\"", - "exists": "Удалите псевдоним, содержащий ссылку на \"{0}\", из \"{1}\" и повторите это действие.", + "exists": "Удалите псевдоним, содержащий ссылку на \"{0}\", из \"{1}\" (строка {2}) и повторите это действие.", "install": "Установить путь к команде \"code\" в PATH", "later": "Позже", "laterInfo": "Помните, что вы всегда можете выполнить действие \"{0}\" из палитры команд.", diff --git a/i18n/rus/src/vs/workbench/electron-main/main.i18n.json b/i18n/rus/src/vs/workbench/electron-main/main.i18n.json index 6443e6bb8a2..3b06c96bf63 100644 --- a/i18n/rus/src/vs/workbench/electron-main/main.i18n.json +++ b/i18n/rus/src/vs/workbench/electron-main/main.i18n.json @@ -4,9 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "expired": "Срок действия истек", - "expiredDetail": "Срок действия этой предварительной версии {0} истек.\n\nЧтобы скачать текущую версию, посетите сайт {1}.", - "newWindow": "Новое окно", - "openWebSite": "Открыть веб-сайт", - "quit": "Выйти" + "newWindow": "Новое окно" } \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/electron-main/menus.i18n.json b/i18n/rus/src/vs/workbench/electron-main/menus.i18n.json index ea833186d42..31cf2340a03 100644 --- a/i18n/rus/src/vs/workbench/electron-main/menus.i18n.json +++ b/i18n/rus/src/vs/workbench/electron-main/menus.i18n.json @@ -64,10 +64,10 @@ "miReplace": "&&Заменить", "miReportIssues": "&&Сообщить о проблемах", "miRestartToUpdate": "Перезапустить для обновления...", - "miRevert": "Отменить изменения в файле", + "miRevert": "Отменить &&изменения в файле", "miSave": "&&Сохранить", "miSaveAll": "Сохранить &&все", - "miSaveAs": "Сохранить как...", + "miSaveAs": "Сохранить &&как...", "miSelectAll": "&&Выделить все", "miSelectTheme": "Цветовая &&тема", "miSplitEditor": "Разделить &&редактор", diff --git a/i18n/rus/src/vs/workbench/node/extensionHostMain.i18n.json b/i18n/rus/src/vs/workbench/node/extensionHostMain.i18n.json index 1380b020b4e..ba0afa87d20 100644 --- a/i18n/rus/src/vs/workbench/node/extensionHostMain.i18n.json +++ b/i18n/rus/src/vs/workbench/node/extensionHostMain.i18n.json @@ -4,5 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionTestError": "Путь \"{0}\" не указывает на допустимый модуль выполнения тестов расширения." + "extensionTestError": "Путь \"{0}\" не указывает на допустимый модуль выполнения тестов расширения.", + "extensionUnderDevelopment": "Идет загрузка расширения разработки в {0}", + "overwritingExtension": "Идет перезапись расширения {0} в {1}." } \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/node/extensionPoints.i18n.json b/i18n/rus/src/vs/workbench/node/extensionPoints.i18n.json new file mode 100644 index 00000000000..95ead49206f --- /dev/null +++ b/i18n/rus/src/vs/workbench/node/extensionPoints.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. +{ + "fileReadFail": "Не удается прочитать файл {0}: {1}.", + "jsonParseFail": "Не удалось проанализировать {0}: {1}.", + "missingNLSKey": "Не удалось найти сообщение для ключа {0}." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/extensions/common/extensions.i18n.json b/i18n/rus/src/vs/workbench/parts/extensions/common/extensions.i18n.json index 70e90037823..c88e4364179 100644 --- a/i18n/rus/src/vs/workbench/parts/extensions/common/extensions.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/extensions/common/extensions.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "extensionsCategory": "Расширения" + "extensions": "Расширения" } \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json b/i18n/rus/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json index 4a40e9454f4..a3c5f3c5123 100644 --- a/i18n/rus/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/extensions/electron-browser/extensionsActions.i18n.json @@ -4,6 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "close": "Закрыть", "deleteSure": "Действительно удалить \"{0}\"?", "installExtension": "Установить расширение", "restartNow": "Перезагрузка", diff --git a/i18n/rus/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json b/i18n/rus/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json index 7f33dbcaf65..77f59908655 100644 --- a/i18n/rus/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/extensions/electron-browser/extensionsWidgets.i18n.json @@ -9,6 +9,5 @@ "multipleIssues": "Расширения (ошибок: {0})", "multipleUpdates": "Расширения (доступно обновлений: {0})", "oneIssue": "Расширения (1 ошибка)", - "oneUpdate": "Расширения (1 обновление доступно)", - "uninstall": "Удалить" + "oneUpdate": "Расширения (1 обновление доступно)" } \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json b/i18n/rus/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json index f504a9412dc..7b704c7cb20 100644 --- a/i18n/rus/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/extensions/node/extensionsService.i18n.json @@ -10,5 +10,6 @@ "invalidVersion": "Недопустимое расширение: несоответствие версии манифеста.", "missingGalleryInformation": "Отсутствуют сведения о коллекции", "noCompatible": "Не удалось найти версию {0}, совместимую с этой версией кода.", - "notExists": "Не удалось найти расширение" + "notExists": "Не удалось найти расширение", + "restartCode": "Перезапустите код перед переустановкой {0}." } \ 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 index a3e02d71d9d..72fc60029a9 100644 --- a/i18n/rus/src/vs/workbench/parts/files/browser/fileActions.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/files/browser/fileActions.i18n.json @@ -30,6 +30,7 @@ "emptyFileNameError": "Необходимо указать имя файла или папки.", "fileNameExistsError": "Файл или папка **{0}** уже существует в данном расположении. Выберите другое имя.", "filePathTooLongError": "Из-за использования имени **{0}** путь слишком длинный. Выберите более короткое имя.", + "focusFilesExplorer": "Фокус на проводнике", "focusWorkingFiles": "Фокус на рабочие файлы", "globalCompareFile": "Сравнить активный файл с...", "importFiles": "Импорт файлов", 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 index 0f7536d459a..973142f0ac5 100644 --- a/i18n/rus/src/vs/workbench/parts/git/browser/gitServices.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/git/browser/gitServices.i18n.json @@ -12,10 +12,12 @@ "changesFromTree": "{0} — изменения в {1}", "checkNativeConsole": "Ошибка при выполнении операции GIT. Проверьте выходные данные или используйте консоль для проверки состояния репозитория.", "configureUsernameEmail": "Настройте ваши имя пользователя и электронную почту GIT.", + "download": "Скачать", "gitIndexChanges": "{0} — изменения в индексе", "gitIndexChangesRenamed": "{0} — переименовано — изменения в индексе", "gitMergeChanges": "{0} — объединить изменения", "showOutput": "Показать выходные данные", "unmergedChanges": "Перед сохранением необходимо сначала разрешить необъединенные изменения.", + "updateGit": "Вероятно, у вас установлен GIT {0}. Код лучше всего работает с GIT >=2.0.0.", "workingTreeChanges": "{0} — изменения в рабочем дереве" } \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json b/i18n/rus/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json index 2d9ef913689..7d7cd0735c6 100644 --- a/i18n/rus/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/tasks/common/taskTemplates.i18n.json @@ -4,13 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "dotnetBuild": "Создает файл tasks.json, который компилируется с помощью сборки dotnet.", - "grunt": "Создает файл tasks.json для Grunt. Если существует файл jake, задачи будут обнаружены автоматически.", - "gulp": "Создает файл tasks.json для gulp. Если существует файл gulp, задачи будут обнаружены автоматически.", - "jake": "Создает файл tasks.json для Jake. Если существует файл jake, задачи будут обнаружены автоматически.", - "msbuild": "Создает файл tasks.json, который компилируется с помощью msbuild.", - "tsc.config": "Создает файл tasks.json, который компилирует проект TypeScript.", - "tsc.openFile": "Создает файл tasks.json, который компилирует открытый в текущий момент файл TypeScript.", - "tsc.specificFile": "Создает файл tasks.json, который компилирует определенный файл TypeScript.", - "tsc.watch": "Создает файл tasks.json, который компилирует проект TypeScript в режиме наблюдения." + "dotnetCore": "Выполняет команду сборки .NET Core", + "externalCommand": "Пример для запуска произвольной внешней команды", + "msbuild": "Выполняет целевой объект сборки", + "tsc.config": "Компилирует проект TypeScript", + "tsc.watch": "Компилирует проект TypeScript в режиме наблюдения" } \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json b/i18n/rus/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json index a3ce9286293..04f4df9d519 100644 --- a/i18n/rus/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/tasks/electron-browser/task.contribution.i18n.json @@ -8,8 +8,11 @@ "CleanAction.label": "Выполнить задачу очистки", "CloseMessageAction.label": "Закрыть", "ConfigureTaskRunnerAction.autoDetect": "Не удалось автоматически определить систему задачи, используется шаблон по умолчанию. Подробности см. в выходных данных задачи.", + "ConfigureTaskRunnerAction.autoDetecting": "Автообнаружение задач для {0}", "ConfigureTaskRunnerAction.failed": "Не удается создать файл tasks.json в папке .vscode. Подробности см. в выходных данных задачи.", "ConfigureTaskRunnerAction.label": "Настроить средство выполнения задач", + "ConfigureTaskRunnerAction.noWorkspace": "Задачи доступны только в папке рабочей области.", + "ConfigureTaskRunnerAction.quickPick.template": "Выбрать средство выполнения задач", "JsonSchema.args": "Дополнительные аргументы, передаваемые в команду.", "JsonSchema.command": "Выполняемая команда. Это может быть внешняя программа или команда оболочки.", "JsonSchema.echoCommand": "Определяет, переносится ли выполняемая команда в выходные данные. Значение по умолчанию — false.", diff --git a/i18n/rus/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json b/i18n/rus/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json index 1e4c6c96b99..ddf898940fe 100644 --- a/i18n/rus/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/tasks/node/processRunnerDetector.i18n.json @@ -4,10 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "TaskSystemDetector.buildTaskDetected": "Обнаружена задача сборки \"{0}\".", "TaskSystemDetector.noGruntProgram": "Grunt не установлен в вашей системе. Чтобы установить его, выполните команду npm install -g grunt.", "TaskSystemDetector.noGulpProgram": "Gulp не установлен в вашей системе. Чтобы установить его, выполните команду npm install -g gulp.", "TaskSystemDetector.noGulpTasks": "В результате выполнения команды gulp --tasks-simple не было выведено ни одной задачи. Выполнили ли вы команду npm install?", "TaskSystemDetector.noJakeProgram": "Jake не установлен в вашей системе. Чтобы установить его, выполните команду npm install -g jake.", "TaskSystemDetector.noJakeTasks": "В результате выполнения команды jake --tasks не было выведено ни одной задачи. Выполнили ли вы команду npm install?", - "TaskSystemDetector.noProgram": "Программа {0} не найдена. Сообщение: {1}" + "TaskSystemDetector.noProgram": "Программа {0} не найдена. Сообщение: {1}", + "TaskSystemDetector.testTaskDetected": "Обнаружена задача тестирования \"{0}\"." } \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json b/i18n/rus/src/vs/workbench/parts/update/electron-browser/update.contribution.i18n.json new file mode 100644 index 00000000000..dac92539acb --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/update/electron-browser/update.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. +{ + "close": "Закрыть", + "license": "Прочитать лицензию", + "licenseChanged": "Условия использования лицензии изменились, ознакомьтесь с ними.", + "releaseNotes": "Вас приветствует {0} v{1}! Вы хотите прочитать заметки о выпуске?" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/services/themes/node/themeService.i18n.json b/i18n/rus/src/vs/workbench/services/themes/node/themeService.i18n.json index 688fbc2e9a5..670127475d7 100644 --- a/i18n/rus/src/vs/workbench/services/themes/node/themeService.i18n.json +++ b/i18n/rus/src/vs/workbench/services/themes/node/themeService.i18n.json @@ -6,6 +6,7 @@ { "error.cannotloadtheme": "Не удается загрузить {0}", "error.cannotparse": "Проблемы при анализе PLIST-файла: {0}", + "error.cannotparsejson": "Возникли проблемы при анализе THEME-файла JSON: {0}", "invalid.path.1": "contributes.{0}.path ({1}) должен был быть включен в папку расширения ({2}). Это может сделать расширение непереносимым.", "reqarray": "Точка расширения \"{0}\" должна быть массивом.", "reqpath": "В contributes.{0}.path требуется строка. Указанное значение: {1}",