diff --git a/i18n/chs/extensions/css/client/out/cssMain.i18n.json b/i18n/chs/extensions/css/client/out/cssMain.i18n.json index 8b6ad71cd4e..a61dc149b35 100644 --- a/i18n/chs/extensions/css/client/out/cssMain.i18n.json +++ b/i18n/chs/extensions/css/client/out/cssMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "cssserver.name": "CSS 语言服务器" +} \ No newline at end of file diff --git a/i18n/chs/extensions/json/client/out/jsonMain.i18n.json b/i18n/chs/extensions/json/client/out/jsonMain.i18n.json index 8b6ad71cd4e..95a990288e0 100644 --- a/i18n/chs/extensions/json/client/out/jsonMain.i18n.json +++ b/i18n/chs/extensions/json/client/out/jsonMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "jsonserver.name": "JSON 语言服务器" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/code/electron-main/menus.i18n.json b/i18n/chs/src/vs/code/electron-main/menus.i18n.json index 16f5ba7e039..5825ce03550 100644 --- a/i18n/chs/src/vs/code/electron-main/menus.i18n.json +++ b/i18n/chs/src/vs/code/electron-main/menus.i18n.json @@ -36,7 +36,7 @@ "miFind": "查找(&&F)", "miFindInFiles": "在文件中查找(&&I)", "miFocusFirstGroup": "左侧组(&&L)", - "miFocusSecondGroup": "侧面组(&&S)", + "miFocusSecondGroup": "中心组(&&C)", "miFocusThirdGroup": "右侧组(&&R)", "miForward": "前进(&&F)", "miGotoDefinition": "转到定义(&&D)...", 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 df54e69d435..eaa5c9539a9 100644 --- a/i18n/chs/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/chs/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -6,6 +6,7 @@ { "acceptSuggestionOnEnter": "控制除了 \"Tab\" 以外,是否还应在 \"Enter\" 时接受建议。帮助避免“插入新行”或“接受建议”之间的歧义。", "autoClosingBrackets": "控制编辑器是否应该在左括号后自动插入右括号", + "codeLens": "控制编辑器是否显示代码滤镜", "cursorBlinking": "控制光标动画样式,可能的值为 \"blink\"、\"smooth\"、\"phase\"、\"expand\" 和 \"solid\"", "cursorStyle": "控制光标样式,接受的值为 \"block\"、\"line\" 和 \"underline\"", "detectIndentation": "当打开文件时,将基于文件内容检测 \"editor.tabSize\" 和 \"editor.insertSpaces\"。", @@ -14,11 +15,12 @@ "fontFamily": "控制字体系列。", "fontLigatures": "启用字体连字", "fontSize": "控制字体大小。", + "fontWeight": "控制字体粗细。", "formatOnType": "控制编辑器是否应在键入后自动设置行的格式", "glyphMargin": "控制字形边距的可见性", "hideCursorInOverviewRuler": "控制光标是否应隐藏在概述标尺中。", "ignoreTrimWhitespace": "控制差异编辑器是否将对前导空格或尾随空格的更改显示为差异", - "insertSpaces": "按 \"Tab\" 时插入空格。", + "insertSpaces": "按 \"Tab\" 时插入空格。该设置在 `editor.detectIndentation` 启用时根据文件内容进行重写。", "insertSpaces.errorMessage": "应为 \"boolean\"。注意,值 \"auto\" 已由 \"editor.detectIndentation\" 设置替换。", "lineHeight": "控制行高。使用 0 通过字号计算行高。", "lineNumbers": "控制行号的可见性", @@ -41,7 +43,7 @@ "stablePeek": "即使在双击编辑器内容或按 Esc 键时,也要保持速览编辑器的打开状态。", "suggestOnTriggerCharacters": "控制键入触发器字符时是否应自动显示建议", "tabCompletion": "当其前缀匹配时插入代码段。当 \"quickSuggestions\" 未启用时,效果最佳。", - "tabSize": "一个制表符等于的空格数。", + "tabSize": "一个制表符等于的空格数。该设置在 `editor.detectIndentation` 启用时根据文件内容进行重写。", "tabSize.errorMessage": "应为 \"number\"。注意,值\"auto\"已由 \"editor.detectIndentation\" 设置替换。", "trimAutoWhitespace": "删除尾随自动插入的空格", "useTabStops": "在制表位后插入和删除空格", diff --git a/i18n/chs/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json b/i18n/chs/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json index 8b6ad71cd4e..421ed1cedba 100644 --- a/i18n/chs/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json +++ b/i18n/chs/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "snippet.suggestions.label": "插入代码片段" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json b/i18n/chs/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/chs/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/chs/src/vs/platform/request/common/request.i18n.json b/i18n/chs/src/vs/platform/request/common/request.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/chs/src/vs/platform/request/common/request.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/api/node/extHostDiagnostics.i18n.json b/i18n/chs/src/vs/workbench/api/node/extHostDiagnostics.i18n.json index 8b6ad71cd4e..b574ef70d3f 100644 --- a/i18n/chs/src/vs/workbench/api/node/extHostDiagnostics.i18n.json +++ b/i18n/chs/src/vs/workbench/api/node/extHostDiagnostics.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "limitHit": "未显示 {0} 个进一步的错误和警告。" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/browser/parts/editor/editorActions.i18n.json b/i18n/chs/src/vs/workbench/browser/parts/editor/editorActions.i18n.json index e3a3023a55e..31b3553e7a2 100644 --- a/i18n/chs/src/vs/workbench/browser/parts/editor/editorActions.i18n.json +++ b/i18n/chs/src/vs/workbench/browser/parts/editor/editorActions.i18n.json @@ -12,6 +12,7 @@ "closeEditorsToTheLeft": "关闭左侧编辑器", "closeEditorsToTheRight": "关闭右侧编辑器", "closeOtherEditorsInGroup": "关闭其他编辑器", + "closeQuickOpen": "关闭速启", "evenEditorGroups": "编辑器组平均宽度", "focusFirstEditorGroup": "聚焦于左侧编辑器组", "focusLastEditorInStack": "打开组中上一个编辑器", @@ -24,6 +25,8 @@ "minimizeOtherEditorGroups": "最小化其他编辑器组", "moveActiveGroupLeft": "向左移动编辑器组", "moveActiveGroupRight": "向右移动编辑器组", + "moveEditorLeft": "向左移动编辑器", + "moveEditorRight": "向右移动编辑器", "moveEditorToLeftGroup": "将编辑器移动到左侧的组中", "moveEditorToRightGroup": "将编辑器移动到右侧的组中", "navigateEditorGroups": "在编辑器组间进行导航", diff --git a/i18n/chs/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json b/i18n/chs/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json index 8b6ad71cd4e..dc99e9c3b23 100644 --- a/i18n/chs/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json +++ b/i18n/chs/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json @@ -3,4 +3,10 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "commandDeprecated": "已删除命令 **{0}**。你可以改用 **{1}**", + "editorCommand.activeEditorMove.arg.description": "\n\t\t\t\t\t\t参数属性:\n\t\t\t\t\t\t\"to\": 提供向何处移动的字符串值。\n\t\t\t\t\t\t\"by\": 提供要移动的单元的字符串值。按标签或按组。\n\t\t\t\t\t\t\"value\": 提供要移动的位置的数量或绝对位置的数字值。\n\t\t\t\t\t", + "editorCommand.activeEditorMove.arg.name": "活动编辑器移动参数", + "editorCommand.activeEditorMove.description": "按标签或按组移动活动编辑器", + "openKeybindings": "配置键盘快捷方式" +} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/electron-browser/main.contribution.i18n.json b/i18n/chs/src/vs/workbench/electron-browser/main.contribution.i18n.json index cde2ba3a675..d3f7acd2300 100644 --- a/i18n/chs/src/vs/workbench/electron-browser/main.contribution.i18n.json +++ b/i18n/chs/src/vs/workbench/electron-browser/main.contribution.i18n.json @@ -4,11 +4,13 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "closeOnFocusLost": "控制速启是否应在失去焦点时自动关闭。", "developer": "开发人员", "editorOpenPositioning": "控制打开编辑器的位置。选择“左侧”或“右侧”以在当前活动位置的左侧或右侧打开编辑器。选择“第一个”或“最后一个”以从当前活动位置独立打开编辑器。", "enablePreview": "控制打开的编辑器是否显示为预览。预览编辑器可以重新使用,直到将其保留(例如,双击或编辑)。", "enablePreviewFromQuickOpen": "控制快速打开中打开的编辑器是否显示为预览。预览编辑器可以重新使用,直到将其保留(例如,双击或编辑)。", "file": "文件", + "openDefaultSettings": "控制打开设置时是否打开显示所有默认设置的编辑器。", "openFilesInNewWindow": "启用后,将在新窗口中打开文件,而不是重复使用现有实例。", "reopenFolders": "控制重启后重新打开文件夹的方式。选择“none”表示永不重新打开文件夹,选择“one”表示重新打开最后使用的一个文件夹,或选择“all”表示打开上次会话的所有文件夹。", "restoreFullscreen": "如果窗口已退出全屏模式,控制其是否应还原为全屏模式。", diff --git a/i18n/chs/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json b/i18n/chs/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ 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 0e31231a0fc..aff221b2b22 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 @@ -20,6 +20,12 @@ "deleteButtonLabel": "删除(&&D)", "deleteButtonLabelRecycleBin": "移动到回收站(&&M)", "deleteButtonLabelTrash": "移动到回收站(&&M)", + "dirtyMessageFile": "你正在重命名的文件具有未保存的更改。是否继续?", + "dirtyMessageFileDelete": "你正在删除的文件具有未保存的更改。是否继续?", + "dirtyMessageFolder": "你正在重命名的文件夹有 {0} 个文件具有未保存的更改。是否继续?", + "dirtyMessageFolderDelete": "你正在删除的文件夹有 {0} 个文件具有未保存的更改。是否继续?", + "dirtyMessageFolderOne": "你正在重命名的文件夹有 1 个文件具有未保存的更改。是否继续?", + "dirtyMessageFolderOneDelete": "你正在删除的文件夹有 1 个文件具有未保存的更改。是否继续?", "dirtyWarning": "如果不保存,更改将丢失。", "duplicateFile": "重复", "emptyFileNameError": "必须提供文件或文件夹名。", @@ -43,6 +49,7 @@ "refresh": "刷新", "refreshExplorer": "刷新资源管理器", "rename": "重命名", + "renameLabel": "重命名(&&R)", "replaceButtonLabel": "替换(&&R)", "retry": "重试", "revert": "还原文件", diff --git a/i18n/chs/src/vs/workbench/parts/files/browser/files.contribution.i18n.json b/i18n/chs/src/vs/workbench/parts/files/browser/files.contribution.i18n.json index 3b8f5d505bc..c47ebd28adf 100644 --- a/i18n/chs/src/vs/workbench/parts/files/browser/files.contribution.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/files/browser/files.contribution.i18n.json @@ -6,7 +6,7 @@ { "associations": "配置语言的文件关联(如: \"*.extension\": \"html\")。这些关联的优先级高于已安装语言的默认关联。", "autoReveal": "控制资源管理器是否应在打开文件时自动显示它们。", - "autoSave": "控制已更新文件的自动保存。接受的值:“{0}”、“{1}”、“{2}”。如果设置为“{3}”,则可在 \"files.autoSaveDelay\" 中配置延迟。", + "autoSave": "控制是否自动保存更新后的文件。接受的值:“{0}”、“{1}”、“{2}”(编辑器失去焦点)、“{3}”(窗口失去焦点)。如果设置为“{4}”,则可在 \"files.autoSaveDelay\" 中配置延迟。", "autoSaveDelay": "控制延迟(以秒为单位),在该延迟后将自动保存更新后的文件。仅在 \"files.autoSave\" 设置为“{0}”时适用。", "binaryFileEditor": "二进制文件编辑器", "dynamicHeight": "控制打开的编辑器部分的高度是否应动态适应元素数量。", diff --git a/i18n/chs/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json b/i18n/chs/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json index adfed2b6794..0c0b62be184 100644 --- a/i18n/chs/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json @@ -5,9 +5,13 @@ // Do not edit this file. It is machine generated. { "confirmOverwriteMessage": "目标文件夹中已存在“{0}”。是否要将其替换?", + "dirtyMessageFile": "你正在移动的文件具有未保存的更改。是否继续?", + "dirtyMessageFolder": "你正在移动的文件夹有 {0} 个文件具有未保存的更改。是否继续?", + "dirtyMessageFolderOne": "你正在移动的文件夹有 1 个文件具有未保存的更改。是否继续?", "dirtyWarning": "如果不保存,更改将丢失。", "fileInputAriaLabel": "键入文件名。按 Enter 以确认或按 Esc 以取消。", "filesExplorerViewerAriaLabel": "{0},文件资源管理器", "irreversible": "此操作不可逆!", + "moveLabel": "移动(&&M)", "replaceButtonLabel": "替换(&&R)" } \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/chs/src/vs/workbench/parts/git/browser/gitActions.i18n.json index 1ee1714b31f..298d8359482 100644 --- a/i18n/chs/src/vs/workbench/parts/git/browser/gitActions.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -9,9 +9,11 @@ "commit": "Commit", "commitAll": "全部提交", "commitAll2": "全部提交", + "commitAllSignedOff": "提交所有数据(已签收)", "commitMessage": "提交消息", "commitStaged": "提交已暂存的", "commitStaged2": "提交已暂存的", + "commitStagedSignedOff": "提交暂存数据(已签收)", "confirmPublishMessage": "是否确定要将“{0}”发布到“{1}”?", "confirmPublishMessageButton": "发布(&&P)", "confirmUndo": "是否确实要清理“{0}”中的更改?", 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 8b44eb4db44..3c0dbf78f4b 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 @@ -25,6 +25,6 @@ "showOutput": "显示输出", "unmergedChanges": "提交更改前,你应首先解决未合并的更改。", "updateGit": "你似乎已安装 git {0}。在 git >=2.0.0 情况下代码工作最佳。", - "workingTreeChanges": "{0} (标头) ↔ {1}", + "workingTreeChanges": "{0} (HEAD) ↔ {1}", "workingTreeChangesDesc": "{0} - 对工作树的更改" } \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json b/i18n/chs/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json index d2d871df9eb..3167996f4f3 100644 --- a/i18n/chs/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "confirmSync": "同步 Git 存储库前请先进行确认。", + "countBadge": "控制 git 徽章计数器。", "git": "GIT", "gitAutoFetch": "是否启用了自动提取。", "gitAutoRefresh": "是否已启用自动刷新", diff --git a/i18n/chs/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json b/i18n/chs/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/chs/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json b/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json index e7370d3a9fe..7d32804eba1 100644 --- a/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json @@ -5,10 +5,12 @@ // Do not edit this file. It is machine generated. { "terminal": "终端", + "terminal.integrated.commandsToSkipShell": "一组不会将键绑定发送到 shell 而总是被“代码”处理的命令 ID。这允许使用通常被 shell 使用的键绑定,就像未以终端为焦点的操作方式一样,例如按 Ctrl+P 可启动速启。", "terminal.integrated.cursorBlinking": "控制终端游标是否闪烁。", "terminal.integrated.fontFamily": "控制终端的字体系列,这在编辑器中是默认的。fontFamily 的值。", "terminal.integrated.fontLigatures": "控制是否在终端中启用字体连字。", "terminal.integrated.fontSize": "控制终端的字号,这在编辑器中是默认的。fontSize 的值。", + "terminal.integrated.fontWeight": "控制终端的字体粗细,默认为 editor.fontWeight 的值。", "terminal.integrated.lineHeight": "控制终端的行高,此数字乘以终端字号得到实际行高(以像素表示)。", "terminal.integrated.setLocaleVariables": "控制是否在终端启动时设置区域设置变量,在 OS X 上默认设置为 true,在其他平台上为 false。", "terminal.integrated.shell.linux": "终端在 Linux 上使用的 shell 的路径。", diff --git a/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json b/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json index ca440e10bb9..444b2ee4311 100644 --- a/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json @@ -14,6 +14,8 @@ "workbench.action.terminal.new.short": "新的终端", "workbench.action.terminal.paste": "终端: 粘贴到活动终端", "workbench.action.terminal.runSelectedText": "终端: 在活动终端运行所选文本", + "workbench.action.terminal.scrollDown": "终端: 向下滚动", + "workbench.action.terminal.scrollUp": "终端: 向上滚动", "workbench.action.terminal.switchTerminalInstance": "终端: 切换终端实例", "workbench.action.terminal.toggleTerminal": "切换集成终端" } \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminalPanel.i18n.json b/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminalPanel.i18n.json index 80f391c8ec4..03314262217 100644 --- a/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminalPanel.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminalPanel.i18n.json @@ -5,6 +5,6 @@ // Do not edit this file. It is machine generated. { "copy": "复制", - "createNewTerminal": "新的终端", + "createNewTerminal": "新终端", "paste": "粘贴" } \ No newline at end of file diff --git a/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json b/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json index 8b6ad71cd4e..db4bf9ce6b2 100644 --- a/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json +++ b/i18n/chs/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "terminal.integrated.copySelection.noSelection": "当终端没有位于焦点时无法复制终端选定内容" +} \ No newline at end of file diff --git a/i18n/cht/extensions/css/client/out/cssMain.i18n.json b/i18n/cht/extensions/css/client/out/cssMain.i18n.json index 8b6ad71cd4e..114a1822e0a 100644 --- a/i18n/cht/extensions/css/client/out/cssMain.i18n.json +++ b/i18n/cht/extensions/css/client/out/cssMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "cssserver.name": "CSS 語言伺服器" +} \ No newline at end of file diff --git a/i18n/cht/extensions/json/client/out/jsonMain.i18n.json b/i18n/cht/extensions/json/client/out/jsonMain.i18n.json index 8b6ad71cd4e..79a6b6140c4 100644 --- a/i18n/cht/extensions/json/client/out/jsonMain.i18n.json +++ b/i18n/cht/extensions/json/client/out/jsonMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "jsonserver.name": "JSON 語言伺服器" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/code/electron-main/menus.i18n.json b/i18n/cht/src/vs/code/electron-main/menus.i18n.json index 8797988a205..f38ecd5493a 100644 --- a/i18n/cht/src/vs/code/electron-main/menus.i18n.json +++ b/i18n/cht/src/vs/code/electron-main/menus.i18n.json @@ -36,7 +36,7 @@ "miFind": "尋找(&&F)", "miFindInFiles": "在檔案中尋找(&&I)", "miFocusFirstGroup": "左側群組(&&L)", - "miFocusSecondGroup": "側邊群組(&&S)", + "miFocusSecondGroup": "置中群組(&&C)", "miFocusThirdGroup": "右側群組(&&R)", "miForward": "轉寄(&&F)", "miGotoDefinition": "移至定義(&&D)", 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 02000ffa018..6fd16ee182f 100644 --- a/i18n/cht/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/cht/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -6,6 +6,7 @@ { "acceptSuggestionOnEnter": "控制除了 'Tab' 外,是否也藉由按下 'Enter' 接受建議。如此可避免混淆要插入新行或接受建議。", "autoClosingBrackets": "控制編輯器是否應在左括號後自動插入右括號", + "codeLens": "控制編輯器是否顯示程式碼濾鏡", "cursorBlinking": "控制游標動畫樣式,可能的值為 'blink'、'smooth'、'phase'、'expand' 和 'solid'", "cursorStyle": "控制游標樣式,接受的值為 'block'、'line' 和 'underline'", "detectIndentation": "開啟檔案時,會依據檔案內容來偵測 `editor.tabSize` 及 `editor.insertSpaces`。", @@ -14,11 +15,12 @@ "fontFamily": "控制字型家族。", "fontLigatures": "啟用連字字型", "fontSize": "控制字型大小。", + "fontWeight": "控制字型寬度。", "formatOnType": "控制編輯器是否應在輸入一行後自動格式化", "glyphMargin": "控制是否顯示字符邊界", "hideCursorInOverviewRuler": "控制游標是否應隱藏在概觀尺規中。", "ignoreTrimWhitespace": "控制 Diff 編輯器是否將開頭或尾端空白字元的變更顯示為差異", - "insertSpaces": "按 Tab 時插入空格。", + "insertSpaces": "在按 Tab 時插入空格。當 `editor.detectIndentation` 已開啟時,會根據檔案內容覆寫此設定。", "insertSpaces.errorMessage": "必須是 'boolean'。請注意,值 \"auto\" 已由 `editor.detect Indentation` 設定取代。", "lineHeight": "控制行高。使用 0 會從 fontSize 計算 lineHeight。", "lineNumbers": "控制是否顯示行號", @@ -41,7 +43,7 @@ "stablePeek": "讓預覽編輯器在使用者按兩下其內容或點擊 Escape 時保持開啟。", "suggestOnTriggerCharacters": "控制輸入觸發字元時,是否應自動顯示建議", "tabCompletion": "在前置詞相符時插入程式碼片段。最適用於未啟用 'quickSuggestions' 時。", - "tabSize": "與 Tab 相等的空格數量。", + "tabSize": "與 Tab 相等的空格數量。當 `editor.detectIndentation` 已開啟時,會根據檔案內容覆寫此設定。", "tabSize.errorMessage": "必須是 'number'。請注意,值 \"auto\" 已由 `editor.detectIndentation` 設定取代。", "trimAutoWhitespace": "移除尾端自動插入的空白字元", "useTabStops": "插入和刪除接在定位停駐點後的空白字元", diff --git a/i18n/cht/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json b/i18n/cht/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json index 8b6ad71cd4e..de9b42f6ace 100644 --- a/i18n/cht/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json +++ b/i18n/cht/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "snippet.suggestions.label": "插入程式碼片段" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json b/i18n/cht/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/cht/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/cht/src/vs/platform/request/common/request.i18n.json b/i18n/cht/src/vs/platform/request/common/request.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/cht/src/vs/platform/request/common/request.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/api/node/extHostDiagnostics.i18n.json b/i18n/cht/src/vs/workbench/api/node/extHostDiagnostics.i18n.json index 8b6ad71cd4e..f032212aad3 100644 --- a/i18n/cht/src/vs/workbench/api/node/extHostDiagnostics.i18n.json +++ b/i18n/cht/src/vs/workbench/api/node/extHostDiagnostics.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "limitHit": "未顯示另外 {0} 個錯誤與警告。" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/browser/parts/editor/editorActions.i18n.json b/i18n/cht/src/vs/workbench/browser/parts/editor/editorActions.i18n.json index 254f012b8a1..d6e1ad06c0f 100644 --- a/i18n/cht/src/vs/workbench/browser/parts/editor/editorActions.i18n.json +++ b/i18n/cht/src/vs/workbench/browser/parts/editor/editorActions.i18n.json @@ -12,6 +12,7 @@ "closeEditorsToTheLeft": "將編輯器關到左側", "closeEditorsToTheRight": "將編輯器關到右側", "closeOtherEditorsInGroup": "關閉其他編輯器", + "closeQuickOpen": "關閉快速開啟", "evenEditorGroups": "均分編輯器群組寬度", "focusFirstEditorGroup": "聚焦左側編輯器群組", "focusLastEditorInStack": "開啟群組中最後一個編輯器", @@ -24,6 +25,8 @@ "minimizeOtherEditorGroups": "將其他編輯器群組最小化", "moveActiveGroupLeft": "將編輯器群組向左移", "moveActiveGroupRight": "將編輯器群組向右移", + "moveEditorLeft": "將編輯器左移", + "moveEditorRight": "將編輯器右移", "moveEditorToLeftGroup": "將編輯器移入左側群組中", "moveEditorToRightGroup": "將編輯器移入右側群組中", "navigateEditorGroups": "在編輯器群組間導覽", diff --git a/i18n/cht/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json b/i18n/cht/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json index 8b6ad71cd4e..03b797423a3 100644 --- a/i18n/cht/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json +++ b/i18n/cht/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json @@ -3,4 +3,10 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "commandDeprecated": "已移除命令 **{0}**。您可以改用 **{1}**", + "editorCommand.activeEditorMove.arg.description": "\n\t\t\t\t\t\t引數屬性:\n\t\t\t\t\t\t'to': 提供移動目標位置的字串值。\n\t\t\t\t\t\t'by': 提供移動單位的字串值。可以 tab 或群組為單位。\n\t\t\t\t\t\t'value': 提供要移動多少位置或絕對位置的數字值。\n\t\t\t\t\t", + "editorCommand.activeEditorMove.arg.name": "使用中編輯器的移動引數", + "editorCommand.activeEditorMove.description": "以 tab 或群組為單位移動使用中的編輯器", + "openKeybindings": "設定鍵盤快速鍵" +} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/electron-browser/main.contribution.i18n.json b/i18n/cht/src/vs/workbench/electron-browser/main.contribution.i18n.json index 842b6a04805..432f945e270 100644 --- a/i18n/cht/src/vs/workbench/electron-browser/main.contribution.i18n.json +++ b/i18n/cht/src/vs/workbench/electron-browser/main.contribution.i18n.json @@ -4,11 +4,13 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "closeOnFocusLost": "控制是否在快速開啟失去焦點時自動關閉。", "developer": "開發人員", "editorOpenPositioning": "控制要在何處開啟編輯器。選取 [左] 或 [右] 在目前使用中編輯器的左側或右側開啟編輯器。選取 [先] 或 [後] 從目前使用中編輯器另外開啟編輯器。", "enablePreview": "控制已開啟的編輯器是否顯示為預覽。預覽編輯器會重複使用到被保留 (例如按兩下或進行編輯) 為止。", "enablePreviewFromQuickOpen": "控制透過快速開啟所開啟的編輯器是否顯示為預覽。預覽編輯器會重複使用到被保留 (例如按兩下或進行編輯) 為止。", "file": "檔案", + "openDefaultSettings": "控制開啟設定時是否也會開啟顯示所有預設設定的編輯器。", "openFilesInNewWindow": "啟用時,會在新視窗中開啟檔案,而不是重複使用現有的執行個體。", "reopenFolders": "控制重新啟動後重新開啟資料夾的方式。選取 [none] 永不重新開啟資料夾,選取 [one] 重新開啟最近一個使用的資料夾,或選取 [all] 重新開啟上一個工作階段的所有資料夾。", "restoreFullscreen": "控制當視窗在全螢幕模式下結束後,下次是否仍以全螢幕模式開啟。", diff --git a/i18n/cht/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json b/i18n/cht/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ 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 a43220a1bfb..d55adc1b566 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 @@ -20,6 +20,12 @@ "deleteButtonLabel": "刪除(&&D)", "deleteButtonLabelRecycleBin": "移至資源回收筒(&&M)", "deleteButtonLabelTrash": "移至垃圾筒(&&M)", + "dirtyMessageFile": "您要重新命名的檔案有未儲存的變更。要繼續嗎?", + "dirtyMessageFileDelete": "您要刪除的檔案有未儲存的變更。要繼續嗎?", + "dirtyMessageFolder": "您要重新命名的資料夾中 {0} 個檔案有未儲存的變更。要繼續嗎?", + "dirtyMessageFolderDelete": "您要刪除的資料夾中 {0} 個檔案有未儲存的變更。要繼續嗎?", + "dirtyMessageFolderOne": "您要重新命名的資料夾中 1 個檔案有未儲存的變更。要繼續嗎?", + "dirtyMessageFolderOneDelete": "您要刪除的資料夾中 1 個檔案有未儲存的變更。要繼續嗎?", "dirtyWarning": "如果您不儲存變更,這些變更將會遺失。", "duplicateFile": "複製", "emptyFileNameError": "必須提供檔案或資料夾名稱。", @@ -43,6 +49,7 @@ "refresh": "重新整理", "refreshExplorer": "重新整理 Explorer", "rename": "重新命名", + "renameLabel": "重新命名(&&R)", "replaceButtonLabel": "取代(&&R)", "retry": "重試", "revert": "還原檔案", diff --git a/i18n/cht/src/vs/workbench/parts/files/browser/files.contribution.i18n.json b/i18n/cht/src/vs/workbench/parts/files/browser/files.contribution.i18n.json index 1bf5ca01d11..3819fd1b0a1 100644 --- a/i18n/cht/src/vs/workbench/parts/files/browser/files.contribution.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/files/browser/files.contribution.i18n.json @@ -6,7 +6,7 @@ { "associations": "將檔案關聯設定為語言 (例如 \"*.extension\": \"html\")。這些語言優先於已安裝語言的預設關聯。", "autoReveal": "控制總管是否應在開啟檔案時自動加以顯示。", - "autoSave": "控制已變更檔案的自動儲存功能。接受的值: \"{0}\"、\"{1}\"、\"{2}\"。如果設定為 \"{3}\",您可以在 \"files.autoSaveDelay\" 中設定延遲時間。", + "autoSave": "控制已變更檔案的自動儲存功能。接受的值: \"{0}\"、\"{1}\"、\"{2}\" (編輯器失去焦點)、\"{3}\" (視窗失去焦點)。如果設為 \"{4}\",您可以在 \"files.autoSaveDelay\" 中設定延遲。", "autoSaveDelay": "控制經過這段延遲時間後會自動儲存已變更檔案的毫秒數。僅適用於 \"files.autoSave\" 設定為 \"{0}\" 時。", "binaryFileEditor": "二進位檔案編輯器", "dynamicHeight": "控制 [開啟編輯器] 區段的高度是否應依元素數目動態調整。", diff --git a/i18n/cht/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json b/i18n/cht/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json index 3408ae7683f..d3d3c48e785 100644 --- a/i18n/cht/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json @@ -5,9 +5,13 @@ // Do not edit this file. It is machine generated. { "confirmOverwriteMessage": "目的資料夾中已存在 '{0}'。要取代它嗎?", + "dirtyMessageFile": "您要移動的檔案有未儲存的變更。要繼續嗎?", + "dirtyMessageFolder": "您要移動的資料夾中 {0} 個檔案有未儲存的變更。要繼續嗎?", + "dirtyMessageFolderOne": "您要移動的資料夾中 1 個檔案有未儲存的變更。要繼續嗎?", "dirtyWarning": "如果您不儲存變更,這些變更將會遺失。", "fileInputAriaLabel": "輸入檔案名稱。請按 Enter 鍵確認或按 Esc 鍵取消。", "filesExplorerViewerAriaLabel": "{0},檔案總管", "irreversible": "此動作無法回復!", + "moveLabel": "移動(&&M)", "replaceButtonLabel": "取代(&&R)" } \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/cht/src/vs/workbench/parts/git/browser/gitActions.i18n.json index 5168f28c238..2ad01d4f64c 100644 --- a/i18n/cht/src/vs/workbench/parts/git/browser/gitActions.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -9,9 +9,11 @@ "commit": "Commit", "commitAll": "全部認可", "commitAll2": "全部認可", + "commitAllSignedOff": "全部認可 (已登出)", "commitMessage": "認可訊息", "commitStaged": "認可已分段", "commitStaged2": "認可已分段", + "commitStagedSignedOff": "認可暫存 (已登出)", "confirmPublishMessage": "確定要將 '{0}' 發行至 '{1}' 嗎?", "confirmPublishMessageButton": "發行(&&P)", "confirmUndo": "確定要清除 '{0}' 中的變更嗎?", diff --git a/i18n/cht/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json b/i18n/cht/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json index 47bdf8b1b44..5012355efde 100644 --- a/i18n/cht/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "confirmSync": "請先確認再同步處理 GIT 存放庫。", + "countBadge": "控制 GIT 徽章計數器。", "git": "Git", "gitAutoFetch": "是否啟用自動擷取。", "gitAutoRefresh": "是否啟用自動重新整理", diff --git a/i18n/cht/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json b/i18n/cht/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/cht/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json b/i18n/cht/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json index dd19d2fd7ea..ce6365b8ad9 100644 --- a/i18n/cht/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json @@ -5,10 +5,12 @@ // Do not edit this file. It is machine generated. { "terminal": "終端機", + "terminal.integrated.commandsToSkipShell": "一組命令識別碼,其按鍵繫結關係將不會傳送到殼層,而會一律由 Code 處理。這讓通常由殼層取用的按鍵繫結關係,在使用上與未聚焦於終端機時行為相同,例如 Ctrl+P 可啟動快速開啟。", "terminal.integrated.cursorBlinking": "控制終端機資料指標是否閃爍。", "terminal.integrated.fontFamily": "控制終端機的字型家族,預設為 editor.fontFamily 的值。", "terminal.integrated.fontLigatures": "控制是否在終端機中啟用連字字型。", "terminal.integrated.fontSize": "控制終端機的字型大小,預設為 editor.fontSize 的值。", + "terminal.integrated.fontWeight": "控制終端機的字型寬度,其預設為 editor.fontWeight 的值。", "terminal.integrated.lineHeight": "控制終端機的行高,此數字會乘上終端機字型大小,以取得以像素為單位的實際行高。", "terminal.integrated.setLocaleVariables": "控制是否在終端機啟動時設定地區設定變數,這在 OS X 上預設為 true,在其他平台則為 false。", "terminal.integrated.shell.linux": "終端機在 Linux 上使用的殼層路徑。", diff --git a/i18n/cht/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json b/i18n/cht/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json index 8efa2bcc9f0..2e81017e2bb 100644 --- a/i18n/cht/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json @@ -14,6 +14,8 @@ "workbench.action.terminal.new.short": "新增終端機", "workbench.action.terminal.paste": "終端機: 貼入使用中的終端機", "workbench.action.terminal.runSelectedText": "終端機: 在使用中的終端機執行選取的文字", + "workbench.action.terminal.scrollDown": "終端機: 向下捲動", + "workbench.action.terminal.scrollUp": "終端機: 向上捲動", "workbench.action.terminal.switchTerminalInstance": "終端機: 切換終端機執行個體", "workbench.action.terminal.toggleTerminal": "切換整合式終端機" } \ No newline at end of file diff --git a/i18n/cht/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json b/i18n/cht/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json index 8b6ad71cd4e..85c698b5fd8 100644 --- a/i18n/cht/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json +++ b/i18n/cht/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "terminal.integrated.copySelection.noSelection": "無法在終端機沒有焦點時複製終端機選取範圍" +} \ No newline at end of file diff --git a/i18n/deu/extensions/css/client/out/cssMain.i18n.json b/i18n/deu/extensions/css/client/out/cssMain.i18n.json index 8b6ad71cd4e..139e2e24da4 100644 --- a/i18n/deu/extensions/css/client/out/cssMain.i18n.json +++ b/i18n/deu/extensions/css/client/out/cssMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "cssserver.name": "CSS-Sprachserver" +} \ No newline at end of file diff --git a/i18n/deu/extensions/json/client/out/jsonMain.i18n.json b/i18n/deu/extensions/json/client/out/jsonMain.i18n.json index 8b6ad71cd4e..d85115bf771 100644 --- a/i18n/deu/extensions/json/client/out/jsonMain.i18n.json +++ b/i18n/deu/extensions/json/client/out/jsonMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "jsonserver.name": "JSON-Sprachserver" +} \ No newline at end of file diff --git a/i18n/deu/extensions/json/server/out/jsoncontributions/globPatternContribution.i18n.json b/i18n/deu/extensions/json/server/out/jsoncontributions/globPatternContribution.i18n.json index 9621077dc1e..9e199b80ab1 100644 --- a/i18n/deu/extensions/json/server/out/jsoncontributions/globPatternContribution.i18n.json +++ b/i18n/deu/extensions/json/server/out/jsoncontributions/globPatternContribution.i18n.json @@ -7,7 +7,7 @@ "derivedDescription": "Ordnet Dateien zu, die gleichgeordnete Elemente mit dem gleichen Namen und einer anderen Erweiterung besitzen.", "derivedLabel": "Dateien mit gleichgeordneten Elementen nach Name", "falseDescription": "Deaktiviert das Muster.", - "falseLabel": "false", + "falseLabel": "FALSE", "fileDescription": "Ordnet alle Dateien mit einer bestimmten Erweiterung zu.", "fileLabel": "Dateien nach Erweiterung", "filesDescription": "Ordnet alle Dateien mit einer der Dateierweiterungen zu.", @@ -20,5 +20,5 @@ "topFoldersDescription": "Ordnet mehrere Ordner auf oberster Ebene zu.", "topFoldersLabel": "Ordner mit mehreren Namen (oberste Ebene)", "trueDescription": "Aktiviert das Muster.", - "trueLabel": "true" + "trueLabel": "TRUE" } \ No newline at end of file diff --git a/i18n/deu/src/vs/code/electron-main/menus.i18n.json b/i18n/deu/src/vs/code/electron-main/menus.i18n.json index cd6aa21b2d1..3239583aa6f 100644 --- a/i18n/deu/src/vs/code/electron-main/menus.i18n.json +++ b/i18n/deu/src/vs/code/electron-main/menus.i18n.json @@ -36,7 +36,7 @@ "miFind": "&&Suchen", "miFindInFiles": "&&In Dateien suchen", "miFocusFirstGroup": "&&Linke Gruppe", - "miFocusSecondGroup": "&&Seitliche Gruppe", + "miFocusSecondGroup": "&&Mittlere Gruppe", "miFocusThirdGroup": "&&Rechte Gruppe", "miForward": "&&Weiterleiten", "miGotoDefinition": "Gehe &&zu Definition", 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 894f3cbd40b..e508049ffd0 100644 --- a/i18n/deu/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/deu/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -6,6 +6,7 @@ { "acceptSuggestionOnEnter": "Steuert, ob Vorschläge über die EINGABETASTE (zusätzlich zur TAB-TASTE) angenommen werden sollen. Vermeidet Mehrdeutigkeit zwischen dem Einfügen neuer Zeilen oder dem Annehmen von Vorschlägen.", "autoClosingBrackets": "Steuert, ob der Editor Klammern automatisch nach dem Öffnen schließt.", + "codeLens": "Steuert, ob der Editor CodeLenses anzeigt.", "cursorBlinking": "Steuert den Cursoranimationsstil. Gültige Werte sind \"blink\", \"smooth\", \"phase\", \"expand\" und \"solid\".", "cursorStyle": "Steuert den Cursorstil. Gültige Werte sind \"block\", \"line\" und \"underline\".", "detectIndentation": "Beim Öffnen einer Datei werden \"editor.tabSize\" und \"editor.insertSpaces\" basierend auf den Dateiinhalten erkannt.", @@ -14,11 +15,12 @@ "fontFamily": "Steuert die Schriftfamilie.", "fontLigatures": "Aktiviert Schriftartligaturen.", "fontSize": "Steuert den Schriftgrad.", + "fontWeight": "Steuert die Schriftbreite.", "formatOnType": "Steuert, ob der Editor Zeilen automatisch nach der Eingabe formatiert.", "glyphMargin": "Steuert die Sichtbarkeit des Glyphenrands.", "hideCursorInOverviewRuler": "Steuert die Sichtbarkeit des Cursors im Übersichtslineal.", "ignoreTrimWhitespace": "Steuert, ob der Diff-Editor Änderungen in führenden oder nachgestellten Leerzeichen als Diffs anzeigt.", - "insertSpaces": "Fügt beim Drücken der TAB-TASTE Leerzeichen ein.", + "insertSpaces": "Fügt beim Drücken der TAB-TASTE Leerzeichen ein. Diese Einstellung wird basierend auf dem Inhalt der Datei überschrieben, wenn \"editor.detectIndentation\" aktiviert ist.", "insertSpaces.errorMessage": "\"boolean\" wurde erwartet. Beachten Sie, dass der Wert \"auto\" durch die Einstellung \"editor.detectIndentation\" ersetzt wurde.", "lineHeight": "Steuert die Zeilenhöhe. Verwenden Sie 0, um LineHeight aus der FontSize-Angabe zu berechnen.", "lineNumbers": "Steuert die Sichtbarkeit der Zeilennummern.", @@ -41,7 +43,7 @@ "stablePeek": "Vorschau-Editoren geöffnet lassen, auch wenn auf ihren Inhalt doppelgeklickt oder die ESC-TASTE gedrückt wird.", "suggestOnTriggerCharacters": "Steuert, ob Vorschläge automatisch bei der Eingabe von Triggerzeichen angezeigt werden.", "tabCompletion": "Fügt Codeausschnitte ein, wenn ihr Präfix übereinstimmt. Funktioniert am besten, wenn \"quickSuggestions\" nicht aktiviert sind.", - "tabSize": "Die Anzahl der Leerzeichen, denen ein Tabstopp entspricht.", + "tabSize": "Die Anzahl der Leerzeichen, denen ein Tabstopp entspricht. Diese Einstellung wird basierend auf dem Inhalt der Datei überschrieben, wenn \"editor.detectIndentation\" aktiviert ist.", "tabSize.errorMessage": "\"number\" wurde erwartet. Beachten Sie, dass der Wert \"auto\" durch die Einstellung \"editor.detectIndentation\" ersetzt wurde.", "trimAutoWhitespace": "Nachfolgendes automatisch eingefügtes Leerzeichen entfernen", "useTabStops": "Das Einfügen und Löschen von Leerzeichen folgt auf Tabstopps.", diff --git a/i18n/deu/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json b/i18n/deu/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json index 8b6ad71cd4e..1fb6b028507 100644 --- a/i18n/deu/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json +++ b/i18n/deu/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "snippet.suggestions.label": "Codeausschnitt einfügen" +} \ No newline at end of file diff --git a/i18n/deu/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json b/i18n/deu/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/deu/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/deu/src/vs/platform/request/common/request.i18n.json b/i18n/deu/src/vs/platform/request/common/request.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/deu/src/vs/platform/request/common/request.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/api/node/extHostDiagnostics.i18n.json b/i18n/deu/src/vs/workbench/api/node/extHostDiagnostics.i18n.json index 8b6ad71cd4e..9f0ca0e141f 100644 --- a/i18n/deu/src/vs/workbench/api/node/extHostDiagnostics.i18n.json +++ b/i18n/deu/src/vs/workbench/api/node/extHostDiagnostics.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "limitHit": "{0} weitere Fehler und Warnungen werden nicht angezeigt." +} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/browser/parts/editor/editorActions.i18n.json b/i18n/deu/src/vs/workbench/browser/parts/editor/editorActions.i18n.json index ece3a954cb4..07b48410d49 100644 --- a/i18n/deu/src/vs/workbench/browser/parts/editor/editorActions.i18n.json +++ b/i18n/deu/src/vs/workbench/browser/parts/editor/editorActions.i18n.json @@ -12,6 +12,7 @@ "closeEditorsToTheLeft": "Editoren links schließen", "closeEditorsToTheRight": "Editoren rechts schließen", "closeOtherEditorsInGroup": "Andere Editoren schließen", + "closeQuickOpen": "Quick Open schließen", "evenEditorGroups": "Gleichmäßige Breite der Editor-Gruppe", "focusFirstEditorGroup": "Fokus in linker Editor-Gruppe", "focusLastEditorInStack": "Letzten Editor in der Gruppe öffnen", @@ -24,6 +25,8 @@ "minimizeOtherEditorGroups": "Andere Editor-Gruppen minimieren", "moveActiveGroupLeft": "Editor-Gruppe nach links verschieben", "moveActiveGroupRight": "Editor-Gruppe nach rechts verschieben", + "moveEditorLeft": "Editor nach links verschieben", + "moveEditorRight": "Editor nach rechts verschieben", "moveEditorToLeftGroup": "Editor in Gruppe nach links verschieben", "moveEditorToRightGroup": "Editor in Gruppe nach rechts verschieben", "navigateEditorGroups": "Zwischen Editor-Gruppen navigieren", diff --git a/i18n/deu/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json b/i18n/deu/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json index 8946b715e0b..7c0337da68b 100644 --- a/i18n/deu/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json +++ b/i18n/deu/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json @@ -4,5 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "commandDeprecated": "Der Befehl **{0}** wurde entfernt. Sie können stattdessen **{1}** verwenden.", + "editorCommand.activeEditorMove.arg.description": "\n\t\t\t\t\t\tArgumenteigenschaften:\n\t\t\t\t\t\t\"to\": Ein Zeichenfolgenwert, der angibt, wohin verschoben wird.\n\t\t\t\t\t\t\"by\": Ein Zeichenfolgenwert, der die Einheit für die Verschiebung angibt. Nach Tabstopp oder nach Gruppe.\n\t\t\t\t\t\t\"value\": Ein Zahlenwert, der angibt, um wie viele Positionen verschoben wird. Er kann auch die absolute Position für die Verschiebung angeben.\n\t\t\t\t\t", + "editorCommand.activeEditorMove.arg.name": "Argument zum Verschieben des aktiven Editors", + "editorCommand.activeEditorMove.description": "Aktiven Editor nach Tabstopps oder Gruppen verschieben", "openKeybindings": "Tastenkombinationen konfigurieren" } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/electron-browser/main.contribution.i18n.json b/i18n/deu/src/vs/workbench/electron-browser/main.contribution.i18n.json index 34791f6fb25..dca1699a94f 100644 --- a/i18n/deu/src/vs/workbench/electron-browser/main.contribution.i18n.json +++ b/i18n/deu/src/vs/workbench/electron-browser/main.contribution.i18n.json @@ -4,11 +4,13 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "closeOnFocusLost": "Steuert, ob Quick Open automatisch geschlossen werden soll, sobald das Feature den Fokus verliert.", "developer": "Entwickler", "editorOpenPositioning": "Steuert, wo Editoren geöffnet werden. Wählen Sie \"Links\" oder \"Rechts\" aus, um Editoren links oder rechts vom aktuellen aktiven Editor zu öffnen. Wählen Sie \"Erster\" oder \"Letzter\" aus, um Editoren unabhängig vom aktuell aktiven Editor zu öffnen.", "enablePreview": "Steuert, ob geöffnete Editoren als Vorschau angezeigt werden. Vorschau-Editoren werden wiederverwendet, bis sie gespeichert werden (z. B. über Doppelklicken oder Bearbeiten).", "enablePreviewFromQuickOpen": "Steuert, ob geöffnete Editoren aus Quick Open als Vorschau angezeigt werden. Vorschau-Editoren werden wiederverwendet, bis sie gespeichert werden (z. B. über Doppelklicken oder Bearbeiten).", "file": "Datei", + "openDefaultSettings": "Steuert, ob beim Öffnen der Einstellungen auch ein Editor geöffnet wird, der alle Standardeinstellungen anzeigt.", "openFilesInNewWindow": "Wenn diese Option aktiviert ist, werden Dateien in einem neuen Fenster geöffnet anstatt eine vorhandene Instanz wiederzuverwenden.", "reopenFolders": "Steuert, wie Ordner nach einem Neustart erneut geöffnet werden. Wählen Sie \"none\" aus, um Ordner nie erneut zu öffnen, \"one\", um den zuletzt bearbeiteten Ordner erneut zu öffnen, oder \"all\", um alle Ordner der letzten Sitzung erneut zu öffnen.", "restoreFullscreen": "Steuert, ob ein Fenster im Vollbildmodus wiederhergestellt wird, wenn es im Vollbildmodus beendet wurde.", diff --git a/i18n/deu/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json b/i18n/deu/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ 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 0439898a1f5..61754d788f8 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 @@ -20,6 +20,12 @@ "deleteButtonLabel": "&&Löschen", "deleteButtonLabelRecycleBin": "&&In Papierkorb verschieben", "deleteButtonLabelTrash": "&&In Papierkorb verschieben", + "dirtyMessageFile": "Sie benennen eine Datei mit nicht gespeicherten Änderungen um. Möchten Sie den Vorgang fortsetzen?", + "dirtyMessageFileDelete": "Sie löschen eine Datei mit nicht gespeicherten Änderungen. Möchten Sie den Vorgang fortsetzen?", + "dirtyMessageFolder": "Sie benennen einen Ordner mit nicht gespeicherten Änderungen in {0} Dateien um. Möchten Sie den Vorgang fortsetzen?", + "dirtyMessageFolderDelete": "Sie löschen einen Ordner mit nicht gespeicherten Änderungen in {0} Dateien. Möchten Sie den Vorgang fortsetzen?", + "dirtyMessageFolderOne": "Sie benennen einen Ordner mit nicht gespeicherten Änderungen in einer Datei um. Möchten Sie den Vorgang fortsetzen?", + "dirtyMessageFolderOneDelete": "Sie löschen einen Ordner mit nicht gespeicherten Änderungen in einer Datei. Möchten Sie den Vorgang fortsetzen?", "dirtyWarning": "Ihre Änderungen gehen verloren, wenn Sie diese nicht speichern.", "duplicateFile": "Duplikat", "emptyFileNameError": "Es muss ein Datei- oder Ordnername angegeben werden.", @@ -43,6 +49,7 @@ "refresh": "Aktualisieren", "refreshExplorer": "Explorer aktualisieren", "rename": "Umbenennen", + "renameLabel": "&&Umbenennen", "replaceButtonLabel": "&&Ersetzen", "retry": "Wiederholen", "revert": "Datei wiederherstellen", diff --git a/i18n/deu/src/vs/workbench/parts/files/browser/files.contribution.i18n.json b/i18n/deu/src/vs/workbench/parts/files/browser/files.contribution.i18n.json index 57e86227fae..3986646afec 100644 --- a/i18n/deu/src/vs/workbench/parts/files/browser/files.contribution.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/files/browser/files.contribution.i18n.json @@ -6,7 +6,7 @@ { "associations": "Konfigurieren Sie Dateizuordnungen zu Sprachen (beispielsweise \"*.extension\": \"html\"). Diese besitzen Vorrang vor den Standardzuordnungen der installierten Sprachen.", "autoReveal": "Steuert, ob der Explorer Dateien beim Öffnen automatisch anzeigen soll.", - "autoSave": "Steuert die automatische Speicherung geänderter Dateien. Zulässige Werte: \"{0}\", \"{1}\", \"{2}\". Wenn diese Angabe auf \"{3}\" festgelegt ist, können Sie die Verzögerung in \"files.autoSaveDelay\" konfigurieren.", + "autoSave": "Steuert die automatische Speicherung geänderter Dateien. Zulässige Werte: \"{0}\", \"{1}\", \"{2}\" (Editor verliert den Fokus), \"{3}\" (Fenster verliert den Fokus). Wenn diese Angabe auf \"{4}\" festgelegt ist, können Sie die Verzögerung in \"files.autoSaveDelay\" konfigurieren.", "autoSaveDelay": "Steuert die Verzögerung in Millisekunden, nach der eine geänderte Datei automatisch gespeichert wird. Nur gültig, wenn \"files.autoSave\" auf \"{0}\" festgelegt ist.", "binaryFileEditor": "Binärdatei-Editor", "dynamicHeight": "Steuert, ob sich die Höhe des Abschnitts \"Geöffnete Editoren\" dynamisch an die Anzahl der Elemente anpassen soll.", diff --git a/i18n/deu/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json b/i18n/deu/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json index 72827fca21d..831fec47512 100644 --- a/i18n/deu/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json @@ -5,9 +5,13 @@ // Do not edit this file. It is machine generated. { "confirmOverwriteMessage": "{0} ist im Zielordner bereits vorhanden. Möchten Sie das Element ersetzen?", + "dirtyMessageFile": "Sie verschieben eine Datei mit nicht gespeicherten Änderungen. Möchten Sie den Vorgang fortsetzen?", + "dirtyMessageFolder": "Sie verschieben einen Ordner mit nicht gespeicherten Änderungen in {0} Dateien. Möchten Sie den Vorgang fortsetzen?", + "dirtyMessageFolderOne": "Sie verschieben einen Ordner mit nicht gespeicherten Änderungen in einer Datei. Möchten Sie den Vorgang fortsetzen?", "dirtyWarning": "Ihre Änderungen gehen verloren, wenn Sie diese nicht speichern.", "fileInputAriaLabel": "Geben Sie den Dateinamen ein. Drücken Sie zur Bestätigung die EINGABETASTE oder ESC, um den Vorgang abzubrechen.", "filesExplorerViewerAriaLabel": "{0}, Datei-Explorer", "irreversible": "Diese Aktion kann nicht rückgängig gemacht werden.", + "moveLabel": "&&Verschieben", "replaceButtonLabel": "&&Ersetzen" } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/deu/src/vs/workbench/parts/git/browser/gitActions.i18n.json index 9fef2f7379f..ade28505043 100644 --- a/i18n/deu/src/vs/workbench/parts/git/browser/gitActions.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -9,9 +9,11 @@ "commit": "Commit", "commitAll": "Commit für alle ausführen", "commitAll2": "Commit für alle ausführen", + "commitAllSignedOff": "Alle committen (abgemeldet)", "commitMessage": "Commit der Nachricht", "commitStaged": "Commit bereitgestellt", "commitStaged2": "Commit bereitgestellt", + "commitStagedSignedOff": "Gestaffelt committen (abgemeldet)", "confirmPublishMessage": "Möchten Sie \"{0}\" unter \"{1}\" veröffentlichen?", "confirmPublishMessageButton": "&&Veröffentlichen", "confirmUndo": "Sollen die Änderungen in \"{0}\" bereinigt werden?", 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 3b54a79b727..e4e11287ec5 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 @@ -25,6 +25,6 @@ "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} (KOPF) ↔ {1}", + "workingTreeChanges": "{0} (HEAD) ↔ {1}", "workingTreeChangesDesc": "{0} – Änderungen am Arbeitsbaum" } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json b/i18n/deu/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json index 5a2bfb46f27..4f79d21f9e5 100644 --- a/i18n/deu/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "confirmSync": "Vor dem Synchronisieren von Git-Repositorys bestätigen.", + "countBadge": "Steuert die Git-Badgeanzahl.", "git": "Git", "gitAutoFetch": "Gibt an, ob automatischer Abruf aktiviert ist.", "gitAutoRefresh": "Gibt an, ob die automatische Aktualisierung aktiviert ist.", diff --git a/i18n/deu/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json b/i18n/deu/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/deu/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json b/i18n/deu/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json index b593938fcf4..c83f99838ff 100644 --- a/i18n/deu/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json @@ -5,10 +5,12 @@ // Do not edit this file. It is machine generated. { "terminal": "Terminal", + "terminal.integrated.commandsToSkipShell": "Eine Sammlung von Befehls-IDs, deren Tastenbindungen nicht an die Shell gesendet und die stattdessen immer durch Code verarbeitet werden. Dies ermöglicht die Verwendung von Tastenbindungen, die normalerweise von der Shell verwendet würden, um das gleiche Verhalten wie bei einem Terminal ohne Fokus zu erzielen, z. B. STRG+P zum Starten von Quick Open.", "terminal.integrated.cursorBlinking": "Steuert, ob der Terminalcursor blinkt.", "terminal.integrated.fontFamily": "Steuert die Schriftartfamilie des Terminals. Der Standardwert ist \"editor.fontFamily\".", "terminal.integrated.fontLigatures": "Steuert, ob Schriftartligaturen im Terminal aktiviert sind.", "terminal.integrated.fontSize": "Steuert den Schriftgrad des Terminals. Der Standardwert ist \"editor.fontSize\".", + "terminal.integrated.fontWeight": "Steuert die Schriftbreite des Terminals. Der Standardwert ist der Wert von \"editor.fontWeight\".", "terminal.integrated.lineHeight": "Steuert die Zeilenhöhe für das Terminal. Dieser Wert wird mit dem Schriftgrad des Terminals multipliziert, um die tatsächliche Zeilenhöhe in Pixeln zu erhalten.", "terminal.integrated.setLocaleVariables": "Steuert, ob Gebietsschemavariablen beim Start des Terminals festgelegt werden. Der Standardwert ist unter OS X TRUE und FALSE auf anderen Plattformen.", "terminal.integrated.shell.linux": "Der Pfad der Shell, den das Terminal unter Linux verwendet.", diff --git a/i18n/deu/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json b/i18n/deu/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json index 61673fb7ae9..bec47e76072 100644 --- a/i18n/deu/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json @@ -14,6 +14,8 @@ "workbench.action.terminal.new.short": "Neues Terminal", "workbench.action.terminal.paste": "Terminal: in aktives Terminal einfügen", "workbench.action.terminal.runSelectedText": "Terminal: Ausgewählten Text im aktiven Terminal ausführen", + "workbench.action.terminal.scrollDown": "Terminal: Nach unten scrollen", + "workbench.action.terminal.scrollUp": "Terminal: Nach oben scrollen", "workbench.action.terminal.switchTerminalInstance": "Terminal: Terminalinstanz umschalten", "workbench.action.terminal.toggleTerminal": "Integriertes Terminal umschalten" } \ No newline at end of file diff --git a/i18n/deu/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json b/i18n/deu/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json index 8b6ad71cd4e..1a377db1906 100644 --- a/i18n/deu/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json +++ b/i18n/deu/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "terminal.integrated.copySelection.noSelection": "Die Terminalauswahl kann nicht kopiert werden, wenn das Terminal nicht den Fokus besitzt." +} \ No newline at end of file diff --git a/i18n/esn/extensions/css/client/out/cssMain.i18n.json b/i18n/esn/extensions/css/client/out/cssMain.i18n.json index 8b6ad71cd4e..876a9439272 100644 --- a/i18n/esn/extensions/css/client/out/cssMain.i18n.json +++ b/i18n/esn/extensions/css/client/out/cssMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "cssserver.name": "Servidor de lenguaje CSS" +} \ No newline at end of file diff --git a/i18n/esn/extensions/json/client/out/jsonMain.i18n.json b/i18n/esn/extensions/json/client/out/jsonMain.i18n.json index 8b6ad71cd4e..21b4c956570 100644 --- a/i18n/esn/extensions/json/client/out/jsonMain.i18n.json +++ b/i18n/esn/extensions/json/client/out/jsonMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "jsonserver.name": "Servidor de lenguaje JSON" +} \ No newline at end of file diff --git a/i18n/esn/extensions/json/server/out/jsoncontributions/globPatternContribution.i18n.json b/i18n/esn/extensions/json/server/out/jsoncontributions/globPatternContribution.i18n.json index e39ff9db1a3..6bf02d48013 100644 --- a/i18n/esn/extensions/json/server/out/jsoncontributions/globPatternContribution.i18n.json +++ b/i18n/esn/extensions/json/server/out/jsoncontributions/globPatternContribution.i18n.json @@ -7,7 +7,7 @@ "derivedDescription": "Hacer coincidir archivos que tienen elementos del mismo nivel con el mismo nombre pero con extensión diferente.", "derivedLabel": "Archivos con elementos del mismo nivel por nombre", "falseDescription": "Deshabilitar el patrón.", - "falseLabel": "False", + "falseLabel": "false", "fileDescription": "Hacer coincidir todos los archivos que tengan una extensión de archivo determinada.", "fileLabel": "Archivos por extensión", "filesDescription": "Hacer coincidir todos los archivos con cualquiera de las extensiones de archivo.", @@ -20,5 +20,5 @@ "topFoldersDescription": "Hacer coincidir varias carpetas de nivel superior.", "topFoldersLabel": "Carpetas con varios nombres (nivel superior)", "trueDescription": "Habilitar el patrón.", - "trueLabel": "True" + "trueLabel": "true" } \ No newline at end of file diff --git a/i18n/esn/src/vs/code/electron-main/menus.i18n.json b/i18n/esn/src/vs/code/electron-main/menus.i18n.json index c9b84d79d71..7abd214d37e 100644 --- a/i18n/esn/src/vs/code/electron-main/menus.i18n.json +++ b/i18n/esn/src/vs/code/electron-main/menus.i18n.json @@ -36,7 +36,7 @@ "miFind": "&&Buscar", "miFindInFiles": "Buscar &&en archivos", "miFocusFirstGroup": "&&Grupo izquierdo", - "miFocusSecondGroup": "&&Grupo lateral", + "miFocusSecondGroup": "&&Grupo central", "miFocusThirdGroup": "&&Grupo derecho", "miForward": "&&Reenviar", "miGotoDefinition": "Ir a &&definición", 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 58f7822a498..f6f53e528dc 100644 --- a/i18n/esn/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/esn/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -6,6 +6,7 @@ { "acceptSuggestionOnEnter": "Controla si las sugerencias deben aceptarse (\"Entrar\" además de \"TAB\"). Ayuda a evitar la ambigüedad entre insertar nuevas líneas o aceptar sugerencias.", "autoClosingBrackets": "Controla si el editor debe cerrar automáticamente los corchetes después de abrirlos", + "codeLens": "Controla si el editor muestra lentes de código", "cursorBlinking": "Controlar el estilo de animación del cursor. Los valores posibles son \"blink\", \"smooth\", \"phase\", \"expand\" y \"solid\".", "cursorStyle": "Controla el estilo del cursor. Los valores aceptados son \"block\", \"line\" y \"underline\".", "detectIndentation": "Al abrir un archivo, se detectarán `editor.tabSize` y `editor.insertSpaces` en función del contenido del archivo.", @@ -14,11 +15,12 @@ "fontFamily": "Controla la familia de fuentes.", "fontLigatures": "Habilita las ligaduras tipográficas.", "fontSize": "Controla el tamaño de la fuente.", + "fontWeight": "Controla el grosor de la fuente.", "formatOnType": "Controla si el editor debe dar formato automáticamente a la línea después de escribirla", "glyphMargin": "Controla la visibilidad del margen del glifo", "hideCursorInOverviewRuler": "Controla si el cursor debe ocultarse en la regla de visión general.", "ignoreTrimWhitespace": "Controla si el editor de diferencias muestra los cambios de espacio inicial o espacio final como diferencias.", - "insertSpaces": "Insertar espacios al presionar TAB.", + "insertSpaces": "Insertar espacios al presionar TAB. Este valor se invalida en función del contenido del archivo cuando `editor.detectIndentation` está activado.", "insertSpaces.errorMessage": "Se esperaba \"boolean\". Tenga en cuenta que el ajuste \"editor.detectIndentation\" ha reemplazado al valor \"auto\".", "lineHeight": "Controla la altura de línea. Utilice 0 para calcular el valor de lineHeight a partir de fontSize.", "lineNumbers": "Controla la visibilidad de los números de línea", @@ -41,7 +43,7 @@ "stablePeek": "Mantiene abiertos los editores de inspección incluso al hacer doble clic en su contenido o presionar Escape.", "suggestOnTriggerCharacters": "Controla si las sugerencias deben aparecer de forma automática al escribir caracteres desencadenadores", "tabCompletion": "Inserta fragmentos de código cuando el prefijo coincide. Funciona mejor si la opción 'quickSuggestions' no está habilitada.", - "tabSize": "El número de espacios a los que equivale una tabulación.", + "tabSize": "El número de espacios a los que equivale una tabulación. Este valor se invalida según el contenido del archivo cuando `editor.detectIndentation` está activado.", "tabSize.errorMessage": "Se esperaba \"number\". Tenga en cuenta que el ajuste \"editor.detectIndentation\" ha reemplazado al valor \"auto\".", "trimAutoWhitespace": "Quitar espacio en blanco final autoinsertado", "useTabStops": "La inserción y eliminación del espacio en blanco sigue a las tabulaciones.", diff --git a/i18n/esn/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json b/i18n/esn/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json index 8b6ad71cd4e..ef56f7f84bd 100644 --- a/i18n/esn/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json +++ b/i18n/esn/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "snippet.suggestions.label": "Insertar fragmento de código" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json b/i18n/esn/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/esn/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/esn/src/vs/platform/request/common/request.i18n.json b/i18n/esn/src/vs/platform/request/common/request.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/esn/src/vs/platform/request/common/request.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/api/node/extHostDiagnostics.i18n.json b/i18n/esn/src/vs/workbench/api/node/extHostDiagnostics.i18n.json index 8b6ad71cd4e..c3e93666648 100644 --- a/i18n/esn/src/vs/workbench/api/node/extHostDiagnostics.i18n.json +++ b/i18n/esn/src/vs/workbench/api/node/extHostDiagnostics.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "limitHit": "No se mostrarán {0} más errores y advertencias." +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/browser/parts/editor/editorActions.i18n.json b/i18n/esn/src/vs/workbench/browser/parts/editor/editorActions.i18n.json index 84667a7070f..78c88f1163c 100644 --- a/i18n/esn/src/vs/workbench/browser/parts/editor/editorActions.i18n.json +++ b/i18n/esn/src/vs/workbench/browser/parts/editor/editorActions.i18n.json @@ -12,6 +12,7 @@ "closeEditorsToTheLeft": "Cerrar los editores a la izquierda", "closeEditorsToTheRight": "Cerrar los editores a la derecha", "closeOtherEditorsInGroup": "Cerrar otros editores", + "closeQuickOpen": "Cerrar apertura rápida", "evenEditorGroups": "Uniformar anchos del grupo de editores", "focusFirstEditorGroup": "Enfocar grupo de editores a la izquierda", "focusLastEditorInStack": "Abrir el último editor del grupo", @@ -24,6 +25,8 @@ "minimizeOtherEditorGroups": "Minimizar otros grupos de editores", "moveActiveGroupLeft": "Mover el grupo de editores a la izquierda", "moveActiveGroupRight": "Mover el grupo de editores a la derecha", + "moveEditorLeft": "Mover el editor a la izquierda", + "moveEditorRight": "Mover el editor a la derecha", "moveEditorToLeftGroup": "Mover el editor al grupo de la izquierda", "moveEditorToRightGroup": "Mover el editor al grupo de la derecha", "navigateEditorGroups": "Navegar entre los grupos de editores", diff --git a/i18n/esn/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json b/i18n/esn/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json index 8b6ad71cd4e..d3c5f042bb3 100644 --- a/i18n/esn/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json +++ b/i18n/esn/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json @@ -3,4 +3,10 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "commandDeprecated": "El comando **{0}** se ha quitado. Puede usar en su lugar **{1}**", + "editorCommand.activeEditorMove.arg.description": "\n\t\t\t\t\t\tPropiedades del argumento:\n\t\t\t\t\t\t'to': valor de cadena que indica el lugar al que mover.\n\t\t\t\t\t\t'by': valor de cadena que proporciona la unidad para mover. Por tabulación o por grupo.\n\t\t\t\t\t\t'value': valor numérico que indica el número de posiciones o una posición absoluta para mover.\n\t\t\t\t\t", + "editorCommand.activeEditorMove.arg.name": "Argumento para mover el editor activo", + "editorCommand.activeEditorMove.description": "Mover el editor activo por tabulaciones o grupos", + "openKeybindings": "Configurar métodos abreviados de teclado" +} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/electron-browser/main.contribution.i18n.json b/i18n/esn/src/vs/workbench/electron-browser/main.contribution.i18n.json index ab60e8df5e3..1c1917730c2 100644 --- a/i18n/esn/src/vs/workbench/electron-browser/main.contribution.i18n.json +++ b/i18n/esn/src/vs/workbench/electron-browser/main.contribution.i18n.json @@ -4,11 +4,13 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "closeOnFocusLost": "Controla si la apertura rápida se debe cerrar automáticamente cuando se pierde el foco.", "developer": "Desarrollador", "editorOpenPositioning": "Controla dónde se abren los editores. Seleccione 'izquierda' o 'derecha' para abrir los editores situados a la izquierda o la derecha del que está actualmente activo. Seleccione 'primero' o 'último' para abrir los editores con independencia del que esté actualmente activo.", "enablePreview": "Controla si los editores abiertos se muestran en vista previa. Los editores en vista previa se reutilizan hasta que se guardan (por ejemplo, mediante doble clic o editándolos).", "enablePreviewFromQuickOpen": "Controla si los editores abiertos mediante apertura rápida se muestran en vista previa. Los editores en vista previa se reutilizan hasta que se guardan (por ejemplo, mediante doble clic o editándolos).", "file": "Archivo", + "openDefaultSettings": "Controla si la configuración de apertura también abre un editor que muestra todos los valores predeterminados.", "openFilesInNewWindow": "Si está habilitado, los archivos se abrirán en una nueva ventana en lugar de volver a usar una instancia existente.", "reopenFolders": "Controla cómo se vuelven a abrir las carpetas tras un reinicio. Seleccione \"none\" para no volver a abrir jamás una carpeta, \"one\" para volver a abrir la última carpeta en la que trabajó o seleccione \"all\" para volver a abrir todas las carpetas de la última sesión.", "restoreFullscreen": "Controla si una ventana se debe restaurar al modo de pantalla completa si se salió de ella en dicho modo.", diff --git a/i18n/esn/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json b/i18n/esn/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ 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 f14ead6b8ac..7342efe547a 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 @@ -20,6 +20,12 @@ "deleteButtonLabel": "&&Eliminar", "deleteButtonLabelRecycleBin": "&&Mover a la papelera de reciclaje", "deleteButtonLabelTrash": "&&Mover a la papelera", + "dirtyMessageFile": "Va a cambiar el nombre de un archivo con cambios sin guardar. ¿Desea continuar?", + "dirtyMessageFileDelete": "Va a eliminar un archivo con cambios sin guardar. ¿Desea continuar?", + "dirtyMessageFolder": "Va a cambiar el nombre de una carpeta con cambios sin guardar en {0} archivos. ¿Desea continuar?", + "dirtyMessageFolderDelete": "Va a eliminar una carpeta con cambios sin guardar en {0} archivos. ¿Desea continuar?", + "dirtyMessageFolderOne": "Va a cambiar el nombre de una carpeta con cambios sin guardar en 1 archivo. ¿Desea continuar?", + "dirtyMessageFolderOneDelete": "Va a eliminar una carpeta con cambios sin guardar en 1 archivo. ¿Desea continuar?", "dirtyWarning": "Los cambios se perderán si no se guardan.", "duplicateFile": "Duplicado", "emptyFileNameError": "Debe especificarse un nombre de archivo o carpeta.", @@ -43,6 +49,7 @@ "refresh": "Actualizar", "refreshExplorer": "Actualizar Explorador", "rename": "Cambiar nombre", + "renameLabel": "&&Cambiar nombre", "replaceButtonLabel": "&&Reemplazar", "retry": "Reintentar", "revert": "Revertir archivo", diff --git a/i18n/esn/src/vs/workbench/parts/files/browser/files.contribution.i18n.json b/i18n/esn/src/vs/workbench/parts/files/browser/files.contribution.i18n.json index c4f02deeea3..c4f44967841 100644 --- a/i18n/esn/src/vs/workbench/parts/files/browser/files.contribution.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/files/browser/files.contribution.i18n.json @@ -6,7 +6,7 @@ { "associations": "Configure asociaciones de archivo para los lenguajes (por ejemplo, \"*.extension\": \"html\"). Estas asociaciones tienen prioridad sobre las asociaciones predeterminadas de los lenguajes instalados.", "autoReveal": "Controla si el explorador debe mostrar automáticamente los archivos al abrirlos.", - "autoSave": "Controla el guardado automático de los archivos con modificaciones. Valores aceptados: \"{0}\", \"{1}\", \"{2}\". Si se establece en \"{3}\", puede configurar el retraso en \"files.autoSaveDelay\".", + "autoSave": "Controla el guardado automático de los archivos modificados. Valores aceptados: \"{0}\", \"{1}\", \"{2}\" (el editor pierde el foco), \"{3}\" (la ventana pierde el foco) . Si se establece en \"{4}\", puede configurar el retraso en \"files.autoSaveDelay\".", "autoSaveDelay": "Controla el retraso en MS tras el cual un archivo con modificaciones se guarda automáticamente. Solo se aplica si \"files.autoSave\" está establecido en \"{0}\".", "binaryFileEditor": "Editor de archivos binarios", "dynamicHeight": "Controla si la altura de la sección de editores abiertos debería adaptarse o no de forma dinámica al número de elementos.", diff --git a/i18n/esn/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json b/i18n/esn/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json index 5522f667bfc..13ec497fa0b 100644 --- a/i18n/esn/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json @@ -5,9 +5,13 @@ // Do not edit this file. It is machine generated. { "confirmOverwriteMessage": "'{0}' ya existe en la carpeta de destino. ¿Desea reemplazarlo?", + "dirtyMessageFile": "Va a mover un archivo con cambios sin guardar. ¿Desea continuar?", + "dirtyMessageFolder": "Va a mover una carpeta con cambios sin guardar en {0} archivos. ¿Desea continuar?", + "dirtyMessageFolderOne": "Va a mover una carpeta con cambios sin guardar en 1 archivo. ¿Desea continuar?", "dirtyWarning": "Los cambios se perderán si no se guardan.", "fileInputAriaLabel": "Escriba el nombre de archivo. Presione ENTRAR para confirmar o Esc para cancelar", "filesExplorerViewerAriaLabel": "{0}, Explorador de archivos", "irreversible": "Esta acción es irreversible.", + "moveLabel": "&&Mover", "replaceButtonLabel": "&&Reemplazar" } \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/esn/src/vs/workbench/parts/git/browser/gitActions.i18n.json index 02338810872..3fb6215ed28 100644 --- a/i18n/esn/src/vs/workbench/parts/git/browser/gitActions.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -9,9 +9,11 @@ "commit": "Commit", "commitAll": "Confirmar todo", "commitAll2": "Confirmar todo", + "commitAllSignedOff": "Confirmar todo (Aprobado)", "commitMessage": "Mensaje de confirmación", "commitStaged": "Confirmar elementos almacenados provisionalmente", "commitStaged2": "Confirmar elementos almacenados provisionalmente", + "commitStagedSignedOff": "Confirmar por etapas (Aprobado)", "confirmPublishMessage": "¿Seguro que quiere publicar '{0}' en '{1}'?", "confirmPublishMessageButton": "&&Publicar", "confirmUndo": "¿Seguro que quiere limpiar los cambios de '{0}'?", 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 b0825cca978..b594aed1306 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 @@ -25,6 +25,6 @@ "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} (ENCABEZADO) ↔ {1}", + "workingTreeChanges": "{0} (HEAD) ↔ {1}", "workingTreeChangesDesc": "{0} - Cambios del árbol de trabajo" } \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json b/i18n/esn/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json index 4f15205bf47..4771415be7e 100644 --- a/i18n/esn/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "confirmSync": "Confirmar antes de sincronizar repositorios GIT.", + "countBadge": "Controla el contador de señales git.", "git": "GIT", "gitAutoFetch": "Si la búsqueda automática está habilitada.", "gitAutoRefresh": "Indica si la actualización automática está habilitada", diff --git a/i18n/esn/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json b/i18n/esn/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/esn/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json b/i18n/esn/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json index de64047d39e..59fa9cd0f96 100644 --- a/i18n/esn/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json @@ -5,10 +5,12 @@ // Do not edit this file. It is machine generated. { "terminal": "Terminal", + "terminal.integrated.commandsToSkipShell": "Un conjunto de identificadores de comando cuyos enlaces de teclado no se enviarán al shell, si no que siempre se controlarán mediante código. Esto permite el uso de enlaces de teclado que normalmente consumiría el shell para funcionar igual que cuando el terminal no está enfocado, por ejemplo, Ctrl+p para iniciar la apertura rápida.", "terminal.integrated.cursorBlinking": "Controla si el cursor del terminal parpadea.", "terminal.integrated.fontFamily": "Controla la familia de fuentes del terminal, que está establecida de manera predeterminada en el valor de editor.fontFamily.", "terminal.integrated.fontLigatures": "Controla si las ligaduras tipográficas están habilitadas en el terminal.", "terminal.integrated.fontSize": "Controla el tamaño de fuente del terminal, que está establecida de manera predeterminada en el valor de editor.fontSize.", + "terminal.integrated.fontWeight": "Controla el grosor de la fuente del terminal, que adopta como predeterminado el valor de editor.fontWeight.", "terminal.integrated.lineHeight": "Controla el alto de línea del terminal. Este número se multiplica por el tamaño de fuente del terminal para obtener el alto de línea real en píxeles.", "terminal.integrated.setLocaleVariables": "Controla si las variables de configuración regional se definen al inicio del terminal. El valor predeterminado es true en OS X y false en las demás plataformas.", "terminal.integrated.shell.linux": "La ruta de acceso del shell que el terminal usa en Linux.", diff --git a/i18n/esn/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json b/i18n/esn/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json index d56560a0818..5760c5209dd 100644 --- a/i18n/esn/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json @@ -14,6 +14,8 @@ "workbench.action.terminal.new.short": "Nuevo terminal", "workbench.action.terminal.paste": "Terminal: pegar en el terminal activo", "workbench.action.terminal.runSelectedText": "Terminal: Ejecutar texto seleccionado en el terminal activo", + "workbench.action.terminal.scrollDown": "Terminal: Desplazar hacia abajo", + "workbench.action.terminal.scrollUp": "Terminal: Desplazar hacia arriba", "workbench.action.terminal.switchTerminalInstance": "Terminal: Cambiar instancia del terminal", "workbench.action.terminal.toggleTerminal": "Alternar terminal integrado" } \ No newline at end of file diff --git a/i18n/esn/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json b/i18n/esn/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json index 8b6ad71cd4e..a781bd61c28 100644 --- a/i18n/esn/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json +++ b/i18n/esn/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "terminal.integrated.copySelection.noSelection": "No se puede copiar la selección del terminal cuando el terminal no tiene el foco" +} \ No newline at end of file diff --git a/i18n/fra/extensions/css/client/out/cssMain.i18n.json b/i18n/fra/extensions/css/client/out/cssMain.i18n.json index 8b6ad71cd4e..b21ec04c253 100644 --- a/i18n/fra/extensions/css/client/out/cssMain.i18n.json +++ b/i18n/fra/extensions/css/client/out/cssMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "cssserver.name": "Serveur de langage CSS" +} \ No newline at end of file diff --git a/i18n/fra/extensions/json/client/out/jsonMain.i18n.json b/i18n/fra/extensions/json/client/out/jsonMain.i18n.json index 8b6ad71cd4e..eb125f682c2 100644 --- a/i18n/fra/extensions/json/client/out/jsonMain.i18n.json +++ b/i18n/fra/extensions/json/client/out/jsonMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "jsonserver.name": "Serveur de langage JSON" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/code/electron-main/menus.i18n.json b/i18n/fra/src/vs/code/electron-main/menus.i18n.json index 397261c074f..652af2869cc 100644 --- a/i18n/fra/src/vs/code/electron-main/menus.i18n.json +++ b/i18n/fra/src/vs/code/electron-main/menus.i18n.json @@ -36,7 +36,7 @@ "miFind": "&&Rechercher", "miFindInFiles": "Rechercher dans les f&&ichiers", "miFocusFirstGroup": "Groupe g&&auche", - "miFocusSecondGroup": "&&Groupe latéral", + "miFocusSecondGroup": "&&Centrer le groupe", "miFocusThirdGroup": "&&Groupe droit", "miForward": "&&Suivant", "miGotoDefinition": "Atteindre la &&définition", 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 5981d82c3a3..3e1e38c2bb3 100644 --- a/i18n/fra/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/fra/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -6,6 +6,7 @@ { "acceptSuggestionOnEnter": "Contrôle si les suggestions peuvent être acceptées avec Entrée (en plus de Tab). Cela permet d'éviter toute ambiguïté entre l'insertion de nouvelles lignes et l'acceptation de suggestions.", "autoClosingBrackets": "Contrôle si l'éditeur doit automatiquement fermer les crochets après les avoir ouverts", + "codeLens": "Contrôle si l'éditeur affiche les indicateurs CodeLens", "cursorBlinking": "Contrôle le style d'animation du curseur. Valeurs possibles : 'blink', 'smooth', 'phase', 'expand' et 'solid'", "cursorStyle": "Contrôle le style du curseur. Valeurs acceptées : 'block', 'line' et 'underline'", "detectIndentation": "Quand vous ouvrez un fichier, 'editor.tabSize' et 'editor.insertSpaces' sont détectés en fonction du contenu du fichier.", @@ -14,11 +15,12 @@ "fontFamily": "Contrôle la famille de polices.", "fontLigatures": "Active les ligatures de police", "fontSize": "Contrôle la taille de police.", + "fontWeight": "Contrôle l'épaisseur de police.", "formatOnType": "Contrôle si l'éditeur doit automatiquement mettre en forme la ligne après la saisie", "glyphMargin": "Contrôle la visibilité de la marge des glyphes", "hideCursorInOverviewRuler": "Contrôle si le curseur doit être masqué dans la règle d'aperçu.", "ignoreTrimWhitespace": "Contrôle si l'éditeur de différences affiche les changements liés aux espaces blancs de début ou de fin comme des différences", - "insertSpaces": "Insérer des espaces en appuyant sur Tab.", + "insertSpaces": "Des espaces sont insérés quand vous appuyez sur la touche Tab. Ce paramètre est remplacé en fonction du contenu du fichier quand 'editor.detectIndentation' est activé.", "insertSpaces.errorMessage": "'boolean' attendu. Notez que la valeur \"auto\" a été remplacée par le paramètre 'editor.detectIndentation'.", "lineHeight": "Contrôle la hauteur de ligne. Utilisez 0 pour calculer lineHeight à partir de fontSize.", "lineNumbers": "Contrôle la visibilité des numéros de ligne", @@ -41,7 +43,7 @@ "stablePeek": "Garder les éditeurs d'aperçu ouverts même si l'utilisateur double-clique sur son contenu ou appuie sur la touche Échap.", "suggestOnTriggerCharacters": "Contrôle si les suggestions doivent s'afficher automatiquement durant la saisie de caractères de déclenchement", "tabCompletion": "Insérez les extraits de code quand leurs préfixes correspondent. Fonctionne mieux quand la fonctionnalité 'quickSuggestions' n'est pas activée.", - "tabSize": "Nombre d'espaces correspondant à une tabulation.", + "tabSize": "Nombre d'espaces correspondant à une tabulation. Ce paramètre est remplacé en fonction du contenu du fichier quand 'editor.detectIndentation' est activé.", "tabSize.errorMessage": "'number' attendu. Notez que la valeur \"auto\" a été remplacée par le paramètre 'editor.detectIndentation'.", "trimAutoWhitespace": "Supprimer l'espace blanc de fin inséré automatiquement", "useTabStops": "L'insertion et la suppression d'un espace blanc suit les taquets de tabulation", diff --git a/i18n/fra/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json b/i18n/fra/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json index 8b6ad71cd4e..27c0397de03 100644 --- a/i18n/fra/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json +++ b/i18n/fra/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "snippet.suggestions.label": "Insérer un extrait de code" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json b/i18n/fra/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/fra/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/fra/src/vs/platform/request/common/request.i18n.json b/i18n/fra/src/vs/platform/request/common/request.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/fra/src/vs/platform/request/common/request.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/api/node/extHostDiagnostics.i18n.json b/i18n/fra/src/vs/workbench/api/node/extHostDiagnostics.i18n.json index 8b6ad71cd4e..26fff787785 100644 --- a/i18n/fra/src/vs/workbench/api/node/extHostDiagnostics.i18n.json +++ b/i18n/fra/src/vs/workbench/api/node/extHostDiagnostics.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "limitHit": "Les {0} erreurs et avertissements supplémentaires ne sont pas affichés." +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/browser/parts/editor/editorActions.i18n.json b/i18n/fra/src/vs/workbench/browser/parts/editor/editorActions.i18n.json index c766e4d37b0..023aa10ad88 100644 --- a/i18n/fra/src/vs/workbench/browser/parts/editor/editorActions.i18n.json +++ b/i18n/fra/src/vs/workbench/browser/parts/editor/editorActions.i18n.json @@ -12,6 +12,7 @@ "closeEditorsToTheLeft": "Fermer les éditeurs situés à gauche", "closeEditorsToTheRight": "Fermer les éditeurs situés à droite", "closeOtherEditorsInGroup": "Fermer les autres éditeurs", + "closeQuickOpen": "Fermer l'ouverture rapide", "evenEditorGroups": "Même largeur pour le groupe d'éditeurs", "focusFirstEditorGroup": "Focus sur le groupe d'éditeurs de gauche", "focusLastEditorInStack": "Ouvrir le dernier éditeur du groupe", @@ -24,6 +25,8 @@ "minimizeOtherEditorGroups": "Réduire les autres groupes d'éditeurs", "moveActiveGroupLeft": "Déplacer le groupe d'éditeurs vers la gauche", "moveActiveGroupRight": "Déplacer le groupe d'éditeurs vers la droite", + "moveEditorLeft": "Déplacer l'éditeur vers la gauche", + "moveEditorRight": "Déplacer l'éditeur vers la droite", "moveEditorToLeftGroup": "Déplacer l'éditeur dans le groupe vers la gauche", "moveEditorToRightGroup": "Déplacer l'éditeur dans le groupe vers la droite", "navigateEditorGroups": "Naviguer entre les groupes d'éditeurs", diff --git a/i18n/fra/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json b/i18n/fra/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json index 8b6ad71cd4e..4c8ca084c1b 100644 --- a/i18n/fra/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json +++ b/i18n/fra/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json @@ -3,4 +3,10 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "commandDeprecated": "La commande **{0}** a été supprimée. Vous pouvez utiliser **{1}** à la place", + "editorCommand.activeEditorMove.arg.description": "\n\t\t\t\t\t\tPropriétés de l'argument :\n\t\t\t\t\t\t'to' : valeur de chaîne indiquant la direction du déplacement.\n\t\t\t\t\t\t'by' : valeur de chaîne indiquant l'unité de déplacement. Par onglet ou par groupe.\n\t\t\t\t\t\t'value' : valeur numérique indiquant le nombre de positions ou la position absolue du déplacement.\n\t\t\t\t\t", + "editorCommand.activeEditorMove.arg.name": "Argument de déplacement de l'éditeur actif", + "editorCommand.activeEditorMove.description": "Déplacer l'éditeur actif par onglets ou par groupes", + "openKeybindings": "Configurer les raccourcis clavier" +} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/electron-browser/main.contribution.i18n.json b/i18n/fra/src/vs/workbench/electron-browser/main.contribution.i18n.json index b49b49244aa..196ab96aaa4 100644 --- a/i18n/fra/src/vs/workbench/electron-browser/main.contribution.i18n.json +++ b/i18n/fra/src/vs/workbench/electron-browser/main.contribution.i18n.json @@ -4,11 +4,13 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "closeOnFocusLost": "Contrôle si l'ouverture rapide doit se fermer automatiquement, une fois qu'elle a perdu le focus.", "developer": "Développeur", "editorOpenPositioning": "Contrôle l'emplacement de l'ouverture des éditeurs. Sélectionnez 'left' ou 'right' pour ouvrir les éditeurs à gauche ou à droite de l'éditeur actuellement actif. Sélectionnez 'first' ou 'last' pour ouvrir les éditeurs indépendamment de l'éditeur actuellement actif.", "enablePreview": "Contrôle si les éditeurs ouverts s'affichent en mode aperçu. Les éditeurs en mode aperçu sont réutilisés jusqu'à ce qu'ils soient conservés (par exemple, après un double-clic ou une modification).", "enablePreviewFromQuickOpen": "Contrôle si les éditeurs ouverts rapidement s'affichent en mode aperçu. Les éditeurs en mode aperçu sont réutilisés jusqu'à ce qu'ils soient conservés (par exemple, après un double-clic ou une modification).", "file": "Fichier", + "openDefaultSettings": "Contrôle si l'ouverture des paramètres entraîne également l'ouverture d'un éditeur qui affiche tous les paramètres par défaut.", "openFilesInNewWindow": "Après activation, les fichiers s'ouvrent dans une nouvelle fenêtre au lieu de réutiliser une instance existante.", "reopenFolders": "Contrôle la façon dont les dossiers sont rouverts après un redémarrage. Sélectionnez 'none' pour ne jamais rouvrir un dossier, 'one' pour rouvrir le dernier dossier utilisé, ou 'all' pour rouvrir tous les dossiers de votre dernière session.", "restoreFullscreen": "Contrôle si une fenêtre doit être restaurée en mode plein écran si elle a été fermée dans ce mode.", diff --git a/i18n/fra/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json b/i18n/fra/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ 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 8aec50cebcf..a1d300b4b75 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 @@ -20,6 +20,12 @@ "deleteButtonLabel": "S&&upprimer", "deleteButtonLabelRecycleBin": "&&Déplacer vers la Corbeille", "deleteButtonLabelTrash": "&&Déplacer vers la Poubelle", + "dirtyMessageFile": "Vous renommez un fichier dont les changements n'ont pas été enregistrés. Voulez-vous continuer ?", + "dirtyMessageFileDelete": "Vous supprimez un fichier dont les changements n'ont pas été enregistrés. Voulez-vous continuer ?", + "dirtyMessageFolder": "Vous renommez un dossier contenant {0} fichiers dont les changements n'ont pas été enregistrés. Voulez-vous continuer ?", + "dirtyMessageFolderDelete": "Vous supprimez un dossier contenant {0} fichiers dont les changements n'ont pas été enregistrés. Voulez-vous continuer ?", + "dirtyMessageFolderOne": "Vous renommez un dossier contenant 1 fichier dont les changements n'ont pas été enregistrés. Voulez-vous continuer ?", + "dirtyMessageFolderOneDelete": "Vous supprimez un dossier contenant 1 fichier dont les changements n'ont pas été enregistrés. Voulez-vous continuer ?", "dirtyWarning": "Vous perdrez vos modifications, si vous ne les enregistrez pas.", "duplicateFile": "Doublon", "emptyFileNameError": "Un nom de fichier ou de dossier doit être fourni.", @@ -43,6 +49,7 @@ "refresh": "Actualiser", "refreshExplorer": "Actualiser l'explorateur", "rename": "Renommer", + "renameLabel": "&&Renommer", "replaceButtonLabel": "&&Remplacer", "retry": "Réessayer", "revert": "Rétablir le fichier", diff --git a/i18n/fra/src/vs/workbench/parts/files/browser/files.contribution.i18n.json b/i18n/fra/src/vs/workbench/parts/files/browser/files.contribution.i18n.json index 0b56bc5d26a..ba0028583dc 100644 --- a/i18n/fra/src/vs/workbench/parts/files/browser/files.contribution.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/files/browser/files.contribution.i18n.json @@ -6,7 +6,7 @@ { "associations": "Configurez les associations entre les fichiers et les langages (par exemple, \"*.extension\": \"html\"). Celles-ci ont priorité sur les associations par défaut des langages installés.", "autoReveal": "Contrôle si l'Explorateur doit automatiquement afficher les fichiers quand il les ouvre.", - "autoSave": "Contrôle l'enregistrement automatique des fichiers à l'intégrité comprise. Valeur acceptées : \"{0}\", \"{1}\", \"{2}\". Si la valeur est \"{3}\", vous pouvez configurer le délai dans \"files.autoSaveDelay\".", + "autoSave": "Contrôle l'enregistrement automatique des fichiers dont l'intégrité est compromise. Valeur acceptées : \"{0}\", \"{1}\", \"{2}\" (l'éditeur perd le focus), \"{3}\" (la fenêtre perd le focus). Si la valeur est \"{4}\", vous pouvez configurer le délai dans \"files.autoSaveDelay\".", "autoSaveDelay": "Contrôle le délai en ms au bout duquel un fichier à l'intégrité compromise est enregistré automatiquement. S'applique uniquement quand \"files.autoSave\" a la valeur \"{0}\"", "binaryFileEditor": "Éditeur de fichier binaire", "dynamicHeight": "Contrôle si la hauteur de la section des éditeurs ouverts doit s'adapter dynamiquement ou non au nombre d'éléments.", diff --git a/i18n/fra/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json b/i18n/fra/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json index 0ba3d4cf41c..43329031832 100644 --- a/i18n/fra/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json @@ -5,9 +5,13 @@ // Do not edit this file. It is machine generated. { "confirmOverwriteMessage": "{0}' existe déjà dans le dossier de destination. Voulez-vous le remplacer ?", + "dirtyMessageFile": "Vous déplacez un fichier dont les changements n'ont pas été enregistrés. Voulez-vous continuer ?", + "dirtyMessageFolder": "Vous déplacez un dossier contenant {0} fichiers dont les changements n'ont pas été enregistrés. Voulez-vous continuer ?", + "dirtyMessageFolderOne": "Vous déplacez un dossier contenant 1 fichier dont les changements n'ont pas été enregistrés. Voulez-vous continuer ?", "dirtyWarning": "Vous perdrez vos modifications, si vous ne les enregistrez pas.", "fileInputAriaLabel": "Tapez le nom du fichier. Appuyez sur Entrée pour confirmer ou sur Échap pour annuler.", "filesExplorerViewerAriaLabel": "{0}, Explorateur de fichiers", "irreversible": "Cette action est irréversible !", + "moveLabel": "&&Déplacer", "replaceButtonLabel": "&&Remplacer" } \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/fra/src/vs/workbench/parts/git/browser/gitActions.i18n.json index 15f16cde24f..12e6b4786af 100644 --- a/i18n/fra/src/vs/workbench/parts/git/browser/gitActions.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -9,9 +9,11 @@ "commit": "Commit", "commitAll": "Valider tout", "commitAll2": "Valider tout", + "commitAllSignedOff": "Valider tout (signé)", "commitMessage": "Valider le message", "commitStaged": "Valider le contenu en zone de transit", "commitStaged2": "Valider le contenu en zone de transit", + "commitStagedSignedOff": "Valider les changements en attente (signé)", "confirmPublishMessage": "Voulez-vous vraiment publier '{0}' sur '{1}' ?", "confirmPublishMessageButton": "&&Publier", "confirmUndo": "Voulez-vous vraiment supprimer les modifications apportées à '{0}' ?", 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 a8370f65759..d91ca8fb12c 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 @@ -25,6 +25,6 @@ "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} (TÊTE) ↔ {1}", + "workingTreeChanges": "{0} (HEAD) ↔ {1}", "workingTreeChangesDesc": "{0} - Modifications de l'arborescence de travail" } \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json b/i18n/fra/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json index 9cc59acf595..19cd6e452c6 100644 --- a/i18n/fra/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "confirmSync": "Confirmez avant de synchroniser des dépôts git.", + "countBadge": "Contrôle le compteur de badges git.", "git": "Git", "gitAutoFetch": "Indique si l'extraction automatique est activée.", "gitAutoRefresh": "Indique si l'actualisation automatique est activée", diff --git a/i18n/fra/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json b/i18n/fra/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/fra/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json b/i18n/fra/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json index d6dc78e211d..4740e506547 100644 --- a/i18n/fra/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json @@ -5,10 +5,12 @@ // Do not edit this file. It is machine generated. { "terminal": "Terminal", + "terminal.integrated.commandsToSkipShell": "Ensemble d'ID de commandes dont les combinaisons de touches sont gérées par Code au lieu d'être envoyées à l'interpréteur de commandes. Cela permet d'utiliser des combinaisons de touches qui sont normalement consommées par l'interpréteur de commandes et d'obtenir le même résultat quand le terminal n'a pas le focus, par exemple Ctrl+P pour lancer l'ouverture rapide.", "terminal.integrated.cursorBlinking": "Contrôle si le curseur du terminal clignote.", "terminal.integrated.fontFamily": "Contrôle la famille de polices du terminal. La valeur par défaut est la valeur associée à editor.fontFamily.", "terminal.integrated.fontLigatures": "Contrôle si les ligatures de police sont activées sur le terminal.", "terminal.integrated.fontSize": "Contrôle la taille de police du terminal. La valeur par défaut est la valeur associée à editor.fontSize.", + "terminal.integrated.fontWeight": "Contrôle l'épaisseur de police du terminal. La valeur par défaut est la valeur associée à editor.fontWeight.", "terminal.integrated.lineHeight": "Contrôle la hauteur de ligne du terminal. La multiplication de ce nombre par la taille de police du terminal permet d'obtenir la hauteur de ligne réelle en pixels.", "terminal.integrated.setLocaleVariables": "Contrôle si les variables locales sont définies au démarrage du terminal. La valeur par défaut est true sur OS X, false sur les autres plateformes.", "terminal.integrated.shell.linux": "Chemin de l'interpréteur de commandes utilisé par le terminal sur Linux.", diff --git a/i18n/fra/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json b/i18n/fra/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json index 34882ecce52..1a6f604bfc8 100644 --- a/i18n/fra/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json @@ -14,6 +14,8 @@ "workbench.action.terminal.new.short": "Nouveau terminal", "workbench.action.terminal.paste": "Terminal : coller dans le terminal actif", "workbench.action.terminal.runSelectedText": "Terminal : exécuter le texte sélectionné dans le terminal actif", + "workbench.action.terminal.scrollDown": "Terminal : faire défiler vers le bas", + "workbench.action.terminal.scrollUp": "Terminal : faire défiler vers le haut", "workbench.action.terminal.switchTerminalInstance": "Terminal : changer d'instance de terminal", "workbench.action.terminal.toggleTerminal": "Activer/désactiver le terminal intégré" } \ No newline at end of file diff --git a/i18n/fra/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json b/i18n/fra/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json index 8b6ad71cd4e..6129704450a 100644 --- a/i18n/fra/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json +++ b/i18n/fra/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "terminal.integrated.copySelection.noSelection": "Impossible de copier la sélection du terminal quand il n'a pas le focus" +} \ No newline at end of file diff --git a/i18n/ita/extensions/css/client/out/cssMain.i18n.json b/i18n/ita/extensions/css/client/out/cssMain.i18n.json index 8b6ad71cd4e..0fb3f4a3ac8 100644 --- a/i18n/ita/extensions/css/client/out/cssMain.i18n.json +++ b/i18n/ita/extensions/css/client/out/cssMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "cssserver.name": "Server di linguaggio CSS" +} \ No newline at end of file diff --git a/i18n/ita/extensions/json/client/out/jsonMain.i18n.json b/i18n/ita/extensions/json/client/out/jsonMain.i18n.json index 8b6ad71cd4e..202f6e6cb7b 100644 --- a/i18n/ita/extensions/json/client/out/jsonMain.i18n.json +++ b/i18n/ita/extensions/json/client/out/jsonMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "jsonserver.name": "Server di linguaggio JSON" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/code/electron-main/menus.i18n.json b/i18n/ita/src/vs/code/electron-main/menus.i18n.json index 8183caad68a..c285f811783 100644 --- a/i18n/ita/src/vs/code/electron-main/menus.i18n.json +++ b/i18n/ita/src/vs/code/electron-main/menus.i18n.json @@ -36,7 +36,7 @@ "miFind": "&&Trova", "miFindInFiles": "Cerca &&nei file", "miFocusFirstGroup": "Gruppo a &&sinistra", - "miFocusSecondGroup": "Gruppo &&laterale", + "miFocusSecondGroup": "Gruppo &¢rale", "miFocusThirdGroup": "Gruppo a &&destra", "miForward": "&&Avanti", "miGotoDefinition": "Vai alla &&definizione", 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 d976ed0a2ed..67cce9b5900 100644 --- a/i18n/ita/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/ita/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -6,6 +6,7 @@ { "acceptSuggestionOnEnter": "Controlla se i suggerimenti devono essere accettati con 'INVIO' in aggiunta a 'TAB'. Consente di evitare ambiguità tra l'inserimento di nuove righe e l'accettazione di suggerimenti.", "autoClosingBrackets": "Controlla se l'editor deve chiudere automaticamente le parentesi quadre dopo che sono state aperte", + "codeLens": "Controlla se nell'editor sono visualizzate le finestre di CodeLens", "cursorBlinking": "Controlla lo stile di animazione del cursore. I valori possibili sono: 'blink', 'smooth', 'phase', 'expand' e 'solid'", "cursorStyle": "Controlla lo stile del cursore. I valori accettati sono 'block', 'line' e 'underline'", "detectIndentation": "All'apertura di un file, `editor.tabSize` e `editor.insertSpaces` verranno rilevati in base al contenuto del file.", @@ -14,11 +15,12 @@ "fontFamily": "Controlla la famiglia di caratteri.", "fontLigatures": "Abilita i caratteri legatura", "fontSize": "Controlla le dimensioni del carattere.", + "fontWeight": "Controlla lo spessore del carattere.", "formatOnType": "Controlla se l'editor deve formattare automaticamente la riga dopo la digitazione", "glyphMargin": "Controlla la visibilità del margine del glifo", "hideCursorInOverviewRuler": "Controlla se il cursore deve essere nascosto nel righello delle annotazioni.", "ignoreTrimWhitespace": "Controlla se l'editor diff mostra come differenze le modifiche relative a spazi vuoti iniziali e finali", - "insertSpaces": "Inserisce spazi quando si preme TAB.", + "insertSpaces": "Inserisce spazi quando viene premuto TAB. Quando `editor.detectIndentation` è attivo, questa impostazione viene sostituita in base al contenuto del file.", "insertSpaces.errorMessage": "È previsto 'boolean'. Nota: il valore \"auto\" è stato sostituito dall'impostazione `editor.detectIndentation`.", "lineHeight": "Controlla l'altezza della riga. Usare 0 per calcolare l'altezza della riga dalle dimensioni del carattere.", "lineNumbers": "Controlla la visibilità dei numeri di riga", @@ -41,7 +43,7 @@ "stablePeek": "Mantiene aperte le anteprime editor anche quando si fa doppio clic sul contenuto o si preme ESC.", "suggestOnTriggerCharacters": "Controlla se i suggerimenti devono essere visualizzati automaticamente durante la digitazione dei caratteri trigger", "tabCompletion": "Inserisce frammenti di codice quando il prefisso corrisponde. Funziona in modo ottimale quando non sono abilitati i suggerimenti rapidi.", - "tabSize": "Numero di spazi a cui equivale una tabulazione.", + "tabSize": "Numero di spazi a cui equivale una tabulazione. Quando `editor.detectIndentation` è attivo, questa impostazione viene sostituita in base al contenuto del file.", "tabSize.errorMessage": "È previsto 'number'. Nota: il valore \"auto\" è stato sostituito dall'impostazione `editor.detectIndentation`.", "trimAutoWhitespace": "Rimuovi lo spazio vuoto finale inserito automaticamente", "useTabStops": "Inserimento ed eliminazione dello spazio vuoto dopo le tabulazioni", diff --git a/i18n/ita/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json b/i18n/ita/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json index 8b6ad71cd4e..f501a03d135 100644 --- a/i18n/ita/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json +++ b/i18n/ita/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "snippet.suggestions.label": "Inserisci frammento" +} \ No newline at end of file diff --git a/i18n/ita/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json b/i18n/ita/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/ita/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/ita/src/vs/platform/request/common/request.i18n.json b/i18n/ita/src/vs/platform/request/common/request.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/ita/src/vs/platform/request/common/request.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/api/node/extHostDiagnostics.i18n.json b/i18n/ita/src/vs/workbench/api/node/extHostDiagnostics.i18n.json index 8b6ad71cd4e..88045e7b235 100644 --- a/i18n/ita/src/vs/workbench/api/node/extHostDiagnostics.i18n.json +++ b/i18n/ita/src/vs/workbench/api/node/extHostDiagnostics.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "limitHit": "Non verranno visualizzati altri errori e avvisi di {0}." +} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/browser/parts/editor/editorActions.i18n.json b/i18n/ita/src/vs/workbench/browser/parts/editor/editorActions.i18n.json index 4ef8b817845..cde1dca9577 100644 --- a/i18n/ita/src/vs/workbench/browser/parts/editor/editorActions.i18n.json +++ b/i18n/ita/src/vs/workbench/browser/parts/editor/editorActions.i18n.json @@ -12,6 +12,7 @@ "closeEditorsToTheLeft": "Chiudi editor a sinistra", "closeEditorsToTheRight": "Chiudi editor a destra", "closeOtherEditorsInGroup": "Chiudi gli altri editor", + "closeQuickOpen": "Chiudi Apertura rapida", "evenEditorGroups": "Imposta stessa larghezza per gruppo di editor", "focusFirstEditorGroup": "Sposta stato attivo su gruppo di editor a sinistra", "focusLastEditorInStack": "Apri ultimo editor del gruppo", @@ -24,6 +25,8 @@ "minimizeOtherEditorGroups": "Riduci a icona gli altri gruppi di editor", "moveActiveGroupLeft": "Sposta gruppo di editor a sinistra", "moveActiveGroupRight": "Sposta gruppo di editor a destra", + "moveEditorLeft": "Sposta editor a sinistra", + "moveEditorRight": "Sposta editor a destra", "moveEditorToLeftGroup": "Sposta l'editor nel gruppo a sinistra", "moveEditorToRightGroup": "Sposta l'editor nel gruppo a destra", "navigateEditorGroups": "Esplora gruppi di editor", diff --git a/i18n/ita/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json b/i18n/ita/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json index ab853ff90e3..02f267ec702 100644 --- a/i18n/ita/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json +++ b/i18n/ita/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json @@ -4,5 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "commandDeprecated": "Il comando **{0}** è stato rimosso. In alternativa, usare **{1}**", + "editorCommand.activeEditorMove.arg.description": "\n\t\t\t\t\t\tProprietà degli argomenti:\n\t\t\t\t\t\t'to': valore stringa che specifica dove eseguire lo spostamento.\n\t\t\t\t\t\t'by': valore stringa che specifica l'unità per lo spostamento, ovvero per tabulazione o per gruppo.\n\t\t\t\t\t\t'value': valore numerico che specifica il numero di posizioni o una posizione assoluta per lo spostamento.\n\t\t\t\t\t", + "editorCommand.activeEditorMove.arg.name": "Argomento per spostamento editor attivo", + "editorCommand.activeEditorMove.description": "Consente di spostare l'editor attivo per tabulazioni o gruppi", "openKeybindings": "Configura tasti di scelta rapida" } \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/electron-browser/main.contribution.i18n.json b/i18n/ita/src/vs/workbench/electron-browser/main.contribution.i18n.json index 0ccb603fbc1..44242412f81 100644 --- a/i18n/ita/src/vs/workbench/electron-browser/main.contribution.i18n.json +++ b/i18n/ita/src/vs/workbench/electron-browser/main.contribution.i18n.json @@ -4,11 +4,13 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "closeOnFocusLost": "Controlla se Apertura rapida deve essere chiuso automaticamente quando perde lo stato attivo.", "developer": "Sviluppatore", "editorOpenPositioning": "Controlla la posizione in cui vengono aperti gli editor. Selezionare 'left' o 'right' per aprire gli editor a sinistra o a destra di quello attualmente attivo. Selezionare 'first' o 'last' per aprire gli editor indipendentemente da quello attualmente attivo.", "enablePreview": "Controlla se gli editor aperti vengono visualizzati come anteprima. Le anteprime editor vengono riutilizzate finché vengono mantenute, ad esempio tramite doppio clic o modifica.", "enablePreviewFromQuickOpen": "Controlla se gli editor aperti da Apertura rapida vengono visualizzati come anteprima. Le anteprime editor vengono riutilizzate finché vengono mantenute, ad esempio tramite doppio clic o modifica.", "file": "File", + "openDefaultSettings": "Controlla se all'apertura delle impostazioni viene aperto anche un editor che mostra tutte le impostazioni predefinite.", "openFilesInNewWindow": "Se abilitata, apre i file in una nuova finestra invece di riutilizzare un'istanza esistente.", "reopenFolders": "Controlla la modalità di riapertura delle cartelle dopo un riavvio. Selezionare 'none' per non riaprire mai una cartella, 'one' per riaprire l'ultima cartella usata oppure 'all' per riaprire tutte le cartelle dell'ultima sessione.", "restoreFullscreen": "Controlla se una finestra deve essere ripristinata a schermo intero se è stata chiusa in questa modalità.", diff --git a/i18n/ita/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json b/i18n/ita/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ 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 22478226cfc..1a4ecc4ee1a 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 @@ -20,6 +20,12 @@ "deleteButtonLabel": "&&Elimina", "deleteButtonLabelRecycleBin": "&&Sposta nel Cestino", "deleteButtonLabelTrash": "&&Sposta nel cestino", + "dirtyMessageFile": "Si sta per rinominare un file con modifiche non salvate. Continuare?", + "dirtyMessageFileDelete": "Si sta per eliminare un file con modifiche non salvate. Continuare?", + "dirtyMessageFolder": "Si sta per rinominare una cartella con modifiche non salvate in {0} file. Continuare?", + "dirtyMessageFolderDelete": "Si sta per eliminare una cartella con modifiche non salvate in {0} file. Continuare?", + "dirtyMessageFolderOne": "Si sta per rinominare una cartella con modifiche non salvate in un file. Continuare?", + "dirtyMessageFolderOneDelete": "Si sta per eliminare una cartella con modifiche non salvate in un file. Continuare?", "dirtyWarning": "Le modifiche apportate andranno perse se non vengono salvate.", "duplicateFile": "Duplicato", "emptyFileNameError": "È necessario specificare un nome file o un nome di cartella.", @@ -43,6 +49,7 @@ "refresh": "Aggiorna", "refreshExplorer": "Aggiorna Explorer", "rename": "Rinomina", + "renameLabel": "&&Rinomina", "replaceButtonLabel": "&&Sostituisci", "retry": "Riprova", "revert": "Ripristina file", diff --git a/i18n/ita/src/vs/workbench/parts/files/browser/files.contribution.i18n.json b/i18n/ita/src/vs/workbench/parts/files/browser/files.contribution.i18n.json index d4c90b8cd48..e804383278b 100644 --- a/i18n/ita/src/vs/workbench/parts/files/browser/files.contribution.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/files/browser/files.contribution.i18n.json @@ -6,7 +6,7 @@ { "associations": "Consente di configurare le associazioni tra file e linguaggi, ad esempio \"*.extension\": \"html\". Queste hanno la precedenza sulle associazioni predefinite dei linguaggi installate.", "autoReveal": "Controlla se Esplora risorse deve rivelare automaticamente i file durante l'apertura.", - "autoSave": "Controlla il salvataggio automatico dei file modificati ma non salvati. Valori accettati: \"{0}\", \"{1}\", \"{2}\". Se è impostato su \"{3}\", è possibile configurare il ritardo in \"files.autoSaveDelay\".", + "autoSave": "Controlla il salvataggio automatico dei file modificati ma non salvati. Valori accettati: \"{0}\", \"{1}\", \"{2}\" (l'editor perde lo stato attivo), \"{3}\" (la finestra perde lo stato attivo). Se è impostato su \"{4}\", è possibile configurare il ritardo in \"files.autoSaveDelay\".", "autoSaveDelay": "Controlla il ritardo in ms dopo il quale un file modificato ma non salvato viene salvato automaticamente. Si applica solo quando \"files.autoSave\" è impostato su \"{0}\"", "binaryFileEditor": "Editor file binari", "dynamicHeight": "Controlla se l'altezza della sezione degli editor aperti deve essere adattata o meno dinamicamente al numero di elementi.", diff --git a/i18n/ita/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json b/i18n/ita/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json index 8241d5c467c..66a8e4d5401 100644 --- a/i18n/ita/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json @@ -5,9 +5,13 @@ // Do not edit this file. It is machine generated. { "confirmOverwriteMessage": "'{0}' esiste già nella cartella di destinazione. Sostituirlo?", + "dirtyMessageFile": "Si sta per spostare un file con modifiche non salvate. Continuare?", + "dirtyMessageFolder": "Si sta per spostare una cartella con modifiche non salvate in {0} file. Continuare?", + "dirtyMessageFolderOne": "Si sta per spostare una cartella con modifiche non salvate in un file. Continuare?", "dirtyWarning": "Le modifiche apportate andranno perse se non vengono salvate.", "fileInputAriaLabel": "Digitare il nome file. Premere INVIO per confermare oppure ESC per annullare.", "filesExplorerViewerAriaLabel": "{0}, Esplora file", "irreversible": "Questa azione è irreversibile.", + "moveLabel": "&&Sposta", "replaceButtonLabel": "&&Sostituisci" } \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/ita/src/vs/workbench/parts/git/browser/gitActions.i18n.json index 56fa89ec44a..1f79c81068c 100644 --- a/i18n/ita/src/vs/workbench/parts/git/browser/gitActions.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -9,9 +9,11 @@ "commit": "Commit", "commitAll": "Esegui commit di tutto", "commitAll2": "Esegui commit di tutto", + "commitAllSignedOff": "Esegui commit di tutto (approvazione)", "commitMessage": "Messaggio di commit", "commitStaged": "Esegui commit delle righe preparate", "commitStaged2": "Esegui commit delle righe preparate", + "commitStagedSignedOff": "Esegui commit delle righe preparate (approvazione)", "confirmPublishMessage": "Pubblicare '{0}' in '{1}'?", "confirmPublishMessageButton": "&&Pubblica", "confirmUndo": "Pulire le modifiche in '{0}'?", 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 b74affa5bba..9f410f93f5c 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 @@ -25,6 +25,6 @@ "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} (INTESTAZIONE) ↔ {1}", + "workingTreeChanges": "{0} (HEAD) ↔ {1}", "workingTreeChangesDesc": "{0} - Modifiche nell'albero di lavoro" } \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json b/i18n/ita/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json index 10aa84e5596..9f0ec08ad36 100644 --- a/i18n/ita/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "confirmSync": "Confermare prima di sincronizzare i repository GIT.", + "countBadge": "Controlla il contatore dei log GIT.", "git": "GIT", "gitAutoFetch": "Indica se il recupero automatico è abilitato.", "gitAutoRefresh": "Indica se l'aggiornamento automatico è abilitato", diff --git a/i18n/ita/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json b/i18n/ita/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/ita/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json b/i18n/ita/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json index f529bdb2027..4bff8c6e11b 100644 --- a/i18n/ita/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json @@ -5,10 +5,12 @@ // Do not edit this file. It is machine generated. { "terminal": "Terminale", + "terminal.integrated.commandsToSkipShell": "Set di ID commando i cui tasti di scelta rapida non verranno inviati alla shell e verranno sempre gestiti da Code. In tal modo i tasti di scelta rapida normalmente utilizzati dalla shell avranno lo stesso effetto di quando il terminale non ha lo stato attivo, ad esempio CTRL+P per avviare Apertura rapida.", "terminal.integrated.cursorBlinking": "Controlla se il cursore del terminale è intermittente o meno.", "terminal.integrated.fontFamily": "Controlla la famiglia di caratteri del terminale. L'impostazione predefinita è il valore di editor.fontFamily.", "terminal.integrated.fontLigatures": "Controlla se i caratteri legatura sono abilitati nel terminale.", "terminal.integrated.fontSize": "Controlla le dimensioni del carattere del terminale. L'impostazione predefinita è il valore di editor.fontSize.", + "terminal.integrated.fontWeight": "Controlla lo spessore del carattere del terminale. L'impostazione predefinita è il valore di editor.fontWeight.", "terminal.integrated.lineHeight": "Controlla l'altezza della riga del terminale. Questo numero è moltiplicato dalle dimensioni del carattere del terminale per ottenere l'altezza di riga effettiva in pixel.", "terminal.integrated.setLocaleVariables": "Controlla se le variabili delle impostazioni locali sono impostate all'avvio del terminale. Il valore predefinito è true per OS X e false per altre piattaforme.", "terminal.integrated.shell.linux": "Percorso della shell usata dal terminale in Linux.", diff --git a/i18n/ita/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json b/i18n/ita/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json index a8ec26b784f..0a1fbc5a66f 100644 --- a/i18n/ita/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json @@ -14,6 +14,8 @@ "workbench.action.terminal.new.short": "Nuovo terminale", "workbench.action.terminal.paste": "Terminale: Incolla nel terminale attivo", "workbench.action.terminal.runSelectedText": "Terminale: Esegui testo selezionato nel terminale attivo", + "workbench.action.terminal.scrollDown": "Terminale: Scorri verso il basso", + "workbench.action.terminal.scrollUp": "Terminale: Scorri verso l'alto", "workbench.action.terminal.switchTerminalInstance": "Terminale: Cambia istanza del terminale", "workbench.action.terminal.toggleTerminal": "Attiva/Disattiva terminale integrato" } \ No newline at end of file diff --git a/i18n/ita/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json b/i18n/ita/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json index 8b6ad71cd4e..b38dac1dae5 100644 --- a/i18n/ita/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json +++ b/i18n/ita/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "terminal.integrated.copySelection.noSelection": "Non è possibile copiare la selezione del terminale quando questo non ha lo stato attivo" +} \ No newline at end of file diff --git a/i18n/jpn/extensions/css/client/out/cssMain.i18n.json b/i18n/jpn/extensions/css/client/out/cssMain.i18n.json index 8b6ad71cd4e..fefe07e15fa 100644 --- a/i18n/jpn/extensions/css/client/out/cssMain.i18n.json +++ b/i18n/jpn/extensions/css/client/out/cssMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "cssserver.name": "CSS 言語サーバー" +} \ No newline at end of file diff --git a/i18n/jpn/extensions/json/client/out/jsonMain.i18n.json b/i18n/jpn/extensions/json/client/out/jsonMain.i18n.json index 8b6ad71cd4e..00b098f3a86 100644 --- a/i18n/jpn/extensions/json/client/out/jsonMain.i18n.json +++ b/i18n/jpn/extensions/json/client/out/jsonMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "jsonserver.name": "JSON 言語サーバー" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/code/electron-main/menus.i18n.json b/i18n/jpn/src/vs/code/electron-main/menus.i18n.json index 45ecad81f73..08cfb2a87ec 100644 --- a/i18n/jpn/src/vs/code/electron-main/menus.i18n.json +++ b/i18n/jpn/src/vs/code/electron-main/menus.i18n.json @@ -36,7 +36,7 @@ "miFind": "検索(&&F)", "miFindInFiles": "ファイル内を検索(&&I)", "miFocusFirstGroup": "左のグループ(&&L)", - "miFocusSecondGroup": "横のグループ(&&S)", + "miFocusSecondGroup": "センター グループ(&&C)", "miFocusThirdGroup": "右のグループ(&&R)", "miForward": "転送(&&F)", "miGotoDefinition": "定義に移動(&&D)", 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 499a792fd1d..7646a6ab735 100644 --- a/i18n/jpn/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/jpn/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -6,6 +6,7 @@ { "acceptSuggestionOnEnter": "'Tab' キーに加えて 'Enter' キーで候補を受け入れるかどうかを制御します。改行の挿入や候補の反映の間であいまいさを解消するのに役立ちます。", "autoClosingBrackets": "エディターで左角かっこの後に自動的に右角かっこを挿入するかどうかを制御します", + "codeLens": "エディターでコード レンズを表示するかをどうかを制御する", "cursorBlinking": "カーソルのアニメーション スタイルを制御します。指定できる値は 'blink'、'smooth'、'phase'、'expand'、'solid' です", "cursorStyle": "カーソルのスタイルを制御します。指定できる値は 'block'、'line'、'underline' です", "detectIndentation": "ファイルを開くと、そのファイルの内容に基づいて `editor.tabSize` と `editor.insertSpaces` が検出されます。", @@ -14,11 +15,12 @@ "fontFamily": "フォント ファミリを制御します。", "fontLigatures": "フォントの合字を使用します", "fontSize": "フォント サイズを制御します。", + "fontWeight": "フォントの太さを制御します。", "formatOnType": "エディターで入力後に自動的に行の書式設定を行うかどうかを制御します", "glyphMargin": "グリフ余白の表示を制御します", "hideCursorInOverviewRuler": "概要ルーラーでカーソルを非表示にするかどうかを制御します。", "ignoreTrimWhitespace": "差分エディターが、先頭または末尾の空白の変更を差分として表示するかどうかを制御します。", - "insertSpaces": "Tab キーを押すとスペースが挿入されます。", + "insertSpaces": "Tab キーを押すとスペースが挿入されます。`editor.detectIndentation` がオンの場合、この設定はファイル コンテンツに基づいて上書きされます。", "insertSpaces.errorMessage": "'boolean' が必要です。`editor.detectIndentation` 設定によって値 \"auto\" が置き換えられていることに注意してください。", "lineHeight": "行の高さを制御します。fontSize に基づいて lineHeight を計算する場合には、0 を使用します。", "lineNumbers": "行番号の表示を制御します", @@ -41,7 +43,7 @@ "stablePeek": "エディターのコンテンツをダブルクリックするか、Esc キーを押しても、ピーク エディターを開いたままにします。", "suggestOnTriggerCharacters": "トリガー文字の入力時に候補が自動的に表示されるようにするかどうかを制御します", "tabCompletion": "プレフィックスが一致する場合にスニペットを挿入します。'quickSuggestions' が無効な場合に最適です。", - "tabSize": "タブ 1 つに相当するスペースの数。", + "tabSize": "1 つのタブに相当するスペースの数。`editor.detectIndentation` がオンの場合、この設定はファイル コンテンツに基づいて上書きされます。", "tabSize.errorMessage": "'number' が必要です。`editor.detectIndentation` 設定によって値 \"auto\" が置き換えられていることに注意してください。", "trimAutoWhitespace": "自動挿入された末尾の空白を削除する", "useTabStops": "空白の挿入や削除はタブ位置に従って行われます", diff --git a/i18n/jpn/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json b/i18n/jpn/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json index 8b6ad71cd4e..c3de7d0fb34 100644 --- a/i18n/jpn/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json +++ b/i18n/jpn/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "snippet.suggestions.label": "スニペットの挿入" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json b/i18n/jpn/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/jpn/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/jpn/src/vs/platform/request/common/request.i18n.json b/i18n/jpn/src/vs/platform/request/common/request.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/jpn/src/vs/platform/request/common/request.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/api/node/extHostDiagnostics.i18n.json b/i18n/jpn/src/vs/workbench/api/node/extHostDiagnostics.i18n.json index 8b6ad71cd4e..2c22bae2e10 100644 --- a/i18n/jpn/src/vs/workbench/api/node/extHostDiagnostics.i18n.json +++ b/i18n/jpn/src/vs/workbench/api/node/extHostDiagnostics.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "limitHit": "{0} 個の追加のエラーと警告が表示されていません。" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/browser/parts/editor/editorActions.i18n.json b/i18n/jpn/src/vs/workbench/browser/parts/editor/editorActions.i18n.json index 8bd8e30e0c1..6943ae8259b 100644 --- a/i18n/jpn/src/vs/workbench/browser/parts/editor/editorActions.i18n.json +++ b/i18n/jpn/src/vs/workbench/browser/parts/editor/editorActions.i18n.json @@ -12,6 +12,7 @@ "closeEditorsToTheLeft": "左側のエディターを閉じる", "closeEditorsToTheRight": "右側のエディターを閉じる", "closeOtherEditorsInGroup": "その他のエディターを閉じる", + "closeQuickOpen": "クイック オープンを閉じる", "evenEditorGroups": "エディター グループの幅を等間隔に設定する", "focusFirstEditorGroup": "左側のエディター グループにフォーカス", "focusLastEditorInStack": "グループ内の最後のエディターを開く", @@ -24,6 +25,8 @@ "minimizeOtherEditorGroups": "他のエディター グループを最小化する", "moveActiveGroupLeft": "エディター グループを左側に移動する", "moveActiveGroupRight": "エディター グループを右側に移動する", + "moveEditorLeft": "エディターを左へ移動", + "moveEditorRight": "エディターを右へ移動", "moveEditorToLeftGroup": "エディターを左側のグループに移動", "moveEditorToRightGroup": "エディターを右側のグループに移動", "navigateEditorGroups": "エディター グループ間で移動する", diff --git a/i18n/jpn/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json b/i18n/jpn/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json index 8b6ad71cd4e..e47e8c425ba 100644 --- a/i18n/jpn/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json +++ b/i18n/jpn/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json @@ -3,4 +3,10 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "commandDeprecated": "コマンド **{0}** は削除されました。代わりに **{1}** を使用できます", + "editorCommand.activeEditorMove.arg.description": "\n\t\t\t\t\t\t引数プロパティ:\n\t\t\t\t\t\t'to': 移動先を指定する文字列値\n\t\t\t\t\t\t'by': 移動に使用する単位を指定する文字列値。タブ別またはグループ別。\n\t\t\t\t\t\t'value': 移動する位置数と絶対位置を指定する数値。\n\t\t\t\t\t", + "editorCommand.activeEditorMove.arg.name": "アクティブ エディターの Move 引数", + "editorCommand.activeEditorMove.description": "タブまたはグループ別にアクティブ エディターを移動する", + "openKeybindings": "ショートカット キーの構成" +} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/electron-browser/main.contribution.i18n.json b/i18n/jpn/src/vs/workbench/electron-browser/main.contribution.i18n.json index 4daaa1b02f0..440f7abc752 100644 --- a/i18n/jpn/src/vs/workbench/electron-browser/main.contribution.i18n.json +++ b/i18n/jpn/src/vs/workbench/electron-browser/main.contribution.i18n.json @@ -4,11 +4,13 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "closeOnFocusLost": "フォーカスを失ったときにクイック オープンを自動的に閉じるかどうかを制御します。", "developer": "開発者", "editorOpenPositioning": "エディターを開く場所を制御します。[左] または [右] を選択して、現在アクティブになっているエディターの左または右にエディターを開きます。[最初] または [最後] を選択して、現在アクティブになっているエディターとは別個にエディターを開きます。", "enablePreview": "開いているエディターをプレビューとして表示するかどうかを制御します。プレビュー エディターは、保持されている間、再利用されます (ダブルクリックまたは編集などによって)。", "enablePreviewFromQuickOpen": "クイック オープンで開いたエディターをプレビューとして表示するかどうかを制御します。プレビュー エディターは、保持されている間、再利用されます (ダブルクリックまたは編集などによって)。", "file": "ファイル", + "openDefaultSettings": "設定を開くとすべての既定の設定を表示するエディターも開くかどうかを制御します。", "openFilesInNewWindow": "有効にすると、既存のインスタンスを再利用せずに新しいウィンドウでファイルを開きます。", "reopenFolders": "再起動後にフォルダーを再度開く方法を制御します。'none' を選択するとフォルダーを再度開くことはありません。'one' を選択すると最後に作業したフォルダーを再度開きます。'all' を選択すると前回のセッションのフォルダーすべてを再度開きます。", "restoreFullscreen": "全画面表示モードで終了した場合に、ウィンドウを全画面表示モードに復元するかどうかを制御します。", diff --git a/i18n/jpn/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json b/i18n/jpn/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ 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 bbef024507e..88f5a51be64 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 @@ -20,6 +20,12 @@ "deleteButtonLabel": "削除(&&D)", "deleteButtonLabelRecycleBin": "ごみ箱に移動(&&M)", "deleteButtonLabelTrash": "ゴミ箱に移動(&&M)", + "dirtyMessageFile": "保存されていない変更があるファイルの名前を変更します。続行しますか?", + "dirtyMessageFileDelete": "保存されていない変更があるファイルを削除します。続行しますか?", + "dirtyMessageFolder": "保存されていない変更がある {0} 個のファイルを含むフォルダーの名前を変更します。続行しますか?", + "dirtyMessageFolderDelete": "保存されていない変更がある {0} 個のファイルを含むフォルダーを削除します。続行しますか?", + "dirtyMessageFolderOne": "保存されていない変更がある 1 個のファイルを含むフォルダーの名前を変更します。続行しますか?", + "dirtyMessageFolderOneDelete": "保存されていない変更がある 1 個のファイルを含むフォルダーを削除します。続行しますか?", "dirtyWarning": "保存しないと変更内容が失われます。", "duplicateFile": "重複", "emptyFileNameError": "ファイルまたはフォルダーの名前を指定する必要があります。", @@ -43,6 +49,7 @@ "refresh": "最新の情報に更新", "refreshExplorer": "エクスプローラーを最新表示する", "rename": "名前変更", + "renameLabel": "名前の変更(&&R)", "replaceButtonLabel": "置換(&&R)", "retry": "再試行", "revert": "ファイルを元に戻す", diff --git a/i18n/jpn/src/vs/workbench/parts/files/browser/files.contribution.i18n.json b/i18n/jpn/src/vs/workbench/parts/files/browser/files.contribution.i18n.json index a93c6643c98..8becf03e287 100644 --- a/i18n/jpn/src/vs/workbench/parts/files/browser/files.contribution.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/files/browser/files.contribution.i18n.json @@ -6,7 +6,7 @@ { "associations": "言語に対するファイルの関連付け (例 \"*.extension\": \"html\") を構成します。これらの関連付けは、インストールされている言語の既定の関連付けより優先されます。", "autoReveal": "エクスプローラーでファイルを開くとき、自動的にファイルの内容を表示するかどうかを制御します。", - "autoSave": "ダーティ ファイルの自動保存を制御します。有効な値: \"{0}\"、\"{1}\"、\"{2}\"。\"{3}\" に設定すると、\"files.autoSaveDelay\" で遅延を構成できます。", + "autoSave": "ダーティ ファイルの自動保存を制御します。有効な値: \"{0}\"、\"{1}\"、\"{2}\" (エディターがフォーカスを失います)、\"{3}\" (ウィンドウがフォーカスを失います)。\"{4}\" に設定すると、\"files.autoSaveDelay\" で遅延を構成できます。", "autoSaveDelay": "ダーティ ファイルの自動保存の遅延をミリ秒単位で制御します。\"files.autoSave\" が \"{0}\" に設定されている場合のみ適用されます", "binaryFileEditor": "バイナリ ファイル エディター", "dynamicHeight": "開いているエディターのセクションの高さを要素の数に合わせて動的に調整するかどうかを制御します。", diff --git a/i18n/jpn/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json b/i18n/jpn/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json index 33aef98cb17..ff81a8b209b 100644 --- a/i18n/jpn/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json @@ -5,9 +5,13 @@ // Do not edit this file. It is machine generated. { "confirmOverwriteMessage": "'{0}' は保存先フォルダーに既に存在します。置き換えてもよろしいですか。", + "dirtyMessageFile": "保存されていない変更があるファイルを移動します。続行しますか?", + "dirtyMessageFolder": "保存されていない変更がある {0} 個のファイルを含むフォルダーを移動します。続行しますか?", + "dirtyMessageFolderOne": "保存されていない変更がある 1 個のファイルを含むフォルダーを移動します。続行しますか?", "dirtyWarning": "保存しないと変更内容が失われます。", "fileInputAriaLabel": "ファイル名を入力します。Enter キーを押して確認するか、Esc キーを押して取り消します。", "filesExplorerViewerAriaLabel": "{0}、ファイル エクスプローラー", "irreversible": "このアクションは元に戻すことができません。", + "moveLabel": "移動(&&M)", "replaceButtonLabel": "置換(&&R)" } \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/jpn/src/vs/workbench/parts/git/browser/gitActions.i18n.json index d8e90483ffd..d4834f3cd33 100644 --- a/i18n/jpn/src/vs/workbench/parts/git/browser/gitActions.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -9,9 +9,11 @@ "commit": "Commit", "commitAll": "すべてコミット", "commitAll2": "すべてコミット", + "commitAllSignedOff": "すべてコミット (サインオフ)", "commitMessage": "コミット メッセージ", "commitStaged": "ステージング済みをコミット", "commitStaged2": "ステージング済みをコミット", + "commitStagedSignedOff": "コミットしてステージング (サインオフ)", "confirmPublishMessage": "'{0}' を '{1}' に発行してよろしいですか?", "confirmPublishMessageButton": "発行(&&P)", "confirmUndo": "'{0}' の変更を取り除いてよろしいですか?", 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 f0beb29e213..2be1c9a2caa 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 @@ -25,6 +25,6 @@ "showOutput": "出力の表示", "unmergedChanges": "変更をコミットする前に、まずマージされていない変更を解決する必要があります。", "updateGit": "git {0} がインストールされているようです。Code は 2.0.0 以上の git で最適に動作します。", - "workingTreeChanges": "{0} (見出し) ↔ {1}", + "workingTreeChanges": "{0} (HEAD) ↔ {1}", "workingTreeChangesDesc": "{0} - 作業ツリーでの変更" } \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json b/i18n/jpn/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json index ce91f65b41d..8d31b1c9752 100644 --- a/i18n/jpn/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "confirmSync": "Git リポジトリを同期する前に確認します。", + "countBadge": "Git バッジ カウンターを制御します。", "git": "Git", "gitAutoFetch": "自動フェッチの有効/無効。", "gitAutoRefresh": "自動更新が有効かどうか", diff --git a/i18n/jpn/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json b/i18n/jpn/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/jpn/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json b/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json index da0cbd9e607..60f40ee4949 100644 --- a/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json @@ -5,10 +5,12 @@ // Do not edit this file. It is machine generated. { "terminal": "端末", + "terminal.integrated.commandsToSkipShell": "キーバインドがシェルに送信されず、代わりに常に Code で処理されるコマンド ID のセット。これにより、ターミナルがフォーカスされていない場合と同じ動作をするシェルによって通常使用されるキーバインドを使用できるようになります。例: Ctrl+p でクイック オープンを起動します。", "terminal.integrated.cursorBlinking": "端末のカーソルを点滅させるかどうかを制御します。", "terminal.integrated.fontFamily": "端末のフォント ファミリを制御します。既定値は editor.fontFamily になります。", "terminal.integrated.fontLigatures": "端末でフォントの合字が有効かどうかを制御します。", "terminal.integrated.fontSize": "端末のフォント サイズを制御します。既定値は editor.fontSize になります。", + "terminal.integrated.fontWeight": "ターミナルのフォントの太さを制御します。この既定値は editor.fontWeight の値に設定されています。", "terminal.integrated.lineHeight": "端末の行の高さを制御します。この数値に端末のフォント サイズを乗算すると、実際の行の高さ (ピクセル単位) になります。", "terminal.integrated.setLocaleVariables": "端末の開始時にロケール変数を設定するかどうかを制御します。OS X では既定で true になり、その他のプラットフォームでは false です。", "terminal.integrated.shell.linux": "端末が Linux で使用するシェルのパス。", diff --git a/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json b/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json index 8653f8d219a..e4e404936b9 100644 --- a/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json @@ -14,6 +14,8 @@ "workbench.action.terminal.new.short": "新しい端末", "workbench.action.terminal.paste": "Terminal: Paste into Active Terminal", "workbench.action.terminal.runSelectedText": "端末: アクティブな端末で選択したテキストを実行", + "workbench.action.terminal.scrollDown": "ターミナル: 下へスクロール", + "workbench.action.terminal.scrollUp": "ターミナル: 上へスクロール", "workbench.action.terminal.switchTerminalInstance": "端末: スイッチ端末インスタンス", "workbench.action.terminal.toggleTerminal": "統合端末の切り替え" } \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminalPanel.i18n.json b/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminalPanel.i18n.json index 553f6cded83..ff231e0c942 100644 --- a/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminalPanel.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminalPanel.i18n.json @@ -5,6 +5,6 @@ // Do not edit this file. It is machine generated. { "copy": "コピー", - "createNewTerminal": "新しい端末", + "createNewTerminal": "新しいターミナル", "paste": "貼り付け" } \ No newline at end of file diff --git a/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json b/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json index 8b6ad71cd4e..10c664208d9 100644 --- a/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json +++ b/i18n/jpn/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "terminal.integrated.copySelection.noSelection": "ターミナルにフォーカスがない場合は、ターミナルの選択をコピーできません" +} \ No newline at end of file diff --git a/i18n/kor/extensions/css/client/out/cssMain.i18n.json b/i18n/kor/extensions/css/client/out/cssMain.i18n.json index 8b6ad71cd4e..7ecfcb46fd7 100644 --- a/i18n/kor/extensions/css/client/out/cssMain.i18n.json +++ b/i18n/kor/extensions/css/client/out/cssMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "cssserver.name": "CSS 언어 서버" +} \ No newline at end of file diff --git a/i18n/kor/extensions/json/client/out/jsonMain.i18n.json b/i18n/kor/extensions/json/client/out/jsonMain.i18n.json index 8b6ad71cd4e..0df526f3eb5 100644 --- a/i18n/kor/extensions/json/client/out/jsonMain.i18n.json +++ b/i18n/kor/extensions/json/client/out/jsonMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "jsonserver.name": "JSON 언어 서버" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/code/electron-main/menus.i18n.json b/i18n/kor/src/vs/code/electron-main/menus.i18n.json index 63e206c5fde..601c2073d78 100644 --- a/i18n/kor/src/vs/code/electron-main/menus.i18n.json +++ b/i18n/kor/src/vs/code/electron-main/menus.i18n.json @@ -36,7 +36,7 @@ "miFind": "찾기(&&F)", "miFindInFiles": "파일에서 찾기(&&I)", "miFocusFirstGroup": "왼쪽 그룹(&&L)", - "miFocusSecondGroup": "측면 그룹(&&S)", + "miFocusSecondGroup": "센터 그룹(&&C)", "miFocusThirdGroup": "오른쪽 그룹(&&R)", "miForward": "앞으로(&&F)", "miGotoDefinition": "정의로 이동(&&D)", 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 aaec56b6cc1..ae9aa9eed34 100644 --- a/i18n/kor/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/kor/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -6,6 +6,7 @@ { "acceptSuggestionOnEnter": "'Tab' 키 외에도 'Enter' 키를 사용한 제안도 허용할지 제어합니다. 새 줄을 삽입하는 행위와 제안을 허용하는 행위 간의 모호함을 없앨 수 있습니다.", "autoClosingBrackets": "괄호를 연 다음에 편집기에서 괄호를 자동으로 닫을지 여부를 제어합니다.", + "codeLens": "편집기에서 코드 필터를 표시하는지 여부를 제어합니다.", "cursorBlinking": "커서 애니메이션 스타일을 제어합니다. 가능한 값은 'blink', 'smooth', 'phase', 'expand' 및 'solid'입니다.", "cursorStyle": "커서 스타일을 제어합니다. 허용되는 값은 '블록', '줄' 및 '밑줄'입니다.", "detectIndentation": "파일을 열면 파일 콘텐츠를 기반으로 하여 'editor.tabSize'와 'editor.insertSpaces'가 검색됩니다.", @@ -14,11 +15,12 @@ "fontFamily": "글꼴 패밀리를 제어합니다.", "fontLigatures": "글꼴 합자 사용", "fontSize": "글꼴 크기를 제어합니다.", + "fontWeight": "글꼴 두께를 제어합니다.", "formatOnType": "입력 후 편집기에서 자동으로 줄의 서식을 지정할지 여부를 제어합니다.", "glyphMargin": "문자 모양 여백의 표시 여부를 제어합니다.", "hideCursorInOverviewRuler": "커서가 개요 눈금자에서 가려져야 하는지 여부를 제어합니다.", "ignoreTrimWhitespace": "diff 편집기에서 선행 공백 또는 후행 공백 변경을 diffs로 표시할지 여부를 제어합니다.", - "insertSpaces": "Tab 키를 누를 때 공백을 삽입합니다.", + "insertSpaces": " 키를 누를 때 공백을 삽입합니다. `editor.detectIndentation`이 켜져 있는 경우 이 설정은 파일 콘텐츠에 따라 재정의됩니다.", "insertSpaces.errorMessage": "'boolean'이 필요합니다. 값 \"auto\"는 `editor.detectIndentation` 설정에 의해 바뀌었습니다.", "lineHeight": "줄 높이를 제어합니다. fontSize의 lineHeight를 계산하려면 0을 사용합니다.", "lineNumbers": "줄 번호의 표시 여부를 제어합니다.", @@ -41,7 +43,7 @@ "stablePeek": "해당 콘텐츠를 두 번 클릭하거나 Esc 키를 누르더라도 미리 보기 편집기를 열린 상태로 유지합니다.", "suggestOnTriggerCharacters": "트리거 문자를 입력할 때 제안을 자동으로 표시할지 여부를 제어합니다.", "tabCompletion": "접두사가 일치하는 경우 코드 조각을 삽입합니다. 'quickSuggestions'를 사용하지 않을 때 가장 잘 작동합니다.", - "tabSize": "탭 한 개에 해당하는 공백 수입니다.", + "tabSize": "탭 한 개에 해당하는 공백 수입니다. `editor.detectIndentation`이 켜져 있는 경우 이 설정은 파일 콘텐츠에 따라 재정의됩니다.", "tabSize.errorMessage": "'number'가 필요합니다. 값 \"auto\"는 `editor.detectIndentation` 설정에 의해 바뀌었습니다.", "trimAutoWhitespace": "끝에 자동 삽입된 공백 제거", "useTabStops": "탭 정지 뒤에 공백 삽입 및 삭제", diff --git a/i18n/kor/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json b/i18n/kor/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json index 8b6ad71cd4e..7fd318c3ac3 100644 --- a/i18n/kor/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json +++ b/i18n/kor/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "snippet.suggestions.label": "코드 조각 삽입" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json b/i18n/kor/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/kor/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/kor/src/vs/platform/request/common/request.i18n.json b/i18n/kor/src/vs/platform/request/common/request.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/kor/src/vs/platform/request/common/request.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/api/node/extHostDiagnostics.i18n.json b/i18n/kor/src/vs/workbench/api/node/extHostDiagnostics.i18n.json index 8b6ad71cd4e..4c7f828e3fd 100644 --- a/i18n/kor/src/vs/workbench/api/node/extHostDiagnostics.i18n.json +++ b/i18n/kor/src/vs/workbench/api/node/extHostDiagnostics.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "limitHit": "{0}개의 추가 오류 및 경고를 표시하지 않습니다." +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/browser/parts/editor/editorActions.i18n.json b/i18n/kor/src/vs/workbench/browser/parts/editor/editorActions.i18n.json index 2f5909e92d3..18b17686ee1 100644 --- a/i18n/kor/src/vs/workbench/browser/parts/editor/editorActions.i18n.json +++ b/i18n/kor/src/vs/workbench/browser/parts/editor/editorActions.i18n.json @@ -12,6 +12,7 @@ "closeEditorsToTheLeft": "왼쪽에 있는 편집기 닫기", "closeEditorsToTheRight": "오른쪽에 있는 편집기 닫기", "closeOtherEditorsInGroup": "다른 편집기 닫기", + "closeQuickOpen": "빠른 열기 닫기", "evenEditorGroups": "균등한 편집기 그룹 너비", "focusFirstEditorGroup": "왼쪽 편집기 그룹으로 포커스 이동", "focusLastEditorInStack": "그룹의 마지막 편집기 열기", @@ -24,6 +25,8 @@ "minimizeOtherEditorGroups": "다른 편집기 그룹 최소화", "moveActiveGroupLeft": "편집기 그룹을 왼쪽으로 이동", "moveActiveGroupRight": "편집기 그룹을 오른쪽으로 이동", + "moveEditorLeft": "왼쪽으로 편집기 이동", + "moveEditorRight": "오른쪽으로 편집기 이동", "moveEditorToLeftGroup": "편집기를 왼쪽 그룹으로 이동", "moveEditorToRightGroup": "편집기를 오른쪽 그룹으로 이동", "navigateEditorGroups": "편집기 그룹 간 탐색", diff --git a/i18n/kor/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json b/i18n/kor/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json index 8b6ad71cd4e..07755695e6b 100644 --- a/i18n/kor/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json +++ b/i18n/kor/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json @@ -3,4 +3,10 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "commandDeprecated": "**{0}** 명령이 제거되었습니다. 대신 **{1}** 명령을 사용할 수 있습니다.", + "editorCommand.activeEditorMove.arg.description": "\n\t\t\t\t\t\t인수 속성:\n\t\t\t\t\t\t'to': 이동할 위치를 지정하는 문자열 값입니다.\n\t\t\t\t\t\t'by': 이동할 단위를 지정하는 문자열 값입니다. 탭 단위 또는 그룹 단위입니다.\n\t\t\t\t\t\t'value': 이동할 위치 수 또는 절대 위치를 지정하는 숫자 값입니다.\n\t\t\t\t\t", + "editorCommand.activeEditorMove.arg.name": "활성 편집기 이동 인수", + "editorCommand.activeEditorMove.description": "활성 편집기를 탭 또는 그룹 단위로 이동합니다.", + "openKeybindings": "바로 가기 키 구성" +} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/electron-browser/main.contribution.i18n.json b/i18n/kor/src/vs/workbench/electron-browser/main.contribution.i18n.json index 993c9b25940..f3840c5d4d8 100644 --- a/i18n/kor/src/vs/workbench/electron-browser/main.contribution.i18n.json +++ b/i18n/kor/src/vs/workbench/electron-browser/main.contribution.i18n.json @@ -4,11 +4,13 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "closeOnFocusLost": "빠른 열기가 포커스를 잃으면 자동으로 닫을지 여부를 제어합니다.", "developer": "개발자", "editorOpenPositioning": "편집기가 열리는 위치를 제어합니다. 현재 활성 편집기의 왼쪽 또는 오른쪽에서 편집기를 열려면 '왼쪽' 또는 '오른쪽'을 선택합니다. 현재 활성 편집기와 독립적으로 편집기를 열려면 '처음' 또는 '마지막'을 선택합니다.", "enablePreview": "열려 있는 편집기를 미리 보기로 표시할지 여부를 제어합니다. 미리 보기 편집기는 유지된 상태까지(예: 두 번 클릭 또는 편집을 통해) 다시 사용됩니다.", "enablePreviewFromQuickOpen": "빠른 열기에서 연 편집기를 미리 보기로 표시할지 여부를 제어합니다. 미리 보기 편집기는 유지된 상태까지(예: 두 번 클릭 또는 편집을 통해) 다시 사용됩니다.", "file": "파일", + "openDefaultSettings": "설정을 열면 모든 기본 설정을 표시하는 편집기도 열리는지 여부를 제어합니다.", "openFilesInNewWindow": "사용하도록 설정한 경우 기존 인스턴스를 재사용하지 않고 파일이 새 창에서 열립니다.", "reopenFolders": "다시 시작한 이후에 폴더를 다시 여는 방법을 제어합니다. 폴더를 다시 열지 않으려면 'none'을 선택하고, 마지막으로 작업한 폴더를 다시 열려면 'one'을 선택하고, 마지막 세션의 모든 폴더를 다시 열려면 'all'을 선택합니다.", "restoreFullscreen": "창이 전체 화면 모드에서 종료된 경우 창을 전체 화면 모드로 복원할지 여부를 제어합니다.", diff --git a/i18n/kor/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json b/i18n/kor/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ 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 0dc1716f480..d6cc263e989 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 @@ -20,6 +20,12 @@ "deleteButtonLabel": "삭제(&&D)", "deleteButtonLabelRecycleBin": "휴지통으로 이동(&&M)", "deleteButtonLabelTrash": "휴지통으로 이동(&&M)", + "dirtyMessageFile": "저장되지 않은 변경 내용이 있는 파일의 이름을 바꾸려고 합니다. 계속하시겠습니까?", + "dirtyMessageFileDelete": "저장되지 않은 변경 내용이 있는 파일을 삭제하려고 합니다. 계속하시겠습니까?", + "dirtyMessageFolder": "{0}개 파일에 저장되지 않은 변경 내용이 있는 폴더의 이름을 바꾸려고 합니다. 계속하시겠습니까?", + "dirtyMessageFolderDelete": "{0}개 파일에 저장되지 않은 변경 내용이 있는 폴더를 삭제하려고 합니다. 계속하시겠습니까?", + "dirtyMessageFolderOne": "1개 파일에 저장되지 않은 변경 내용이 있는 폴더의 이름을 바꾸려고 합니다. 계속하시겠습니까?", + "dirtyMessageFolderOneDelete": "1개 파일에 저장되지 않은 변경 내용이 있는 폴더를 삭제하려고 합니다. 계속하시겠습니까?", "dirtyWarning": "변경 내용을 저장하지 않은 경우 변경 내용이 손실됩니다.", "duplicateFile": "중복", "emptyFileNameError": "파일 또는 폴더 이름을 입력해야 합니다.", @@ -43,6 +49,7 @@ "refresh": "새로 고침", "refreshExplorer": "탐색기 새로 고침", "rename": "이름 바꾸기", + "renameLabel": "이름 바꾸기(&&R)", "replaceButtonLabel": "바꾸기(&&R)", "retry": "다시 시도", "revert": "파일 되돌리기", diff --git a/i18n/kor/src/vs/workbench/parts/files/browser/files.contribution.i18n.json b/i18n/kor/src/vs/workbench/parts/files/browser/files.contribution.i18n.json index 4802cd82e8e..91a914c8c89 100644 --- a/i18n/kor/src/vs/workbench/parts/files/browser/files.contribution.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/files/browser/files.contribution.i18n.json @@ -6,7 +6,7 @@ { "associations": "파일과 언어의 연결을 구성하세요(예: \"*.extension\": \"html\"). 이러한 구성은 설치된 언어의 기본 연결보다 우선 순위가 높습니다.", "autoReveal": "탐색기에서 파일을 열 때 자동으로 표시할지를 제어합니다.", - "autoSave": "더티 파일 자동 저장을 제어합니다. 허용되는 값은 \"{0}\", \"{1}\", \"{2}\"입니다. \"{3}\"(으)로 설정한 경우 \"files.autoSaveDelay\"에서 지연을 구성할 수 있습니다.", + "autoSave": "더티 파일 자동 저장을 제어합니다. 허용되는 값은 \"{0}\", \"{1}\", \"{2}\"(편집기가 포커스를 잃음), \"{3}\"(창이 포커스를 잃음)입니다. \"{4}\"(으)로 설정하는 경우 \"files.autoSaveDelay\"에서 지연을 구성할 수 있습니다.", "autoSaveDelay": "더티 파일을 자동으로 저장할 때까지의 지연(밀리초)을 제어합니다. \"files.autoSave\"를 \"{0}\"(으)로 설정한 경우에만 적용됩니다.", "binaryFileEditor": "이진 파일 편집기", "dynamicHeight": "열려 있는 편집기 섹션의 높이가 요소 수에 따라 동적으로 조정되는지 여부를 제어합니다.", diff --git a/i18n/kor/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json b/i18n/kor/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json index 7a1668e0426..fc57b48a272 100644 --- a/i18n/kor/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json @@ -5,9 +5,13 @@ // Do not edit this file. It is machine generated. { "confirmOverwriteMessage": "'{0}'이(가) 대상 폴더에 이미 있습니다. 바꿀까요?", + "dirtyMessageFile": "저장되지 않은 변경 내용이 있는 파일을 이동하려고 합니다. 계속하시겠습니까?", + "dirtyMessageFolder": "{0}개 파일에 저장되지 않은 변경 내용이 있는 폴더를 이동하려고 합니다. 계속하시겠습니까?", + "dirtyMessageFolderOne": "1개 파일에 저장되지 않은 변경 내용이 있는 폴더를 이동하려고 합니다. 계속하시겠습니까?", "dirtyWarning": "변경 내용을 저장하지 않은 경우 변경 내용이 손실됩니다.", "fileInputAriaLabel": "파일 이름을 입력합니다. 확인하려면 Enter 키를 누르고, 취소하려면 Esc 키를 누릅니다.", "filesExplorerViewerAriaLabel": "{0}, 파일 탐색기", "irreversible": "이 작업은 취소할 수 없습니다.", + "moveLabel": "이동(&&M)", "replaceButtonLabel": "바꾸기(&&R)" } \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/kor/src/vs/workbench/parts/git/browser/gitActions.i18n.json index 4d3174d28a0..a6923e9caf4 100644 --- a/i18n/kor/src/vs/workbench/parts/git/browser/gitActions.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -9,9 +9,11 @@ "commit": "Commit", "commitAll": "모두 커밋", "commitAll2": "모두 커밋", + "commitAllSignedOff": "모두 커밋(로그오프됨)", "commitMessage": "커밋 메시지", "commitStaged": "스테이징된 항목 커밋", "commitStaged2": "스테이징된 항목 커밋", + "commitStagedSignedOff": "스테이징된 항목 커밋(로그오프됨)", "confirmPublishMessage": "'{0}'을(를) '{1}'에 게시할까요?", "confirmPublishMessageButton": "게시(&&P)", "confirmUndo": "'{0}'의 변경 내용을 정리할까요?", 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 9e4a1f3bbac..e05e7a125ab 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 @@ -25,6 +25,6 @@ "showOutput": "출력 표시", "unmergedChanges": "변경 내용을 커밋하기 전에 먼저 병합되지 않은 변경 내용을 확인해야 합니다.", "updateGit": "Git {0}이(가) 설치된 것 같습니다. Code는 2.0.0 이하의 Git에서 최적으로 작동합니다.", - "workingTreeChanges": "{0}(헤드) ↔ {1}", + "workingTreeChanges": "{0} (HEAD) ↔ {1}", "workingTreeChangesDesc": "{0} - 작업 트리 변경 내용" } \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json b/i18n/kor/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json index cb0f1264178..ea1a1d7df6a 100644 --- a/i18n/kor/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "confirmSync": "Git 리포지토리를 동기화하기 전에 확인합니다.", + "countBadge": "Git 배지 카운터를 제어합니다.", "git": "Git", "gitAutoFetch": "자동 가져오기를 사용하도록 설정했는지 여부입니다.", "gitAutoRefresh": "자동 새로 고침 사용 여부", diff --git a/i18n/kor/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json b/i18n/kor/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/kor/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json b/i18n/kor/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json index bed6c5c4105..7eaf895f4aa 100644 --- a/i18n/kor/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json @@ -5,10 +5,12 @@ // Do not edit this file. It is machine generated. { "terminal": "터미널", + "terminal.integrated.commandsToSkipShell": "키 바인딩이 셸에 전송되지 않고 대신 항상 코드에서 처리되는 명령 ID 집합입니다. 따라서 셸에서 정상적으로 사용되어 터미널에 포커스가 없을 때와 동일하게 작동하는 키 바인딩을 사용할 수 있습니다(예: ctrl+p를 사용하여 빠른 열기 시작).", "terminal.integrated.cursorBlinking": "터미널 커서 깜박임 여부를 제어합니다.", "terminal.integrated.fontFamily": "터미널의 글꼴 패밀리를 제어하며, 기본값은 editor.fontFamily의 값입니다.", "terminal.integrated.fontLigatures": "터미널에서 글꼴 합자가 사용되는지를 제어합니다.", "terminal.integrated.fontSize": "터미널의 글꼴 크기를 제어하며, 기본값은 editor.fontSize의 값입니다.", + "terminal.integrated.fontWeight": "터미널의 글꼴 두께를 제어합니다. 기본값은 editor.fontWeight의 값입니다.", "terminal.integrated.lineHeight": "터미널의 줄 높이를 제어하며, 이 숫자는 터미널 글꼴 크기를 곱하여 실제 줄 높이(픽셀)를 얻습니다.", "terminal.integrated.setLocaleVariables": "로캘 변수가 터미널 시작 시 설정되는지 여부를 제어하며, 기본값은 OS X에서 true이고 기타 플랫폼에서 false입니다.", "terminal.integrated.shell.linux": "터미널이 Linux에서 사용하는 셸의 경로입니다.", diff --git a/i18n/kor/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json b/i18n/kor/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json index 3c046a20b7c..b9756963722 100644 --- a/i18n/kor/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json @@ -14,6 +14,8 @@ "workbench.action.terminal.new.short": "새 터미널", "workbench.action.terminal.paste": "터미널: 활성 터미널로 붙여넣기", "workbench.action.terminal.runSelectedText": "터미널: 활성 터미널에서 선택한 텍스트 실행", + "workbench.action.terminal.scrollDown": "터미널: 아래로 스크롤", + "workbench.action.terminal.scrollUp": "터미널: 위로 스크롤", "workbench.action.terminal.switchTerminalInstance": "터미널: 터미널 인스턴스 전환", "workbench.action.terminal.toggleTerminal": "통합 터미널 설정/해제" } \ No newline at end of file diff --git a/i18n/kor/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json b/i18n/kor/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json index 8b6ad71cd4e..5cbf395e797 100644 --- a/i18n/kor/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json +++ b/i18n/kor/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "terminal.integrated.copySelection.noSelection": "터미널에 포커스가 없는 경우 터미널 선택을 복사할 수 없습니다." +} \ No newline at end of file diff --git a/i18n/rus/extensions/css/client/out/cssMain.i18n.json b/i18n/rus/extensions/css/client/out/cssMain.i18n.json index 8b6ad71cd4e..b37bc7356b8 100644 --- a/i18n/rus/extensions/css/client/out/cssMain.i18n.json +++ b/i18n/rus/extensions/css/client/out/cssMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "cssserver.name": "Сервер языка CSS" +} \ No newline at end of file diff --git a/i18n/rus/extensions/json/client/out/jsonMain.i18n.json b/i18n/rus/extensions/json/client/out/jsonMain.i18n.json index 8b6ad71cd4e..6ec87a7201d 100644 --- a/i18n/rus/extensions/json/client/out/jsonMain.i18n.json +++ b/i18n/rus/extensions/json/client/out/jsonMain.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "jsonserver.name": "Сервер языка JSON" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/code/electron-main/menus.i18n.json b/i18n/rus/src/vs/code/electron-main/menus.i18n.json index b8dd9bb63f7..2f532a5ce63 100644 --- a/i18n/rus/src/vs/code/electron-main/menus.i18n.json +++ b/i18n/rus/src/vs/code/electron-main/menus.i18n.json @@ -36,7 +36,7 @@ "miFind": "&&Найти", "miFindInFiles": "Найти в &&файлах", "miFocusFirstGroup": "&&Левая группа", - "miFocusSecondGroup": "&&Боковая группа", + "miFocusSecondGroup": "&&Центральная группа", "miFocusThirdGroup": "&&Правая группа", "miForward": "&&Вперед", "miGotoDefinition": "Перейти к &&определению", 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 7660d268a25..2577cbc99b7 100644 --- a/i18n/rus/src/vs/editor/common/config/commonEditorConfig.i18n.json +++ b/i18n/rus/src/vs/editor/common/config/commonEditorConfig.i18n.json @@ -6,6 +6,7 @@ { "acceptSuggestionOnEnter": "Определяет, можно ли принимать предложения клавишей ВВОД в дополнение к клавише TAB. Это помогает избежать неоднозначности между вставкой новых строк или принятием предложений.", "autoClosingBrackets": "Определяет, должен ли редактор автоматически закрывать скобки после открытия.", + "codeLens": "Управляет показом групп связанных элементов кода в редакторе", "cursorBlinking": "Управляет стилем анимации курсора. Допустимые значения: \"blink\", \"smooth\", \"phase\", \"expand\" и \"solid\"", "cursorStyle": "Определяет стиль курсора. Допустимые значения: \"block\", \"line\" и \"underline\"", "detectIndentation": "При открытии файла editor.tabSize и editor.insertSpaces будут определяться на основе содержимого файла.", @@ -14,11 +15,12 @@ "fontFamily": "Определяет семейство шрифтов.", "fontLigatures": "Включает лигатуры шрифта.", "fontSize": "Управляет размером шрифта.", + "fontWeight": "Управляет насыщенностью шрифта.", "formatOnType": "Управляет параметром, определяющим, должен ли редактор автоматически форматировать строку после ввода.", "glyphMargin": "Управляет видимостью полей глифа.", "hideCursorInOverviewRuler": "Управляет скрытием курсора в обзорной линейке.", "ignoreTrimWhitespace": "Определяет, должен ли редактор несовпадений трактовать несовпадения символов-разделителей как различия.", - "insertSpaces": "Вставлять пробелы при нажатии клавиши TAB.", + "insertSpaces": "Вставлять пробелы при нажатии клавиши TAB. Эта настройка переопределяется на основании содержимого файла, когда включен параметр \"editor.detectIndentation\".", "insertSpaces.errorMessage": "Ожидается логическое значение. Обратите внимание, что значение auto заменено параметром editor.detectIndentation.", "lineHeight": "Управляет высотой строк. Укажите 0 для вычисления высоты строки по размеру шрифта.", "lineNumbers": "Управляет видимостью номеров строк.", @@ -41,7 +43,7 @@ "stablePeek": "Оставлять просматривающие редакторы открытыми, даже если дважды щелкнуто их содержимое или нажата клавиша ESC.", "suggestOnTriggerCharacters": "Определяет, должны ли при вводе триггерных символов автоматически отображаться предложения.", "tabCompletion": "Вставка фрагментов при совпадении их префиксов. Функция работает оптимально, если параметр \"quickSuggestions\" отключен.", - "tabSize": "Число пробелов в табуляции.", + "tabSize": "Число пробелов в табуляции. Эта настройка переопределяется на основании содержимого файла, когда включен параметр \"editor.detectIndentation\".", "tabSize.errorMessage": "Ожидается число. Обратите внимание, что значение auto заменено параметром editor.detectIndentation.", "trimAutoWhitespace": "Удалить автоматически вставляемый конечный пробел", "useTabStops": "Вставка и удаление пробелов после позиции табуляции", diff --git a/i18n/rus/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json b/i18n/rus/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json index 8b6ad71cd4e..8c220bbce30 100644 --- a/i18n/rus/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json +++ b/i18n/rus/src/vs/editor/contrib/suggest/electron-browser/snippetCompletion.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "snippet.suggestions.label": "Вставить фрагмент кода" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json b/i18n/rus/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/rus/src/vs/platform/extensionManagement/node/extensionGalleryService.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/rus/src/vs/platform/request/common/request.i18n.json b/i18n/rus/src/vs/platform/request/common/request.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/rus/src/vs/platform/request/common/request.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/api/node/extHostDiagnostics.i18n.json b/i18n/rus/src/vs/workbench/api/node/extHostDiagnostics.i18n.json index 8b6ad71cd4e..75905156e62 100644 --- a/i18n/rus/src/vs/workbench/api/node/extHostDiagnostics.i18n.json +++ b/i18n/rus/src/vs/workbench/api/node/extHostDiagnostics.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "limitHit": "Не отображаются еще несколько ошибок и предупреждений ({0})." +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/browser/parts/editor/editorActions.i18n.json b/i18n/rus/src/vs/workbench/browser/parts/editor/editorActions.i18n.json index 546d015cc32..359231f57ee 100644 --- a/i18n/rus/src/vs/workbench/browser/parts/editor/editorActions.i18n.json +++ b/i18n/rus/src/vs/workbench/browser/parts/editor/editorActions.i18n.json @@ -12,6 +12,7 @@ "closeEditorsToTheLeft": "Закрыть редакторы слева", "closeEditorsToTheRight": "Закрыть редакторы справа", "closeOtherEditorsInGroup": "Закрыть другие редакторы", + "closeQuickOpen": "Закрыть быстрое открытие", "evenEditorGroups": "Уравнять ширину групп редакторов", "focusFirstEditorGroup": "Фокус на группу редакторов слева", "focusLastEditorInStack": "Открыть последний редактор в группе", @@ -24,6 +25,8 @@ "minimizeOtherEditorGroups": "Свернуть другие группы редакторов", "moveActiveGroupLeft": "Переместить группу редакторов влево", "moveActiveGroupRight": "Переместить группу редакторов вправо", + "moveEditorLeft": "Переместить редактор влево", + "moveEditorRight": "Переместить редактор вправо", "moveEditorToLeftGroup": "Переместить редактор в группу слева", "moveEditorToRightGroup": "Переместить редактор в группу справа", "navigateEditorGroups": "Переход между группами редакторов", diff --git a/i18n/rus/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json b/i18n/rus/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json index 8b6ad71cd4e..7b1a4f498c7 100644 --- a/i18n/rus/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json +++ b/i18n/rus/src/vs/workbench/browser/parts/editor/editorCommands.i18n.json @@ -3,4 +3,10 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "commandDeprecated": "Команда **{0}** удалена. Вместо нее можно использовать **{1}**", + "editorCommand.activeEditorMove.arg.description": "\n\t\t\t\t\t\tСвойства аргумента:\n\t\t\t\t\t\t\"to\": строковое значение, указывающее направление перемещения.\n\t\t\t\t\t\t\"by\": строковое значение, указывающее единицу перемещения (вкладка или группа).\n\t\t\t\t\t\t\"value\": числовое значение, указывающее число позиций перемещения или абсолютное значение, куда необходимо переместить.\n\t\t\t\t\t", + "editorCommand.activeEditorMove.arg.name": "Аргумент перемещения активного редактора", + "editorCommand.activeEditorMove.description": "Перемещение активного редактора по вкладкам или группам", + "openKeybindings": "Настройка сочетаний клавиш" +} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/electron-browser/main.contribution.i18n.json b/i18n/rus/src/vs/workbench/electron-browser/main.contribution.i18n.json index 861951367f6..1875002f98a 100644 --- a/i18n/rus/src/vs/workbench/electron-browser/main.contribution.i18n.json +++ b/i18n/rus/src/vs/workbench/electron-browser/main.contribution.i18n.json @@ -4,11 +4,13 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "closeOnFocusLost": "Управляет автоматическим закрытием быстрого открытия при потере фокуса.", "developer": "Разработчик", "editorOpenPositioning": "Определяет место открытия редакторов. Выберите \"Слева\" или \"Справа\", чтобы открывать редакторы слева или справа от активного сейчас редактора. Выберите \"Первый\" или \"Последний\", чтобы открывать редакторы независимо от активного сейчас редактора.", "enablePreview": "Определяет, отображаются ли открытые редакторы в режиме предварительного просмотра. Редакторы с предварительным просмотром повторно используются до сохранения (например, с помощью двойного щелчка или изменения).", "enablePreviewFromQuickOpen": "Определяет, отображаются ли редакторы, открытые с помощью быстрого открытия, в режиме предварительного просмотра. Редакторы с предварительным просмотром повторно используются до сохранения (например, с помощью двойного щелчка или изменения).", "file": "Файл", + "openDefaultSettings": "Управляет открытием редактора с отображением всех настроек по умолчанию при открытии настроек.", "openFilesInNewWindow": "Если этот параметр включен, файлы будут открываться в новом окне, а не в существующем экземпляре.", "reopenFolders": "Управляет повторным открытием папок после перезапуска. Выберите значение \"none\", чтобы не открывать папку повторно, \"one\", чтобы открывалась последняя папка, с которой вы работали, или \"all\", чтобы открывались все папки последнего сеанса.", "restoreFullscreen": "Определяет, должно ли окно восстанавливаться в полноэкранном режиме, если оно было закрыто в полноэкранном режиме.", diff --git a/i18n/rus/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json b/i18n/rus/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/cli/electron-browser/cli.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ 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 1602ca6d5d7..4611660b058 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 @@ -20,6 +20,12 @@ "deleteButtonLabel": "&&Удалить", "deleteButtonLabelRecycleBin": "&&Переместить в корзину", "deleteButtonLabelTrash": "&&Переместить в удаленные", + "dirtyMessageFile": "Вы переименовываете файл с несохраненными изменениями. Вы хотите продолжить?", + "dirtyMessageFileDelete": "Вы удаляете файл с несохраненными изменениями. Вы хотите продолжить?", + "dirtyMessageFolder": "Вы переименовываете папку с несохраненными изменениями в нескольких файлах ({0}). Вы хотите продолжить?", + "dirtyMessageFolderDelete": "Вы удаляете папку с несохраненными изменениями в нескольких файлах ({0}). Вы хотите продолжить?", + "dirtyMessageFolderOne": "Вы переименовываете папку с несохраненными изменениями в одном файле. Вы хотите продолжить?", + "dirtyMessageFolderOneDelete": "Вы удаляете папку с несохраненными изменениями в одном файле. Вы хотите продолжить?", "dirtyWarning": "Если не сохранить изменения, они будут утеряны.", "duplicateFile": "Дублировать", "emptyFileNameError": "Необходимо указать имя файла или папки.", @@ -43,6 +49,7 @@ "refresh": "Обновить", "refreshExplorer": "Обновить окно проводника", "rename": "Переименовать", + "renameLabel": "&&Переименовать", "replaceButtonLabel": "&&Заменить", "retry": "Повторить попытку", "revert": "Отменить изменения в файле", diff --git a/i18n/rus/src/vs/workbench/parts/files/browser/files.contribution.i18n.json b/i18n/rus/src/vs/workbench/parts/files/browser/files.contribution.i18n.json index 9ebc9abfede..33a47191abc 100644 --- a/i18n/rus/src/vs/workbench/parts/files/browser/files.contribution.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/files/browser/files.contribution.i18n.json @@ -6,7 +6,7 @@ { "associations": "Настройте сопоставления файлов с языками (например, \"*.extension\": \"html\"). У них будет приоритет перед заданными по умолчанию сопоставлениями установленных языков.", "autoReveal": "Определяет, следует ли обозревателю автоматически отображать файлы при их открытии.", - "autoSave": "Управляет автоматическим сохранением измененных файлов. Допустимые значения: \"{0}\", \"{1}\", \"{2}\". Если задано значение \"{3}\", можно настроить задержку в files.autoSaveDelay.", + "autoSave": "Управляет автоматическим сохранением измененных файлов. Допустимые значения: \"{0}\", \"{1}\", \"{2}\" (редактор теряет фокус) и \"{3}\" (окно теряет фокус). Если задано значение \"{4}\", можно настроить задержку в \"files.autoSaveDelay\".", "autoSaveDelay": "Определяет задержку в мс, после которой измененный файл сохраняется автоматически. Действует, только если параметр files.autoSave имеет значение \"{0}\".", "binaryFileEditor": "Редактор двоичных файлов", "dynamicHeight": "Определяет, будет ли высота раздела открытых редакторов динамически адаптироваться к количеству элементов.", diff --git a/i18n/rus/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json b/i18n/rus/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json index b49d2658f3e..665d5731b90 100644 --- a/i18n/rus/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/files/browser/views/explorerViewer.i18n.json @@ -5,9 +5,13 @@ // Do not edit this file. It is machine generated. { "confirmOverwriteMessage": "{0} уже существует в целевой папке. Заменить его?", + "dirtyMessageFile": "Вы перемещаете файл с несохраненными изменениями. Вы хотите продолжить?", + "dirtyMessageFolder": "Вы перемещаете папку с несохраненными изменениями в нескольких файлах ({0}). Вы хотите продолжить?", + "dirtyMessageFolderOne": "Вы перемещаете папку с несохраненными изменениями в одном файле. Вы хотите продолжить?", "dirtyWarning": "Если не сохранить изменения, они будут утеряны.", "fileInputAriaLabel": "Введите имя файла. Нажмите клавишу ВВОД, чтобы подтвердить введенные данные, или ESCAPE для отмены.", "filesExplorerViewerAriaLabel": "{0}, Проводник", "irreversible": "Это действие необратимо!", + "moveLabel": "&&Переместить", "replaceButtonLabel": "&&Заменить" } \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/git/browser/gitActions.i18n.json b/i18n/rus/src/vs/workbench/parts/git/browser/gitActions.i18n.json index 6efba75b8bf..4c2169e7727 100644 --- a/i18n/rus/src/vs/workbench/parts/git/browser/gitActions.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/git/browser/gitActions.i18n.json @@ -9,9 +9,11 @@ "commit": "Commit", "commitAll": "Зафиксировать все", "commitAll2": "Зафиксировать все", + "commitAllSignedOff": "Зафиксировать все (завершено)", "commitMessage": "Сообщение о фиксации", "commitStaged": "Зафиксировать промежуточно сохраненные изменения", "commitStaged2": "Зафиксировать промежуточно сохраненные изменения", + "commitStagedSignedOff": "Зафиксировать промежуточные элементы (завершено)", "confirmPublishMessage": "Действительно опубликовать \"{0}\" в \"{1}\"?", "confirmPublishMessageButton": "&&Опубликовать", "confirmUndo": "Действительно отменить изменения в {0}?", diff --git a/i18n/rus/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json b/i18n/rus/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json index f05d293d461..276439a3ff0 100644 --- a/i18n/rus/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/git/browser/gitWorkbenchContributions.i18n.json @@ -5,6 +5,7 @@ // Do not edit this file. It is machine generated. { "confirmSync": "Подтвердите синхронизацию репозиториев Git.", + "countBadge": "Управляет счетчиком эмблем Git.", "git": "GIT", "gitAutoFetch": "Включено ли автоматическое получение.", "gitAutoRefresh": "Включено ли автоматическое обновление", diff --git a/i18n/rus/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json b/i18n/rus/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json new file mode 100644 index 00000000000..8b6ad71cd4e --- /dev/null +++ b/i18n/rus/src/vs/workbench/parts/nps/electron-browser/nps.contribution.i18n.json @@ -0,0 +1,6 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{} \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json b/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json index d6b721048b9..5736f247871 100644 --- a/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminal.contribution.i18n.json @@ -5,10 +5,12 @@ // Do not edit this file. It is machine generated. { "terminal": "Терминал", + "terminal.integrated.commandsToSkipShell": "Набор идентификаторов команд, чьи настраиваемые сочетания клавиш не будут передаваться в оболочку, а вместо этого будут всегда обрабатываться Code. Это позволяет использовать настраиваемые сочетания клавиш, которые при обычных условиях были бы использованы оболочкой и работали бы так же, как если бы терминал не имел фокуса, например клавиши CTRL+P запускали бы быстрое открытие.", "terminal.integrated.cursorBlinking": "Управляет миганием курсора терминала.", "terminal.integrated.fontFamily": "Определяет семейство шрифтов терминала, значение по умолчанию — editor.fontFamily.", "terminal.integrated.fontLigatures": "Определяет, будут ли включены лигатуры шрифтов для терминала.", "terminal.integrated.fontSize": "Определяет размер шрифта для терминала, значение по умолчанию — editor.fontSize.", + "terminal.integrated.fontWeight": "Управляет насыщенностью шрифта терминала, по умолчанию используется значение editor.fontWeight.", "terminal.integrated.lineHeight": "Определяет высоту строки терминала; это число умножается на размер шрифта терминала, что дает фактическую высоту строки в пикселях.", "terminal.integrated.setLocaleVariables": "Управляет заданием переменных при запуске терминала, значение по умолчанию: \"True\" для OS X и \"False\" для других платформ.", "terminal.integrated.shell.linux": "Путь оболочки, который используется терминалом в Linux.", diff --git a/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json b/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json index 071e1d6142b..7958ad00782 100644 --- a/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminalActions.i18n.json @@ -14,6 +14,8 @@ "workbench.action.terminal.new.short": "Новый терминал", "workbench.action.terminal.paste": "Терминал: вставить в активный терминал", "workbench.action.terminal.runSelectedText": "Терминал: запуск выбранного текста в активном терминале", + "workbench.action.terminal.scrollDown": "Терминал: прокрутка вниз", + "workbench.action.terminal.scrollUp": "Терминал: прокрутка вверх", "workbench.action.terminal.switchTerminalInstance": "Терминал: переключить экземпляр терминала", "workbench.action.terminal.toggleTerminal": "Переключить интегрированный терминал" } \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminalPanel.i18n.json b/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminalPanel.i18n.json index eaacc0f74a6..a3231f82be5 100644 --- a/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminalPanel.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminalPanel.i18n.json @@ -5,6 +5,6 @@ // Do not edit this file. It is machine generated. { "copy": "Копировать", - "createNewTerminal": "Новый терминал", + "createNewTerminal": "Создать терминал", "paste": "Вставить" } \ No newline at end of file diff --git a/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json b/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json index 8b6ad71cd4e..a29f99bbd35 100644 --- a/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json +++ b/i18n/rus/src/vs/workbench/parts/terminal/electron-browser/terminalService.i18n.json @@ -3,4 +3,6 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. -{} \ No newline at end of file +{ + "terminal.integrated.copySelection.noSelection": "Невозможно скопировать выделение в терминале, когда терминал не имеет фокуса" +} \ No newline at end of file