diff --git a/Extension/i18n/chs/package.i18n.json b/Extension/i18n/chs/package.i18n.json index 447697a4b..b95a24419 100644 --- a/Extension/i18n/chs/package.i18n.json +++ b/Extension/i18n/chs/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "清除所有代码分析问题", "c_cpp.command.BuildAndDebugFile.title": "调试 C/C++ 文件", "c_cpp.command.BuildAndRunFile.title": "运行 C/C++ 文件", + "c_cpp.command.SetVsDeveloperEnvironment.title": "设置 Visual Studio 开发人员环境", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "清除 Visual Studio 开发人员环境", "c_cpp.command.AddDebugConfiguration.title": "添加调试配置", "c_cpp.command.GenerateDoxygenComment.title": "生成 Doxygen 注释", "c_cpp.command.addSshTarget.title": "添加 SSH 目标", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Cpptools: SSH 目标", "c_cpp.contributes.viewsWelcome.contents": "要了解有关 launch.json 的信息,请参阅 [配置 C/C++ 调试](https://code.visualstudio.com/docs/cpp/launch-json-reference)。", "c_cpp.configuration.debugShortcut.description": "显示 C++ 文件编辑器标题栏中的“运行和调试”播放按钮和“添加调试配置”齿轮。", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "记住当前工作区上次使用的 Visual Studio 开发人员环境。此设置仅适用于 Windows。", "c_cpp.debuggers.pipeTransport.description": "如果存在,这会指示调试程序使用其他可执行文件作为管道来连接到远程计算机,此管道将在 VS Code 和已启用 MI 的调试程序后端可执行文件(如 gdb)之间中继标准输入/输入。", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "输入管道程序名称的完全限定的路径,例如 '/usr/bin/ssh'。", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "目标计算机上调试程序的完整路径,例如 /usr/bin/gdb。", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "创建 C++ 文件", "c_cpp.walkthrough.create.cpp.file.description": "[打开](command:toSide:workbench.action.files.openFile)或[创建](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)一个 C++ 文件。请确保将其保存为 \".cpp\" 扩展名,例如 \"helloworld.cpp\"。\n[创建 C++ 文件](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "使用 C++ 项目打开 C++ 文件或文件夹。", - "c_cpp.walkthrough.command.prompt.title": "从 Developer Command Prompt for VS 启动", - "c_cpp.walkthrough.command.prompt.description": "使用 Microsoft Visual Studio C++ 编译器时,C++ 扩展需要你从 Developer Command Prompt for VS 启动 VS Code。请按照右侧的说明重新启动。\n[重新加载窗口](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "应用 Visual Studio 开发人员环境", + "c_cpp.walkthrough.command.prompt.description": "使用 Microsoft Visual Studio C++ 编译器时,必须存在 Visual Studio 开发人员环境。\n\n请按照右侧说明重新启动,或单击下面的按钮。\n[设置开发人员环境](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "运行并调试 C++ 文件", "c_cpp.walkthrough.run.debug.mac.description": "打开你的 C++ 文件,在编辑器右上角点击播放按钮,或者在文件上按 F5。选择“clang++ - 构建和调试活动文件”以使用调试器运行。", "c_cpp.walkthrough.run.debug.linux.description": "打开 C++ 文件,在编辑器右上角点击播放按钮,或者在文件上按 F5。选择“g++ - 构建和调试活动文件”以使用调试器运行。", diff --git a/Extension/i18n/chs/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/chs/src/Debugger/configurationProvider.i18n.json index 99d010d5f..bfcc410fa 100644 --- a/Extension/i18n/chs/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/chs/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "preLaunchTask: {0}", "debugger.path.not.exists": "找不到 {0} 调试器。将忽略 {1} 的调试配置。", "build.and.debug.active.file": "构建和调试活动文件", - "cl.exe.not.available": "{0} 仅在 VS Code 从 {1} 中运行时才可用。", + "apply.dev.env": "应用开发人员环境", + "cl.exe.not.available": "{0} 需要 Visual Studio 开发人员环境。", + "update.dev.env": "更新开发人员环境", + "cancel": "取消", + "dev.env.not.applied": "由于未应用 Visual Studio 开发人员环境,无法生成源代码。", + "dev.env.not.found": "由于找不到 Visual C++ 编译器,无法生成源代码。", "lldb.find.failed": "缺少 lldb-mi 可执行文件的依赖项“{0}”。", "lldb.search.paths": "搜索范围:", "lldb.install.help": "要解决此问题,请通过 Apple App Store 安装 XCode,或通过在终端窗口运行“{0}”来安装 XCode 命令行工具。", diff --git a/Extension/i18n/chs/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/chs/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..d7af5baf6 --- /dev/null +++ b/Extension/i18n/chs/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "未提供上下文", + "not.windows": "“设置 Visual Studio 开发人员环境”命令仅在 Windows 上可用", + "error.no.vs": "找不到带有 C++ 编译器的 Visual Studio 安装项", + "operation.cancelled": "已取消此操作", + "no.hosts": "找不到主机", + "config.dev.env": "正在配置开发人员环境...", + "select.vs.install": "选择 Visual Studio 安装", + "advanced.options": "高级选项...", + "advanced.options.desc": "选择特定的主机和目标体系结构构、工具集版本等", + "select.toolset": "选择工具集版本", + "select.host.target": "选择主机和目标体系结构", + "something.wrong": "出现问题: {0}", + "dev.env.for": "{1} 的 {0} 开发人员环境", + "default.env": "{0} 的默认环境", + "host.target": "主机 = {0},目标 = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/chs/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/chs/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index 4f654052a..376b37809 100644 --- a/Extension/i18n/chs/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/chs/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "通过在 Windows“开始”菜单中键入“{1}”打开 {0}。选择 {2} 将自动导航到当前打开的文件夹。", - "walkthrough.windows.press.f5": "在命令提示符中键入“{0}”,然后按 Enter。此操作应会重新启动 VS Code 并将你带回此演练。" + "walkthrough.windows.title.apply.dev.env": "应用 Visual Studio 开发人员环境", + "walkthrough.windows.dev.env.required": "Visual Studio C++ 编译器需要设置多个环境变量才能成功编译代码。如果正在 Windows 计算机上使用 Visual Studio C++ 编译器,有两种方法可确保应用了相应环境。", + "walkthrough.windows.do.one": " 只需要执行以下操作之一:", + "walkthrough.windows.run.dev.command": "运行 {0} 命令", + "walkthrough.windows.set.dev.environment": "C/C++: 设置 Visual Studio 开发人员环境", + "walkthrough.windows.start.from.dev.command": "从 {0} 启动 VS Code", + "walkthrough.windows.relaunch.command.prompt": "使用 {0} 重新启动 VS Code", + "walkthrough.close.vscode": "关闭 VS Code 的当前实例。", + "walkthrough.open.command.prompt": "通过在 Windows“开始”菜单中键入 {1} 来打开 {0},然后选择 {2}。", + "walkthrough.windows.press.f5": "在命令提示符中键入 {0},然后按 Enter。这应会重新启动同一工作区中的 VS Code,并将你带回此演练。" } \ No newline at end of file diff --git a/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows.md.i18n.json b/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows.md.i18n.json index 665da1465..f57c79153 100644 --- a/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows.md.i18n.json +++ b/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows.md.i18n.json @@ -16,6 +16,6 @@ "walkthrough.windows.link.install": "安装", "walkthrough.windows.note1": "注意", "walkthrough.windows.note1.text": "可以使用 Visual Studio 生成工具中的 C++ 工具集以及 Visual Studio Code 以编译、生成并验证任何 C++ 代码库,前提是同时具有有效的 Visual Studio 许可证(社区版、专业版或企业版),且正积极将其用于开发该 C++ 代码库。", - "walkthrough.windows.open.command.prompt": "通过在 Windows “开始”菜单中键入“{1}”打开 {0}。", + "walkthrough.windows.open.command.prompt": "通过在 Windows“开始”菜单中键入 {1} 来打开 {0}。", "walkthrough.windows.check.install": "通过在 {1} 中键入 {0} 来检查 MSVC 安装。你应该会看到包含版本和基本使用说明的版权消息。" } \ No newline at end of file diff --git a/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json index cfcdfd945..f00efc3e5 100644 --- a/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json +++ b/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "注意", "walkthrough.windows.note1.text": "可以使用 Visual Studio 生成工具中的 C++ 工具集以及 Visual Studio Code 以编译、生成并验证任何 C++ 代码库,前提是同时具有有效的 Visual Studio 许可证(社区版、专业版或企业版),且正积极将其用于开发该 C++ 代码库。", "walkthrough.windows.verify.compiler": "验证编译器安装", - "walkthrough.windows.open.command.prompt": "通过在 Windows “开始”菜单中键入“{1}”打开 {0}。", + "walkthrough.windows.open.command.prompt": "通过在 Windows“开始”菜单中键入 {1} 来打开 {0}。", "walkthrough.windows.check.install": "通过在 {1} 中键入 {0} 来检查 MSVC 安装。你应该会看到包含版本和基本使用说明的版权消息。", "walkthrough.windows.other.compilers": "其他编译器选项", "walkthrough.windows.text3": "如果面向的是 Windows 中的 Linux,请查看 {0}。或者,可 {1}。", diff --git a/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json index cfcdfd945..f00efc3e5 100644 --- a/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json +++ b/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "注意", "walkthrough.windows.note1.text": "可以使用 Visual Studio 生成工具中的 C++ 工具集以及 Visual Studio Code 以编译、生成并验证任何 C++ 代码库,前提是同时具有有效的 Visual Studio 许可证(社区版、专业版或企业版),且正积极将其用于开发该 C++ 代码库。", "walkthrough.windows.verify.compiler": "验证编译器安装", - "walkthrough.windows.open.command.prompt": "通过在 Windows “开始”菜单中键入“{1}”打开 {0}。", + "walkthrough.windows.open.command.prompt": "通过在 Windows“开始”菜单中键入 {1} 来打开 {0}。", "walkthrough.windows.check.install": "通过在 {1} 中键入 {0} 来检查 MSVC 安装。你应该会看到包含版本和基本使用说明的版权消息。", "walkthrough.windows.other.compilers": "其他编译器选项", "walkthrough.windows.text3": "如果面向的是 Windows 中的 Linux,请查看 {0}。或者,可 {1}。", diff --git a/Extension/i18n/cht/package.i18n.json b/Extension/i18n/cht/package.i18n.json index 3c5913d32..4eed0e46c 100644 --- a/Extension/i18n/cht/package.i18n.json +++ b/Extension/i18n/cht/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "清除所有程式碼分析問題", "c_cpp.command.BuildAndDebugFile.title": "偵錯 C/C++ 檔案", "c_cpp.command.BuildAndRunFile.title": "執行 C/C++ 檔案", + "c_cpp.command.SetVsDeveloperEnvironment.title": "設定 Visual Studio 開發人員環境", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "清除 Visual Studio 開發人員環境", "c_cpp.command.AddDebugConfiguration.title": "新增偵錯組態", "c_cpp.command.GenerateDoxygenComment.title": "產生 Doxygen 註解", "c_cpp.command.addSshTarget.title": "新增 SSH 目標", @@ -108,7 +110,7 @@ "c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "將 goto 標籤固定在程式碼的最左側。", "c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "將不會格式化 goto 標籤。", "c_cpp.configuration.vcFormat.indent.preprocessor.description": "前置處理器指示詞的位置。", - "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "前置處理器指令會以 `#editor.tabSize#` 設定中指定的數量,定位於目前程式碼縮排的左邊。", + "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "前置處理器指示詞會以 `#editor.tabSize#` 設定中指定的數量,定位於目前程式碼縮排的左側。", "c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "前置處理器指示詞位於程式碼的最左側。", "c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "將不會格式化前置處理器指示詞。", "c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "存取指定名稱會依據 `#editor.tabSize#` 設定中指定的數量,按照類別或結構定義的相對位置縮排。", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Cpptools: SSH 目標", "c_cpp.contributes.viewsWelcome.contents": "如需深入了解 launch.json,請參閱 [設定 C/C++ 偵錯](https://code.visualstudio.com/docs/cpp/launch-json-reference)。", "c_cpp.configuration.debugShortcut.description": "在 C++ 檔案的編輯器標題列中顯示 [執行及偵錯] 播放按鈕和 [新增偵錯組態] 齒輪。", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "記住目前工作區上次使用的 Visual Studio 開發人員環境。此設定僅適用於 Windows。", "c_cpp.debuggers.pipeTransport.description": "出現時,會指示偵錯工具使用另一個可執行檔來連線至遠端電腦,該管道會在 VS Code 與 MI 啟用偵錯工具後端可執行檔之間傳送標準輸入/輸出 (例如 gdb)。", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "輸入管道程式名稱的完整路徑,例如 '/usr/bin/ssh'。", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "目標機器的偵錯工具完整路徑,例如 /use/bin/gdb。", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "建立 C++ 檔案", "c_cpp.walkthrough.create.cpp.file.description": "[開啟](command:toSide:workbench.action.files.openFile) 或 [建立](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) C++ 檔案。務必使用 \".cpp\" 副檔名來儲存它,例如 \"helloworld.cpp\"。\n[建立 C++ 檔案](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "使用 C++ 專案開啟 C++ 檔案或資料夾。", - "c_cpp.walkthrough.command.prompt.title": "從 Developer Command Prompt for VS 中啟動", - "c_cpp.walkthrough.command.prompt.description": "使用 Microsoft Visual Studio C++ 編譯器時,C++ 延伸模組會要求您在 Developer Command Prompt for VS 中啟動 VS Code。請遵循右側的指示來重新啟動。\n[重新載入視窗](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "套用 Visual Studio 開發人員環境", + "c_cpp.walkthrough.command.prompt.description": "使用 Microsoft Visual Studio C++ 編譯器時,必須存在 Visual Studio 開發人員環境。\n\n請遵循右側的指示重新啟動,或按一下下方的按鈕。\n[設定開發人員環境](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "執行和偵錯您的 C++ 檔案", "c_cpp.walkthrough.run.debug.mac.description": "開啟您的 C++ 檔案,然後按一下編輯器右上角的執行按鈕,或在開啟檔案上時按 F5。選取 [clang++ - 建置及偵錯使用中的檔案] 以使用偵錯工具執行。", "c_cpp.walkthrough.run.debug.linux.description": "開啟您的 C++ 檔案,然後按一下編輯器右上角的執行按鈕,或在開啟檔案上時按 F5。選取 [g++ - 建置及偵錯使用中的檔案] 以使用偵錯工具執行。", diff --git a/Extension/i18n/cht/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/cht/src/Debugger/configurationProvider.i18n.json index 680195241..6487945c3 100644 --- a/Extension/i18n/cht/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/cht/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "preLaunchTask: {0}", "debugger.path.not.exists": "找不到 {0} 偵錯工具。已略過 {1} 的偵錯組態。", "build.and.debug.active.file": "建置及偵錯使用中的檔案", - "cl.exe.not.available": "{0} 僅限於從 {1} 執行 VS Code 時使用。", + "apply.dev.env": "套用開發人員環境", + "cl.exe.not.available": "{0} 需要 Visual Studio 開發人員環境。", + "update.dev.env": "更新開發人員環境", + "cancel": "取消", + "dev.env.not.applied": "由於未套用 Visual Studio 開發人員環境,原始程式碼無法建置。", + "dev.env.not.found": "由於找不到 Visual C++ 編譯器,原始程式碼無法建置。", "lldb.find.failed": "缺少 lldb-mi 可執行檔的相依性 '{0}'。", "lldb.search.paths": "已在下列位置中搜尋:", "lldb.install.help": "若要解決此問題,請透過 Apple App Store 安裝 XCode,或在終端機視窗中執行 '{0}' 以安裝 XCode 命令列工具。", diff --git a/Extension/i18n/cht/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/cht/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..2dda3380c --- /dev/null +++ b/Extension/i18n/cht/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "未提供內容", + "not.windows": "\"Set Visual Studio Developer Environment\" 命令僅可在 Windows 使用", + "error.no.vs": "找不到包含 C++ 編譯器的 Visual Studio 安裝", + "operation.cancelled": "作業已取消", + "no.hosts": "找不到主機", + "config.dev.env": "正在設定開發人員環境...", + "select.vs.install": "選取 Visual Studio 安裝", + "advanced.options": "進階選項...", + "advanced.options.desc": "選取特定主機和目標結構、工具集版本等。", + "select.toolset": "選取工具集版本", + "select.host.target": "選取主機和目標結構", + "something.wrong": "發生錯誤: {0}", + "dev.env.for": "{1} 的 {0} 開發人員環境", + "default.env": "{0} 的預設環境", + "host.target": "host = {0}, target = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/cht/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/cht/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index 27d110bdf..3c78dbb76 100644 --- a/Extension/i18n/cht/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/cht/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "在 Windows [開始] 功能表中輸入 \"{1}\",以開啟 {0}。選取 {2},這會自動瀏覽至您目前開啟的資料夾。", - "walkthrough.windows.press.f5": "在命令提示字元中輸入 \"{0}\",然後按 Enter。這應該會重新啟動 VS Code,並帶您回到此逐步解說。" + "walkthrough.windows.title.apply.dev.env": "套用 Visual Studio 開發人員環境", + "walkthrough.windows.dev.env.required": "Visual Studio C++ 編譯器需要設定數個環境變數,才能成功編譯你的程式碼。如果您將 Windows 機器與 Visual Studio C++ 編譯器一起使用,可以透過兩種方式確保環境已套用。", + "walkthrough.windows.do.one": " 您只需要執行下列其中一項:", + "walkthrough.windows.run.dev.command": "執行 {0} 命令", + "walkthrough.windows.set.dev.environment": "C/C++: 設定 Visual Studio 開發人員環境", + "walkthrough.windows.start.from.dev.command": "從 {0} 啟動 VS Code", + "walkthrough.windows.relaunch.command.prompt": "若要使用 {0} 重新啟動 VS Code", + "walkthrough.close.vscode": "關閉目前的 VS Code 執行個體。", + "walkthrough.open.command.prompt": "在 Windows [開始] 功能表中輸入 {1} 以開啟 {0},然後選取 {2}。", + "walkthrough.windows.press.f5": "在命令提示字元中輸入 {0},然後點擊 Enter。這應該會在相同的工作區中重新啟動 VS Code,並帶您回到此逐步解說。" } \ No newline at end of file diff --git a/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows.md.i18n.json b/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows.md.i18n.json index c45c6dd44..ca8308c26 100644 --- a/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows.md.i18n.json +++ b/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows.md.i18n.json @@ -16,6 +16,6 @@ "walkthrough.windows.link.install": "安裝", "walkthrough.windows.note1": "備註", "walkthrough.windows.note1.text": "您可以使用 Visual Studio Build Tools 中的 C++ 工具組以及 Visual Studio Code 來編譯、組建及驗證任何 C++ 程式碼基底,只要您也擁有有效的 Visual Studio 授權 (社群版、專業版或企業版),且您正積極開發該 C++ 程式碼基底。", - "walkthrough.windows.open.command.prompt": "在 Windows [開始] 功能表中輸入 '{1}',以開啟 {0}。", + "walkthrough.windows.open.command.prompt": "在 Windows [開始] 功能表中輸入 {1} 以開啟 {0}。", "walkthrough.windows.check.install": "將 {0} 輸入 {1},以檢查您的 Microsoft Visual C++ 安裝。畫面會顯示版本的著作權訊息以及基本的使用說明。" } \ No newline at end of file diff --git a/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json index 6bfedfef0..ce905e1e1 100644 --- a/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json +++ b/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "備註", "walkthrough.windows.note1.text": "您可以使用 Visual Studio Build Tools 中的 C++ 工具組以及 Visual Studio Code 來編譯、組建及驗證任何 C++ 程式碼基底,只要您也擁有有效的 Visual Studio 授權 (社群版、專業版或企業版),且您正積極開發該 C++ 程式碼基底。", "walkthrough.windows.verify.compiler": "驗證編譯器安裝", - "walkthrough.windows.open.command.prompt": "在 Windows [開始] 功能表中輸入 '{1}',以開啟 {0}。", + "walkthrough.windows.open.command.prompt": "在 Windows [開始] 功能表中輸入 {1} 以開啟 {0}。", "walkthrough.windows.check.install": "將 {0} 輸入 {1},以檢查您的 Microsoft Visual C++ 安裝。畫面會顯示版本的著作權訊息以及基本的使用說明。", "walkthrough.windows.other.compilers": "其他編譯器選項", "walkthrough.windows.text3": "如果您是以 Windows 的 Linux 為目標,請查看 {0}。或者,您也可以 {1}。", diff --git a/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json index 6bfedfef0..ce905e1e1 100644 --- a/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json +++ b/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "備註", "walkthrough.windows.note1.text": "您可以使用 Visual Studio Build Tools 中的 C++ 工具組以及 Visual Studio Code 來編譯、組建及驗證任何 C++ 程式碼基底,只要您也擁有有效的 Visual Studio 授權 (社群版、專業版或企業版),且您正積極開發該 C++ 程式碼基底。", "walkthrough.windows.verify.compiler": "驗證編譯器安裝", - "walkthrough.windows.open.command.prompt": "在 Windows [開始] 功能表中輸入 '{1}',以開啟 {0}。", + "walkthrough.windows.open.command.prompt": "在 Windows [開始] 功能表中輸入 {1} 以開啟 {0}。", "walkthrough.windows.check.install": "將 {0} 輸入 {1},以檢查您的 Microsoft Visual C++ 安裝。畫面會顯示版本的著作權訊息以及基本的使用說明。", "walkthrough.windows.other.compilers": "其他編譯器選項", "walkthrough.windows.text3": "如果您是以 Windows 的 Linux 為目標,請查看 {0}。或者,您也可以 {1}。", diff --git a/Extension/i18n/csy/package.i18n.json b/Extension/i18n/csy/package.i18n.json index 5e204875e..10ef66de0 100644 --- a/Extension/i18n/csy/package.i18n.json +++ b/Extension/i18n/csy/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Vymazat všechny problémy s analýzou kódu", "c_cpp.command.BuildAndDebugFile.title": "Ladit soubor C/C++", "c_cpp.command.BuildAndRunFile.title": "Spustit soubor C/C++", + "c_cpp.command.SetVsDeveloperEnvironment.title": "Nastavit prostředí vývojáře ve Visual Studiu", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "Vymazat prostředí vývojáře ve Visual Studiu", "c_cpp.command.AddDebugConfiguration.title": "Přidat konfiguraci ladění", "c_cpp.command.GenerateDoxygenComment.title": "Vygenerovat komentář Doxygen", "c_cpp.command.addSshTarget.title": "Přidat cíl SSH", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Cpptools: cíle SSH", "c_cpp.contributes.viewsWelcome.contents": "Další informace o launch.json najdete tady: [konfigurace C/C++ ladění](https://code.visualstudio.com/docs/cpp/launch-json-reference).", "c_cpp.configuration.debugShortcut.description": "Zobrazit tlačítko pro přehrávání Spustit a ladit a ozubené kolečko Přidat konfiguraci ladění v záhlaví editoru pro soubory C++.", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "Zapamatujte si poslední použité prostředí vývojáře ve Visual Studiu pro aktuální pracovní prostor. Toto nastavení platí jenom pro Windows.", "c_cpp.debuggers.pipeTransport.description": "Pokud je k dispozici, předá ladicímu programu informaci, aby se připojil ke vzdálenému počítači pomocí dalšího spustitelného souboru jako kanál, který bude přenášet standardní vstup a výstup mezi nástrojem VS Code a spustitelným souborem back-endu ladicího programu s podporou MI (třeba gdb).", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "zadejte absolutní cestu k názvu programu kanálu, například /usr/bin/ssh.", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "Úplná cesta k ladicímu programu na cílovém počítači, například /usr/bin/gdb", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "Vytvoření souboru C++", "c_cpp.walkthrough.create.cpp.file.description": "[Otevřete](command:toSide:workbench.action.files.openFile) nebo [vytvořte](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) soubor C++. Nezapomeňte ho uložit s příponou .cpp, například „helloworld.cpp“. \n[Vytvořte soubor C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Otevřete soubor C++ nebo složku s projektem C++.", - "c_cpp.walkthrough.command.prompt.title": "Spustit z Developer Command Prompt for VS", - "c_cpp.walkthrough.command.prompt.description": "Při použití kompilátoru Microsoft Visual Studio C++ vyžaduje rozšíření C++ spuštění VS Code z Developer Command Prompt for VS. Postupujte podle pokynů na pravé straně a spusťte ho znovu.\n[Znovu načíst okno](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "Apply the Visual Studio developer environment", + "c_cpp.walkthrough.command.prompt.description": "When using the Microsoft Visual Studio C++ compiler, the Visual Studio developer environment must be present.\r\n\r\nFollow the instructions on the right to relaunch or click the button below.\r\n[Set Developer Environment](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "Spuštění a ladění souboru C++", "c_cpp.walkthrough.run.debug.mac.description": "Otevřete soubor C++ a klikněte na tlačítko přehrát v pravém horním rohu editoru nebo stiskněte klávesu F5, když jste na souboru. Pokud chcete spustit s ladicím programem, vyberte clang++ – Sestavit a ladit aktivní soubor.", "c_cpp.walkthrough.run.debug.linux.description": "Otevřete soubor C++ a klikněte na tlačítko přehrát v pravém horním rohu editoru nebo stiskněte klávesu F5, když jste na souboru. Pokud chcete spustit s ladicím programem, vyberte g++ – Sestavit a ladit aktivní soubor.", diff --git a/Extension/i18n/csy/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/csy/src/Debugger/configurationProvider.i18n.json index 706d085dd..6c8a0c08d 100644 --- a/Extension/i18n/csy/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/csy/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "preLaunchTask: {0}", "debugger.path.not.exists": "Nepovedlo se najít ladicí program {0}. Konfigurace ladění pro {1} se ignoruje.", "build.and.debug.active.file": "sestavit a ladit aktivní soubor", - "cl.exe.not.available": "{0} se dá použít jenom v případě, že se VS Code spouští z nástroje {1}.", + "apply.dev.env": "Použít prostředí vývojáře", + "cl.exe.not.available": "{0} vyžaduje prostředí vývojáře ve Visual Studiu.", + "update.dev.env": "Aktualizovat prostředí vývojáře ve Visual Studiu", + "cancel": "Zrušit", + "dev.env.not.applied": "Zdrojový kód nelze sestavit, protože nebylo použito prostředí vývojáře ve Visual Studiu.", + "dev.env.not.found": "Zdrojový kód nelze sestavit, protože nebyl nalezen kompilátor Visual C++.", "lldb.find.failed": "Chybí závislosti {0} pro spustitelný soubor lldb-mi.", "lldb.search.paths": "Prohledáno:", "lldb.install.help": "Pokud chcete tento problém vyřešit, buď nainstalujte XCode přes obchod Apple App Store, nebo v okně terminálu spusťte {0}, aby se nainstalovaly nástroje příkazového řádku XCode.", diff --git a/Extension/i18n/csy/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/csy/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..7cf112306 --- /dev/null +++ b/Extension/i18n/csy/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "Nebyl zadán žádný kontext", + "not.windows": "Příkaz „Nastavit prostředí vývojáře ve Visual Studiu“ je dostupný jenom ve Windows", + "error.no.vs": "Instalace Visual Studia s kompilátorem C++ nebyla nalezena", + "operation.cancelled": "Operace byla zrušena", + "no.hosts": "Nenašli se žádní hostitelé", + "config.dev.env": "Konfiguruje se prostředí vývojáře...", + "select.vs.install": "Vyberte instalaci Visual Studia", + "advanced.options": "Pokročilé možnosti...", + "advanced.options.desc": "Vyberte konkrétního hostitele, cílovou architekturu, verzi sady nástrojů atd.", + "select.toolset": "Vyberte verzi sady nástrojů", + "select.host.target": "Vyberte hostitelskou a cílovou architekturu.", + "something.wrong": "Něco neproběhlo, jak mělo: {0}", + "dev.env.for": "Prostředí vývojáře {0} pro {1}", + "default.env": "Výchozí prostředí pro {0}", + "host.target": "hostitel = {0}, cíl = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/csy/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/csy/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index 6620c4386..2aeadfc8c 100644 --- a/Extension/i18n/csy/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/csy/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "Otevřete {0} zadáním „{1}“ v nabídce Start ve Windows. Vyberte {2}, čímž automaticky přejdete do aktuální otevřené složky.", - "walkthrough.windows.press.f5": "Do příkazového řádku zadejte „{0}“ a stiskněte Enter. Mělo by se znovu spustit VS Code a vrátit se k tomuto názorném postupu. " + "walkthrough.windows.title.apply.dev.env": "Použít prostředí vývojáře ve Visual Studiu", + "walkthrough.windows.dev.env.required": "Kompilátor Visual Studio C++ vyžaduje nastavení několika proměnných prostředí, aby bylo možné úspěšně zkompilovat váš kód. Pokud používáte počítač s Windows a kompilátorem Visual Studio C++, existují dva způsoby, jak zajistit použití prostředí.", + "walkthrough.windows.do.one": " Stačí udělat jenom jednu z těchto věcí:", + "walkthrough.windows.run.dev.command": "Spusťte příkaz {0}", + "walkthrough.windows.set.dev.environment": "C/C++: Nastavit prostředí vývojáře ve Visual Studiu", + "walkthrough.windows.start.from.dev.command": "Spusťte VS Code z {0}", + "walkthrough.windows.relaunch.command.prompt": "Opětovné spuštění VS Code pomocí {0}", + "walkthrough.close.vscode": "Zavřete aktuální instanci VS Code.", + "walkthrough.open.command.prompt": "Otevřete {0} tak, že zadáte {1} do nabídky Start systému Windows a pak vyberete {2}.", + "walkthrough.windows.press.f5": "Do příkazového řádku zadejte {0} a stiskněte Enter. Tím by se měl VS Code znovu spustit ve stejném pracovním prostoru a vrátit vás k tomuto názornému postupu." } \ No newline at end of file diff --git a/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows.md.i18n.json b/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows.md.i18n.json index c68d82bb5..0d5e1dc1a 100644 --- a/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows.md.i18n.json +++ b/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows.md.i18n.json @@ -16,6 +16,6 @@ "walkthrough.windows.link.install": "Nainstalovat", "walkthrough.windows.note1": "Poznámka", "walkthrough.windows.note1.text": "Můžete použít sadu nástrojů C++ z Visual Studio Build Tools spolu s Visual Studio Code ke kompilaci, sestavení a ověření jakékoli kódové báze C++, pokud máte také platnou licenci Visual Studio (buď Community, Pro nebo Enterprise), kterou aktivně používáte k vývoji kódové báze C++.", - "walkthrough.windows.open.command.prompt": "Otevřete ho {0} zadáním '{1}' v nabídce Start ve Windows.", + "walkthrough.windows.open.command.prompt": "Otevřete {0} zadáním {1} v nabídce Start ve Windows.", "walkthrough.windows.check.install": "Zkontrolujte instalaci MSVC zadáním {0} do nástroje {1}. Měla by se zobrazit zpráva o autorských právech v popisu verze a základního použití." } \ No newline at end of file diff --git a/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json index fff689460..2cd36a1fa 100644 --- a/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json +++ b/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Poznámka", "walkthrough.windows.note1.text": "Můžete použít sadu nástrojů C++ z Visual Studio Build Tools spolu s Visual Studio Code ke kompilaci, sestavení a ověření jakékoli kódové báze C++, pokud máte také platnou licenci Visual Studio (buď Community, Pro nebo Enterprise), kterou aktivně používáte k vývoji kódové báze C++.", "walkthrough.windows.verify.compiler": "Ověřování instalace kompilátoru", - "walkthrough.windows.open.command.prompt": "Otevřete ho {0} zadáním '{1}' v nabídce Start ve Windows.", + "walkthrough.windows.open.command.prompt": "Otevřete {0} zadáním {1} v nabídce Start ve Windows.", "walkthrough.windows.check.install": "Zkontrolujte instalaci MSVC zadáním {0} do nástroje {1}. Měla by se zobrazit zpráva o autorských právech v popisu verze a základního použití.", "walkthrough.windows.other.compilers": "Další možnosti kompilátoru", "walkthrough.windows.text3": "Pokud cílíte na Linux z Windows, podívejte se na {0}. Nebo můžete {1}.", diff --git a/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json index fff689460..2cd36a1fa 100644 --- a/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json +++ b/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Poznámka", "walkthrough.windows.note1.text": "Můžete použít sadu nástrojů C++ z Visual Studio Build Tools spolu s Visual Studio Code ke kompilaci, sestavení a ověření jakékoli kódové báze C++, pokud máte také platnou licenci Visual Studio (buď Community, Pro nebo Enterprise), kterou aktivně používáte k vývoji kódové báze C++.", "walkthrough.windows.verify.compiler": "Ověřování instalace kompilátoru", - "walkthrough.windows.open.command.prompt": "Otevřete ho {0} zadáním '{1}' v nabídce Start ve Windows.", + "walkthrough.windows.open.command.prompt": "Otevřete {0} zadáním {1} v nabídce Start ve Windows.", "walkthrough.windows.check.install": "Zkontrolujte instalaci MSVC zadáním {0} do nástroje {1}. Měla by se zobrazit zpráva o autorských právech v popisu verze a základního použití.", "walkthrough.windows.other.compilers": "Další možnosti kompilátoru", "walkthrough.windows.text3": "Pokud cílíte na Linux z Windows, podívejte se na {0}. Nebo můžete {1}.", diff --git a/Extension/i18n/deu/package.i18n.json b/Extension/i18n/deu/package.i18n.json index e1598361c..6cbdba63c 100644 --- a/Extension/i18n/deu/package.i18n.json +++ b/Extension/i18n/deu/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Alle Codeanalyseprobleme löschen", "c_cpp.command.BuildAndDebugFile.title": "C/C++-Datei debuggen", "c_cpp.command.BuildAndRunFile.title": "C/C++-Datei ausführen", + "c_cpp.command.SetVsDeveloperEnvironment.title": "Visual Studio-Entwicklungsumgebung festlegen", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "Visual Studio-Entwicklungsumgebung löschen", "c_cpp.command.AddDebugConfiguration.title": "Debugkonfiguration hinzufügen", "c_cpp.command.GenerateDoxygenComment.title": "Doxygenkommentar generieren", "c_cpp.command.addSshTarget.title": "SSH-Ziel hinzufügen", @@ -108,7 +110,7 @@ "c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "Positionieren Sie goto-Bezeichnungen ganz links im Code.", "c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "goto-Bezeichnungen werden nicht formatiert.", "c_cpp.configuration.vcFormat.indent.preprocessor.description": "Position der Präprozessordirektiven.", - "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Präprozessordirektiven werden links neben dem aktuellen Codeeinzug um den in der Einstellung `#editor.tabSize#` angegebenen Betrag positioniert.", + "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Präprozessordirektiven werden um den in der Einstellung `#editor.tabSize#` angegebenen Wert links neben dem aktuellen Codeeinzug positioniert.", "c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "Präprozessoranweisungen werden am linken Rand des Codes positioniert.", "c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "Präprozessoranweisungen werden nicht formatiert.", "c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "Zugriffsspezifizierer werden relativ zu Klassen- oder Strukturdefinitionen um den in der Einstellung `#editor.tabSize#` angegebenen Wert eingerückt.", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Cpptools: SSH-Ziele", "c_cpp.contributes.viewsWelcome.contents": "Weitere Informationen zu launch.json finden Sie unter [Konfigurieren des C/C++-Debuggings](https://code.visualstudio.com/docs/cpp/launch-json-reference).", "c_cpp.configuration.debugShortcut.description": "Zeigen Sie die Wiedergabeschaltfläche \"Ausführen und Debuggen\" und das Zahnrad \"Debugkonfiguration hinzufügen\" in der Titelleiste des Editors für C++-Dateien an.", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "Speichern Sie die zuletzt verwendete Visual Studio-Entwicklungsumgebung für den aktuellen Arbeitsbereich. Diese Einstellung gilt nur für Windows.", "c_cpp.debuggers.pipeTransport.description": "Falls angegeben, weist diese Option den Debugger an, eine Verbindung mit einem Remotecomputer mithilfe einer anderen ausführbaren Datei als Pipe herzustellen, die Standardeingaben/-ausgaben zwischen VS Code und der ausführbaren Back-End-Datei für den MI-fähigen Debugger weiterleitet (z. B. gdb).", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "Geben Sie den vollqualifizierten Pfad für den Pipeprogrammnamen ein, z. B. `/usr/bin/ssh`.", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "Der vollständige Pfad zum Debugger auf dem Zielcomputer, z. B. \"/usr/bin/gdb\".", @@ -417,7 +420,7 @@ "c_cpp.debuggers.logging.category.warning.description": "Protokolle, die ein ungewöhnliches oder unerwartetes Ereignis im Anwendungsfluss hervorheben, aber ansonsten nicht dazu führen, dass die Ausführung der Anwendung beendet wird.", "c_cpp.debuggers.logging.category.error.description": "Protokolle, die hervorheben, wenn der aktuelle Ausführungsfluss aufgrund eines Fehlers beendet wird. Diese sollten auf einen Fehler in der aktuellen Aktivität und nicht auf einen anwendungsweiten Fehler hinweisen.", "c_cpp.debuggers.logging.category.none.description": "Wird nicht zum Schreiben von Protokollmeldungen verwendet. Gibt an, dass eine Protokollierungskategorie keine Meldungen schreiben soll.", - "c_cpp.walkthrough.title": "Los geht's mit C++-Entwicklung", + "c_cpp.walkthrough.title": "Erste Schritte mit C++-Entwicklung", "c_cpp.walkthrough.description": "Tauchen Sie ein in die umfassende C++-Entwicklungserfahrung VS Code.", "c_cpp.walkthrough.set.up.title": "C++-Umgebung einrichten", "c_cpp.walkthrough.activating.description": "Die C++-Erweiterung wird aktiviert, um zu bestimmen, ob Ihre C++-Umgebung eingerichtet wurde.\nErweiterung wird aktiviert...", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "C++-Datei erstellen", "c_cpp.walkthrough.create.cpp.file.description": "[Öffnen](command:toSide:workbench.action.files.openFile) oder [erstellen](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) eine C++-Datei. Speichern Sie die Datei unbedingt mit der Erweiterung \".cpp\" extension, z. B. \"helloworld.cpp\". \n[Erstellen Sie eine C++-Datei](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Öffnen Sie eine C++-Datei oder einen Ordner mit einem C++-Projekt.", - "c_cpp.walkthrough.command.prompt.title": "Aus Developer Command Prompt for VS starten", - "c_cpp.walkthrough.command.prompt.description": "Bei Verwendung des Microsoft Visual Studio C++-Compilers erfordert die C++-Erweiterung, dass Sie VS Code aus Developer Command Prompt for VS starten. Befolgen Sie die Anweisungen auf der rechten Seite, um den Neustart zu starten.\n[Reload Window](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "Anwenden der Visual Studio-Entwicklungsumgebung", + "c_cpp.walkthrough.command.prompt.description": "Bei Verwendung des Microsoft Visual Studio C++-Compilers muss die Visual Studio-Entwicklungsumgebung vorhanden sein.\n\nBefolgen Sie die Anweisungen auf der rechten Seite, um den Neustart auszuführen, oder klicken Sie auf die Schaltfläche unten.\n[Entwicklungsumgebung festlegen](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "Ausführen und Debuggen Ihrer C++-Datei", "c_cpp.walkthrough.run.debug.mac.description": "Öffnen Sie Ihre C++-Datei, und klicken Sie in der oberen rechten Ecke des Editors auf die Wiedergabeschaltfläche, oder drücken Sie F5, wenn Sie die Datei verwenden. Wählen Sie \"clang++ – Aktive Datei erstellen und debuggen\" aus, die mit dem Debugger ausgeführt werden soll.", "c_cpp.walkthrough.run.debug.linux.description": "Öffnen Sie Ihre C++-Datei, und klicken Sie in der oberen rechten Ecke des Editors auf die Wiedergabeschaltfläche, oder drücken Sie F5, wenn Sie die Datei verwenden. Wählen Sie \"g++ – Aktive Datei erstellen und debuggen\" aus, die mit dem Debugger ausgeführt werden soll.", diff --git a/Extension/i18n/deu/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/deu/src/Debugger/configurationProvider.i18n.json index 9b3e27e7f..fdea723b0 100644 --- a/Extension/i18n/deu/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/deu/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "preLaunchTask: {0}", "debugger.path.not.exists": "Der {0}-Debugger wurde nicht gefunden. Die Debugkonfiguration für {1} wird ignoriert.", "build.and.debug.active.file": "Aktive Datei erstellen und debuggen", - "cl.exe.not.available": "{0} kann nur verwendet werden, wenn VS Code von {1} ausgeführt wird.", + "apply.dev.env": "Entwicklungsumgebung anwenden", + "cl.exe.not.available": "{0} erfordert die Visual Studio-Entwicklungsumgebung.", + "update.dev.env": "Entwicklungsumgebung aktualisieren", + "cancel": "Abbrechen", + "dev.env.not.applied": "Der Quellcode konnte nicht erstellt werden, da die Visual Studio-Entwicklungsumgebung nicht angewendet wurde.", + "dev.env.not.found": "Der Quellcode konnte nicht erstellt werden, da der Visual C++-Compiler nicht gefunden wurde.", "lldb.find.failed": "Fehlende Abhängigkeit \"{0}\" für ausführbare LLDB-MI-Datei.", "lldb.search.paths": "Gesucht in:", "lldb.install.help": "Um dieses Problem zu beheben, installieren Sie entweder XCode über den Apple App Store, oder installieren Sie die XCode-Befehlszeilentools, indem Sie \"{0}\" in einem Terminalfenster ausführen.", diff --git a/Extension/i18n/deu/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/deu/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..cadc2525e --- /dev/null +++ b/Extension/i18n/deu/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "Es wurde kein Kontext angegeben", + "not.windows": "Der Befehl „Visual Studio-Entwicklungsumgebung festlegen“ ist nur unter Windows verfügbar", + "error.no.vs": "Es wurde keine Visual Studio-Installation mit dem C++-Compiler gefunden", + "operation.cancelled": "Der Vorgang wurde abgebrochen", + "no.hosts": "Keine Hosts gefunden", + "config.dev.env": "Entwicklungsumgebung wird konfiguriert...", + "select.vs.install": "Visual Studio-Installation auswählen", + "advanced.options": "Erweiterte Optionen...", + "advanced.options.desc": "Wählen Sie eine bestimmte Host- und Zielarchitektur, Toolsetversion usw. aus.", + "select.toolset": "Toolsetversion auswählen", + "select.host.target": "Host- und Zielarchitektur auswählen", + "something.wrong": "Es ist ein Problem aufgetreten: {0}", + "dev.env.for": "{0}-Entwicklungsumgebung für {1}", + "default.env": "Standardumgebung für {0}", + "host.target": "Host = {0}, Ziel = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/deu/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/deu/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index ae200631a..d6a0217bc 100644 --- a/Extension/i18n/deu/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/deu/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "Öffnen Sie die {0}, indem Sie im Windows-Startmenü „{1}“ eingeben. Wählen Sie {2} aus, das Sie automatisch zu Ihrem aktuell geöffneten Ordner navigiert.", - "walkthrough.windows.press.f5": "Geben Sie „{0}“ in die Eingabeaufforderung ein, und drücken Sie die EINGABETASTE. Dies sollte VS Code neu starten und Sie zu dieser exemplarischen Vorgehensweise zurückkehren. " + "walkthrough.windows.title.apply.dev.env": "Anwenden der Visual Studio-Entwicklungsumgebung", + "walkthrough.windows.dev.env.required": "Der Visual Studio C++-Compiler erfordert, dass mehrere Umgebungsvariablen festgelegt werden, um Ihren Code erfolgreich kompilieren zu können. Wenn Sie einen Windows-Computer mit dem Visual Studio C++-Compiler verwenden, gibt es zwei Möglichkeiten, wie Sie sicherstellen können, dass die Umgebung angewendet wird.", + "walkthrough.windows.do.one": " Sie müssen nur eine der folgenden Aktionen ausführen:", + "walkthrough.windows.run.dev.command": "Befehl „{0}“ ausführen", + "walkthrough.windows.set.dev.environment": "C/C++: Visual Studio-Entwicklungsumgebung festlegen", + "walkthrough.windows.start.from.dev.command": "VS Code über die {0} starten", + "walkthrough.windows.relaunch.command.prompt": "So starten Sie VS Code mithilfe der {0}", + "walkthrough.close.vscode": "Schließen Sie die aktuelle Instanz von VS Code.", + "walkthrough.open.command.prompt": "Öffnen Sie die {0}, indem Sie im Windows-Startmenü „{1}“ eingeben, und wählen Sie dann {2} aus.", + "walkthrough.windows.press.f5": "Geben Sie „{0}“ in die Eingabeaufforderung ein, und drücken Sie die EINGABETASTE. Dadurch sollte VS Code im selben Arbeitsbereich neu gestartet werden, und Sie sollten zu dieser exemplarischen Vorgehensweise zurückkehren." } \ No newline at end of file diff --git a/Extension/i18n/esn/package.i18n.json b/Extension/i18n/esn/package.i18n.json index b89f063fb..434c55c16 100644 --- a/Extension/i18n/esn/package.i18n.json +++ b/Extension/i18n/esn/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Borrar todos los problemas de análisis de código", "c_cpp.command.BuildAndDebugFile.title": "Depurar archivo C/C++", "c_cpp.command.BuildAndRunFile.title": "Ejecutar archivo C/C++", + "c_cpp.command.SetVsDeveloperEnvironment.title": "Configurar el entorno de desarrollador de Visual Studio", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "Borrar el entorno de desarrollador de Visual Studio", "c_cpp.command.AddDebugConfiguration.title": "Agregar configuración de depuración", "c_cpp.command.GenerateDoxygenComment.title": "Generar comentario de Doxygen", "c_cpp.command.addSshTarget.title": "Agregar destino SSH", @@ -104,11 +106,11 @@ "c_cpp.configuration.vcFormat.indent.caseContentsWhenBlock.markdownDescription": "Se aplica sangría a las llaves siguiendo una instrucción case, según lo especificado en la configuración de `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.lambdaBracesWhenParameter.markdownDescription": "Se aplica sangría a las llaves de expresiones lambda usadas como parámetros de función en relación con el inicio de la instrucción, según lo especificado en la configuración de `#editor.tabSize#`", "c_cpp.configuration.vcFormat.indent.gotoLabels.description": "La posición de las etiquetas goto.", - "c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Coloca las etiquetas goto a la izquierda de la sangría de código actual, según la cantidad especificada en la configuración de `#editor.tabSize#`.", + "c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Coloque las etiquetas goto a la izquierda de la sangría de código actual según la cantidad especificada en la configuración de `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "Coloca las etiquetas goto en el borde izquierdo del código.", "c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "Las etiquetas Goto no se formatearán.", "c_cpp.configuration.vcFormat.indent.preprocessor.description": "La posición de las directivas de preprocesador.", - "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Las directivas de preprocesador se colocan a la izquierda de la sangría de código actual, según la cantidad especificada en la configuración de `#editor.tabSize#`.", + "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Las directivas de preprocesador se colocan a la izquierda de la sangría de código actual según la cantidad especificada en la configuración de `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "Las directivas de preprocesador se colocan en el borde izquierdo del código.", "c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "Las directivas de preprocesador no se formatearán.", "c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "Se aplica sangría a los especificadores de acceso en relación con las definiciones de clase o estructura según la cantidad especificada en el valor `#editor.tabSize#`.", @@ -183,7 +185,7 @@ "c_cpp.configuration.intelliSenseEngine.default.description": "Proporciona resultados que reconocen el contexto a través de un proceso de IntelliSense independiente.", "c_cpp.configuration.intelliSenseEngine.tagParser.description": "Proporciona resultados \"fuzzy\" que no tienen en cuenta el contexto.", "c_cpp.configuration.intelliSenseEngine.disabled.description": "Desactiva las características del servicio de lenguaje C/C++.", - "c_cpp.configuration.autocomplete.markdownDescription": "Controla el proveedor de finalización automática. Si está `disabled` y desea completarse con palabras, también tendrá que establecer `\"[cpp]\": {\"editor.wordBasedSuggestions\": }` (y de forma similar para los lenguajes `c` y `cuda-cpp`).", + "c_cpp.configuration.autocomplete.markdownDescription": "Controla el proveedor de finalización automática. Si está `disabled` y desea completarse con palabras, también tendrá que establecer `\"[cpp]\": {\"editor.wordBasedSuggestions\": }` (y de forma similar para los lenguajes `c` y `cuda-cpp` languages).", "c_cpp.configuration.autocomplete.default.description": "Usa el motor de IntelliSense activo.", "c_cpp.configuration.autocomplete.disabled.description": "Usa la finalización basada en palabras proporcionada por Visual Studio Code.", "c_cpp.configuration.errorSquiggles.description": "Controla si los posibles errores de compilación detectados por el motor de IntelliSense se notificarán al editor. También controla si se notifican advertencias de análisis de código si no se encuentran las inclusiones. El motor del analizador de etiquetas omite esta configuración.", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Cpptools: destinos SSH", "c_cpp.contributes.viewsWelcome.contents": "Para obtener más información sobre launch.json, vea [Configuración de depuración de C/C++](https://code.visualstudio.com/docs/cpp/launch-json-reference).", "c_cpp.configuration.debugShortcut.description": "Mostrar el botón de reproducción \"Ejecutar y depurar\" y el engranaje \"Agregar configuración de depuración\" en la barra de título del editor para archivos de C++.", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "Recordar el último entorno de desarrollo de Visual Studio utilizado para el área de trabajo actual. Esta configuración solo es aplicable para Windows.", "c_cpp.debuggers.pipeTransport.description": "Cuando se especifica, indica al depurador que se conecte a un equipo remoto usando otro archivo ejecutable como canalización que retransmitirá la entrada o la salida estándar entre VS Code y el archivo ejecutable del back-end del depurador habilitado para MI (por ejemplo, gdb).", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "escriba la ruta de acceso absoluta para el nombre del programa de canalización; por ejemplo, \"/usr/bin/ssh\".", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "Ruta de acceso completa al depurador en la máquina de destino. Por ejemplo, /usr/bin/gdb.", @@ -417,9 +420,9 @@ "c_cpp.debuggers.logging.category.warning.description": "Registros que resaltan un evento anómalo o inesperado en el flujo de la aplicación, pero que no hacen que se detenga la ejecución de la aplicación de otro modo.", "c_cpp.debuggers.logging.category.error.description": "Registros que resaltan cuándo se detiene el flujo de ejecución actual debido a un error. Esto debe indicar un error en la actividad actual, no un error en toda la aplicación.", "c_cpp.debuggers.logging.category.none.description": "No se usa para escribir mensajes de registro. Especifica que una categoría de registro no debe escribir ningún mensaje.", - "c_cpp.walkthrough.title": "Introducción al desarrollo de C++", + "c_cpp.walkthrough.title": "Empiece a desarrollar en C++", "c_cpp.walkthrough.description": "Sumérgete en la enriquecida experiencia de desarrollo de C++ de VS Code.", - "c_cpp.walkthrough.set.up.title": "Configurar el entorno de C++", + "c_cpp.walkthrough.set.up.title": "Configure su entorno C++", "c_cpp.walkthrough.activating.description": "Activando la extensión de C++ para determinar si se ha configurado el entorno de C++.\nActivando extensión...", "c_cpp.walkthrough.no.compilers.windows.description": "No pudimos encontrar un compilador de C++ en el equipo, que es necesario para usar la extensión de C++. Siga las instrucciones de la derecha para instalar una y, a continuación, haga clic en “Buscar mi nuevo compilador”.\n[Buscar mi nuevo compilador](command:C_Cpp.RescanCompilers?%22walkthrough%22)", "c_cpp.walkthrough.no.compilers.description": "No pudimos encontrar un compilador de C++ en el equipo, que es necesario para usar la extensión de C++. Seleccione “Instalar un compilador de C++” para tener un compilador instalado automáticamente o siga las instrucciones de la derecha para instalar uno y, a continuación, haga clic en “Buscar mi nuevo compilador”.\n[Instalar un compilador de C++](command:C_Cpp.InstallCompiler?%22walkthrough%22)\n[Buscar mi nuevo compilador](command:C_Cpp.RescanCompilers?%22walkthrough%22)", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "Crear un archivo de C++", "c_cpp.walkthrough.create.cpp.file.description": "[Abrir](command:toSide:workbench.action.files.openFile) o [crear](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un archivo de C++. Asegúrese de guardarlo con la extensión \".cpp\", como \"helloworld.cpp\". \n[Crear un archivo de C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Abre un archivo de C++ o una carpeta con un proyecto de C++.", - "c_cpp.walkthrough.command.prompt.title": "Iniciar desde Developer Command Prompt for VS", - "c_cpp.walkthrough.command.prompt.description": "Al usar el compilador de Microsoft Visual Studio C++, la extensión de C++ requiere que inicie VS Code desde Developer Command Prompt for VS. Sigue las instrucciones de la derecha para volver a iniciar.\n[Volver a cargar ventana](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "Aplicar el entorno de desarrollo de Visual Studio", + "c_cpp.walkthrough.command.prompt.description": "Cuando se utiliza el compilador Microsoft Visual Studio C++, debe estar presente el entorno de desarrollo Visual Studio.\n\nSiga las instrucciones de la derecha para reiniciar o haga clic en el botón de abajo.\n[Configurar el entorno de desarrollador](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "Ejecución y depuración del archivo de C++", "c_cpp.walkthrough.run.debug.mac.description": "Abre el archivo de C++ y haz clic en el botón reproducir de la esquina superior derecha del editor o presiona F5 cuando estés en el archivo. Selecciona \"clang++ - Compilar y depurar archivo activo\" para ejecutarlo con el depurador.", "c_cpp.walkthrough.run.debug.linux.description": "Abre el archivo de C++ y haz clic en el botón reproducir de la esquina superior derecha del editor o presiona F5 cuando estés en el archivo. Selecciona \"g++ - Compilar y depurar archivo activo\" para ejecutarlo con el depurador.", diff --git a/Extension/i18n/esn/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/esn/src/Debugger/configurationProvider.i18n.json index 13e70cad7..193af7314 100644 --- a/Extension/i18n/esn/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/esn/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "preLaunchTask: {0}", "debugger.path.not.exists": "No se encuentra el depurador {0}. Se ha omitido la configuración de depuración de {1}.", "build.and.debug.active.file": "Compilar y depurar el archivo activo", - "cl.exe.not.available": "{0} solo se puede usar cuando VS Code se ejecuta desde {1}.", + "apply.dev.env": "Aplicar entorno de desarrollador", + "cl.exe.not.available": "{0} requiere el entorno de desarrollado Visual Studio.", + "update.dev.env": "Actualizar entorno de desarrollador", + "cancel": "Cancelar", + "dev.env.not.applied": "No se pudo compilar el código fuente porque no se aplicó el entorno de desarrollo Visual Studio.", + "dev.env.not.found": "No se pudo compilar el código fuente porque no se encontró el compilador Visual C++.", "lldb.find.failed": "Falta la dependencia \"{0}\" para el ejecutable lldb-mi.", "lldb.search.paths": "Buscado en:", "lldb.install.help": "Para resolver este problema, instale XCode mediante App Store de Apple o instale las herramientas de línea de comandos de XCode ejecutando \"{0}\" en una ventana de terminal.", diff --git a/Extension/i18n/esn/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/esn/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..658176a8f --- /dev/null +++ b/Extension/i18n/esn/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "No se proporcionó ningún contexto", + "not.windows": "El comando \"Configurar el entorno de desarrollador de Visual Studio\" solo está disponible en Windows", + "error.no.vs": "No se encontró una instalación de Visual Studio con el compilador C++", + "operation.cancelled": "Se canceló la operación", + "no.hosts": "No se han encontrado hosts", + "config.dev.env": "Configurando el entorno de desarrollador...", + "select.vs.install": "Seleccione una instalación de Visual Studio", + "advanced.options": "Opciones avanzadas...", + "advanced.options.desc": "Seleccione un host específico y la arquitectura de destino, la versión del conjunto de herramientas, etc.", + "select.toolset": "Seleccionar una versión del conjunto de herramientas", + "select.host.target": "Seleccione un host y una arquitectura de destino", + "something.wrong": "Algo ha ido mal: {0}", + "dev.env.for": "{0} entorno de desarrollador para {1}", + "default.env": "Entorno predeterminado para {0}", + "host.target": "host = {0}, destino = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/esn/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/esn/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index fdb0e1947..f2560f952 100644 --- a/Extension/i18n/esn/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/esn/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "Abra {0} escribiendo '{1}' en el menú Inicio de Windows. Selecciona el {2}, que irá automáticamente a la carpeta abierta actual.", - "walkthrough.windows.press.f5": "Escriba '{0}' en el símbolo del sistema y pulse Entrar. Esto debería reiniciar VS Code y hacerte volver a este tutorial. " + "walkthrough.windows.title.apply.dev.env": "Aplicar el entorno de desarrollo de Visual Studio", + "walkthrough.windows.dev.env.required": "El compilador Visual Studio C++ requiere que se configuren varias variables de entorno para poder compilar correctamente el código. Si utiliza un equipo Windows con el compilador Visual Studio C++, hay dos formas de asegurarse de que se aplique el entorno.", + "walkthrough.windows.do.one": " Solo tiene que realizar una de las siguientes acciones:", + "walkthrough.windows.run.dev.command": "Ejecute el comando {0}", + "walkthrough.windows.set.dev.environment": "C/C++: Configurar el entorno de desarrollador de Visual Studio", + "walkthrough.windows.start.from.dev.command": "Inicie el VS Code desde el {0}", + "walkthrough.windows.relaunch.command.prompt": "Para volver a iniciar VS Code con el {0}", + "walkthrough.close.vscode": "Cierre la instancia actual de VS Code.", + "walkthrough.open.command.prompt": "Abra el {0} escribiendo {1} en el menú Inicio de Windows, y luego seleccione el {2}.", + "walkthrough.windows.press.f5": "Escriba {0} en el símbolo del sistema y pulse Intro. Esto debería reiniciar VS Code en la misma área de trabajo y llevarlo de vuelta a este tutorial." } \ No newline at end of file diff --git a/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows.md.i18n.json b/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows.md.i18n.json index 87bf05f5f..96c268c5f 100644 --- a/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows.md.i18n.json +++ b/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows.md.i18n.json @@ -16,6 +16,6 @@ "walkthrough.windows.link.install": "Instalar", "walkthrough.windows.note1": "Nota", "walkthrough.windows.note1.text": "Puede usar el conjunto de herramientas de C++ de Visual Studio Build Tools junto con Visual Studio Code para compilar y comprobar cualquier código base de C++, siempre que también tenga una licencia de Visual Studio válida (Community, Pro o Enterprise) que esté usando de manera activa para desarrollar ese código base de C++.", - "walkthrough.windows.open.command.prompt": "Abra {0} escribiendo '{1}' en el menú Inicio de Windows.", + "walkthrough.windows.open.command.prompt": "Abra el {0} escribiendo {1} en el menú Inicio de Windows.", "walkthrough.windows.check.install": "Compruebe la instalación de MSVC escribiendo {0} en {1}. Debería ver un mensaje de copyright con la versión y la descripción de uso básica." } \ No newline at end of file diff --git a/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json index 3a4c35079..af10336f5 100644 --- a/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json +++ b/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Nota", "walkthrough.windows.note1.text": "Puede usar el conjunto de herramientas de C++ de Visual Studio Build Tools junto con Visual Studio Code para compilar y comprobar cualquier código base de C++, siempre que también tenga una licencia de Visual Studio válida (Community, Pro o Enterprise) que esté usando de manera activa para desarrollar ese código base de C++.", "walkthrough.windows.verify.compiler": "Comprobación de la instalación del compilador", - "walkthrough.windows.open.command.prompt": "Abra {0} escribiendo '{1}' en el menú Inicio de Windows.", + "walkthrough.windows.open.command.prompt": "Abra el {0} escribiendo {1} en el menú Inicio de Windows.", "walkthrough.windows.check.install": "Compruebe la instalación de MSVC escribiendo {0} en {1}. Debería ver un mensaje de copyright con la versión y la descripción de uso básica.", "walkthrough.windows.other.compilers": "Otras opciones del compilador", "walkthrough.windows.text3": "Si su objetivo es Linux desde Windows, consulte {0}. O bien, consulte {1}.", diff --git a/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json index 3a4c35079..af10336f5 100644 --- a/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json +++ b/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Nota", "walkthrough.windows.note1.text": "Puede usar el conjunto de herramientas de C++ de Visual Studio Build Tools junto con Visual Studio Code para compilar y comprobar cualquier código base de C++, siempre que también tenga una licencia de Visual Studio válida (Community, Pro o Enterprise) que esté usando de manera activa para desarrollar ese código base de C++.", "walkthrough.windows.verify.compiler": "Comprobación de la instalación del compilador", - "walkthrough.windows.open.command.prompt": "Abra {0} escribiendo '{1}' en el menú Inicio de Windows.", + "walkthrough.windows.open.command.prompt": "Abra el {0} escribiendo {1} en el menú Inicio de Windows.", "walkthrough.windows.check.install": "Compruebe la instalación de MSVC escribiendo {0} en {1}. Debería ver un mensaje de copyright con la versión y la descripción de uso básica.", "walkthrough.windows.other.compilers": "Otras opciones del compilador", "walkthrough.windows.text3": "Si su objetivo es Linux desde Windows, consulte {0}. O bien, consulte {1}.", diff --git a/Extension/i18n/fra/package.i18n.json b/Extension/i18n/fra/package.i18n.json index bdbf842e0..ef5b77152 100644 --- a/Extension/i18n/fra/package.i18n.json +++ b/Extension/i18n/fra/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Effacer tous les problèmes d’analyse du code", "c_cpp.command.BuildAndDebugFile.title": "Déboguer le fichier C/C++", "c_cpp.command.BuildAndRunFile.title": "Exécuter le fichier C/C++", + "c_cpp.command.SetVsDeveloperEnvironment.title": "Définir l’environnement de développeur Visual Studio", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "Effacer l’environnement de développeur Visual Studio", "c_cpp.command.AddDebugConfiguration.title": "Ajouter une configuration de débogage", "c_cpp.command.GenerateDoxygenComment.title": "Générer un commentaire Doxygen", "c_cpp.command.addSshTarget.title": "Ajouter une cible SSH", @@ -104,11 +106,11 @@ "c_cpp.configuration.vcFormat.indent.caseContentsWhenBlock.markdownDescription": "Mettez en retrait les accolades qui suivent une instruction case en fonction de la quantité spécifiée dans le paramètre `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.lambdaBracesWhenParameter.markdownDescription": "Mettre en retrait les accolades des expressions lambda utilisées comme paramètres de fonction par rapport au début de l’instruction par la quantité spécifiée dans le paramètre `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.gotoLabels.description": "Position des étiquettes goto.", - "c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Positionne les étiquettes goto à gauche de l'indentation actuelle du code, de la quantité spécifiée dans le paramètre `#editor.tabSize#`.", + "c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Positionne les étiquettes goto à gauche de la mise en retrait actuelle du code, de la valeur spécifiée dans le paramètre `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "Placez les étiquettes goto sur le bord le plus à gauche du code.", "c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "Les étiquettes goto ne sont pas mises en forme.", "c_cpp.configuration.vcFormat.indent.preprocessor.description": "Position des directives de préprocesseur.", - "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Les directives de préprocesseur sont positionnées à gauche de la mise en retrait du code actuel, selon la quantité spécifiée dans le paramètre `#editor.tabSize#`.", + "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Les directives de préprocesseur sont positionnées à gauche de la mise en retrait actuelle du code, selon la valeur spécifiée dans le paramètre `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "Les directives de préprocesseur sont placées sur le bord le plus à gauche du code.", "c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "Les directives de préprocesseur ne sont pas mises en forme.", "c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "Les spécificateurs d'accès sont indentés par rapport aux définitions de classes ou de structures de la quantité spécifiée dans le paramètre `#editor.tabSize#`.", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Cpptools : cibles SSH", "c_cpp.contributes.viewsWelcome.contents": "Pour en savoir plus sur launch.json, consultez [Configuration du débogage C/C++](https://code.visualstudio.com/docs/cpp/launch-json-reference).", "c_cpp.configuration.debugShortcut.description": "Afficher le bouton de lecture « Exécuter et déboguer » et l’engrenage « Ajouter une configuration de débogage » dans la barre de titre de l’éditeur pour les fichiers C++.", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "Mémoriser le dernier environnement de développement Visual Studio utilisé pour l’espace de travail actuel. Ce paramètre s’applique uniquement à Windows.", "c_cpp.debuggers.pipeTransport.description": "Quand ce paramètre est présent, indique au débogueur de se connecter à un ordinateur distant en se servant d'un autre exécutable comme canal de relais d'entrée/de sortie standard entre VS Code et l'exécutable du back-end du débogueur MI (par exemple, gdb).", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "entrez le chemin d’accès complet pour le nom du programme de canal, par exemple « /usr/bin/ssh ».", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "Chemin complet du débogueur sur la machine cible, par exemple /usr/bin/gdb.", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "Créer un fichier C++", "c_cpp.walkthrough.create.cpp.file.description": "[Ouvrir](command:toSide:workbench.action.files.openFile) ou [créer](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un fichier C++. Veillez à l’enregistrer avec l’extension « .cpp », telle que « helloworld.cpp ». \n[Créer un fichier C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Ouvrez un fichier C++ ou un dossier avec un projet C++.", - "c_cpp.walkthrough.command.prompt.title": "Lancer à partir de Developer Command Prompt for VS", - "c_cpp.walkthrough.command.prompt.description": "Quand vous utilisez le compilateur Microsoft Visual Studio C++, l’extension C++ vous demande de lancer VS Code à partir de Developer Command Prompt for VS. Suivez les instructions à droite pour relancer.\n[Recharger la fenêtre](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "Appliquer l’environnement de développeur Visual Studio", + "c_cpp.walkthrough.command.prompt.description": "Lorsque vous utilisez le compilateur Microsoft Visual Studio C++, l’environnement de développeur Visual Studio doit être présent.\n\nSuivez les instructions sur la droite pour relancer ou cliquez sur le bouton ci-dessous.\n[Définir l’environnement développeur](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "Exécuter et déboguer votre fichier C++", "c_cpp.walkthrough.run.debug.mac.description": "Permet d’ouvrir votre fichier C++ et de cliquer sur le bouton lecture dans le coin supérieur droit de l’éditeur, ou d’appuyer sur F5 lorsque vous êtes sur le fichier. Vous pouvez sélectionner « clang++ – Générer et déboguer le fichier actif » pour l’exécuter avec le débogueur.", "c_cpp.walkthrough.run.debug.linux.description": "Permet d’ouvrir votre fichier C++ et de cliquer sur le bouton lecture dans le coin supérieur droit de l’éditeur, ou d’appuyer sur F5 lorsque vous êtes sur le fichier. Vous pouvez sélectionner « g++ – Générer et déboguer le fichier actif » pour l’exécuter avec le débogueur.", diff --git a/Extension/i18n/fra/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/fra/src/Debugger/configurationProvider.i18n.json index 24c801893..dc09233bb 100644 --- a/Extension/i18n/fra/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/fra/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "tâche de prélancement : {0}", "debugger.path.not.exists": "Impossible de trouver le débogueur {0}. La configuration de débogage pour {1} est ignorée.", "build.and.debug.active.file": "Générer et déboguer le fichier actif", - "cl.exe.not.available": "{0} est utilisable uniquement lorsque VS Code est exécuté à partir du {1}.", + "apply.dev.env": "Appliquer l’environnement de développeur", + "cl.exe.not.available": "{0} nécessite l’environnement de développeur Visual Studio.", + "update.dev.env": "Mettre à jour l’environnement de développeur", + "cancel": "Annuler", + "dev.env.not.applied": "Impossible de générer le code source, car l’environnement de développeur Visual Studio n’a pas été appliqué.", + "dev.env.not.found": "Impossible de générer le code source, car le compilateur Visual C++ est introuvable.", "lldb.find.failed": "La dépendance '{0}' est manquante pour l'exécutable lldb-mi.", "lldb.search.paths": "Recherche effectuée dans :", "lldb.install.help": "Pour résoudre ce problème, installez XCode via l'Apple App Store ou installez les outils en ligne de commande XCode en exécutant '{0}' dans une fenêtre de terminal.", diff --git a/Extension/i18n/fra/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/fra/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..8f55ce39a --- /dev/null +++ b/Extension/i18n/fra/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "Aucun contexte fourni", + "not.windows": "La commande « Set Visual Studio Developer Environment » est disponible uniquement sur Windows", + "error.no.vs": "Aucune installation Visual Studio avec le compilateur C++ n’a été trouvée", + "operation.cancelled": "L’opération a été annulée", + "no.hosts": "Aucun hôte trouvé", + "config.dev.env": "Configuration de l’environnement de développeur...", + "select.vs.install": "Sélectionnez une installation de Visual Studio", + "advanced.options": "Options avancées...", + "advanced.options.desc": "Sélectionnez une architecture hôte et cible spécifique, une version de l’ensemble d’outils, etc.", + "select.toolset": "Sélectionnez une version d’ensemble d’outils", + "select.host.target": "Sélectionnez une architecture hôte et cible", + "something.wrong": "Une erreur s'est produite : {0}", + "dev.env.for": "Environnement de développeur {0} pour {1}", + "default.env": "Environnement par défaut pour {0}", + "host.target": "hôte = {0}, cible = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/fra/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/fra/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index 9e7f1b479..d4484dfef 100644 --- a/Extension/i18n/fra/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/fra/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "Ouvrez le {0} en tapant « {1} » dans le menu Démarrer de Windows. Sélectionnez le {2}, qui accède automatiquement à votre dossier ouvert actuel.", - "walkthrough.windows.press.f5": "Tapez « {0} » dans l’invite de commandes et appuyez sur Entrée. Vous devriez relancer VS Code et revenir à cette procédure pas à pas. " + "walkthrough.windows.title.apply.dev.env": "Appliquer l’environnement de développeur Visual Studio", + "walkthrough.windows.dev.env.required": "Le compilateur C++ Visual Studio requiert la définition de plusieurs variables d’environnement afin de compiler correctement votre code. Si vous utilisez un ordinateur Windows avec le compilateur Visual Studio C++, vous pouvez vous assurer que l’environnement est appliqué de deux façons.", + "walkthrough.windows.do.one": " Vous n’avez besoin que de l’une des opérations suivantes :", + "walkthrough.windows.run.dev.command": "Exécuter la commande {0}", + "walkthrough.windows.set.dev.environment": "C/C++ : définir l’environnement de développeur Visual Studio", + "walkthrough.windows.start.from.dev.command": "Démarrez VS Code à partir du {0}", + "walkthrough.windows.relaunch.command.prompt": "Pour relancer VS Code à l’aide du {0}", + "walkthrough.close.vscode": "Fermez l’instance actuelle de VS Code.", + "walkthrough.open.command.prompt": "Ouvrez le {0} en tapant {1} dans le menu Démarrer Windows, puis sélectionnez le {2}.", + "walkthrough.windows.press.f5": "Tapez {0} dans l’invite de commandes et appuyez sur Entrée. Cela doit relancer VS Code dans le même espace de travail et vous rediriger vers cette procédure pas à pas." } \ No newline at end of file diff --git a/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows.md.i18n.json b/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows.md.i18n.json index 3733f2a57..381821492 100644 --- a/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows.md.i18n.json +++ b/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows.md.i18n.json @@ -16,6 +16,6 @@ "walkthrough.windows.link.install": "Installer", "walkthrough.windows.note1": "Remarque", "walkthrough.windows.note1.text": "Vous pouvez utiliser l’ensemble d’outils C++ à partir de Visual Studio Build Tools avec Visual Studio Code pour compiler, générer et vérifier n’importe quelle base de code C++, tant que vous disposez également d’une licence Visual Studio valide (Community, Pro ou Enterprise) que vous utilisez activement pour développer cette base de code C++.", - "walkthrough.windows.open.command.prompt": "Ouvrez le {0} en tapant « {1} » dans le menu Démarrer de Windows.", + "walkthrough.windows.open.command.prompt": "Ouvrez le {0} en tapant {1} dans le menu Démarrer de Windows.", "walkthrough.windows.check.install": "Vérifiez votre installation MSVC en tapant {0} dans le {1}. Vous devez voir un message de Copyright avec la version et la description de l’utilisation de base." } \ No newline at end of file diff --git a/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json index 67d6e1d0c..d4802a35e 100644 --- a/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json +++ b/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Remarque", "walkthrough.windows.note1.text": "Vous pouvez utiliser l’ensemble d’outils C++ à partir de Visual Studio Build Tools avec Visual Studio Code pour compiler, générer et vérifier n’importe quelle base de code C++, tant que vous disposez également d’une licence Visual Studio valide (Community, Pro ou Enterprise) que vous utilisez activement pour développer cette base de code C++.", "walkthrough.windows.verify.compiler": "Vérification de l’installation du compilateur", - "walkthrough.windows.open.command.prompt": "Ouvrez le {0} en tapant « {1} » dans le menu Démarrer de Windows.", + "walkthrough.windows.open.command.prompt": "Ouvrez le {0} en tapant {1} dans le menu Démarrer de Windows.", "walkthrough.windows.check.install": "Vérifiez votre installation MSVC en tapant {0} dans le {1}. Vous devez voir un message de Copyright avec la version et la description de l’utilisation de base.", "walkthrough.windows.other.compilers": "Autres options du compilateur", "walkthrough.windows.text3": "Si vous ciblez Linux à partir de Windows, consultez {0}. Vous pouvez également {1}.", diff --git a/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json index 67d6e1d0c..d4802a35e 100644 --- a/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json +++ b/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Remarque", "walkthrough.windows.note1.text": "Vous pouvez utiliser l’ensemble d’outils C++ à partir de Visual Studio Build Tools avec Visual Studio Code pour compiler, générer et vérifier n’importe quelle base de code C++, tant que vous disposez également d’une licence Visual Studio valide (Community, Pro ou Enterprise) que vous utilisez activement pour développer cette base de code C++.", "walkthrough.windows.verify.compiler": "Vérification de l’installation du compilateur", - "walkthrough.windows.open.command.prompt": "Ouvrez le {0} en tapant « {1} » dans le menu Démarrer de Windows.", + "walkthrough.windows.open.command.prompt": "Ouvrez le {0} en tapant {1} dans le menu Démarrer de Windows.", "walkthrough.windows.check.install": "Vérifiez votre installation MSVC en tapant {0} dans le {1}. Vous devez voir un message de Copyright avec la version et la description de l’utilisation de base.", "walkthrough.windows.other.compilers": "Autres options du compilateur", "walkthrough.windows.text3": "Si vous ciblez Linux à partir de Windows, consultez {0}. Vous pouvez également {1}.", diff --git a/Extension/i18n/ita/package.i18n.json b/Extension/i18n/ita/package.i18n.json index 18648bb8f..eeae5e380 100644 --- a/Extension/i18n/ita/package.i18n.json +++ b/Extension/i18n/ita/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Cancellare tutti i problemi di analisi codice", "c_cpp.command.BuildAndDebugFile.title": "Debug file C/C++", "c_cpp.command.BuildAndRunFile.title": "Esegui file C/C++", + "c_cpp.command.SetVsDeveloperEnvironment.title": "Impostare l'ambiente di sviluppo Visual Studio", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "Cancellare l'ambiente di sviluppo Visual Studio", "c_cpp.command.AddDebugConfiguration.title": "Aggiungere configurazione di debug", "c_cpp.command.GenerateDoxygenComment.title": "Genera commento Doxygen", "c_cpp.command.addSshTarget.title": "Aggiungi destinazione SSH", @@ -104,7 +106,7 @@ "c_cpp.configuration.vcFormat.indent.caseContentsWhenBlock.markdownDescription": "Imposta un rientro per le parentesi graffe dopo un'istruzione case in base al valore specificato nell'impostazione `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.lambdaBracesWhenParameter.markdownDescription": "Imposta un rientro per le parentesi graffe delle funzioni lambda usate come parametri di funzione rispetto all'inizio dell'istruzione in base al valore specificato nell'impostazione `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.gotoLabels.description": "Posizione delle etichette GoTo.", - "c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Posiziona le etichette GoTo a sinistra del rientro del codice corrente in base al valore specificato nell'impostazione `#editor.tabSize#`.", + "c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Posizionare le etichette GoTo a sinistra del rientro del codice corrente in base al valore specificato nell'impostazione `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "Posiziona le etichette goto in corrispondenza del bordo più a sinistra del codice.", "c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "Le etichette goto non verranno formattate.", "c_cpp.configuration.vcFormat.indent.preprocessor.description": "Posizione delle direttive del preprocessore.", @@ -191,12 +193,12 @@ "c_cpp.configuration.inactiveRegionOpacity.markdownDescription": "Controlla l'opacità dei blocchi del preprocessore inattivi. Può essere impostata su un valore compreso tra `0,1` e `1,0`. Questa impostazione viene applicata solo se è abilitata l'attenuazione delle aree inattive.", "c_cpp.configuration.inactiveRegionForegroundColor.description": "Controlla la colorazione dei caratteri dei blocchi del preprocessore inattivi. L'input è costituito da codice a colori esadecimale o da un colore del tema valido. Se non è impostata, per impostazione predefinita viene usato lo schema di colorazione della sintassi dell'editor. Questa impostazione viene applicata solo se è abilitata l'attenuazione delle aree inattive.", "c_cpp.configuration.inactiveRegionBackgroundColor.description": "Controlla la colorazione di sfondo dei blocchi del preprocessore inattivi. L'input è costituito da codice a colori esadecimale o da un colore del tema valido. Se non è impostata, l'impostazione predefinita è trasparente. Questa impostazione viene applicata solo se è abilitata l'attenuazione delle aree inattive.", - "c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Visualizza i suggerimenti di inlay per il tipo dedotto quando in una dichiarazione viene usato `auto`:\n```cpp \n\n auto index /* : int */ = 0;\n```", - "c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Visualizza i suggerimenti di inlay per il tipo dedotto quando in una dichiarazione viene usato `auto` a sinistra dell'identificatore:\n```cpp \n\n auto /* int */ index = 0;\n```", - "c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Visualizza i suggerimenti di inlay per i nomi del parametro:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```", + "c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Visualizza i suggerimenti per l'inlay per il tipo dedotto quando in una dichiarazione viene usato `auto`:\n```cpp \n\n auto index /* : int */ = 0;\n```", + "c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Visualizza i suggerimenti per l'inlay per il tipo dedotto quando in una dichiarazione viene usato `auto` a sinistra dell'identificatore:\n```cpp \n\n auto /* int */ index = 0;\n```", + "c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Visualizza i suggerimenti per l'inlay per i nomi del parametro:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```", "c_cpp.configuration.inlayHints.parameterNames.hideLeadingUnderscores.markdownDescription": "Nascondere il carattere `_` iniziale nei suggerimenti per i nomi di parametro.", "c_cpp.configuration.inlayHints.parameterNames.suppressWhenArgumentContainsName.markdownDescription": "Elimina i suggerimenti per il nome del parametro quando il testo dell'argomento o il commento inline contiene il nome del parametro:\n```cpp \n\n int a = getArea(width, /* height: */ y);\n```", - "c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Visualizza l'operatore di riferimento del suggerimento di inlay `&` per i parametri passati dal riferimento non-const:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```", + "c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Visualizza l'operatore di riferimento del suggerimento per l'inlay `&` per i parametri passati dal riferimento non-const:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```", "c_cpp.configuration.inlayHints.referenceOperator.showSpace.markdownDescription": "Controlla se viene visualizzato uno spazio dopo `&` per i parametri passati dal riferimento non-const:\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```", "c_cpp.configuration.loggingLevel.markdownDescription": "Livello di dettaglio della registrazione nel pannello di output. L'ordine dei livelli da meno dettagliato a più dettagliato è: `None` < `Error` < `Warning` < `Information` < `Debug`.", "c_cpp.configuration.autoAddFileAssociations.markdownDescription": "Controlla se i file vengono aggiunti automaticamente a `files.associations` quando sono la destinazione di un'operazione di spostamento da un file C/C++.", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Cpptools: destinazioni SSH", "c_cpp.contributes.viewsWelcome.contents": "Per altre informazioni su launch.json, vedere [Configurazione del debug C/C++](https://code.visualstudio.com/docs/cpp/launch-json-reference).", "c_cpp.configuration.debugShortcut.description": "Mostrare il pulsante di riproduzione \"Esegui ed esegui debug\" e l'ingranaggio \"Aggiungi configurazione di debug\" nella barra del titolo dell'editor per i file C++.", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "Ricordare l'ultimo ambiente di sviluppo Visual Studio usato per l'area di lavoro corrente. Questa impostazione è applicabile solo per Windows.", "c_cpp.debuggers.pipeTransport.description": "Se presente, indica al debugger di connettersi a un computer remoto usando come pipe un altro eseguibile che inoltra l'input/output standard tra VS Code e l'eseguibile back-end del debugger abilitato per MI, ad esempio gdb.", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "immettere il percorso assoluto per il nome del programma pipe, ad esempio '/usr/bin/ssh'.", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "Percorso completo del debugger nel computer di destinazione, ad esempio /usr/bin/gdb.", @@ -417,7 +420,7 @@ "c_cpp.debuggers.logging.category.warning.description": "Log che evidenziano un evento anomalo o imprevisto nel flusso dell'applicazione, ma non causano altrimenti l'arresto dell'esecuzione dell'applicazione.", "c_cpp.debuggers.logging.category.error.description": "Log che evidenziano quando il flusso corrente di esecuzione viene arrestato a causa di un errore. Devono indicare un errore nell'attività corrente, non un errore a livello di applicazione.", "c_cpp.debuggers.logging.category.none.description": "Non utilizzato per la scrittura di messaggi di log. Specifica che una categoria di registrazione non deve scrivere messaggi.", - "c_cpp.walkthrough.title": "Introduzione allo sviluppo C++", + "c_cpp.walkthrough.title": "Introduzione allo sviluppo in C++", "c_cpp.walkthrough.description": "Scoprire l'esperienza di sviluppo C++ avanzata di VS Code.", "c_cpp.walkthrough.set.up.title": "Configurare l'ambiente C++", "c_cpp.walkthrough.activating.description": "Attivazione dell'estensione C++ per determinare se l'ambiente C++ è stato configurato.\nAttivazione dell'estensione...", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "Creare un file C++", "c_cpp.walkthrough.create.cpp.file.description": "[Apri](command:toSide:workbench.action.files.openFile) o [Crea](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un file C++. Assicurati di salvarlo con l'estensione \".cpp\", ad esempio \"helloworld.cpp\". \n[Crea un file C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Apre un file C++ o una cartella con un progetto C++.", - "c_cpp.walkthrough.command.prompt.title": "Avvia dal Developer Command Prompt for VS", - "c_cpp.walkthrough.command.prompt.description": "Nell'ambito dell'utilizzo del compilatore C++ di Microsoft Visual Studio C++, l'estensione C++ richiede di avviare VS Code dal Developer Command Prompt for VS. Seguire le istruzioni a destra per riavviare.\n[Ricarica finestra](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "Applicare l'ambiente di sviluppo Visual Studio", + "c_cpp.walkthrough.command.prompt.description": "Quando si usa il compilatore Microsoft Visual Studio C++, deve essere presente l'ambiente di sviluppo Visual Studio.\n\nSeguire le istruzioni a destra per riavviare o fare clic sul pulsante seguente.\n[Imposta ambiente per sviluppatori](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "Esegui con debug il file C++", "c_cpp.walkthrough.run.debug.mac.description": "Aprire il file C++ e fare clic sul pulsante Riproduci nell'angolo in alto a destra dell'editor oppure premere F5 quando è presente sul file. Selezionare \"clang++ - Compila ed esegui il debug del file attivo\" da eseguire con il debugger.", "c_cpp.walkthrough.run.debug.linux.description": "Aprire il file C++ e fare clic sul pulsante Riproduci nell'angolo in alto a destra dell'editor oppure premere F5 quando è presente sul file. Selezionare \"g++ - Compila ed esegue il debug del file attivo\" da eseguire con il debugger.", diff --git a/Extension/i18n/ita/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/ita/src/Debugger/configurationProvider.i18n.json index b712a33df..9f5061962 100644 --- a/Extension/i18n/ita/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/ita/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "preLaunchTask: {0}", "debugger.path.not.exists": "Impossibile trovare il debugger {0}. La configurazione di debug per {1} viene ignorata.", "build.and.debug.active.file": "compilare ed eseguire il debug del file attivo", - "cl.exe.not.available": "{0} è utilizzabile solo quando VS Code è in esecuzione da {1}.", + "apply.dev.env": "Applicare l'ambiente di sviluppo", + "cl.exe.not.available": "{0} richiede l'ambiente di sviluppo Visual Studio.", + "update.dev.env": "Aggiornare l'ambiente di sviluppo", + "cancel": "Annulla", + "dev.env.not.applied": "Non è possibile compilare il codice sorgente perché non è stato applicato l'ambiente di sviluppo Visual Studio.", + "dev.env.not.found": "Non è possibile compilare il codice sorgente perché non è stato trovato il compilatore Visual C++.", "lldb.find.failed": "Manca la dipendenza '{0}' per l'eseguibile lldb-mi.", "lldb.search.paths": "Ricerca effettuata in:", "lldb.install.help": "Per risolvere questo problema, installare Xcode tramite Apple App Store oppure installare gli strumenti da riga di comando di Xcode eseguendo '{0}' in una finestra di terminale.", diff --git a/Extension/i18n/ita/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/ita/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..67d3bafd6 --- /dev/null +++ b/Extension/i18n/ita/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "Nessun contesto specificato", + "not.windows": "Il comando \"Impostare l'ambiente di sviluppo Visual Studio\" è disponibile solo in Windows", + "error.no.vs": "Non è stata trovata un'installazione di Visual Studio con il compilatore C++", + "operation.cancelled": "L'operazione è stata annullata", + "no.hosts": "Nessun host trovato", + "config.dev.env": "Configurazione dell'ambiente Developer in corso...", + "select.vs.install": "Selezionare un'installazione di Visual Studio", + "advanced.options": "Opzioni avanzate...", + "advanced.options.desc": "Selezionare un host e un'architettura di destinazione specifici, la versione del set di strumenti, e così via.", + "select.toolset": "Selezionare una versione del set di strumenti", + "select.host.target": "Selezionare un host e un'architettura di destinazione", + "something.wrong": "Si è verificato un problema: {0}", + "dev.env.for": "{0} ambiente di sviluppo per {1}", + "default.env": "Ambiente predefinito per {0}", + "host.target": "host = {0}, destinazione = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/ita/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/ita/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index 92cf22cdc..0290dbd07 100644 --- a/Extension/i18n/ita/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/ita/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "Aprire il {0} digitando \"{1}\" nel menu Start di Windows. Selezionare il {2}, che passerà automaticamente alla cartella aperta corrente.", - "walkthrough.windows.press.f5": "Digitare \"{0}\" nel prompt dei comandi e premere INVIO. È consigliabile riavviare VS Code e tornare a questa procedura dettagliata. " + "walkthrough.windows.title.apply.dev.env": "Applicare l'ambiente di sviluppo Visual Studio", + "walkthrough.windows.dev.env.required": "Il compilatore Visual Studio C++ richiede che siano impostate alcune variabili di ambiente per poter compilare correttamente il codice. Se si usa un computer Windows con il compilatore Visual Studio C++, esistono due modi per assicurarsi che l'ambiente sia applicato.", + "walkthrough.windows.do.one": " È sufficiente eseguire una delle operazioni seguenti:", + "walkthrough.windows.run.dev.command": "Eseguire il comando {0}", + "walkthrough.windows.set.dev.environment": "C/C++: Impostare l'ambiente di sviluppo Visual Studio", + "walkthrough.windows.start.from.dev.command": "Avviare VS Code da {0}", + "walkthrough.windows.relaunch.command.prompt": "Per riavviare VS Code con {0}", + "walkthrough.close.vscode": "Chiudere l'istanza corrente di VS Code.", + "walkthrough.open.command.prompt": "Aprire {0} digitando {1} nel menu Start di Windows e selezionare {2}.", + "walkthrough.windows.press.f5": "Digitare {0} nel prompt dei comandi e premere INVIO. È consigliabile riavviare VS Code nella stessa area di lavoro e tornare a questa procedura dettagliata." } \ No newline at end of file diff --git a/Extension/i18n/jpn/package.i18n.json b/Extension/i18n/jpn/package.i18n.json index 818179744..0d3d5e3e1 100644 --- a/Extension/i18n/jpn/package.i18n.json +++ b/Extension/i18n/jpn/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "すべてのコード分析の問題をクリアする", "c_cpp.command.BuildAndDebugFile.title": "C/C++ ファイルのデバッグ", "c_cpp.command.BuildAndRunFile.title": "C/C++ ファイルの実行", + "c_cpp.command.SetVsDeveloperEnvironment.title": "Visual Studio 開発環境の設定", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "Visual Studio 開発環境のクリア", "c_cpp.command.AddDebugConfiguration.title": "デバッグ構成の追加", "c_cpp.command.GenerateDoxygenComment.title": "Doxygen コメントの生成", "c_cpp.command.addSshTarget.title": "SSH ターゲットの追加", @@ -104,11 +106,11 @@ "c_cpp.configuration.vcFormat.indent.caseContentsWhenBlock.markdownDescription": "ケース ステートメントに続く中かっこは、`#editor.tabSize#` 設定で指定された分だけインデントされます。", "c_cpp.configuration.vcFormat.indent.lambdaBracesWhenParameter.markdownDescription": "関数パラメーターとして使用されるラムダの中かっこは、ステートメントの先頭を基準に `#editor.tabSize#` 設定で指定された分だけインデントされます。", "c_cpp.configuration.vcFormat.indent.gotoLabels.description": "goto ラベルの位置。", - "c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "現在のコード インデントの左に、`#editor.tabSize#` 設定で指定された分だけ goto ラベルが配置されます", + "c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "`#editor.tabSize#` 設定で指定された量だけ、現在のコードのインデントの左側に goto ラベルを配置します。", "c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "goto ラベルは、コードの左端に配置されます。", "c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "goto ラベルは書式設定されません。", "c_cpp.configuration.vcFormat.indent.preprocessor.description": "プリプロセッサ ディレクティブの位置。", - "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "現在のコード インデントの左に、`#editor.tabSize#` 設定で指定された分だけプリプロセッサ ディレクティブが配置されています。", + "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "プリプロセッサ ディレクティブは、現在のコードのインデントから、`#editor.tabSize#` 設定で指定された量だけ左に配置されます。", "c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "プリプロセッサ ディレクティブは、コードの左端に配置されています。", "c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "プリプロセッサ ディレクティブはフォーマットされません。", "c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "アクセス指定子は、クラスまたは構造体の定義を基準に `#editor.tabSize#` 設定で指定された分だけインデントされます。", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Cpptools: SSH ターゲット", "c_cpp.contributes.viewsWelcome.contents": "launch.json に関する詳細については、[C/C++ デバッグを構成する](https://code.visualstudio.com/docs/cpp/launch-json-reference) を参照してください。", "c_cpp.configuration.debugShortcut.description": "C++ ファイルのエディター タイトル バーに [実行とデバッグ] 再生ボタンと [デバッグ構成の追加] 歯車を表示します。", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "現在のワークスペースで最後に使用した Visual Studio 開発者環境を記憶します。この設定は Windows のみで有効です。", "c_cpp.debuggers.pipeTransport.description": "これを指定すると、デバッガーにより、別の実行可能ファイルをパイプとして使用してリモート コンピューターに接続され、VS Code と MI 対応のデバッガー バックエンド実行可能ファイル (gdb など) との間で標準入出力が中継されます。", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "パイプ プログラム名の完全修飾パスを入力してください (例: '/usr/bin/ssh')。", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "対象マシン上のデバッガーへの完全なパス。例: /usr/bin/gdb。", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "C++ ファイルの作成", "c_cpp.walkthrough.create.cpp.file.description": "[開く](command:toSide:workbench.action.files.openFile) または [作成](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) C++ ファイル。\"helloworld.cpp\" などの \".cpp\" 拡張子を使用して保存してください。\n[C++ ファイルの作成](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "C++ ファイル または C++ プロジェクトを含むフォルダーを開きます。", - "c_cpp.walkthrough.command.prompt.title": "Developer Command Prompt for VS から起動する", - "c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ コンパイラを使用する場合、C++ 拡張機能では、Developer Command Prompt for VS から VS Code を起動する必要があります。右側の指示に従って再起動してください。\n[ウィンドウの再読み込み](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "Visual Studio開発環境を適用する", + "c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ コンパイラを使用する場合、Visual Studio 開発者環境が存在する必要があります。\n\n右側の指示に従って再起動するか、下のボタンをクリックします。\n[開発環境の設定](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "お使いの C++ ファイルを実行してデバッグする", "c_cpp.walkthrough.run.debug.mac.description": "C++ ファイルを開いてエディターの右上隅にある [再生] ボタンをクリックするか、ファイル上で F5 キーを押します。デバッガーで実行するには、[clang++ - アクティブ ファイルのビルドとデバッグ] を選択します。", "c_cpp.walkthrough.run.debug.linux.description": "C++ ファイルを開いてエディターの右上隅にある [再生] ボタンをクリックするか、ファイル上で F5 キーを押します。デバッガーで実行するには、[g++ - アクティブ ファイルのビルドとデバッグ] を選択します。", diff --git a/Extension/i18n/jpn/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/jpn/src/Debugger/configurationProvider.i18n.json index 080c81f40..f8c9f50bf 100644 --- a/Extension/i18n/jpn/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/jpn/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "preLaunchTask: {0}", "debugger.path.not.exists": "{0} デバッガーが見つかりません。{1} のデバッグ構成は無視されます。", "build.and.debug.active.file": "アクティブ ファイルのビルドとデバッグ", - "cl.exe.not.available": "{0} は、{1} から VS Code を実行する場合にのみ使用できます。", + "apply.dev.env": "開発環境の適用", + "cl.exe.not.available": "{0} には、Visual Studio 開発環境が必要です。", + "update.dev.env": "開発環境の更新", + "cancel": "キャンセル", + "dev.env.not.applied": "Visual Studio 開発者環境が適用されなかったため、ソース コードをビルドできませんでした。", + "dev.env.not.found": "Visual C++ コンパイラが見つからなかったため、ソース コードをビルドできませんでした。", "lldb.find.failed": "lldb-mi 実行可能ファイルの依存関係 '{0}' が見つかりません。", "lldb.search.paths": "検索対象:", "lldb.install.help": "この問題を解決するには、Apple App Store から XCode をインストールするか、またはターミナル ウィンドウで '{0}' を実行して XCode コマンド ライン ツールをインストールしてください。", diff --git a/Extension/i18n/jpn/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/jpn/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..863be814e --- /dev/null +++ b/Extension/i18n/jpn/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "コンテキストが指定されていません", + "not.windows": "「Visual Studio 開発環境の設定」コマンドは Windows でのみ利用可能です", + "error.no.vs": "C++ コンパイラを使用したVisual Studioインストールが見つかりませんでした", + "operation.cancelled": "操作は取り消されました", + "no.hosts": "ホストが見つかりません", + "config.dev.env": "開発者環境を構成しています...", + "select.vs.install": "Visual Studio のインストールを選択します", + "advanced.options": "詳細オプション...", + "advanced.options.desc": "特定のホストとターゲットのアーキテクチャ、ツールセットのバージョンなどを選択します", + "select.toolset": "ツールセット バージョンの選択", + "select.host.target": "ホストとターゲット アーキテクチャを選択します", + "something.wrong": "問題が発生しました: {0}", + "dev.env.for": "{1} 用の {0} 開発環境", + "default.env": "{0} の既定の環境", + "host.target": "host = {0}, target = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/jpn/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/jpn/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index ce5a01e7c..aca810c43 100644 --- a/Extension/i18n/jpn/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/jpn/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "Windows スタート メニューで \"{1}\" と入力して、{0} を開きます。{2} を選択すると、現在開いているフォルダーに自動的に移動します。", - "walkthrough.windows.press.f5": "コマンド プロンプトに \"{0}\" と入力して Enter キーを押します。これにより、VS Code が再起動され、このチュートリアルに戻ります。" + "walkthrough.windows.title.apply.dev.env": "Visual Studio開発環境を適用する", + "walkthrough.windows.dev.env.required": "Visual Studio C++ コンパイラでは、コードを正常にコンパイルするためにいくつかの環境変数を設定する必要があります。Windows マシンで Visual Studio C++ コンパイラを使用している場合、環境が適用されていることを確認する方法は 2 つあります。", + "walkthrough.windows.do.one": " 次のいずれかの操作のみを行う必要があります:", + "walkthrough.windows.run.dev.command": "{0} コマンドを実行する", + "walkthrough.windows.set.dev.environment": "C/C++: Visual Studio 開発環境の設定", + "walkthrough.windows.start.from.dev.command": "{0} から VS Code を起動します", + "walkthrough.windows.relaunch.command.prompt": "{0} を使用して VS Code を再起動するには", + "walkthrough.close.vscode": "VS Code の現在のインスタンスを閉じます。", + "walkthrough.open.command.prompt": "Windows スタート メニューで {1} と入力して、{0} を開き、{2} を選択します。", + "walkthrough.windows.press.f5": "コマンド プロンプトに {0} と入力して Enter キーを押します。これにより、同じワークスペースで VS Code が再起動され、このチュートリアルに戻ります。" } \ No newline at end of file diff --git a/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows.md.i18n.json b/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows.md.i18n.json index 40fde9ea0..cf4360081 100644 --- a/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows.md.i18n.json +++ b/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows.md.i18n.json @@ -16,6 +16,6 @@ "walkthrough.windows.link.install": "インストール", "walkthrough.windows.note1": "メモ", "walkthrough.windows.note1.text": "有効な Visual Studio ライセンス (Community、Pro、Enterprise のいずれか) があり、その C++ コードベースの開発に積極的に使用している場合は、Visual Studio Build Tools の C++ ツールセットを Visual Studio Code と合わせて使用して、C++ コードベースのコンパイル、ビルド、および検証を行うことができます。", - "walkthrough.windows.open.command.prompt": "Windows スタート メニューで '{1}' と入力して、{0} を開きます。", + "walkthrough.windows.open.command.prompt": "Windows スタート メニューで {1} と入力して、{0} を開きます。", "walkthrough.windows.check.install": "{1} に「{0}」と入力して、MSVC のインストールを確認します。バージョンと基本的な使用法の説明とともに、著作権に関するメッセージが表示されます。" } \ No newline at end of file diff --git a/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json index e7b81a046..34611a95f 100644 --- a/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json +++ b/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "メモ", "walkthrough.windows.note1.text": "有効な Visual Studio ライセンス (Community、Pro、Enterprise のいずれか) があり、その C++ コードベースの開発に積極的に使用している場合は、Visual Studio Build Tools の C++ ツールセットを Visual Studio Code と合わせて使用して、C++ コードベースのコンパイル、ビルド、および検証を行うことができます。", "walkthrough.windows.verify.compiler": "コンパイラのインストールの確認中", - "walkthrough.windows.open.command.prompt": "Windows スタート メニューで '{1}' と入力して、{0} を開きます。", + "walkthrough.windows.open.command.prompt": "Windows スタート メニューで {1} と入力して、{0} を開きます。", "walkthrough.windows.check.install": "{1} に「{0}」と入力して、MSVC のインストールを確認します。バージョンと基本的な使用法の説明とともに、著作権に関するメッセージが表示されます。", "walkthrough.windows.other.compilers": "その他のコンパイラ オプション", "walkthrough.windows.text3": "Windows から Linux に貼り付ける場合は、{0} をチェックしてください。あるいは、{1} も使用できます。", diff --git a/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json index e7b81a046..34611a95f 100644 --- a/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json +++ b/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "メモ", "walkthrough.windows.note1.text": "有効な Visual Studio ライセンス (Community、Pro、Enterprise のいずれか) があり、その C++ コードベースの開発に積極的に使用している場合は、Visual Studio Build Tools の C++ ツールセットを Visual Studio Code と合わせて使用して、C++ コードベースのコンパイル、ビルド、および検証を行うことができます。", "walkthrough.windows.verify.compiler": "コンパイラのインストールの確認中", - "walkthrough.windows.open.command.prompt": "Windows スタート メニューで '{1}' と入力して、{0} を開きます。", + "walkthrough.windows.open.command.prompt": "Windows スタート メニューで {1} と入力して、{0} を開きます。", "walkthrough.windows.check.install": "{1} に「{0}」と入力して、MSVC のインストールを確認します。バージョンと基本的な使用法の説明とともに、著作権に関するメッセージが表示されます。", "walkthrough.windows.other.compilers": "その他のコンパイラ オプション", "walkthrough.windows.text3": "Windows から Linux に貼り付ける場合は、{0} をチェックしてください。あるいは、{1} も使用できます。", diff --git a/Extension/i18n/kor/package.i18n.json b/Extension/i18n/kor/package.i18n.json index 7c2009ef0..7378664f6 100644 --- a/Extension/i18n/kor/package.i18n.json +++ b/Extension/i18n/kor/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "모든 코드 분석 문제 해결", "c_cpp.command.BuildAndDebugFile.title": "C/C++ 파일 디버그", "c_cpp.command.BuildAndRunFile.title": "C/C++ 파일 실행", + "c_cpp.command.SetVsDeveloperEnvironment.title": "Visual Studio 개발자 환경 설정", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "Visual Studio 개발자 환경 지우기", "c_cpp.command.AddDebugConfiguration.title": "디버그 구성 추가", "c_cpp.command.GenerateDoxygenComment.title": "Doxygen 주석 생성", "c_cpp.command.addSshTarget.title": "SSH 대상 추가", @@ -191,12 +193,12 @@ "c_cpp.configuration.inactiveRegionOpacity.markdownDescription": "비활성 전처리기 블록의 불투명도를 제어합니다. `0.1`에서 `1.0` 사이에서 크기를 조정합니다. 이 설정은 비활성 영역 흐리게 표시가 사용하도록 설정된 경우에만 적용됩니다.", "c_cpp.configuration.inactiveRegionForegroundColor.description": "비활성 전처리기 블록의 글꼴 색 지정을 제어합니다. 입력은 16진수 색 코드 또는 유효한 테마 색의 형식입니다. 설정하지 않으면 기본적으로 편집기의 구문 색 구성표로 설정됩니다. 이 설정은 비활성 영역 흐리게 표시가 사용하도록 설정된 경우에만 적용됩니다.", "c_cpp.configuration.inactiveRegionBackgroundColor.description": "비활성 전처리기 블록의 배경색 지정을 제어합니다. 입력은 16진수 색 코드 또는 유효한 테마 색의 형식입니다. 설정하지 않으면 기본적으로 투명으로 설정됩니다. 이 설정은 비활성 영역 흐리게 표시가 사용하도록 설정된 경우에만 적용됩니다.", - "c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "선언에서 `auto`가 사용될 때 추론된 유형에 대한 인레이 힌트 표시:\n```cpp \n\n auto index /* : int */ = 0;\n```", - "c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "식별자의 왼쪽에 있는 선언에서 `auto`가 사용될 때 추론된 유형에 대한 인레이 힌트 표시:\n```cpp \n\n auto /* int */ index = 0;\n```", + "c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "선언에서 `auto`가 사용될 때 추론된 형식에 대한 인레이 힌트 표시:\n```cpp \n\n auto index /* : int */ = 0;\n```", + "c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "식별자의 왼쪽에 있는 선언에서 `auto`가 사용될 때 추론된 형식에 대한 인레이 힌트 표시:\n```cpp \n\n auto /* int */ index = 0;\n```", "c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "매개 변수 이름에 대한 인레이 힌트 표시:\n```cpp \n\n int a = getArea(/* width: */ x, /* height: */ y);\n```", "c_cpp.configuration.inlayHints.parameterNames.hideLeadingUnderscores.markdownDescription": "매개 변수 이름 힌트에서 선행 `_`를 숨깁니다.", "c_cpp.configuration.inlayHints.parameterNames.suppressWhenArgumentContainsName.markdownDescription": "인수 텍스트 또는 인라인 주석에 매개 변수 이름이 포함된 경우 매개 변수 이름 힌트 표시 안 함:\n```cpp \n\n int a = getArea(width, /* height: */ y);\n```", - "c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "비 const 참조에 의해 전달된 매개 변수에 대한 인레이 힌트 참조 연산자 `&` 표시:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```", + "c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "비상수 참조로 전달되는 매개 변수에 대한 인레이 힌트 참조 연산자(`&`) 표시:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```", "c_cpp.configuration.inlayHints.referenceOperator.showSpace.markdownDescription": "const가 아닌 참조로 전달된 매개 변수에 대해 `&` 뒤에 공백이 표시되는지 여부를 제어합니다.\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```", "c_cpp.configuration.loggingLevel.markdownDescription": "출력 패널에서 로깅의 세부 정보 표시 수준입니다. 가장 낮은 표시 수준에서 가장 높은 표시 수준의 순서는 `None` < `Error` < `Warning` < `Information` < `Debug`입니다.", "c_cpp.configuration.autoAddFileAssociations.markdownDescription": "파일이 C/C++ 파일의 탐색 작업의 대상인 경우 `#files.associations#`에 자동으로 추가되는지 여부를 제어합니다.", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Cpptools: SSH 대상", "c_cpp.contributes.viewsWelcome.contents": "launch.json에 대한 자세한 내용은 [C/C++ 디버깅 구성](https://code.visualstudio.com/docs/cpp/launch-json-reference)을 참조하세요.", "c_cpp.configuration.debugShortcut.description": "C++ 파일의 편집기 제목 표시줄에 \"실행 및 디버그\" 재생 버튼과 \"디버그 구성 추가\" 기어를 표시합니다.", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "현재 작업 영역에 마지막으로 사용한 Visual Studio 개발자 환경을 기억합니다. 이 설정은 Windows에만 적용됩니다.", "c_cpp.debuggers.pipeTransport.description": "있을 경우 VS Code와 MI 지원 디버거 백 엔드 실행 파일(예: gdb) 사이에 표준 입출력을 릴레이하는 파이프로 다른 실행 파일을 사용하여 원격 컴퓨터에 연결되도록 디버거를 지정합니다.", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "파이프 프로그램 이름의 정규화된 경로 입력(예: '/usr/bin/ssh')", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "대상 컴퓨터에서 디버거의 전체 경로(예: /usr/bin/gdb)입니다.", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "C++ 파일 만들기", "c_cpp.walkthrough.create.cpp.file.description": "C++를 [열거나](command:toSide:workbench.action.files.openFile) [만드세요](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D). \"helloworld.cpp\"와 같이 \".cpp\" 확장자로 저장해야 합니다. \n[C++ 파일 만들기](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "C++ 프로젝트를 사용하여 C++ 파일 또는 폴더를 엽니다.", - "c_cpp.walkthrough.command.prompt.title": "Developer Command Prompt for VS에서 시작", - "c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ 컴파일러를 사용하는 경우 C++ 확장을 사용하려면 Developer Command Prompt for VS에서 VS Code를 실행해야 합니다. 다시 시작하려면 오른쪽의 지침을 따르세요.\n[Window 다시 로드](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "Visual Studio 개발자 환경 적용", + "c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ 컴파일러를 사용하려면 Visual Studio 개발자 환경이 있어야 합니다.\n\n오른쪽의 지침에 따라 다시 시작하거나 아래 단추를 클릭합니다.\n[개발자 환경 설정](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "C++ 파일 실행 및 디버그", "c_cpp.walkthrough.run.debug.mac.description": "C++ 파일을 열고 편집기의 오른쪽 상단 모서리에 있는 재생 버튼을 클릭하거나 파일에서 F5를 누릅니다. 디버거와 함께 실행하려면 \"clang++ - 활성 파일 빌드 및 디버그\"를 선택합니다.", "c_cpp.walkthrough.run.debug.linux.description": "C++ 파일을 열고 편집기의 오른쪽 상단 모서리에 있는 재생 버튼을 클릭하거나 파일에서 F5를 누릅니다. 디버거와 함께 실행하려면 \"g++- 활성 파일 빌드 및 디버그\"를 선택합니다.", diff --git a/Extension/i18n/kor/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/kor/src/Debugger/configurationProvider.i18n.json index 80dfd1602..3305e9361 100644 --- a/Extension/i18n/kor/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/kor/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "preLaunchTask: {0}", "debugger.path.not.exists": "{0} 디버거를 찾을 수 없습니다. {1}에 대한 디버그 구성은 무시됩니다.", "build.and.debug.active.file": "활성 파일 빌드 및 디버그", - "cl.exe.not.available": "{0}은(는) VS Code가 {1}에서 실행되는 경우에만 사용할 수 있습니다.", + "apply.dev.env": "개발자 환경 적용", + "cl.exe.not.available": "{0}에 Visual Studio 개발자 환경이 필요합니다.", + "update.dev.env": "개발자 환경 업데이트", + "cancel": "취소", + "dev.env.not.applied": "Visual Studio 개발자 환경이 적용되지 않아 소스 코드를 빌드할 수 없습니다.", + "dev.env.not.found": "Visual C++ 컴파일러를 찾을 수 없어 소스 코드를 빌드할 수 없습니다.", "lldb.find.failed": "lldb-mi 실행 파일에 대한 '{0}' 종속성이 없습니다.", "lldb.search.paths": "다음에서 검색됨:", "lldb.install.help": "이 문제를 해결하려면 Apple App Store를 통해 XCode를 설치하거나, 터미널 창에서 '{0}'을(를) 실행하여 XCode 명령줄 도구를 설치하세요.", diff --git a/Extension/i18n/kor/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/kor/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..1b4a2d094 --- /dev/null +++ b/Extension/i18n/kor/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "컨텍스트가 제공되지 않음", + "not.windows": "\"Visual Studio 개발자 환경 설정\" 명령은 Windows에서만 사용할 수 있습니다", + "error.no.vs": "C++ 컴파일러가 포함된 Visual Studio 설치를 찾을 수 없음", + "operation.cancelled": "작업이 취소되었음", + "no.hosts": "호스트를 찾을 수 없음", + "config.dev.env": "개발자 환경 구성 중...", + "select.vs.install": "Visual Studio 설치 선택", + "advanced.options": "고급 옵션...", + "advanced.options.desc": "특정 호스트 및 대상 아키텍처, 도구 집합 버전 등을 선택합니다.", + "select.toolset": "도구 집합 버전 선택", + "select.host.target": "호스트 및 대상 아키텍처 선택", + "something.wrong": "오류 발생: {0}", + "dev.env.for": "{1}에 대한 {0} 개발자 환경", + "default.env": "{0}의 기본 환경", + "host.target": "호스트 = {0}, 대상 = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/kor/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/kor/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index 3972b8e4a..a49bea1a3 100644 --- a/Extension/i18n/kor/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/kor/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "Windows 시작 메뉴에 \"{1}\"을(를) 입력하여 {0}을(를) 엽니다. {2}을(를) 선택하면 현재 열려 있는 폴더로 자동으로 이동합니다.", - "walkthrough.windows.press.f5": "명령 프롬프트에 \"{0}\"을(를) 입력하고 Enter 키를 누릅니다. 이렇게 하면 VS Code가 다시 시작되고 이 연습으로 다시 돌아옵니다. " + "walkthrough.windows.title.apply.dev.env": "Visual Studio 개발자 환경 적용", + "walkthrough.windows.dev.env.required": "Visual Studio C++ 컴파일러에서는 코드를 성공적으로 컴파일하려면 여러 환경 변수를 설정해야 합니다. Visual Studio C++ 컴파일러가 설치된 Windows 머신을 사용하는 경우 환경을 적용하는 두 가지 방법이 있습니다.", + "walkthrough.windows.do.one": " 다음 중 하나만 수행하면 됩니다.", + "walkthrough.windows.run.dev.command": "{0} 명령 실행", + "walkthrough.windows.set.dev.environment": "C/C++: Visual Studio 개발자 환경 설정", + "walkthrough.windows.start.from.dev.command": "{0}에서 VS Code 시작", + "walkthrough.windows.relaunch.command.prompt": "{0}을(를) 사용해 VS Code를 다시 시작하려면", + "walkthrough.close.vscode": "VS Code 현재 인스턴스를 닫습니다.", + "walkthrough.open.command.prompt": "Windows 시작 메뉴에 {1}을(를) 입력하여 {0}을(를) 연 다음 {2}을(를) 선택합니다.", + "walkthrough.windows.press.f5": "명령 프롬프트에 {0}을(를) 입력하고 Enter 키를 누릅니다. 이렇게 하면 동일한 작업 영역에서 VS Code 다시 시작되고 이 연습으로 돌아옵니다." } \ No newline at end of file diff --git a/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows.md.i18n.json b/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows.md.i18n.json index 24b85fa8b..b25a9a34c 100644 --- a/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows.md.i18n.json +++ b/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows.md.i18n.json @@ -16,6 +16,6 @@ "walkthrough.windows.link.install": "설치", "walkthrough.windows.note1": "메모", "walkthrough.windows.note1.text": "현재 C++ 코드베이스를 개발하는 데 적극적으로 사용 중인 유효한 Visual Studio 라이선스(Community, Pro 또는 Enterprise)가 있는 한 Visual Studio Build Tools의 C++ 도구 집합을 Visual Studio Code와 함께 사용하여 모든 C++ 코드베이스를 컴파일, 빌드 및 확인할 수 있습니다.", - "walkthrough.windows.open.command.prompt": "Windows 시작 메뉴에 '{1}'을(를) 입력하여 {0}을(를) 엽니다.", + "walkthrough.windows.open.command.prompt": "Windows 시작 메뉴에 {1}을(를) 입력하여 {0}을(를) 엽니다.", "walkthrough.windows.check.install": "{1}에 {0}을(를) 입력하여 MSVC 설치를 확인하세요. 버전 및 기본 사용 설명과 함께 저작권 메시지가 표시될 것입니다." } \ No newline at end of file diff --git a/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json index 4c6d7803a..1afe7d81b 100644 --- a/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json +++ b/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "메모", "walkthrough.windows.note1.text": "현재 C++ 코드베이스를 개발하는 데 적극적으로 사용 중인 유효한 Visual Studio 라이선스(Community, Pro 또는 Enterprise)가 있는 한 Visual Studio Build Tools의 C++ 도구 집합을 Visual Studio Code와 함께 사용하여 모든 C++ 코드베이스를 컴파일, 빌드 및 확인할 수 있습니다.", "walkthrough.windows.verify.compiler": "컴파일러 설치 확인 중", - "walkthrough.windows.open.command.prompt": "Windows 시작 메뉴에 '{1}'을(를) 입력하여 {0}을(를) 엽니다.", + "walkthrough.windows.open.command.prompt": "Windows 시작 메뉴에 {1}을(를) 입력하여 {0}을(를) 엽니다.", "walkthrough.windows.check.install": "{1}에 {0}을(를) 입력하여 MSVC 설치를 확인하세요. 버전 및 기본 사용 설명과 함께 저작권 메시지가 표시될 것입니다.", "walkthrough.windows.other.compilers": "기타 컴파일러 옵션", "walkthrough.windows.text3": "Windows에서 Linux를 대상으로 하는 경우 {0}을(를) 확인하세요. 또는 {1}할 수 있습니다.", diff --git a/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json index 4c6d7803a..1afe7d81b 100644 --- a/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json +++ b/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "메모", "walkthrough.windows.note1.text": "현재 C++ 코드베이스를 개발하는 데 적극적으로 사용 중인 유효한 Visual Studio 라이선스(Community, Pro 또는 Enterprise)가 있는 한 Visual Studio Build Tools의 C++ 도구 집합을 Visual Studio Code와 함께 사용하여 모든 C++ 코드베이스를 컴파일, 빌드 및 확인할 수 있습니다.", "walkthrough.windows.verify.compiler": "컴파일러 설치 확인 중", - "walkthrough.windows.open.command.prompt": "Windows 시작 메뉴에 '{1}'을(를) 입력하여 {0}을(를) 엽니다.", + "walkthrough.windows.open.command.prompt": "Windows 시작 메뉴에 {1}을(를) 입력하여 {0}을(를) 엽니다.", "walkthrough.windows.check.install": "{1}에 {0}을(를) 입력하여 MSVC 설치를 확인하세요. 버전 및 기본 사용 설명과 함께 저작권 메시지가 표시될 것입니다.", "walkthrough.windows.other.compilers": "기타 컴파일러 옵션", "walkthrough.windows.text3": "Windows에서 Linux를 대상으로 하는 경우 {0}을(를) 확인하세요. 또는 {1}할 수 있습니다.", diff --git a/Extension/i18n/plk/package.i18n.json b/Extension/i18n/plk/package.i18n.json index 58d4ee803..5026851c1 100644 --- a/Extension/i18n/plk/package.i18n.json +++ b/Extension/i18n/plk/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Wyczyść wszystkie problemy z analizą kodu", "c_cpp.command.BuildAndDebugFile.title": "Debuguj plik C/C++", "c_cpp.command.BuildAndRunFile.title": "Uruchom plik C/C++", + "c_cpp.command.SetVsDeveloperEnvironment.title": "Ustaw środowisko deweloperskie Visual Studio", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "Wyczyść środowisko deweloperskie programu Visual Studio", "c_cpp.command.AddDebugConfiguration.title": "Dodaj konfigurację debugowania", "c_cpp.command.GenerateDoxygenComment.title": "Generuj komentarz Doxygen", "c_cpp.command.addSshTarget.title": "Dodaj element docelowy SSH", @@ -104,11 +106,11 @@ "c_cpp.configuration.vcFormat.indent.caseContentsWhenBlock.markdownDescription": "Zastosuj wcięcie nawiasów klamrowych po instrukcji case o wartości określonej w ustawieniu `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.lambdaBracesWhenParameter.markdownDescription": "Zastosuj wcięcie nawiasów klamrowych dla wyrażeń lambda używanych jako parametry funkcji względem początku instrukcji o wartości określonej w ustawieniu `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.gotoLabels.description": "Pozycja etykiet instrukcji goto.", - "c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Umieść etykiety funkcji goto po lewej stronie bieżącego wcięcia kodu według wartości określonej w ustawieniu `#editor.tabSize#`.", + "c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Umieść etykiety funkcji goto po lewej stronie bieżącego wcięcia kodu według wartości określonej w ustawieniu `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "Umieść etykiety funkcji goto przy lewej krawędzi kodu.", "c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "Etykiety funkcji goto nie będą formatowane.", "c_cpp.configuration.vcFormat.indent.preprocessor.description": "Pozycja dyrektyw preprocesora.", - "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Dyrektywy preprocesora są umieszczane po lewej stronie bieżącego wcięcia kodu o wartości określonej w ustawieniu `#editor.tabSize#`.", + "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Dyrektywy preprocesora są umieszczane po lewej stronie bieżącego wcięcia kodu według wartości określonej w ustawieniu `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "Dyrektywy preprocesora są umieszczane przy lewej krawędzi kodu.", "c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "Dyrektywy preprocesora nie będą formatowane.", "c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "W przypadku specyfikatorów dostępu jest stosowane wcięcie względem definicji klasy lub struktury o szerokości określonej w ustawieniu `#editor.tabSize#`.", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Narzędzia Cpptools: elementy docelowe SSH", "c_cpp.contributes.viewsWelcome.contents": "Aby dowiedzieć się więcej na temat pliku launch.json, zobacz [Konfigurowanie debugowania C/C++](https://code.visualstudio.com/docs/cpp/launch-json-reference).", "c_cpp.configuration.debugShortcut.description": "Pokaż przycisk odtwarzania „Uruchom i debuguj” i koło zębate „Dodaj konfigurację debugowania” na pasku tytułu edytora dla plików C++.", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "Zapamiętaj ostatnio używane środowisko deweloperskie Visual Studio dla bieżącego obszaru roboczego. To ustawienie dotyczy tylko systemu Windows.", "c_cpp.debuggers.pipeTransport.description": "Jeśli jest obecny, zawiera instrukcje dla debugera, aby połączył się z komputerem zdalnym przy użyciu innego pliku wykonywalnego jako potoku, który będzie przekazywał standardowe wejście/wyjście między programem VS Code a plikiem wykonywalnym zaplecza debugera z włączoną obsługą indeksu MI (takim jak gdb).", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "wprowadź w pełni kwalifikowaną ścieżkę na potrzeby nazwy programu potoku, na przykład '/usr/bin/ssh'.", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "Pełna ścieżka do debugera na komputerze docelowym, na przykład /usr/bin/gdb.", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "Tworzenie pliku C++", "c_cpp.walkthrough.create.cpp.file.description": "[Otwórz](command:toSide:workbench.action.files.openFile) lub [utwórz](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) plik C++. Pamiętaj, aby zapisać go z rozszerzeniem „.cpp” (na przykład „helloworld.cpp”). \n[Utwórz plik C++ ](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Otwórz plik C++ lub folder z projektem C++.", - "c_cpp.walkthrough.command.prompt.title": "Uruchom z wiersza polecenia Developer Command Prompt for VS", - "c_cpp.walkthrough.command.prompt.description": "W przypadku korzystania z kompilatora języka C++ programu Microsoft Visual Studio rozszerzenie języka C++ wymaga uruchomienia programu VS Code z wiersza polecenia Developer Command Prompt for VS. Postępuj zgodnie z instrukcjami po prawej stronie, aby uruchomić ponownie.\n[Załaduj ponownie okno](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "Zastosuj środowisko deweloperskie Visual Studio", + "c_cpp.walkthrough.command.prompt.description": "Jeśli korzystasz z kompilatora Visual Studio C++, musi być dostępne środowisko deweloperskie Visual Studio.\n\nPostępuj zgodnie z instrukcjami po prawej stronie, aby ponownie uruchomić środowisko, lub kliknij przycisk poniżej.\n[Ustaw środowisko deweloperskie](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "Uruchamianie i debugowanie pliku C++", "c_cpp.walkthrough.run.debug.mac.description": "Otwórz plik C++ i kliknij przycisk odtwarzania w prawym górnym rogu edytora lub naciśnij klawisz F5, gdy korzystasz z pliku. Wybierz pozycję „clang++ — kompiluj i debuguj aktywny plik\", aby uruchomić go za pomocą debugera.", "c_cpp.walkthrough.run.debug.linux.description": "Otwórz plik C++ i kliknij przycisk odtwarzania w prawym górnym rogu edytora lub naciśnij klawisz F5, gdy korzystasz z pliku. Wybierz pozycję „g++ — kompiluj i debuguj aktywny plik\", aby uruchomić go za pomocą debugera.", diff --git a/Extension/i18n/plk/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/plk/src/Debugger/configurationProvider.i18n.json index 43e0838d2..69496dee5 100644 --- a/Extension/i18n/plk/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/plk/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "preLaunchTask: {0}", "debugger.path.not.exists": "Nie można odnaleźć debugera {0}. Konfiguracja debugowania dla {1} jest ignorowana.", "build.and.debug.active.file": "Kompiluj i debuguj aktywny plik", - "cl.exe.not.available": "Możliwe jest używanie opcji {0} w przypadku, gdy program VS Code zostanie uruchomiony z {1}.", + "apply.dev.env": "Zastosuj środowisko deweloperskie", + "cl.exe.not.available": "{0} wymaga środowiska deweloperskiego programu Visual Studio.", + "update.dev.env": "Zaktualizuj środowisko deweloperskie", + "cancel": "Anuluj", + "dev.env.not.applied": "Nie można skompilować kodu źródłowego, ponieważ nie zastosowano środowiska deweloperskiego Visual Studio.", + "dev.env.not.found": "Nie można skompilować kodu źródłowego, ponieważ nie znaleziono kompilatora Visual C++.", "lldb.find.failed": "Brak zależności „{0}” dla pliku wykonywalnego lldb-mi.", "lldb.search.paths": "Wyszukano w:", "lldb.install.help": "Aby rozwiązać ten problem, zainstaluj środowisko XCode za pośrednictwem sklepu Apple App Store lub zainstaluj narzędzia wiersza polecenia środowiska XCode, uruchamiając polecenie „{0}” w oknie terminala.", diff --git a/Extension/i18n/plk/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/plk/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..139fa4270 --- /dev/null +++ b/Extension/i18n/plk/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "Nie podano kontekstu", + "not.windows": "Polecenie „Ustaw środowisko deweloperskie Visual Studio” jest dostępne tylko w systemie Windows", + "error.no.vs": "Nie znaleziono instalacji Visual Studio z kompilatorem C++", + "operation.cancelled": "Operacja została anulowana", + "no.hosts": "Nie znaleziono hostów", + "config.dev.env": "Trwa konfigurowanie środowiska deweloperskiego...", + "select.vs.install": "Wybierz instalację programu Visual Studio", + "advanced.options": "Opcje zaawansowane...", + "advanced.options.desc": "Wybierz konkretny host, architekturę docelową, wersję zestawu narzędzi itp.", + "select.toolset": "Wybierz wersję zestawu narzędzi", + "select.host.target": "Wybierz hosta i architekturę docelową", + "something.wrong": "Wystąpił błąd: {0}", + "dev.env.for": "{0} środowisko deweloperskie dla {1}", + "default.env": "Środowisko domyślne dla {0}", + "host.target": "host = {0}, cel = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/plk/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/plk/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index a1672f55b..cf7f56dbc 100644 --- a/Extension/i18n/plk/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/plk/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "Otwórz pozycję {0}, wpisując „{1}” w menu Start systemu Windows. Wybierz {2}, który automatycznie przeniesie do bieżącego otwartego folderu.", - "walkthrough.windows.press.f5": "Wpisz „{0}” w wierszu polecenia i naciśnij klawisz Enter. To powinno ponownie uruchomić program VS Code i przenieść Cię z powrotem do tego przewodnika. " + "walkthrough.windows.title.apply.dev.env": "Zastosuj środowisko deweloperskie Visual Studio", + "walkthrough.windows.dev.env.required": "Kompilator Visual Studio C++ wymaga ustawienia kilku zmiennych środowiskowych, aby kod został poprawnie skompilowany. Jeśli używasz komputera z systemem Windows i kompilatorem Visual Studio C++, masz dwie możliwości, by zapewnić zastosowanie odpowiedniego środowiska.", + "walkthrough.windows.do.one": " Musisz wykonać tylko jedną z następujących czynności:", + "walkthrough.windows.run.dev.command": "Uruchom polecenie {0}", + "walkthrough.windows.set.dev.environment": "C/C++: ustaw środowisko deweloperskie Visual Studio", + "walkthrough.windows.start.from.dev.command": "Uruchom VS Code z {0}", + "walkthrough.windows.relaunch.command.prompt": "Aby ponownie uruchomić VS Code przy użyciu {0}", + "walkthrough.close.vscode": "Zamknij bieżące wystąpienie programu VS Code.", + "walkthrough.open.command.prompt": "Otwórz {0}, wpisując {1} w menu Start systemu Windows, a następnie wybierz {2}.", + "walkthrough.windows.press.f5": "Wpisz {0} w wierszu polecenia i naciśnij klawisz Enter. Powinno to spowodować ponowne uruchomienie programu VS Code w tym samym obszarze roboczym i powrót do tego przewodnika." } \ No newline at end of file diff --git a/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows.md.i18n.json b/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows.md.i18n.json index 600521a05..eded9ce6e 100644 --- a/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows.md.i18n.json +++ b/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows.md.i18n.json @@ -16,6 +16,6 @@ "walkthrough.windows.link.install": "Zainstaluj", "walkthrough.windows.note1": "Uwaga", "walkthrough.windows.note1.text": "Zestawu narzędzi języka C++ z narzędzi Visual Studio Build Tools wraz z programem Visual Studio Code można używać do kompilowania, tworzenia i weryfikowania dowolnej bazy kodu języka C++, o ile masz również ważną licencję programu Visual Studio (Community, Pro lub Enterprise), której aktywnie używasz do opracowywania tej bazy kodu języka C++.", - "walkthrough.windows.open.command.prompt": "Otwórz pozycję {0}, wpisując „{1}” w menu Start systemu Windows.", + "walkthrough.windows.open.command.prompt": "Otwórz {0}, wpisując {1} w menu Start systemu Windows.", "walkthrough.windows.check.install": "Sprawdź instalację MSVC, wpisując {0} w {1}. Powinien zostać wyświetlony komunikat o prawach autorskich z wersją i podstawowym opisem dotyczącym użycia." } \ No newline at end of file diff --git a/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json index ea6dd1c11..e978b0bcc 100644 --- a/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json +++ b/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Notatka", "walkthrough.windows.note1.text": "Zestawu narzędzi języka C++ z narzędzi Visual Studio Build Tools wraz z programem Visual Studio Code można używać do kompilowania, tworzenia i weryfikowania dowolnej bazy kodu języka C++, o ile masz również ważną licencję programu Visual Studio (Community, Pro lub Enterprise), której aktywnie używasz do opracowywania tej bazy kodu języka C++.", "walkthrough.windows.verify.compiler": "Weryfikowanie instalacji kompilatora", - "walkthrough.windows.open.command.prompt": "Otwórz pozycję {0}, wpisując „{1}” w menu Start systemu Windows.", + "walkthrough.windows.open.command.prompt": "Otwórz {0}, wpisując {1} w menu Start systemu Windows.", "walkthrough.windows.check.install": "Sprawdź instalację MSVC, wpisując {0} w {1}. Powinien zostać wyświetlony komunikat o prawach autorskich z wersją i podstawowym opisem dotyczącym użycia.", "walkthrough.windows.other.compilers": "Inne opcje kompilatora", "walkthrough.windows.text3": "Jeśli zamierzasz korzystać z systemu Linux z poziomu systemu Windows, sprawdź {0}. Możesz też {1}.", diff --git a/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json index ea6dd1c11..e978b0bcc 100644 --- a/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json +++ b/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Notatka", "walkthrough.windows.note1.text": "Zestawu narzędzi języka C++ z narzędzi Visual Studio Build Tools wraz z programem Visual Studio Code można używać do kompilowania, tworzenia i weryfikowania dowolnej bazy kodu języka C++, o ile masz również ważną licencję programu Visual Studio (Community, Pro lub Enterprise), której aktywnie używasz do opracowywania tej bazy kodu języka C++.", "walkthrough.windows.verify.compiler": "Weryfikowanie instalacji kompilatora", - "walkthrough.windows.open.command.prompt": "Otwórz pozycję {0}, wpisując „{1}” w menu Start systemu Windows.", + "walkthrough.windows.open.command.prompt": "Otwórz {0}, wpisując {1} w menu Start systemu Windows.", "walkthrough.windows.check.install": "Sprawdź instalację MSVC, wpisując {0} w {1}. Powinien zostać wyświetlony komunikat o prawach autorskich z wersją i podstawowym opisem dotyczącym użycia.", "walkthrough.windows.other.compilers": "Inne opcje kompilatora", "walkthrough.windows.text3": "Jeśli zamierzasz korzystać z systemu Linux z poziomu systemu Windows, sprawdź {0}. Możesz też {1}.", diff --git a/Extension/i18n/ptb/package.i18n.json b/Extension/i18n/ptb/package.i18n.json index 149251e6e..90dbb4aba 100644 --- a/Extension/i18n/ptb/package.i18n.json +++ b/Extension/i18n/ptb/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Limpar todos os problemas de Análise de código", "c_cpp.command.BuildAndDebugFile.title": "Depurar Arquivo C/C++", "c_cpp.command.BuildAndRunFile.title": "Executar Arquivo C/C++", + "c_cpp.command.SetVsDeveloperEnvironment.title": "Definir o Ambiente de Desenvolvedor do Visual Studio", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "Limpar o Ambiente de Desenvolvedor do Visual Studio", "c_cpp.command.AddDebugConfiguration.title": "Adicionar a Configuração de Depuração", "c_cpp.command.GenerateDoxygenComment.title": "Gerar Comentário do Doxygen", "c_cpp.command.addSshTarget.title": "Adicionar destino SSH", @@ -104,7 +106,7 @@ "c_cpp.configuration.vcFormat.indent.caseContentsWhenBlock.markdownDescription": "Recue os colchetes seguindo uma instrução de caso pela quantidade especificada na configuração `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.lambdaBracesWhenParameter.markdownDescription": "Recue colchetes de lambdas usados ​​como parâmetros de função relativos ao início da instrução pela quantidade especificada na configuração `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.gotoLabels.description": "A posição dos rótulos goto.", - "c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Posicione os rótulos goto à esquerda do recuo do código atual, pelo valor especificado na configuração `#editor.tabSize#`.", + "c_cpp.configuration.vcFormat.indent.gotoLabels.oneLeft.markdownDescription": "Posicione os rótulos goto à esquerda do recuo do código atual, conforme especificado na configuração `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "Posicionar os rótulos goto na borda mais à esquerda do código.", "c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "Os rótulos goto não serão formatados.", "c_cpp.configuration.vcFormat.indent.preprocessor.description": "A posição das diretivas do pré-processador.", @@ -191,12 +193,12 @@ "c_cpp.configuration.inactiveRegionOpacity.markdownDescription": "Controla a opacidade de blocos de pré-processador inativos. Escalas entre `0.1` e `1.0`. Esta configuração só se aplica quando o escurecimento da região inativa está habilitado.", "c_cpp.configuration.inactiveRegionForegroundColor.description": "Controla a cor da fonte dos blocos de pré-processador inativos. A entrada está no formato de um código de cor hexadecimal ou de uma Cor de Tema válida. Se não estiver definido, o esquema de cores de sintaxe do editor será usado como padrão. Esta configuração é aplicável somente quando o esmaecimento da região inativa está habilitado.", "c_cpp.configuration.inactiveRegionBackgroundColor.description": "Controla a cor da tela de fundo dos blocos de pré-processador inativos. A entrada está no formato de um código de cor hexadecimal ou de uma Cor de Tema válida. Se não estiver definido, transparente será usado como padrão. Esta configuração é aplicável somente quando o esmaecimento da região inativa está habilitado.", - "c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Exibir dicas embutidas para o tipo deduzido quando `auto` é usado em uma declaração:\n```cpp \n\n auto index /* : int */ = 0;\n```", - "c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Exibir dicas embutidas para o tipo deduzido quando `auto` é usado em uma declaração à esquerda do identificador:\n```cpp \n\n auto /* int */ index = 0;\n```", - "c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Exibir dicas de inlay para nomes de parâmetro:\n```cpp \n\n int a = getArea(/* largura: */ x, /* peso: */ y);\n```", + "c_cpp.configuration.inlayHints.autoDeclarationTypes.enabled.markdownDescription": "Exibir dicas efetivas para o tipo deduzido quando `auto` é usado em uma declaração:\n```cpp \n\n auto index /* : int */ = 0;\n```", + "c_cpp.configuration.inlayHints.autoDeclarationTypes.showOnLeft.markdownDescription": "Exibir dicas efetivas para o tipo deduzido quando `auto` é usado em uma declaração à esquerda do identificador:\n```cpp \n\n auto /* int */ index = 0;\n```", + "c_cpp.configuration.inlayHints.parameterNames.enabled.markdownDescription": "Exibir dicas efetivas para nomes de parâmetro:\n```cpp \n\n int a = getArea(/* largura: */ x, /* peso: */ y);\n```", "c_cpp.configuration.inlayHints.parameterNames.hideLeadingUnderscores.markdownDescription": "Ocultar o entrelinhamento `_` nas dicas de nome do parâmetro.", "c_cpp.configuration.inlayHints.parameterNames.suppressWhenArgumentContainsName.markdownDescription": "Suprimir dicas de nome de parâmetro quando o texto do argumento ou o comentário embutido contiver o nome do parâmetro:\n```cpp \n\n int a = getArea(largura, /* peso: */ y);\n```", - "c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Exibe o operador de referência de dica de incrustação `&` para parâmetros passados por referência não constante:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```", + "c_cpp.configuration.inlayHints.referenceOperator.enabled.markdownDescription": "Exibe o operador de referência de dica efetiva `&` para parâmetros passados por referência não constante:\n```cpp \n\n swap(/* &first: */ str1, /* &last: */ str2);\n```", "c_cpp.configuration.inlayHints.referenceOperator.showSpace.markdownDescription": "Controla se um espaço é mostrado após `&` para parâmetros passados por referência não constante:\n```cpp \n\n swap(/* & first: */ str1, /* & last: */ str2);\n```", "c_cpp.configuration.loggingLevel.markdownDescription": "O detalhamento do registro no painel de saída. A ordem dos níveis do menos detalhado para o mais detalhado é: `None` < `Error` < `Warning` < `Information` < `Debug`.", "c_cpp.configuration.autoAddFileAssociations.markdownDescription": "Controla se os arquivos são adicionados automaticamente a `#files.associations#` quando eles são o destino de uma operação de navegação de um arquivo C/C++.", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Cpptools: destinos SSH", "c_cpp.contributes.viewsWelcome.contents": "Para saber mais sobre o launch.json, veja [Configuring C/C++ debugging](https://code.visualstudio.com/docs/cpp/launch-json-reference).", "c_cpp.configuration.debugShortcut.description": "Mostrar o botão de reprodução \"Executar e Depurar\" e a engrenagem \"Adicionar Configuração de Depuração\" na barra de título do editor para arquivos C++.", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "Lembre do último ambiente de desenvolvedor do Visual Studio usado para o workspace atual. Esta configuração só é aplicável ao Windows.", "c_cpp.debuggers.pipeTransport.description": "Quando presente, isso instrui o depurador a conectar-se a um computador remoto usando outro executável como um pipe que retransmitirá a entrada/saída padrão entre o VS Code e o executável do back-end do depurador habilitado para MI (como gdb).", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "insira o caminho totalmente qualificado para o nome do programa de pipe, por exemplo '/usr/bin/ssh'.", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "O caminho completo para o depurador no computador de destino, por exemplo, /usr/bin/gdb.", @@ -417,7 +420,7 @@ "c_cpp.debuggers.logging.category.warning.description": "Logs que realçam um evento anormal ou inesperado no fluxo do aplicativo, mas não fazem com que a execução do aplicativo pare.", "c_cpp.debuggers.logging.category.error.description": "Logs que realçam quando o fluxo atual de execução é interrompido devido a uma falha. Isso deve indicar uma falha na atividade atual, não uma falha em todo o aplicativo.", "c_cpp.debuggers.logging.category.none.description": "Não usado para gravar mensagens de log. Especifica que uma categoria de registro em log não deve gravar nenhuma mensagem.", - "c_cpp.walkthrough.title": "Introdução ao desenvolvimento em C++", + "c_cpp.walkthrough.title": "Comece a usar o desenvolvimento em C++", "c_cpp.walkthrough.description": "Mergulhe na rica experiência de desenvolvimento C++ do VS Code.", "c_cpp.walkthrough.set.up.title": "Configure seu ambiente C++", "c_cpp.walkthrough.activating.description": "Ativando a extensão C++ para determinar se seu ambiente C++ foi configurado.\nAtivando extensão...", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "Criar um arquivo C++", "c_cpp.walkthrough.create.cpp.file.description": "[Abrir](command:toSide:workbench.action.files.openFile) ou [criar](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) um arquivo C++. Certifique-se de salvá-lo com a extensão \".cpp\", como \"helloworld.cpp\". \n[Criar um arquivo C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Abra um arquivo C++ ou uma pasta com um projeto C++.", - "c_cpp.walkthrough.command.prompt.title": "Iniciar no Developer Command Prompt for VS", - "c_cpp.walkthrough.command.prompt.description": "Ao usar o compilador Microsoft Visual Studio C++, a extensão C++ exige que você inicie o VS Code no Developer Command Prompt for VS. Siga as instruções à direita para relançar.\n[Recarregar Janela](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "Aplicar o ambiente de desenvolvedor do Visual Studio", + "c_cpp.walkthrough.command.prompt.description": "Ao usar o compilador Microsoft Visual Studio C++, o ambiente de desenvolvedor do Visual Studio precisa estar presente.\n\nSiga as instruções à direita para reiniciar ou clique no botão abaixo.\n[Definir o Ambiente de Desenvolvedor](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "Executar e depurar o arquivo C++", "c_cpp.walkthrough.run.debug.mac.description": "Abra seu arquivo C++ e clique no botão play no canto superior direito do editor ou pressione F5 quando estiver no arquivo. Selecione \"clang++ - Compilar e depurar arquivo ativo\" para executar com o depurador.", "c_cpp.walkthrough.run.debug.linux.description": "Abra seu arquivo C++ e clique no botão play no canto superior direito do editor ou pressione F5 quando estiver no arquivo. Selecione \"g++ - Compilar e depurar arquivo ativo\" para executar com o depurador.", diff --git a/Extension/i18n/ptb/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/ptb/src/Debugger/configurationProvider.i18n.json index 0cf1700d2..30d092bc8 100644 --- a/Extension/i18n/ptb/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/ptb/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "preLaunchTask: {0}", "debugger.path.not.exists": "Não foi possível localizar o {0} depurador. A configuração de depuração para {1} é ignorada.", "build.and.debug.active.file": "Compilar e depurar o arquivo ativo", - "cl.exe.not.available": "{0} só pode ser usado quando o VS Code é executado a partir do {1}.", + "apply.dev.env": "Aplicar o Ambiente de Desenvolvedor", + "cl.exe.not.available": "{0} requer o ambiente de desenvolvedor do Visual Studio.", + "update.dev.env": "Atualizar o Ambiente de Desenvolvedor", + "cancel": "Cancelar", + "dev.env.not.applied": "Não foi possível compilar o código-fonte porque o ambiente de desenvolvedor do Visual Studio não foi aplicado.", + "dev.env.not.found": "Não foi possível compilar o código-fonte porque o compilador Visual C++ não foi encontrado.", "lldb.find.failed": "Dependência ausente '{0}' no executável lldb-mi.", "lldb.search.paths": "Pesquisado em:", "lldb.install.help": "Para resolver esse problema, instale o XCode por meio da Apple App Store ou instale as Ferramentas de Linha de Comando do XCode executando '{0}' em uma janela de Terminal.", diff --git a/Extension/i18n/ptb/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/ptb/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..62e0c44e4 --- /dev/null +++ b/Extension/i18n/ptb/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "Nenhum contexto fornecido", + "not.windows": "O comando \"Definir o Ambiente de Desenvolvedor do Visual Studio\" está disponível somente no Windows", + "error.no.vs": "Não foi encontrada uma instalação do Visual Studio com o compilador C++", + "operation.cancelled": "A operação foi cancelada", + "no.hosts": "Nenhum host encontrado", + "config.dev.env": "Configurando o ambiente de desenvolvedor...", + "select.vs.install": "Selecionar uma instalação do Visual Studio", + "advanced.options": "Opções avançadas...", + "advanced.options.desc": "Selecione uma arquitetura de host e de destino específica, versão do conjunto de ferramentas etc.", + "select.toolset": "Selecionar uma versão do conjunto de ferramentas", + "select.host.target": "Selecionar uma arquitetura de host e de destino", + "something.wrong": "Algo deu errado: {0}", + "dev.env.for": "{0} ambiente de desenvolvedor para {1}", + "default.env": "Ambiente padrão para {0}", + "host.target": "host = {0}, destino = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/ptb/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/ptb/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index 469b3e384..a1c6ae1f0 100644 --- a/Extension/i18n/ptb/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/ptb/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "Abra o {0} digitando \"{1}\" no menu Iniciar do Windows. Selecione o {2}, que navegará automaticamente para a pasta atualmente aberta.", - "walkthrough.windows.press.f5": "Digite \"{0}\" na solicitação de comando e pressione enter. Isso deve relançar o VS Code e levá-lo de volta a este tutorial. " + "walkthrough.windows.title.apply.dev.env": "Aplicar o ambiente de desenvolvedor do Visual Studio", + "walkthrough.windows.dev.env.required": "O compilador Visual Studio C++ exige que muitas variáveis de ambiente estejam definidas para compilar seu código com sucesso. Se você estiver usando um computador Windows com o compilador Visual Studio C++, há duas maneiras de garantir que o ambiente seja aplicado.", + "walkthrough.windows.do.one": " Você só precisa fazer um dos seguintes procedimentos:", + "walkthrough.windows.run.dev.command": "Execute o comando {0}", + "walkthrough.windows.set.dev.environment": "C/C++: Definir o Ambiente de Desenvolvedor do Visual Studio", + "walkthrough.windows.start.from.dev.command": "Iniciar o VS Code a partir do {0}", + "walkthrough.windows.relaunch.command.prompt": "Para reiniciar o VS Code usando o {0}", + "walkthrough.close.vscode": "Feche a instância atual do VS Code.", + "walkthrough.open.command.prompt": "Abra o {0} digitando {1} no menu Iniciar do Windows e selecione o {2}.", + "walkthrough.windows.press.f5": "Digite {0} no prompt de comando e pressione Enter. Isso deve reiniciar o VS Code no mesmo workspace e levar você de volta para este tutorial." } \ No newline at end of file diff --git a/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows.md.i18n.json b/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows.md.i18n.json index 3eb5241f5..8a8f7843b 100644 --- a/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows.md.i18n.json +++ b/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows.md.i18n.json @@ -16,6 +16,6 @@ "walkthrough.windows.link.install": "Instalar", "walkthrough.windows.note1": "Observação", "walkthrough.windows.note1.text": "Você pode usar o conjunto de ferramentas C++ das Ferramentas de Build do Visual Studio junto com o Visual Studio Code para compilar, construir e verificar qualquer base de código C++, contanto que também tenha uma licença válida do Visual Studio (Community, Pro ou Enterprise) que esteja ativamente usando para desenvolver essa base de código C++.", - "walkthrough.windows.open.command.prompt": "Abra o {0} digitando '{1}' no menu Iniciar do Windows.", + "walkthrough.windows.open.command.prompt": "Abra o {0} digitando \"{1}\" no menu Iniciar do Windows.", "walkthrough.windows.check.install": "Verifique sua instalação do MSVC digitando {0} no {1}. Você deverá ver uma mensagem de copyright com a versão e a descrição básica de uso." } \ No newline at end of file diff --git a/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json index a750660fa..ca7d95ff5 100644 --- a/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json +++ b/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Observação", "walkthrough.windows.note1.text": "Você pode usar o conjunto de ferramentas C++ das Ferramentas de Build do Visual Studio junto com o Visual Studio Code para compilar, construir e verificar qualquer base de código C++, contanto que também tenha uma licença válida do Visual Studio (Community, Pro ou Enterprise) que esteja ativamente usando para desenvolver essa base de código C++.", "walkthrough.windows.verify.compiler": "Verificando a instalação do compilador", - "walkthrough.windows.open.command.prompt": "Abra o {0} digitando '{1}' no menu Iniciar do Windows.", + "walkthrough.windows.open.command.prompt": "Abra o {0} digitando \"{1}\" no menu Iniciar do Windows.", "walkthrough.windows.check.install": "Verifique sua instalação do MSVC digitando {0} no {1}. Você deverá ver uma mensagem de copyright com a versão e a descrição básica de uso.", "walkthrough.windows.other.compilers": "Outras opções do compilador", "walkthrough.windows.text3": "Se você está segmentando o Linux a partir do Windows, verifique {0}. Ou você pode {1}.", diff --git a/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json index a750660fa..ca7d95ff5 100644 --- a/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json +++ b/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Observação", "walkthrough.windows.note1.text": "Você pode usar o conjunto de ferramentas C++ das Ferramentas de Build do Visual Studio junto com o Visual Studio Code para compilar, construir e verificar qualquer base de código C++, contanto que também tenha uma licença válida do Visual Studio (Community, Pro ou Enterprise) que esteja ativamente usando para desenvolver essa base de código C++.", "walkthrough.windows.verify.compiler": "Verificando a instalação do compilador", - "walkthrough.windows.open.command.prompt": "Abra o {0} digitando '{1}' no menu Iniciar do Windows.", + "walkthrough.windows.open.command.prompt": "Abra o {0} digitando \"{1}\" no menu Iniciar do Windows.", "walkthrough.windows.check.install": "Verifique sua instalação do MSVC digitando {0} no {1}. Você deverá ver uma mensagem de copyright com a versão e a descrição básica de uso.", "walkthrough.windows.other.compilers": "Outras opções do compilador", "walkthrough.windows.text3": "Se você está segmentando o Linux a partir do Windows, verifique {0}. Ou você pode {1}.", diff --git a/Extension/i18n/rus/package.i18n.json b/Extension/i18n/rus/package.i18n.json index 30e743659..4e465b5b4 100644 --- a/Extension/i18n/rus/package.i18n.json +++ b/Extension/i18n/rus/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Очистка всех проблем анализа кода", "c_cpp.command.BuildAndDebugFile.title": "Выполнить отладку файла C/C++", "c_cpp.command.BuildAndRunFile.title": "Запустить файл C/C++", + "c_cpp.command.SetVsDeveloperEnvironment.title": "Настройка среды разработки Visual Studio", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "Очистить среду разработки Visual Studio", "c_cpp.command.AddDebugConfiguration.title": "Добавление конфигурации отладки", "c_cpp.command.GenerateDoxygenComment.title": "Создать комментарий Doxygen", "c_cpp.command.addSshTarget.title": "Добавить целевой объект SSH", @@ -108,7 +110,7 @@ "c_cpp.configuration.vcFormat.indent.gotoLabels.leftmostColumn.markdownDescription": "Метки goto располагаются в крайнем левом положении в коде.", "c_cpp.configuration.vcFormat.indent.gotoLabels.none.markdownDescription": "Метки goto форматироваться не будут.", "c_cpp.configuration.vcFormat.indent.preprocessor.description": "Положение директив препроцессора.", - "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Директивы препроцессора располагаются слева от текущего отступа кода, размер которого определяется параметром `#editor.tabSize#`.", + "c_cpp.configuration.vcFormat.indent.preprocessor.oneLeft.markdownDescription": "Директивы препроцессора располагаются слева от текущего отступа кода на величину, указанную параметром `#editor.tabSize#`.", "c_cpp.configuration.vcFormat.indent.preprocessor.leftmostColumn.markdownDescription": "Директивы препроцессора располагаются в крайнем левом положении в коде.", "c_cpp.configuration.vcFormat.indent.preprocessor.none.markdownDescription": "Директивы препроцессора форматироваться не будут.", "c_cpp.configuration.vcFormat.indent.accessSpecifiers.markdownDescription": "Добавление отступа для описателей доступа относительно определений классов или структур на величину, указанную параметром `#editor.tabSize#`.", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Cpptools: целевые объекты SSH", "c_cpp.contributes.viewsWelcome.contents": "Дополнительные сведения о launch.json см. в статье [Настройка отладки C/C++](https://code.visualstudio.com/docs/cpp/launch-json-reference).", "c_cpp.configuration.debugShortcut.description": "Отображение кнопки воспроизведения \"Запуск и отладка\" и шестеренки \"Добавить конфигурацию отладки\" в заголовке окна редактора для файлов C++.", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "Запомнить последнюю использованную среду разработки Visual Studio для текущей рабочей области. Этот параметр применим только к Windows.", "c_cpp.debuggers.pipeTransport.description": "При наличии сообщает отладчику о необходимости подключения к удаленному компьютеру с помощью другого исполняемого файла в качестве канала, который будет пересылать стандартный ввод и вывод между VS Code и исполняемым файлом отладчика с поддержкой MI в серверной части (например, gdb).", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "введите полный путь к имени программы канала, например: \"/usr/bin/ssh\".", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "Полный путь к отладчику на конечном компьютере, например: /usr/bin/gdb.", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "Создание файла C++", "c_cpp.walkthrough.create.cpp.file.description": "[Открыть](command:toSide:workbench.action.files.openFile) или [создать](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) файл C++. Обязательно сохраните его с расширением \".cpp\", например \"helloworld.cpp\".\n[Создать файл C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Откройте файл C++ или папку с проектом C++.", - "c_cpp.walkthrough.command.prompt.title": "Запустить из Developer Command Prompt for VS", - "c_cpp.walkthrough.command.prompt.description": "При использовании компилятора Microsoft Visual Studio C++ расширение C++ требует запуска VS Code из Developer Command Prompt for VS. Для перезапуска следуйте инструкциям справа.\n[Перезагрузить окно](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "Применить среду разработки Visual Studio", + "c_cpp.walkthrough.command.prompt.description": "При использовании компилятора Microsoft Visual Studio C++ должна присутствовать среда разработки Visual Studio.\n\nСледуйте инструкциям справа для перезапуска или нажмите кнопку ниже.\n[Настроить среду разработки](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "Запустите и отладьте файл C++", "c_cpp.walkthrough.run.debug.mac.description": "Откройте файл C++ и нажмите кнопку воспроизведения в правом верхнем углу редактора или нажмите F5 при открытии файла. Выберите \"clang++— сборка и отладка активного файла\" для запуска с отладчиком.", "c_cpp.walkthrough.run.debug.linux.description": "Откройте файл C++ и нажмите кнопку воспроизведения в правом верхнем углу редактора или нажмите F5 при открытии файла. Выберите \"g++ — сборка и отладка активного файла\" для запуска с отладчиком.", diff --git a/Extension/i18n/rus/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/rus/src/Debugger/configurationProvider.i18n.json index 743211eba..16a3158dc 100644 --- a/Extension/i18n/rus/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/rus/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "ЗадачаПредварительногоЗапуска: {0}", "debugger.path.not.exists": "Не удается найти отладчик {0}. Конфигурация отладки для {1} игнорируется.", "build.and.debug.active.file": "сборка и отладка активного файла", - "cl.exe.not.available": "{0} можно использовать только при запуске VS Code из {1}.", + "apply.dev.env": "Применить среду разработки", + "cl.exe.not.available": "{0} требует среды разработки Visual Studio.", + "update.dev.env": "Обновить среду разработки", + "cancel": "Отмена", + "dev.env.not.applied": "Не удалось собрать исходный код, так как не была применена среда разработки Visual Studio.", + "dev.env.not.found": "Не удалось собрать исходный код, так как не найден компилятор Visual C++.", "lldb.find.failed": "Отсутствует зависимость \"{0}\" для исполняемого файла lldb-mi.", "lldb.search.paths": "Поиск был выполнен в следующих расположениях:", "lldb.install.help": "Чтобы устранить эту проблему, установите XCode через Apple App Store или установите средства командной строки XCode, выполнив команду \"{0}\" в окне терминала.", diff --git a/Extension/i18n/rus/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/rus/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..8b4ff781f --- /dev/null +++ b/Extension/i18n/rus/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "Контекст не указан", + "not.windows": "Команда \"Настройка среды разработки Visual Studio\" доступна только в Windows", + "error.no.vs": "Установка Visual Studio с компилятором C++ не найдена", + "operation.cancelled": "Операция отменена", + "no.hosts": "Узлы не найдены", + "config.dev.env": "Настройка среды разработки...", + "select.vs.install": "Выбрать установку Visual Studio", + "advanced.options": "Расширенные параметры...", + "advanced.options.desc": "Выберите конкретную архитектуру узла и целевую архитектуру, версию набора инструментов и т. д.", + "select.toolset": "Выбрать версию набора инструментов", + "select.host.target": "Выбрать узел и целевую архитектуру", + "something.wrong": "Что-то пошло не так: {0}", + "dev.env.for": "Среда разработки {0} для {1}", + "default.env": "Среда по умолчанию для {0}", + "host.target": "узел = {0}, цель = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/rus/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/rus/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index c785ebd83..f8567e1fa 100644 --- a/Extension/i18n/rus/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/rus/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "Откройте {0}, введя \"{1}\" в меню \"Пуск\" в Windows. Выберите {2}. Вы автоматически перейдете к текущей открытой папке.", - "walkthrough.windows.press.f5": "Введите \"{0}\" в командную строку и нажмите ВВОД. Это должно перезапустить VS Code и вернуть вас к этому пошаговому руководству. " + "walkthrough.windows.title.apply.dev.env": "Применить среду разработки Visual Studio", + "walkthrough.windows.dev.env.required": "Компилятор Visual Studio C++ требует настройки нескольких переменных среды для успешной компиляции кода. Если вы используете компьютер с Windows и компилятор Visual Studio C++, существует два способа убедиться, что среда применена.", + "walkthrough.windows.do.one": " Необходимо выполнить только одно из следующих действий:", + "walkthrough.windows.run.dev.command": "Запустить команду {0}", + "walkthrough.windows.set.dev.environment": "C/C++: настройка среды разработки Visual Studio", + "walkthrough.windows.start.from.dev.command": "Запустить VS Code из {0}", + "walkthrough.windows.relaunch.command.prompt": "Чтобы перезапустить VS Code с помощью {0}", + "walkthrough.close.vscode": "Закройте текущий экземпляр VS Code.", + "walkthrough.open.command.prompt": "Откройте {0} путем ввода {1} в меню \"Пуск\" в Windows, а затем выберите {2}.", + "walkthrough.windows.press.f5": "Введите {0} в командную строку и нажмите клавишу ВВОД. Это должно перезапустить VS Code в той же рабочей области и вернуть вас к этому пошаговому руководству." } \ No newline at end of file diff --git a/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows.md.i18n.json b/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows.md.i18n.json index 3c1d19649..9a593f26a 100644 --- a/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows.md.i18n.json +++ b/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows.md.i18n.json @@ -16,6 +16,6 @@ "walkthrough.windows.link.install": "Установка", "walkthrough.windows.note1": "Примечание", "walkthrough.windows.note1.text": "Вы можете использовать набор инструментов C++ из пакета Visual Studio Build Tools вместе с Visual Studio Code для компиляции, сборки и проверки любой базы кода C++, если у вас есть действующая лицензия Visual Studio (Community, Pro или Enterprise), которой вы активно пользуетесь для разработки этой базы кода C++.", - "walkthrough.windows.open.command.prompt": "Откройте {0}, введя \"{1}\" в меню \"Пуск\" в Windows.", + "walkthrough.windows.open.command.prompt": "Откройте {0} путем ввода {1} в меню \"Пуск\" в Windows.", "walkthrough.windows.check.install": "Проверьте установку MSVC, введя \"{0}\" в {1}. Должно появиться сообщение об авторских правах с номером версии и кратким описанием использования." } \ No newline at end of file diff --git a/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json index 14a8f0565..7c4e0ec62 100644 --- a/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json +++ b/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Примечание", "walkthrough.windows.note1.text": "Вы можете использовать набор инструментов C++ из пакета Visual Studio Build Tools вместе с Visual Studio Code для компиляции, сборки и проверки любой базы кода C++, если у вас есть действующая лицензия Visual Studio (Community, Pro или Enterprise), которой вы активно пользуетесь для разработки этой базы кода C++.", "walkthrough.windows.verify.compiler": "Проверка установки компилятора", - "walkthrough.windows.open.command.prompt": "Откройте {0}, введя \"{1}\" в меню \"Пуск\" в Windows.", + "walkthrough.windows.open.command.prompt": "Откройте {0} путем ввода {1} в меню \"Пуск\" в Windows.", "walkthrough.windows.check.install": "Проверьте установку MSVC, введя \"{0}\" в {1}. Должно появиться сообщение об авторских правах с номером версии и кратким описанием использования.", "walkthrough.windows.other.compilers": "Другие параметры компилятора", "walkthrough.windows.text3": "Если вы нацеливаетесь на Linux из Windows, ознакомьтесь с {0}. Также вы можете {1}.", diff --git a/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json index 14a8f0565..7c4e0ec62 100644 --- a/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json +++ b/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Примечание", "walkthrough.windows.note1.text": "Вы можете использовать набор инструментов C++ из пакета Visual Studio Build Tools вместе с Visual Studio Code для компиляции, сборки и проверки любой базы кода C++, если у вас есть действующая лицензия Visual Studio (Community, Pro или Enterprise), которой вы активно пользуетесь для разработки этой базы кода C++.", "walkthrough.windows.verify.compiler": "Проверка установки компилятора", - "walkthrough.windows.open.command.prompt": "Откройте {0}, введя \"{1}\" в меню \"Пуск\" в Windows.", + "walkthrough.windows.open.command.prompt": "Откройте {0} путем ввода {1} в меню \"Пуск\" в Windows.", "walkthrough.windows.check.install": "Проверьте установку MSVC, введя \"{0}\" в {1}. Должно появиться сообщение об авторских правах с номером версии и кратким описанием использования.", "walkthrough.windows.other.compilers": "Другие параметры компилятора", "walkthrough.windows.text3": "Если вы нацеливаетесь на Linux из Windows, ознакомьтесь с {0}. Также вы можете {1}.", diff --git a/Extension/i18n/trk/package.i18n.json b/Extension/i18n/trk/package.i18n.json index 90c846fd4..54ac8741f 100644 --- a/Extension/i18n/trk/package.i18n.json +++ b/Extension/i18n/trk/package.i18n.json @@ -42,6 +42,8 @@ "c_cpp.command.RemoveAllCodeAnalysisProblems.title": "Tüm Kod Analizi Sorunlarını Temizle", "c_cpp.command.BuildAndDebugFile.title": "C/C++ Dosyasında Hata Ayıklama", "c_cpp.command.BuildAndRunFile.title": "C/C++ Dosyasını Çalıştırın", + "c_cpp.command.SetVsDeveloperEnvironment.title": "Visual Studio Geliştirici Ortamını Ayarlama", + "c_cpp.command.ClearVsDeveloperEnvironment.title": "Visual Studio Geliştirici Ortamını Temizle", "c_cpp.command.AddDebugConfiguration.title": "Hata Ayıklama Yapılandırması Ekle", "c_cpp.command.GenerateDoxygenComment.title": "Doxygen Açıklaması Oluştur", "c_cpp.command.addSshTarget.title": "SSH hedefi ekleyin", @@ -269,6 +271,7 @@ "c_cpp.contributes.views.sshTargetsView.title": "Cpptools: SSH hedefleri", "c_cpp.contributes.viewsWelcome.contents": "launch.json hakkında daha fazla bilgi için [C/C++ hata ayıklamasını yapılandırma](https://code.visualstudio.com/docs/cpp/launch-json-reference) konusuna bakın.", "c_cpp.configuration.debugShortcut.description": "C++ dosyaları için \"Çalıştır ve Hata Ayıkla\" yürütme düğmesini ve \"Hata Ayıklama Yapılandırması Ekle\" dişlisini düzenleyici başlık çubuğunda gösterin.", + "c_cpp.configuration.persistVsDeveloperEnvironment.description": "Geçerli çalışma alanı için en son kullanılan Visual Studio geliştirici ortamını hatırlayın. Bu ayar yalnızca Windows için geçerlidir.", "c_cpp.debuggers.pipeTransport.description": "Mevcut olduğunda, hata ayıklayıcısına, VS Code ile MI özellikli hata ayıklayıcısı arka uç yürütülebilir dosyası (gdb gibi) arasında standart giriş/çıkış geçişi sağlayan bir kanal olarak görev yapacak başka bir yürütülebilir dosya aracılığıyla uzak bilgisayara bağlanmasını söyler.", "c_cpp.debuggers.pipeTransport.default.pipeProgram": "Kanal program adı için tam yolu girin, örneğin '/usr/bin/ssh'.", "c_cpp.debuggers.pipeTransport.default.debuggerPath": "Hedef makinedeki hata ayıklayıcısının tam yolu. Örneğin: /usr/bin/gdb.", @@ -417,9 +420,9 @@ "c_cpp.debuggers.logging.category.warning.description": "Uygulama akışında olağan dışı veya beklenmeyen bir olayı vurgulayan, ancak uygulama yürütmenin durdurulmasına neden olmayan günlükler.", "c_cpp.debuggers.logging.category.error.description": "Bir hata nedeniyle geçerli yürütme akışı durdurulurken vurgulayan günlükler. Bunlar, uygulama genelindeki bir hatayı değil, geçerli etkinlikte bir hata olduğunu göstermelidir.", "c_cpp.debuggers.logging.category.none.description": "Günlük iletilerini yazmak için kullanılmaz. Bir günlük kategorisinin ileti yazmaması gerektiğini belirtir.", - "c_cpp.walkthrough.title": "C++ Geliştirmeye Başlayın", + "c_cpp.walkthrough.title": "C++ geliştirmeye başlayın", "c_cpp.walkthrough.description": "VS Code'un zengin C++ geliştirme deneyimine dalın.", - "c_cpp.walkthrough.set.up.title": "C++ Ortamınızı kurun", + "c_cpp.walkthrough.set.up.title": "C++ ortamınızı kurun", "c_cpp.walkthrough.activating.description": "C++ Ortamınızın kurulup kurulmadığını belirlemek için C++ uzantısını etkinleştirme.\nUzantı Etkinleştiriliyor...", "c_cpp.walkthrough.no.compilers.windows.description": "Makinenizde C++ uzantısını kullanmak için gerekli olan bir C++ derleyicisi bulamadık. Bir tane yüklemek için sağdaki talimatları izleyin, ardından aşağıdaki “Yeni Derleyicimi bul” seçeneğine tıklayın.\n[Yeni Derleyicimi bul](command:C_Cpp.RescanCompilers?%22walkthrough%22)", "c_cpp.walkthrough.no.compilers.description": "Makinenizde C++ uzantısını kullanmak için gerekli olan bir C++ derleyicisi bulamadık. Sizin için bir derleyicinin kurulmasını sağlamak için “C++ Derleyicisi Kur”u seçin veya bir derleyiciyi kurmak için sağdaki yönergeleri izleyin ve ardından aşağıdaki “Yeni Derleyicimi Bul”a tıklayın.\n[Bir C++ Derleyicisi yükle](command:C_Cpp.InstallCompiler?%22walkthrough%22)\n[Yeni Derleyicimi bul](command:C_Cpp.RescanCompilers?%22walkthrough%22)", @@ -428,8 +431,8 @@ "c_cpp.walkthrough.create.cpp.file.title": "C++ dosyası oluşturun", "c_cpp.walkthrough.create.cpp.file.description": "Bir C++ dosyasını [açın](command:toSide:workbench.action.files.openFile) veya C++ dosyası [oluşturun](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D). Dosyayı \".cpp\" uzantısıyla (ör. \"helloworld.cpp\".) kaydetmeyi unutmayın.\n[C++ dosyası oluşturun](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Bir C++ dosyası veya bir klasörü C++ projesiyle açın.", - "c_cpp.walkthrough.command.prompt.title": "Developer Command Prompt for VS'tan başlat", - "c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ derleyicisini kullanırken, C++ uzantısı, Developer Command Prompt for VS'tan VS Code'u başlatmanızı gerektirir. Yeniden başlatmak için sağdaki talimatları izleyin.\n[Yeniden Yükleme Penceresi](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.title": "Visual Studio geliştirici ortamını uygulayın", + "c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ derleyicisini kullanırken, Visual Studio geliştirici ortamı mevcut olmalıdır.\n\nYeniden başlatmak için sağdaki yönergeleri izleyin veya aşağıdaki düğmeyi tıklayın.\n[Geliştirici Ortamını Ayarla](command:C_Cpp.SetVsDeveloperEnvironment?%22walkthrough%22)", "c_cpp.walkthrough.run.debug.title": "C++ dosyanızı çalıştırın ve hata ayıklayın", "c_cpp.walkthrough.run.debug.mac.description": "C++ dosyanızı açın ve düzenleyicinin sağ üst köşesindeki oynat düğmesine tıklayın veya dosyadayken F5'e basın. Hata ayıklayıcı ile çalıştırmak için \"clang++ - Etkin dosya derle ve hata ayıkla\" seçeneğini seçin.", "c_cpp.walkthrough.run.debug.linux.description": "C++ dosyanızı açın ve düzenleyicinin sağ üst köşesindeki oynat düğmesine tıklayın veya dosyadayken F5'e basın. Hata ayıklayıcı ile çalıştırmak için \"g++ - Aktif dosya derle ve hata ayıkla\"yı seçin.", diff --git a/Extension/i18n/trk/src/Debugger/configurationProvider.i18n.json b/Extension/i18n/trk/src/Debugger/configurationProvider.i18n.json index 3867fc289..04905e115 100644 --- a/Extension/i18n/trk/src/Debugger/configurationProvider.i18n.json +++ b/Extension/i18n/trk/src/Debugger/configurationProvider.i18n.json @@ -17,7 +17,12 @@ "pre.Launch.Task": "preLaunchTask: {0}", "debugger.path.not.exists": "{0} Hata ayıklayıcı bulunamadı. {1} için hata ayıklama yapılandırması yok sayıldı.", "build.and.debug.active.file": "etkin dosyayı derle ve dosyada hata ayıkla", - "cl.exe.not.available": "{0} yalnızca VS Code {1} öğesinden çalıştırıldığında kullanılabilir.", + "apply.dev.env": "Geliştirici Ortamını Uygula", + "cl.exe.not.available": "{0}, Visual Studio geliştirici ortamını gerektirir.", + "update.dev.env": "Geliştirici Ortamını Güncelleştir", + "cancel": "İptal", + "dev.env.not.applied": "Visual Studio geliştirici ortamı uygulanmadığı için kaynak kodu oluşturulamadı.", + "dev.env.not.found": "Visual C++ derleyicisi bulunamadığı için kaynak kodu derlenemedi.", "lldb.find.failed": "lldb-mi yürütülebilir dosyası için '{0}' bağımlılığı eksik.", "lldb.search.paths": "Şurada arandı:", "lldb.install.help": "Bu sorunu çözmek için, Apple App Store üzerinden XCode'u yükleyin ya da bir Terminal penceresinde '{0}' çalıştırarak XCode Komut Satırı Araçları'nı yükleyin.", diff --git a/Extension/i18n/trk/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/trk/src/LanguageServer/devcmd.i18n.json new file mode 100644 index 000000000..96877df0f --- /dev/null +++ b/Extension/i18n/trk/src/LanguageServer/devcmd.i18n.json @@ -0,0 +1,22 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "no.context.provided": "Bağlam sağlanmadı", + "not.windows": "“Visual Studio Geliştirici Ortamını Ayarla” komutu yalnızca Windows'ta kullanılabilir", + "error.no.vs": "C++ derleyicisi ile Visual Studio kurulumu bulunamadı", + "operation.cancelled": "Operasyon iptal edildi", + "no.hosts": "Bulunan ana bilgisayar yok", + "config.dev.env": "Geliştirici ortamı yapılandırılıyor...", + "select.vs.install": "Bir Visual Studio yüklemesi seçin", + "advanced.options": "Gelişmiş seçenekler...", + "advanced.options.desc": "Belirli bir ana bilgisayar ve hedef mimari, araç seti sürümü vb. seçin.", + "select.toolset": "Bir araç seti sürümü seçin", + "select.host.target": "Bir ana bilgisayar ve hedef mimari seçin", + "something.wrong": "Bir sorun oluştu: {0}", + "dev.env.for": "{1} için {0} geliştirici ortamı", + "default.env": "{0} için varsayılan ortam", + "host.target": "konak = {0}, hedef = {1}" +} \ No newline at end of file diff --git a/Extension/i18n/trk/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json b/Extension/i18n/trk/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json index 7fd65d7a1..358bf5a43 100644 --- a/Extension/i18n/trk/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json +++ b/Extension/i18n/trk/walkthrough/devcommandprompt/open-developer-command-prompt.md.i18n.json @@ -4,6 +4,14 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthrough.open.command.prompt": "Windows Başlat menüsüne “{1}” yazarak {0} öğesini açın. Mevcut açık klasörünüze otomatik olarak gidecek olan {2} öğesini seçin.", - "walkthrough.windows.press.f5": "Komut istemine \"{0}\" yazın ve enter tuşuna basın. Bu, VS Code'u yeniden başlatmalı ve sizi bu izlenecek yola geri götürmelidir. " + "walkthrough.windows.title.apply.dev.env": "Visual Studio geliştirici ortamını uygulayın", + "walkthrough.windows.dev.env.required": "Visual Studio C++ derleyicisi, kodunuzu başarıyla derlemek için birkaç ortam değişkeninin ayarlanmasını gerektirir. Visual Studio C++ derleyicisi ile bir Windows makinesi kullanıyorsanız, ortamın uygulandığından emin olmanın iki yolu vardır.", + "walkthrough.windows.do.one": " Aşağıdakilerden sadece birini yapmanız yeterlidir:", + "walkthrough.windows.run.dev.command": "{0} komutunu çalıştır:", + "walkthrough.windows.set.dev.environment": "C/C++: Visual Studio Geliştirici Ortamını Ayarlama", + "walkthrough.windows.start.from.dev.command": "{0}'den VS Code'u başlatın", + "walkthrough.windows.relaunch.command.prompt": "{0} kullanarak VS Code'u yeniden başlatmak için", + "walkthrough.close.vscode": "VS Code'un mevcut örneğini kapatın.", + "walkthrough.open.command.prompt": "Windows Başlat menüsünde {1} yazarak {0}'i açın ve ardından {2}'ü seçin.", + "walkthrough.windows.press.f5": "Komut istemine {0} yazın ve enter tuşuna basın. Bu, VS Code'u aynı çalışma alanında yeniden başlatmalı ve sizi bu adım adım kılavuza geri götürmelidir." } \ No newline at end of file diff --git a/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows.md.i18n.json b/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows.md.i18n.json index 4b3ebac19..b50556347 100644 --- a/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows.md.i18n.json +++ b/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows.md.i18n.json @@ -16,6 +16,6 @@ "walkthrough.windows.link.install": "Yükle", "walkthrough.windows.note1": "Not", "walkthrough.windows.note1.text": "Herhangi bir C++ kod temelini derlemek, oluşturmak ve doğrulamak için Visual Studio Code ile birlikte Visual Studio Derleme Araçları’nda bulunan C++ araç takımını kullanabilirsiniz. Bunun yanı sıra, bu C++ kod temelini geliştirmek için etkin olarak kullandığınız geçerli bir Visual Studio lisansına (Community, Pro veya Enterprise) sahip olursunuz.", - "walkthrough.windows.open.command.prompt": "Windows Başlat menüsüne '{1}' yazarak {0} öğesini açın.", + "walkthrough.windows.open.command.prompt": "Windows Başlat menüsünde {1} yazarak {0}'i açın.", "walkthrough.windows.check.install": "{1} içine {0} yazarak MSVC yüklemenizi kontrol edin. Sürüm ve temel kullanım açıklamasını içeren bir telif hakkı iletisi göreceksiniz." } \ No newline at end of file diff --git a/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json index 274017de0..936c8b1eb 100644 --- a/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json +++ b/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Not", "walkthrough.windows.note1.text": "Herhangi bir C++ kod temelini derlemek, oluşturmak ve doğrulamak için Visual Studio Code ile birlikte Visual Studio Derleme Araçları’nda bulunan C++ araç takımını kullanabilirsiniz. Bunun yanı sıra, bu C++ kod temelini geliştirmek için etkin olarak kullandığınız geçerli bir Visual Studio lisansına (Community, Pro veya Enterprise) sahip olursunuz.", "walkthrough.windows.verify.compiler": "Derleyici yüklemesi doğrulanıyor", - "walkthrough.windows.open.command.prompt": "Windows Başlat menüsüne '{1}' yazarak {0} öğesini açın.", + "walkthrough.windows.open.command.prompt": "Windows Başlat menüsünde {1} yazarak {0}'i açın.", "walkthrough.windows.check.install": "{1} içine {0} yazarak MSVC yüklemenizi kontrol edin. Sürüm ve temel kullanım açıklamasını içeren bir telif hakkı iletisi göreceksiniz.", "walkthrough.windows.other.compilers": "Diğer derleme seçenekleri", "walkthrough.windows.text3": "Windows'tan Linux'u hedefliyorsanız {0}‘a bakın. Veya, {1}.", diff --git a/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json index 274017de0..936c8b1eb 100644 --- a/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json +++ b/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -10,7 +10,7 @@ "walkthrough.windows.note1": "Not", "walkthrough.windows.note1.text": "Herhangi bir C++ kod temelini derlemek, oluşturmak ve doğrulamak için Visual Studio Code ile birlikte Visual Studio Derleme Araçları’nda bulunan C++ araç takımını kullanabilirsiniz. Bunun yanı sıra, bu C++ kod temelini geliştirmek için etkin olarak kullandığınız geçerli bir Visual Studio lisansına (Community, Pro veya Enterprise) sahip olursunuz.", "walkthrough.windows.verify.compiler": "Derleyici yüklemesi doğrulanıyor", - "walkthrough.windows.open.command.prompt": "Windows Başlat menüsüne '{1}' yazarak {0} öğesini açın.", + "walkthrough.windows.open.command.prompt": "Windows Başlat menüsünde {1} yazarak {0}'i açın.", "walkthrough.windows.check.install": "{1} içine {0} yazarak MSVC yüklemenizi kontrol edin. Sürüm ve temel kullanım açıklamasını içeren bir telif hakkı iletisi göreceksiniz.", "walkthrough.windows.other.compilers": "Diğer derleme seçenekleri", "walkthrough.windows.text3": "Windows'tan Linux'u hedefliyorsanız {0}‘a bakın. Veya, {1}.",