diff --git a/Extension/i18n/chs/package.i18n.json b/Extension/i18n/chs/package.i18n.json index 0cf6f4409e..5bbbeeef2d 100644 --- a/Extension/i18n/chs/package.i18n.json +++ b/Extension/i18n/chs/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "编辑配置(UI)", "c_cpp.command.selectDefaultCompiler.title": "选择默认编译器...", "c_cpp.command.selectIntelliSenseConfiguration.title": "选择 IntelliSense 配置...", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "重新扫描编译器", "c_cpp.command.switchHeaderSource.title": "切换标头/源", "c_cpp.command.enableErrorSquiggles.title": "启用错误波形曲线", @@ -416,7 +417,8 @@ "c_cpp.walkthrough.description": "深入了解 VS Code 丰富的 C++ 开发体验。", "c_cpp.walkthrough.set.up.title": "设置 C++ 环境", "c_cpp.walkthrough.activating.description": "激活 C++ 扩展以确定是否已设置 C++ 环境。\n正在激活扩展...", - "c_cpp.walkthrough.no.compilers.description": "无法在计算机上找到 C++ 编译器,这是使用 C++ 扩展所必需的。请按照右侧的说明安装一个编译器,然后单击下面的“查找我的新编译器”。\n[查找我的新编译器](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.description": "C++ 扩展需要与 C++ 编译器一起使用。通过单击下面的按钮从计算机上已有的编译器中选择一个。\n[选择我的默认编译器](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "显示在用户计算机上找到的选定默认编译器快捷检查和编译器列表的图像,其中一个已选定。", "c_cpp.walkthrough.create.cpp.file.title": "创建 C++ 文件", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "可以通过在播放按钮右侧选择“添加调试配置”来自定义调试配置(例如,在运行时传递参数给程序)。自定义调试配置将保存在项目的 launch.json 文件中。\n[了解更多](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "可以通过在播放按钮右侧选择“添加调试配置”来自定义调试配置(例如,在运行时传递参数给程序)。自定义调试配置将保存在项目的 launch.json 文件中。\n[了解更多](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "可以通过在播放按钮右侧选择“添加调试配置”来自定义调试配置(例如,在运行时传递参数给程序)。自定义的调试配置将保存在项目的 launch.json 文件中。\n[了解更多](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "显示下拉列表中“添加调试配置”的图像" + "c_cpp.walkthrough.customize.debugging.altText": "显示下拉列表中“添加调试配置”的图像", + "c_cpp.codeActions.refactor.inline.macro.title": "内联宏", + "c_cpp.codeActions.refactor.inline.macro.description": "将宏调用替换为展开的代码。" } \ No newline at end of file diff --git a/Extension/i18n/chs/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/chs/src/Debugger/ParsedEnvironmentFile.i18n.json index 82976b5983..1e1c0e64de 100644 --- a/Extension/i18n/chs/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/chs/src/Debugger/ParsedEnvironmentFile.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "ignoring.lines.in.envfile": "忽略 {0} {1} 中不可分析的行:" + "ignoring.lines.in.envfile": "忽略 {0} {1} 中不可分析的行: " } \ No newline at end of file diff --git a/Extension/i18n/chs/src/Debugger/extension.i18n.json b/Extension/i18n/chs/src/Debugger/extension.i18n.json index c72c10f0bf..f77e92bdba 100644 --- a/Extension/i18n/chs/src/Debugger/extension.i18n.json +++ b/Extension/i18n/chs/src/Debugger/extension.i18n.json @@ -14,5 +14,5 @@ "select.ssh.config.file": "选择 SSH 配置文件", "yes": "是", "no": "否", - "ssh.target.delete.confirmation": "是否确实要永久删除“{0}”?" + "ssh.target.delete.confirmation": "是否确定要永久删除“{0}”?" } \ No newline at end of file diff --git a/Extension/i18n/chs/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/chs/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..2f51df985c --- /dev/null +++ b/Extension/i18n/chs/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "扩展到:", + "inline.macro": "内联宏", + "inline.macro.not.available": "内联宏在此位置不可用。" +} \ No newline at end of file diff --git a/Extension/i18n/chs/src/LanguageServer/client.i18n.json b/Extension/i18n/chs/src/LanguageServer/client.i18n.json index 1c13c7d74a..edd55d6caa 100644 --- a/Extension/i18n/chs/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/chs/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "使用 {0}", "selectAnotherCompiler.string": "在我的计算机上选择另一个编译器...", "installCompiler.string": "帮助我安装编译器", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "请勿适用编译器进行配置(不推荐)", "selectCompiler.string": "选择编译器", "confirmCompiler.string": "是", @@ -27,7 +28,7 @@ "server.crashed2": "在过去 3 分钟内,语言服务器崩溃了 5 次。它不会重新启动。", "loggingLevel.changed": "{0} 已更改为: {1}", "dismiss.button": "消除", - "diable.warnings.button": "禁用警告", + "disable.warnings.button": "禁用警告", "unable.to.provide.configuration": "{0} 无法为“{1}”提供 IntelliSense 配置信息。将改为使用“{2}”配置中的设置。", "config.not.found": "找不到请求的配置名称: {0}", "unsupported.client": "不支持的客户端", diff --git a/Extension/i18n/chs/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/chs/src/LanguageServer/codeAnalysis.i18n.json index 3af2e7725a..b9d1b538b1 100644 --- a/Extension/i18n/chs/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/chs/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "修复所有代码分析问题", - "clear_all_code_analysis_problems": "清除所有代码分析问题", - "fix_all_type_problems": "修复所有 {0} 问题", - "disable_all_type_problems": "禁用所有 {0} 问题", - "clear_all_type_problems": "清除所有{0}问题", - "clear_this_problem": "清除此 {0} 问题", - "fix_this_problem": "修复此 {0} 问题", - "show_documentation_for": "显示 {0} 文档" + "fix.all.code.analysis.problems": "修复所有代码分析问题", + "clear.all.code.analysis.problems": "清除所有代码分析问题", + "fix.all.type.problems": "修复所有 {0} 问题", + "disable.all.type.problems": "禁用所有 {0} 问题", + "clear.all.type.problems": "清除所有{0}问题", + "clear.this.problem": "清除此 {0} 问题", + "fix.this.problem": "修复此 {0} 问题", + "show.documentation.for": "显示 {0} 文档" } \ No newline at end of file diff --git a/Extension/i18n/chs/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/chs/src/LanguageServer/cppBuildTaskProvider.i18n.json index cdf14ab7ee..3affb1be81 100644 --- a/Extension/i18n/chs/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/chs/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "生成活动文件", - "compiler_details": "编译器:", - "task_generated_by_debugger": "调试器生成的任务。", + "build.active.file": "生成活动文件", + "compiler.details": "编译器:", + "task.generated.by.debugger": "调试器生成的任务。", "cannot.build.non.cpp": "无法生成和调试,因为活动文件不是 C 或 C++ 源文件。", - "starting_build": "正在启动生成...", + "starting.build": "正在启动生成...", "build.run.terminated": "生成运行已终止。", "build.finished.with.error": "生成已完成,但出现错误。", "build.finished.with.warnings": "生成已完成,但收到警告。", diff --git a/Extension/i18n/chs/src/LanguageServer/extension.i18n.json b/Extension/i18n/chs/src/LanguageServer/extension.i18n.json index e46ec78267..7869d1e334 100644 --- a/Extension/i18n/chs/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/chs/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "将用于安装“{0}”的 vcpkg 命令复制到剪贴板", "on.disabled.command": "当 `C_Cpp.intelliSenseEngine` 设置为 `disabled` 时,无法执行与 IntelliSense 相关的命令。", "client.not.found": "未找到客户端", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "首先打开一个文件夹以选择配置。", "configuration.provider.select.first": "首先打开一个文件夹以选择配置提供程序。", "edit.configurations.open.first": "首先打开一个文件夹以编辑配置", diff --git a/Extension/i18n/chs/src/LanguageServer/ui.i18n.json b/Extension/i18n/chs/src/LanguageServer/ui.i18n.json index fe78ff2668..f52cebbd7a 100644 --- a/Extension/i18n/chs/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/chs/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense: 正在更新", + "idle.intellisense.text": "IntelliSense: 就绪", + "absent.intellisense.text": "IntelliSense: 未配置", + "initializing.tagparser.text": "正在初始化工作区", + "indexing.tagparser.text": "正在索引工作区", "running.tagparser.text": "分析工作区", "paused.tagparser.text": "分析工作区: 已暂停", "complete.tagparser.text": "分析完毕", - "initializing.tagparser.text": "正在初始化工作区", - "indexing.tagparser.text": "正在索引工作区", "rescan.tagparse.text": "重新扫描工作区", "c.cpp.parsing.open.files.tooltip": "正在分析打开的文件", - "click.to.preview": "单击以预览结果", - "updating.intellisense.text": "IntelliSense: 正在更新", - "idle.intellisense.text": "IntelliSense: 就绪", - "absent.intellisense.text": "IntelliSense: 未配置", "running.analysis.text": "Code Analysis: 正在运行", "paused.analysis.text": "Code Analysis: 已暂停", "mode.analysis.prefix": "Code Analysis 模式:", + "click.to.preview": "单击以预览结果", "c.cpp.configureIntelliSenseStatus.text": "配置 IntelliSense", - "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ 配置 IntelliSense", - "c.cpp.configuration.tooltip": "C/C++ 配置", - "c.cpp.references.statusbar": "C/C++ 引用状态", "cpptools.status.intellisense": "C/C++ IntelliSense 状态", + "intellisense.select.text": "选择编译器", + "rescan.intellisense.text": "重新扫描", + "rescan.intellisense.tooltip": "重新扫描 IntelliSense", "cpptools.status.tagparser": "C/C++ 标记分析器状态", "cpptools.detail.tagparser": "正在初始化...", + "tagparser.resume.text": "继续", + "tagparser.pause.text": "暂停", "cpptools.status.codeanalysis": "C/C++ Code Analysis 状态", "c.cpp.codeanalysis.statusbar.runNow": "立即运行", - "tagparser.pause.text": "暂停", - "tagparser.resume.text": "继续", - "intellisense.select.text": "选择编译器", - "rescan.intellisense.text": "重新扫描", - "rescan.intellisense.tooltip": "重新扫描 IntelliSense", "mode.codeanalysis.status.automatic": "自动", "mode.codeanalysis.status.manual": "手动", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "选项", "startup.codeanalysis.status": "正在启动...", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "立即运行", "running.analysis.processed.tooltip": "正在运行: {0}/{1} ({2}%)", + "select.code.analysis.command": "选择代码分析命令...", + "cancel.analysis": "取消", + "resume.analysis": "继续", + "pause.analysis": "暂停", + "another.analysis": "启动另一个...", + "select.command": "选择命令...", + "active.analysis": "在活动文件上运行 Code Analysis", + "all.analysis": "在所有文件上运行 Code Analysis", + "open.analysis": "在打开的文件上运行 Code Analysis", + "c.cpp.references.statusbar": "C/C++ 引用状态", + "c.cpp.configuration.tooltip": "C/C++ 配置", + "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ 配置 IntelliSense", "select.a.configuration": "选择配置...", "edit.configuration.ui": "编辑配置(UI)", "edit.configuration.json": "编辑配置(JSON)", @@ -46,16 +55,5 @@ "none": "无", "disable.configuration.provider": "禁用活动配置提供程序(如果适用)。", "select.compile.commands": "选择 compile_commands.json...", - "select.workspace": "选择工作区文件夹…", - "select.command": "选择命令...", - "select.code.analysis.command": "选择代码分析命令...", - "resume.parsing": "恢复工作区分析", - "pause.parsing": "暂停工作区分析", - "cancel.analysis": "取消", - "resume.analysis": "继续", - "pause.analysis": "暂停", - "another.analysis": "启动另一个...", - "active.analysis": "在活动文件上运行 Code Analysis", - "all.analysis": "在所有文件上运行 Code Analysis", - "open.analysis": "在打开的文件上运行 Code Analysis" + "select.workspace": "选择工作区文件夹…" } \ No newline at end of file diff --git a/Extension/i18n/chs/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/chs/src/SSH/sshCommandRunner.i18n.json index d96523ca4d..af78ab0673 100644 --- a/Extension/i18n/chs/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/chs/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "已取消 SSH 命令", "ssh.passphrase.input.box": "输入 ssh 密钥的密码{0}", "ssh.enter.password.for.user": "输入用户 \"{0}\" 的密码", - "ssh_message_enterPassword": "输入密码", + "ssh.message.enter.password": "输入密码", "ssh.continue.confirmation.placeholder": "您确定要继续吗?", "ssh.host.key.confirmation.title": "\"{0}\" 具有指纹 \"{1}\"。", "continue": "继续", diff --git a/Extension/i18n/chs/src/nativeStrings.i18n.json b/Extension/i18n/chs/src/nativeStrings.i18n.json index 505df1bc15..7c4a2082d2 100644 --- a/Extension/i18n/chs/src/nativeStrings.i18n.json +++ b/Extension/i18n/chs/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "未能在路径 \"{0}\" 处查询编译器以获得默认标准版本。已对此编译器禁用编译器查询。", "unrecognized_language_standard_version": "编译器查询返回了无法识别的语言标准版本。将改用受支持的最新版本。", "intellisense_process_crash_detected": "检测到 IntelliSense 进程崩溃。", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "返回值:", "nvcc_compiler_not_found": "找不到 nvcc 编译器: {0}", "nvcc_host_compiler_not_found": "找不到 nvcc 主机编译器: {0}", @@ -294,7 +295,7 @@ "refactor_operation_unsupported": "此操作不支持“%s”。", "unknown_error": "未知错误。", "run_select_intellisense_configuration": "请运行“选择 IntelliSense 配置...”命令以定位系统标头。", - "offer_copy_declaration": "\"{0}\" 的复制声明", - "offer_copy_definition": "\"{0}\" 的复制定义", + "offer_copy_declaration": "复制 '{0}' 的声明", + "offer_copy_definition": "复制 '{0}' 的定义", "refactor_copy_declaration_definition_failed": "将声明/定义复制到剪贴板失败: %s" } \ No newline at end of file diff --git a/Extension/i18n/chs/ui/settings.html.i18n.json b/Extension/i18n/chs/ui/settings.html.i18n.json index bb334d1a4d..43036eea03 100644 --- a/Extension/i18n/chs/ui/settings.html.i18n.json +++ b/Extension/i18n/chs/ui/settings.html.i18n.json @@ -27,7 +27,7 @@ "specify.a.compiler": "指定编译器路径或从下拉列表中选择检测到的编译器路径。", "no.compiler.paths.detected": "(未检测到编译器路径)", "compiler.args": "编译器参数", - "compiler.arguments": "用于修改所使用的包含或定义的编译器参数,例如 {0}、{1} 等。采用其他空格分隔参数的参数应在数组中作为为单独的参数输入,例如,对于 {2} 使用 {3}。", + "compiler.arguments": "用于修改所使用的包含或定义的编译器参数,例如 {0}、{1} 等。采用其他空格分隔参数的参数应在数组中作为单独的参数输入,例如,对于 {2} 使用 {3}。", "one.argument.per.line": "每行一个参数。", "intellisense.mode": "IntelliSense 模式", "intellisense.mode.description": "要使用的 IntelliSense 模式,该模式映射到 MSVC、gcc 或 Clang 的平台和体系结构变体。如果未设置或设置为 {0},则扩展将选择该平台的默认值。Windows 默认为 {1},Linux 默认为 {2},macOS 默认为 {3}。选择特定 IntelliSense 模式以替代 {4} 模式。仅指定 {5} 变体(例如 {6})的 IntelliSense 模式是旧模式,它们会根据主机平台自动转换为 {7} 变体。", diff --git a/Extension/i18n/chs/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/chs/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 1b23fd9db9..1725a24519 100644 --- a/Extension/i18n/chs/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/chs/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "在 macOS 上安装 C++ 编译器", - "walkthough.mac.text1": "如果要为 macOS 进行 C++ 开发,建议安装 Clang 编译器。只需在“终端”窗口(Ctrl+Shift+ `)中运行以下命令即可安装命令行开发人员工具:", - "walkthough.mac.text2": "然后,要验证已安装 clang,请在“终端”窗口中运行以下命令。你应该会看到一条消息,其中包含有关所使用的 Clang 版本的信息。" + "walkthrough.mac.install.compiler": "在 macOS 上安装 C++ 编译器", + "walkthrough.mac.text1": "如果要为 macOS 进行 C++ 开发,建议安装 Clang 编译器。只需在“终端”窗口(Ctrl+Shift+ `)中运行以下命令即可安装命令行开发人员工具:", + "walkthrough.mac.text2": "然后,要验证已安装 clang,请在“终端”窗口中运行以下命令。你应该会看到一条消息,其中包含有关所使用的 Clang 版本的信息。" } \ 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/chs/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/cht/package.i18n.json b/Extension/i18n/cht/package.i18n.json index 1b69c3fe0a..748bf7aa7a 100644 --- a/Extension/i18n/cht/package.i18n.json +++ b/Extension/i18n/cht/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "編輯組態 (UI)", "c_cpp.command.selectDefaultCompiler.title": "選取預設編譯器...", "c_cpp.command.selectIntelliSenseConfiguration.title": "選取 IntelliSense 設定...", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "掃描編譯器", "c_cpp.command.switchHeaderSource.title": "切換標頭/來源", "c_cpp.command.enableErrorSquiggles.title": "啟用錯誤波浪線", @@ -416,7 +417,8 @@ "c_cpp.walkthrough.description": "深入了解 VS Code 豐富的 C++ 開發體驗。", "c_cpp.walkthrough.set.up.title": "設定您的 C++ 環境", "c_cpp.walkthrough.activating.description": "啟用 C++ 延伸模組,以判斷是否已設定您的 C++ 環境。\n正在啟用延伸模組...", - "c_cpp.walkthrough.no.compilers.description": "我們在您的電腦上找不到 C++ 編譯器,這是使用 C++ 延伸模組所需項目。請遵循右側的指示來安裝,然後按一下下方的 [尋找我的新編譯器]。\n[尋找我的新編譯器](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.description": "C++ 延伸模組可與 C++ 編譯器搭配運作。按一下下方的按鈕,從電腦上已存在的編譯器選取一個。\n[選取我的預設編譯器](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "影像顯示選取預設編譯器快速選取,以及在使用者電腦上找到的編譯器清單 (已選取其中一個)。", "c_cpp.walkthrough.create.cpp.file.title": "建立 C++ 檔案", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "您可以選取播放按鈕右側的 [新增偵錯設定],以自訂您的偵錯設定 (例如,在執行階段將引數傳遞至程式)。自訂偵錯設定會儲存於專案的 launch.json 檔案中。\n[深入了解](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "您可以選取播放按鈕右側的 [新增偵錯設定],以自訂您的偵錯設定 (例如,在執行階段將引數傳遞至程式)。自訂偵錯設定會儲存於專案的 launch.json 檔案中。\n[深入了解](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "您可以選取播放按鈕右邊的 [新增偵錯設定],以自訂您的偵錯設定 (例如,在執行階段將引數傳遞至程式)。自訂偵錯設定會儲存於專案的 launch.json 檔案中。\n[深入了解](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "影像顯示下拉式清單中 [新增偵錯設定]" + "c_cpp.walkthrough.customize.debugging.altText": "影像顯示下拉式清單中 [新增偵錯設定]", + "c_cpp.codeActions.refactor.inline.macro.title": "內嵌巨集", + "c_cpp.codeActions.refactor.inline.macro.description": "以展開程式碼取代巨集調用。" } \ No newline at end of file diff --git a/Extension/i18n/cht/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/cht/src/Debugger/ParsedEnvironmentFile.i18n.json index 79bb1f8ce5..649dbbcac7 100644 --- a/Extension/i18n/cht/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/cht/src/Debugger/ParsedEnvironmentFile.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "ignoring.lines.in.envfile": "正在忽略 {0} {1} 中無法剖析的行:" + "ignoring.lines.in.envfile": "正在忽略 {0} {1} 中無法剖析的行: " } \ No newline at end of file diff --git a/Extension/i18n/cht/src/Debugger/extension.i18n.json b/Extension/i18n/cht/src/Debugger/extension.i18n.json index 4b5060965e..f14758b3d0 100644 --- a/Extension/i18n/cht/src/Debugger/extension.i18n.json +++ b/Extension/i18n/cht/src/Debugger/extension.i18n.json @@ -14,5 +14,5 @@ "select.ssh.config.file": "選取 SSH 設定檔", "yes": "是", "no": "否", - "ssh.target.delete.confirmation": "確定要永久刪除 \"{0}\" 嗎?" + "ssh.target.delete.confirmation": "您確定要永久刪除 \"{0}\" 嗎?" } \ No newline at end of file diff --git a/Extension/i18n/cht/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/cht/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..1d33337e43 --- /dev/null +++ b/Extension/i18n/cht/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "展開至:", + "inline.macro": "內嵌巨集", + "inline.macro.not.available": "無法在此位置使用內嵌巨集。" +} \ No newline at end of file diff --git a/Extension/i18n/cht/src/LanguageServer/client.i18n.json b/Extension/i18n/cht/src/LanguageServer/client.i18n.json index 2838697a5a..8e985e728d 100644 --- a/Extension/i18n/cht/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/cht/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "使用 {0}", "selectAnotherCompiler.string": "在我的機器上選取另一個編譯器...", "installCompiler.string": "協助我安裝編譯器", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "不要設定編譯器 (不建議)", "selectCompiler.string": "選取編譯器", "confirmCompiler.string": "是", @@ -27,7 +28,7 @@ "server.crashed2": "語言伺服器在過去 3 分鐘內發生 5 次故障。將不會重新啟動。", "loggingLevel.changed": "{0} 已變更為: {1}", "dismiss.button": "關閉", - "diable.warnings.button": "停用警告", + "disable.warnings.button": "停用警告", "unable.to.provide.configuration": "{0} 無法提供 '{1}' 的 IntelliSense 組態資訊。將改用來自 '{2}' 組態的設定。", "config.not.found": "找不到要求的組態名稱: {0}", "unsupported.client": "不支援的用戶端", diff --git a/Extension/i18n/cht/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/cht/src/LanguageServer/codeAnalysis.i18n.json index 08d50733cf..d57259ab1e 100644 --- a/Extension/i18n/cht/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/cht/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "修正所有程式碼分析問題", - "clear_all_code_analysis_problems": "清除所有程式碼分析問題", - "fix_all_type_problems": "修正所有 {0} 問題", - "disable_all_type_problems": "停用所有 {0} 問題", - "clear_all_type_problems": "清除所有 {0} 問題", - "clear_this_problem": "清除此 {0} 問題", - "fix_this_problem": "修正此 {0} 問題", - "show_documentation_for": "顯示 {0} 的文件" + "fix.all.code.analysis.problems": "修正所有程式碼分析問題", + "clear.all.code.analysis.problems": "清除所有程式碼分析問題", + "fix.all.type.problems": "修正所有 {0} 問題", + "disable.all.type.problems": "停用所有 {0} 問題", + "clear.all.type.problems": "清除所有 {0} 問題", + "clear.this.problem": "清除此 {0} 問題", + "fix.this.problem": "修正此 {0} 問題", + "show.documentation.for": "顯示 {0} 的文件" } \ No newline at end of file diff --git a/Extension/i18n/cht/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/cht/src/LanguageServer/cppBuildTaskProvider.i18n.json index 8e5a6ed7dc..4d5d7dbf72 100644 --- a/Extension/i18n/cht/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/cht/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "建置使用中檔案", - "compiler_details": "編譯器:", - "task_generated_by_debugger": "偵錯工具產生的工作。", + "build.active.file": "建置使用中檔案", + "compiler.details": "編譯器:", + "task.generated.by.debugger": "偵錯工具產生的工作。", "cannot.build.non.cpp": "因為作用中的檔案不是 C 或 C++ 來源檔案,所以無法建立和偵錯。", - "starting_build": "正在開始建置...", + "starting.build": "正在開始建置...", "build.run.terminated": "已終止建置執行。", "build.finished.with.error": "建置已完成,但發生錯誤。", "build.finished.with.warnings": "建置已完成,但出現警告。", diff --git a/Extension/i18n/cht/src/LanguageServer/extension.i18n.json b/Extension/i18n/cht/src/LanguageServer/extension.i18n.json index e9cf474038..5cb2b620c2 100644 --- a/Extension/i18n/cht/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/cht/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "將用於安裝 '{0}' 的 vcpkg 命令複製到剪貼簿", "on.disabled.command": "當 `C_Cpp.intelliSenseEngine` 設為 `disabled` 時,無法執行IntelliSense 的相關命令。", "client.not.found": "找不到用戶端", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "先開啟資料夾以選取設定。", "configuration.provider.select.first": "先開啟資料夾以選取設定提供者。", "edit.configurations.open.first": "先開啟資料夾以編輯組態", diff --git a/Extension/i18n/cht/src/LanguageServer/ui.i18n.json b/Extension/i18n/cht/src/LanguageServer/ui.i18n.json index b85098e16d..59c2c09276 100644 --- a/Extension/i18n/cht/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/cht/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense: 更新中", + "idle.intellisense.text": "IntelliSense: 就緒", + "absent.intellisense.text": "IntelliSense: 未設定", + "initializing.tagparser.text": "正在初始化工作區", + "indexing.tagparser.text": "索引工作區", "running.tagparser.text": "剖析工作區", "paused.tagparser.text": "剖析工作區: 已暫停", "complete.tagparser.text": "剖析完成", - "initializing.tagparser.text": "正在初始化工作區", - "indexing.tagparser.text": "索引工作區", "rescan.tagparse.text": "重新掃描工作區", "c.cpp.parsing.open.files.tooltip": "剖析開啟的檔案", - "click.to.preview": "按一下以預覽結果", - "updating.intellisense.text": "IntelliSense: 更新中", - "idle.intellisense.text": "IntelliSense: 就緒", - "absent.intellisense.text": "IntelliSense: 未設定", "running.analysis.text": "Code Analysis: 執行中", "paused.analysis.text": "Code Analysis: 已暫停", "mode.analysis.prefix": "Code Analysis 模式: ", + "click.to.preview": "按一下以預覽結果", "c.cpp.configureIntelliSenseStatus.text": "設定 IntelliSense", - "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ 設定 IntelliSense", - "c.cpp.configuration.tooltip": "C/C++ 組態", - "c.cpp.references.statusbar": "C/C++ 參考狀態", "cpptools.status.intellisense": "C/C++ IntelliSense 狀態", + "intellisense.select.text": "選取編譯器", + "rescan.intellisense.text": "重新掃描", + "rescan.intellisense.tooltip": "重新掃描 IntelliSense", "cpptools.status.tagparser": "C/C++ 標記剖析器狀態", "cpptools.detail.tagparser": "正在初始化...", + "tagparser.resume.text": "繼續", + "tagparser.pause.text": "暫停", "cpptools.status.codeanalysis": "C/C++ Code Analysis 狀態", "c.cpp.codeanalysis.statusbar.runNow": "立即執行", - "tagparser.pause.text": "暫停", - "tagparser.resume.text": "繼續", - "intellisense.select.text": "選取編譯器", - "rescan.intellisense.text": "重新掃描", - "rescan.intellisense.tooltip": "重新掃描 IntelliSense", "mode.codeanalysis.status.automatic": "自動", "mode.codeanalysis.status.manual": "手動", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "選項", "startup.codeanalysis.status": "正在啟動...", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "立即執行", "running.analysis.processed.tooltip": "正在執行: {0} / {1} ({2}%)", + "select.code.analysis.command": "選取程式碼分析命令...", + "cancel.analysis": "取消", + "resume.analysis": "繼續", + "pause.analysis": "暫停", + "another.analysis": "啟動另一個...", + "select.command": "選取命令...", + "active.analysis": "在使用中檔案上執行程式碼分析", + "all.analysis": "在所有檔案上執行程式碼分析", + "open.analysis": "在開啟檔案上執行程式碼分析", + "c.cpp.references.statusbar": "C/C++ 參考狀態", + "c.cpp.configuration.tooltip": "C/C++ 組態", + "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ 設定 IntelliSense", "select.a.configuration": "選取組態...", "edit.configuration.ui": "編輯組態 (UI)", "edit.configuration.json": "編輯組態 (JSON)", @@ -46,16 +55,5 @@ "none": "無", "disable.configuration.provider": "如果適用,停用現有組態提供者。", "select.compile.commands": "選取 compile_commands.json...", - "select.workspace": "選取工作區資料夾...", - "select.command": "選取命令...", - "select.code.analysis.command": "選取程式碼分析命令...", - "resume.parsing": "繼續工作區剖析", - "pause.parsing": "暫停工作區剖析", - "cancel.analysis": "取消", - "resume.analysis": "繼續", - "pause.analysis": "暫停", - "another.analysis": "啟動另一個...", - "active.analysis": "在使用中檔案上執行程式碼分析", - "all.analysis": "在所有檔案上執行程式碼分析", - "open.analysis": "在開啟檔案上執行程式碼分析" + "select.workspace": "選取工作區資料夾..." } \ No newline at end of file diff --git a/Extension/i18n/cht/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/cht/src/SSH/sshCommandRunner.i18n.json index e4eb9b551e..e0b9ca8f42 100644 --- a/Extension/i18n/cht/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/cht/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "SSH 命令已取消", "ssh.passphrase.input.box": "輸入 ssh 金鑰 {0} 的複雜密碼", "ssh.enter.password.for.user": "輸入使用者 \"{0}\" 的密碼", - "ssh_message_enterPassword": "輸入密碼", + "ssh.message.enter.password": "輸入密碼", "ssh.continue.confirmation.placeholder": "您確定要繼續嗎?", "ssh.host.key.confirmation.title": "「{0}」具有指紋「{1}」。", "continue": "繼續", diff --git a/Extension/i18n/cht/src/nativeStrings.i18n.json b/Extension/i18n/cht/src/nativeStrings.i18n.json index 362ca8e8e9..e7b85b4881 100644 --- a/Extension/i18n/cht/src/nativeStrings.i18n.json +++ b/Extension/i18n/cht/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "無法查詢位於路徑 \"{0}\" 的編譯器預設標準版本。已停用此編譯器的編譯器查詢。", "unrecognized_language_standard_version": "編譯器查詢傳回無法辨識的語言標準版本。將改用支援的最新版本。", "intellisense_process_crash_detected": "偵測到 IntelliSense 流程損毀。", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "傳回值:", "nvcc_compiler_not_found": "找不到 nvcc 編譯器: {0}", "nvcc_host_compiler_not_found": "找不到 nvcc 主機編譯器: {0}", diff --git a/Extension/i18n/cht/ui/settings.html.i18n.json b/Extension/i18n/cht/ui/settings.html.i18n.json index 5cea0f81db..febd46d6e1 100644 --- a/Extension/i18n/cht/ui/settings.html.i18n.json +++ b/Extension/i18n/cht/ui/settings.html.i18n.json @@ -32,7 +32,7 @@ "intellisense.mode": "IntelliSense 模式", "intellisense.mode.description": "要使用的 IntelliSense 模式 (對應到 MSVC、gcc 或 Clang 的平台及架構變體)。如果未設定或設為 {0},延伸模組會選擇該平台的預設。Windows 預設為 {1}、Linux 預設為 {2}、macOS 預設為 {3}。選取特定的 IntelliSense 模式可覆寫 {4} 模式。僅指定 {5} 變體 (例如 {6}) 的 IntelliSense 模式即為舊版模式,會依據主機平台自動轉換為 {7} 變體。", "include.path": "包含路徑", - "include.path.description": "include 路徑是包含來源檔案所含之標頭檔 (例如 {0}) 的資料夾。請為 IntelliSense 引擎指定搜尋所含標頭檔時所要使用的路徑清單。這些路徑不會重複搜尋。若要重複搜尋,請指定 {1}。例如 {2} 會搜尋所有子目錄,而 {3} 不會。若在安裝了 Visual Studio 的 Windows 上,或在 {4} 設定中指定了編譯器,就無須在此清單中列出系統的 include 路徑。", + "include.path.description": "include 路徑是包含來源檔案所含之標頭檔 (例如 {0}) 的資料夾。請為 Intellisense 引擎指定搜尋所含標頭檔時所要使用的路徑清單。這些路徑不會重複搜尋。若要重複搜尋,請指定 {1}。例如 {2} 會搜尋所有子目錄,而 {3} 不會。若在安裝了 Visual Studio 的 Windows 上,或在 {4} 設定中指定了編譯器,就無須在此清單中列出系統的 include 路徑。", "one.include.path.per.line": "每行一個包含路徑。", "defines": "定義", "defines.description": "剖析檔案時,IntelliSense 引擎要使用的前置處理器定義清單。可使用 {0} 來設定值,例如 {1}。", @@ -65,4 +65,4 @@ "limit.symbols.checkbox": "若為 {0} (或已選取),標籤剖析器只會剖析 {1} 中原始程式檔直接或間接包含的程式碼檔。若為 {2} (或未選取),標籤剖析器會剖析在 {3} 清單中的指定路徑找到的所有程式碼檔。", "database.filename": "瀏覽: 資料庫檔案名稱", "database.filename.description": "產生符號資料庫路徑。這會指示延伸模組將標籤剖析器的符號資料庫儲存在工作區預設儲存位置以外的某處。如果指定了相對路徑,就會是相對於工作區預設儲存位置 (非工作區資料夾本身) 的路徑。{0} 變數可用於指定相對於工作區資料夾的路徑 (例如 {1})。" -} +} \ No newline at end of file diff --git a/Extension/i18n/cht/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/cht/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 3b8a867c6a..d2419a85f1 100644 --- a/Extension/i18n/cht/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/cht/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "在 macOS 上安裝 C++ 編譯器", - "walkthough.mac.text1": "如果您執行 macOS 的 C++ 開發,建議您安裝 Clang 編譯器。您只需要在終端機視窗 (Ctrl+Shift+`) 中執行下列命令,以安裝命令列開發人員工具:", - "walkthough.mac.text2": "然後,若要確認是否已安裝 Clang,請在終端視窗中執行下列命令。您應該會看到一個訊息,其中包含您目前使用之 Clang 版本的資訊。" + "walkthrough.mac.install.compiler": "在 macOS 上安裝 C++ 編譯器", + "walkthrough.mac.text1": "如果您執行 macOS 的 C++ 開發,建議您安裝 Clang 編譯器。您只需要在終端機視窗 (Ctrl+Shift+`) 中執行下列命令,以安裝命令列開發人員工具:", + "walkthrough.mac.text2": "然後,若要確認是否已安裝 Clang,請在終端視窗中執行下列命令。您應該會看到一個訊息,其中包含您目前使用之 Clang 版本的資訊。" } \ 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/cht/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/csy/package.i18n.json b/Extension/i18n/csy/package.i18n.json index 41042a2068..65057f0301 100644 --- a/Extension/i18n/csy/package.i18n.json +++ b/Extension/i18n/csy/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "Upravit konfigurace (uživatelské rozhraní)", "c_cpp.command.selectDefaultCompiler.title": "Vybrat výchozí kompilátor...", "c_cpp.command.selectIntelliSenseConfiguration.title": "Vybrat konfiguraci IntelliSense...", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "Znovu prohledat kompilátory", "c_cpp.command.switchHeaderSource.title": "Přepnout hlavičku/zdroj", "c_cpp.command.enableErrorSquiggles.title": "Povolit podtrhávání chyb vlnovkou", @@ -416,14 +417,15 @@ "c_cpp.walkthrough.description": "Ponořte se do bohatého vývojového prostředí jazyka C++ VS Code.", "c_cpp.walkthrough.set.up.title": "Nastavení vašeho prostředí C++", "c_cpp.walkthrough.activating.description": "Aktivuje se rozšíření C++, aby se zjistilo, jestli je vaše prostředí C++ nastavené.\nRozšíření se aktivuje...", - "c_cpp.walkthrough.no.compilers.description": "Na vašem počítači jsme nenašli kompilátor C++, který je nutný k použití rozšíření C++. Nainstalujte si ho podle pokynů na pravé straně a potom klikněte níže na Najít můj nový kompilátor.\n[Najít můj nový kompilátor](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", - "c_cpp.walkthrough.compilers.found.description": "Rozšíření C++ funguje s kompilátorem C++. Vyberte jednu z těch, které už máte na počítači, kliknutím na tlačítko níže.\n [Vybrat můj Výchozí kompilátor](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.compilers.found.description": "Rozšíření C++ funguje s kompilátorem C++. Vyberte jednu z těch, které už máte na počítači, kliknutím na tlačítko níže.\n [Vybrat můj Výchozí kompilátor] (příkaz:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Obrázek znázorňující výběr výchozího rychlého výběru kompilátoru a seznam kompilátorů nalezených na počítači uživatelů, z nichž jeden je vybraný.", "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.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 příkazového řádku vývojáře", - "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 příkazového řádku vývojáře. 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.description": "Při použití kompilátoru Microsoft Visual Studio C++ vyžaduje rozšíření C++ spuštění VS Code z příkazového řádku vývojáře. Postupujte podle pokynů na pravé straně a spusťte ho znovu.\n [Znovu načíst okno] (command:workbench.action.reloadWindow)", "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.", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "Konfiguraci ladění (např. za účelem předání argumentů do programu za běhu) můžete přizpůsobit výběrem možnosti Přidat konfiguraci ladění napravo od tlačítka Přehrát. Vlastní konfigurace ladění se uloží do souboru launch.json vašeho projektu. \n[Další informace](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "Konfiguraci ladění (např. za účelem předání argumentů do vašeho programu za běhu) můžete přizpůsobit výběrem možnosti Přidat konfiguraci ladění napravo od tlačítka Přehrát. Vlastní konfigurace ladění se uloží do souboru launch.json vašeho projektu. \n[Další informace](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "Konfiguraci ladění (např. za účelem předání argumentů do vašeho programu za běhu) můžete přizpůsobit výběrem možnosti Přidat konfiguraci ladění napravo od tlačítka Přehrát. Vlastní konfigurace ladění se uloží do souboru launch.json vašeho projektu. \n[Další informace](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "Obrázek znázorňující přidání konfigurace ladění v rozevíracím seznamu" -} + "c_cpp.walkthrough.customize.debugging.altText": "Obrázek znázorňující přidání konfigurace ladění v rozevíracím seznamu", + "c_cpp.codeActions.refactor.inline.macro.title": "Inline macro", + "c_cpp.codeActions.refactor.inline.macro.description": "Replace the macro invocation with the expanded code." +} \ No newline at end of file diff --git a/Extension/i18n/csy/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/csy/src/Debugger/ParsedEnvironmentFile.i18n.json index eefaa6cdaa..0a258ca299 100644 --- a/Extension/i18n/csy/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/csy/src/Debugger/ParsedEnvironmentFile.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "ignoring.lines.in.envfile": "Ignorují se řádky v souboru {1} typu {0}, které se nedají parsovat: " + "ignoring.lines.in.envfile": "Ignoring non-parsable lines in {0} {1}: " } \ No newline at end of file diff --git a/Extension/i18n/csy/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/csy/src/Debugger/debugAdapterDescriptorFactory.i18n.json index bf6c8c6fbb..c42e57fa7c 100644 --- a/Extension/i18n/csy/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/csy/src/Debugger/debugAdapterDescriptorFactory.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "debugger.not.available": "Typ ladicího programu {0} není pro počítače, které nepoužívají Windows, k dispozici." + "debugger.not.available": "Debugger type '{0}' is not available for non-Windows machines." } \ No newline at end of file diff --git a/Extension/i18n/csy/src/Debugger/extension.i18n.json b/Extension/i18n/csy/src/Debugger/extension.i18n.json index dc8512c83c..7385554e98 100644 --- a/Extension/i18n/csy/src/Debugger/extension.i18n.json +++ b/Extension/i18n/csy/src/Debugger/extension.i18n.json @@ -14,5 +14,5 @@ "select.ssh.config.file": "Vyberte konfigurační soubor SSH.", "yes": "Ano", "no": "Ne", - "ssh.target.delete.confirmation": "Opravdu chcete„{0}“ trvale odstranit?" + "ssh.target.delete.confirmation": "Are you sure you want to permanently delete \"{0}\"?" } \ No newline at end of file diff --git a/Extension/i18n/csy/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/csy/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..1db42ae6e4 --- /dev/null +++ b/Extension/i18n/csy/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "Expands to:", + "inline.macro": "Inline macro", + "inline.macro.not.available": "Inline macro is not available at this location." +} \ No newline at end of file diff --git a/Extension/i18n/csy/src/LanguageServer/client.i18n.json b/Extension/i18n/csy/src/LanguageServer/client.i18n.json index 03034cf94f..bddc5de42f 100644 --- a/Extension/i18n/csy/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/csy/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "Použít {0}", "selectAnotherCompiler.string": "Vybrat jiný kompilátor na mém počítači...", "installCompiler.string": "Pomoc s instalací kompilátoru", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "Nekonfigurovat pomocí kompilátoru (nedoporučuje se)", "selectCompiler.string": "Vybrat kompilátor", "confirmCompiler.string": "Ano", @@ -27,7 +28,7 @@ "server.crashed2": "Jazykový server se 5krát za poslední 3 minuty chybově ukončil. Nebude se restartovat.", "loggingLevel.changed": "{0} se změnila na: {1}", "dismiss.button": "Zrušit", - "diable.warnings.button": "Zakázat upozornění", + "disable.warnings.button": "Disable Warnings", "unable.to.provide.configuration": "{0} nemůže poskytnout informace pro konfiguraci IntelliSense pro {1}. Místo nich se použijí nastavení z konfigurace {2}.", "config.not.found": "Požadovaný název konfigurace se nenašel: {0}", "unsupported.client": "Nepodporovaný klient", diff --git a/Extension/i18n/csy/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/csy/src/LanguageServer/codeAnalysis.i18n.json index 2494f9ffee..10927cace0 100644 --- a/Extension/i18n/csy/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/csy/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "Opravit všechny problémy s analýzou kódu", - "clear_all_code_analysis_problems": "Vymazat všechny problémy s analýzou kódu", - "fix_all_type_problems": "Opravit všechny problémy {0}", - "disable_all_type_problems": "Zakázat všechny problémy {0}", - "clear_all_type_problems": "Vymazat všechny problémy {0}", - "clear_this_problem": "Vymazat tento problém {0}", - "fix_this_problem": "Opravit tento problém {0}", - "show_documentation_for": "Zobrazit dokumentaci pro {0}" + "fix.all.code.analysis.problems": "Opravit všechny problémy s analýzou kódu", + "clear.all.code.analysis.problems": "Vymazat všechny problémy s analýzou kódu", + "fix.all.type.problems": "Opravit všechny problémy {0}", + "disable.all.type.problems": "Zakázat všechny problémy {0}", + "clear.all.type.problems": "Vymazat všechny problémy {0}", + "clear.this.problem": "Vymazat tento problém {0}", + "fix.this.problem": "Opravit tento problém {0}", + "show.documentation.for": "Zobrazit dokumentaci pro {0}" } \ No newline at end of file diff --git a/Extension/i18n/csy/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/csy/src/LanguageServer/cppBuildTaskProvider.i18n.json index 5971d896d2..9578ae236f 100644 --- a/Extension/i18n/csy/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/csy/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "sestavit aktivní soubor", - "compiler_details": "kompilátor:", - "task_generated_by_debugger": "Úloha vygenerovaná ladicím programem", + "build.active.file": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Úloha vygenerovaná ladicím programem", "cannot.build.non.cpp": "Sestavení a ladění není možné, protože aktivní soubor není zdrojový soubor jazyka C ani C++.", - "starting_build": "Spouští se sestavování...", + "starting.build": "Starting build...", "build.run.terminated": "Spuštění sestavení se ukončilo.", "build.finished.with.error": "Sestavování se dokončilo s chybami.", "build.finished.with.warnings": "Sestavování se dokončilo s upozorněními.", diff --git a/Extension/i18n/csy/src/LanguageServer/extension.i18n.json b/Extension/i18n/csy/src/LanguageServer/extension.i18n.json index e9150846dc..80d096007a 100644 --- a/Extension/i18n/csy/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/csy/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "Zkopírovat příkaz vcpkg pro instalaci {0} do schránky", "on.disabled.command": "Příkazy související s IntelliSense se nedají spustit, když je `C_Cpp.intelliSenseEngine` nastavené na `disabled`.", "client.not.found": "klient se nenašel", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "Pokud chcete vybrat konfiguraci, otevřete nejdříve složku.", "configuration.provider.select.first": "Pokud chcete vybrat poskytovatele konfigurace, otevřete nejdříve složku.", "edit.configurations.open.first": "Pokud chcete upravit konfigurace, otevřete nejdříve složku.", diff --git a/Extension/i18n/csy/src/LanguageServer/ui.i18n.json b/Extension/i18n/csy/src/LanguageServer/ui.i18n.json index d3e39397f9..92156b4ec5 100644 --- a/Extension/i18n/csy/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/csy/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense: Aktualizace", + "idle.intellisense.text": "IntelliSense: Připraveno", + "absent.intellisense.text": "IntelliSense: Nenakonfigurováno", + "initializing.tagparser.text": "Inicializuje se pracovní prostor", + "indexing.tagparser.text": "Pracovní prostor indexování", "running.tagparser.text": "Parsování pracovního prostoru", "paused.tagparser.text": "Pracovní prostor analýzy: Pozastaveno", "complete.tagparser.text": "Analýza byla dokončena.", - "initializing.tagparser.text": "Inicializuje se pracovní prostor", - "indexing.tagparser.text": "Pracovní prostor indexování", "rescan.tagparse.text": "Znovu prohledat pracovní prostor", "c.cpp.parsing.open.files.tooltip": "Analýza otevřených souborů", - "click.to.preview": "kliknutím si můžete zobrazit náhled výsledků", - "updating.intellisense.text": "IntelliSense: Aktualizace", - "idle.intellisense.text": "IntelliSense: Připraveno", - "absent.intellisense.text": "IntelliSense: Nenakonfigurováno", "running.analysis.text": "Code Analysis: Spuštěno", "paused.analysis.text": "Code Analysis: Pozastaveno", "mode.analysis.prefix": "Režim Code Analysis: ", + "click.to.preview": "kliknutím si můžete zobrazit náhled výsledků", "c.cpp.configureIntelliSenseStatus.text": "Konfigurovat IntelliSense", - "c.cpp.configureIntelliSenseStatus.cppText": "Konfigurovat IntelliSense v C/C++", - "c.cpp.configuration.tooltip": "Konfigurace C/C++", - "c.cpp.references.statusbar": "Stav odkazů jazyka C/C++", "cpptools.status.intellisense": "C/C++ IntelliSense Status", + "intellisense.select.text": "Vyberte kompilátor.", + "rescan.intellisense.text": "Prohledat znovu", + "rescan.intellisense.tooltip": "Znovu prohledat IntelliSense", "cpptools.status.tagparser": "Stav analyzátoru značky jazyka C/C++", "cpptools.detail.tagparser": "Probíhá inicializace...", + "tagparser.resume.text": "Pokračovat", + "tagparser.pause.text": "Pozastavit", "cpptools.status.codeanalysis": "Stav Code Analysis C/C++", "c.cpp.codeanalysis.statusbar.runNow": "Spustit", - "tagparser.pause.text": "Pozastavit", - "tagparser.resume.text": "Pokračovat", - "intellisense.select.text": "Vyberte kompilátor.", - "rescan.intellisense.text": "Prohledat znovu", - "rescan.intellisense.tooltip": "Znovu prohledat IntelliSense", "mode.codeanalysis.status.automatic": "Automaticky", "mode.codeanalysis.status.manual": "Ručně", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Možnosti", "startup.codeanalysis.status": "Spouštění...", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "Spustit", "running.analysis.processed.tooltip": "Spuštěno: {0} / {1} ({2} %)", + "select.code.analysis.command": "Vyberte příkaz pro analýzu kódu…", + "cancel.analysis": "Zrušit", + "resume.analysis": "Pokračovat", + "pause.analysis": "Pozastavit", + "another.analysis": "Spustit další…", + "select.command": "Vyberte příkaz…", + "active.analysis": "Spustit Code Analysis u aktivního souboru", + "all.analysis": "Spustit Code Analysis u všech souborů", + "open.analysis": "Spustit Code Analysis při otevírání souborů", + "c.cpp.references.statusbar": "Stav odkazů jazyka C/C++", + "c.cpp.configuration.tooltip": "Konfigurace C/C++", + "c.cpp.configureIntelliSenseStatus.cppText": "Konfigurovat IntelliSense v C/C++", "select.a.configuration": "Vybrat konfiguraci...", "edit.configuration.ui": "Upravit konfigurace (uživatelské rozhraní)", "edit.configuration.json": "Upravit konfigurace (JSON)", @@ -46,16 +55,5 @@ "none": "žádné", "disable.configuration.provider": "Zakažte aktivního poskytovatele konfigurací, pokud je to možné.", "select.compile.commands": "Vyberte soubor compile_commands.json...", - "select.workspace": "Vyberte složku pracovního prostoru...", - "select.command": "Vyberte příkaz…", - "select.code.analysis.command": "Vyberte příkaz pro analýzu kódu…", - "resume.parsing": "Pokračovat v analýze pracovního prostoru", - "pause.parsing": "Pozastavit analýzu pracovního prostoru", - "cancel.analysis": "Zrušit", - "resume.analysis": "Pokračovat", - "pause.analysis": "Pozastavit", - "another.analysis": "Spustit další…", - "active.analysis": "Spustit Code Analysis u aktivního souboru", - "all.analysis": "Spustit Code Analysis u všech souborů", - "open.analysis": "Spustit Code Analysis při otevírání souborů" + "select.workspace": "Vyberte složku pracovního prostoru..." } \ No newline at end of file diff --git a/Extension/i18n/csy/src/SSH/commands.i18n.json b/Extension/i18n/csy/src/SSH/commands.i18n.json index 8cc679c991..5a85d74fcc 100644 --- a/Extension/i18n/csy/src/SSH/commands.i18n.json +++ b/Extension/i18n/csy/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "LocalSocket se nedá současně specifikovat pomocí bindAddress nebo port v localForwards.", + "local.forward.local.conflict": "\"localSocket\" cannot be specified at the same time with \"bindAddress\" or \"port\" in localForwards", "local.forward.local.missing": "V localForwards se vyžaduje port nebo localSocket.", - "local.forward.remote.conflict": "LocalSocket se nedá současně specifikovat pomocí host nebo hostPort v localForwards.", + "local.forward.remote.conflict": "\"remoteSocket\" cannot be specified at the same time with \"host\" or \"hostPort\" in localForwards", "local.forward.remote.missing": "V localForwards se vyžaduje možnost host a hostPort nebo remoteSocket" } \ No newline at end of file diff --git a/Extension/i18n/csy/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/csy/src/SSH/sshCommandRunner.i18n.json index c711993900..849ad7625d 100644 --- a/Extension/i18n/csy/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/csy/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "Příkaz SSH je zrušený", "ssh.passphrase.input.box": "Zadejte heslo pro klíč SSH {0}", "ssh.enter.password.for.user": "Zadejte heslo pro uživatele{0}", - "ssh_message_enterPassword": "Zadejte heslo", + "ssh.message.enter.password": "Enter password", "ssh.continue.confirmation.placeholder": "Opravdu chcete pokračovat?", "ssh.host.key.confirmation.title": "{0} má otisk prstu {1}.", "continue": "Pokračovat", diff --git a/Extension/i18n/csy/src/nativeStrings.i18n.json b/Extension/i18n/csy/src/nativeStrings.i18n.json index 0650c64221..3ec794e0d6 100644 --- a/Extension/i18n/csy/src/nativeStrings.i18n.json +++ b/Extension/i18n/csy/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "Nepovedlo se dotázat kompilátor na cestě {0} na výchozí standardní verze. Dotazování je pro tento kompilátor zakázané.", "unrecognized_language_standard_version": "Dotaz na kompilátor vrátil nerozpoznanou standardní verzi jazyka. Místo ní se použije nejnovější podporovaná verze.", "intellisense_process_crash_detected": "Zjistilo se chybové ukončení procesu IntelliSense.", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "Návratové hodnoty:", "nvcc_compiler_not_found": "Nepovedlo se najít kompilátor nvcc: {0}", "nvcc_host_compiler_not_found": "Nepovedlo se najít kompilátor hostitele nvcc: {0}", diff --git a/Extension/i18n/csy/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/csy/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 03ca24a6b1..8472acabc1 100644 --- a/Extension/i18n/csy/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/csy/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "Instalace kompilátoru jazyka C++ na macOS", - "walkthough.mac.text1": "Pokud vyvíjíte v jazyce C++ pro macOS, doporučujeme nainstalovat kompilátor Clang. V okně terminálu (Ctrl+Shift+`) stačí spustit následující příkaz, který nainstaluje vývojářské nástroje příkazového řádku:", - "walkthough.mac.text2": "Pokud chcete ověřit, zda je Clang nainstalován, spusťte v okně terminálu následující příkaz. Měla by se zobrazit zpráva s informacemi o verzi Clang, kterou používáte." + "walkthrough.mac.install.compiler": "Instalace kompilátoru jazyka C++ na macOS", + "walkthrough.mac.text1": "Pokud vyvíjíte v jazyce C++ pro macOS, doporučujeme nainstalovat kompilátor Clang. V okně terminálu (Ctrl+Shift+`) stačí spustit následující příkaz, který nainstaluje vývojářské nástroje příkazového řádku:", + "walkthrough.mac.text2": "Pokud chcete ověřit, zda je Clang nainstalován, spusťte v okně terminálu následující příkaz. Měla by se zobrazit zpráva s informacemi o verzi Clang, kterou používáte." } \ 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/csy/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/deu/package.i18n.json b/Extension/i18n/deu/package.i18n.json index 90492b7ebf..9943257417 100644 --- a/Extension/i18n/deu/package.i18n.json +++ b/Extension/i18n/deu/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "Konfigurationen bearbeiten (Benutzeroberfläche)", "c_cpp.command.selectDefaultCompiler.title": "Standardcompiler auswählen...", "c_cpp.command.selectIntelliSenseConfiguration.title": "IntelliSense-Konfiguration auswählen...", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "Erneut nach Compilern suchen", "c_cpp.command.switchHeaderSource.title": "Header/Quelle umschalten", "c_cpp.command.enableErrorSquiggles.title": "Fehlerwellenlinien aktivieren", @@ -416,11 +417,12 @@ "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...", - "c_cpp.walkthrough.no.compilers.description": "Auf Ihrem Computer wurde kein C++-Compiler gefunden, der für die Verwendung der C++-Erweiterung erforderlich ist. Befolgen Sie die Anweisungen auf der rechten Seite, um einen zu installieren, und klicken Sie unten auf \"Meinen neuen Compiler suchen\".\n[Meinen neuen Compiler suchen](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", - "c_cpp.walkthrough.compilers.found.description": "Die C++-Erweiterung funktioniert mit einem C++-Compiler. Wählen Sie eines der Elemente aus, die bereits auf Ihrem Computer vorhanden sind, indem Sie unten auf die Schaltfläche klicken.\n[Meinen Standard-Compiler auswählen](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.compilers.found.description": "Die C++-Erweiterung funktioniert mit einem C++-Compiler. Wählen Sie eines der Elemente aus, die bereits auf Ihrem Computer vorhanden sind, indem Sie unten auf die Schaltfläche klicken.\n[Meinen Standard-Compiler auswählen](Befehl:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Abbildung, das die Auswahl eines standardmäßigen Compilerschnellauswahl und die Liste der Compiler auf dem Benutzercomputer anzeigt, von denen einer ausgewählt ist.", "c_cpp.walkthrough.create.cpp.file.title": "C++-Datei erstellen", - "c_cpp.walkthrough.create.cpp.file.description": "[Open](command:toSide:workbench.action.files.openFile) oder [create](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\", z. B. \"helloworld.cpp\". \n[C++-Datei erstellen](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", + "c_cpp.walkthrough.create.cpp.file.description": "[Open](command:toSide:workbench.action.files.openFile) oder [create](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\", z. B. \"helloworld.cpp\". \n[C++-Datei erstellen] (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": "Starten über die Developer-Eingabeaufforderung", "c_cpp.walkthrough.command.prompt.description": "Wenn Sie den Microsoft Visual Studio C++-Compiler verwenden, erfordert die C++-Erweiterung, dass Sie VS Code über die Entwicklereingabeaufforderung starten. Befolgen Sie die Anweisungen auf der rechten Seite, um den Neustart zu starten.\n[Reload Window](command:workbench.action.reloadWindow)", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "Sie können Ihre Debugkonfiguration anpassen (z. B. um Argumente zur Laufzeit an Ihr Programm zu übergeben), indem Sie rechts neben der Wiedergabeschaltfläche \"Debugkonfiguration hinzufügen\" auswählen. Die benutzerdefinierte Debugkonfiguration wird in der Datei \"launch.json\" Ihres Projekts gespeichert. \n[Weitere Informationen](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "Sie können Ihre Debugkonfiguration anpassen (z. B. um Argumente zur Laufzeit an Ihr Programm zu übergeben), indem Sie rechts neben der Wiedergabeschaltfläche \"Debugkonfiguration hinzufügen\" auswählen. Die benutzerdefinierte Debugkonfiguration wird in der Datei \"launch.json\" Ihres Projekts gespeichert. \n[Weitere Informationen](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "Sie können Ihre Debugkonfiguration anpassen (z. B. um Argumente zur Laufzeit an Ihr Programm zu übergeben), indem Sie rechts neben der Wiedergabeschaltfläche \"Debugkonfiguration hinzufügen\" auswählen. Die benutzerdefinierte Debugkonfiguration wird in der Datei \"launch.json\" Ihres Projekts gespeichert. \n[Weitere Informationen](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "Bild, das \"Debugkonfiguration hinzufügen\" in der Dropdownliste anzeigt" -} + "c_cpp.walkthrough.customize.debugging.altText": "Bild, das \"Debugkonfiguration hinzufügen\" in der Dropdownliste anzeigt", + "c_cpp.codeActions.refactor.inline.macro.title": "Inlinemakro", + "c_cpp.codeActions.refactor.inline.macro.description": "Ersetzen Sie den Makroaufruf durch den erweiterten Code." +} \ No newline at end of file diff --git a/Extension/i18n/deu/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/deu/src/Debugger/ParsedEnvironmentFile.i18n.json index 2221d113c3..1eada0e5d2 100644 --- a/Extension/i18n/deu/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/deu/src/Debugger/ParsedEnvironmentFile.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "ignoring.lines.in.envfile": "Nicht analysierbare Zeilen in {0} \"{1}\" werden ignoriert: " + "ignoring.lines.in.envfile": "Nicht analysierbare Zeilen in {0} {1}werden ignoriert: " } \ No newline at end of file diff --git a/Extension/i18n/deu/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/deu/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..cc2d04f0b3 --- /dev/null +++ b/Extension/i18n/deu/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "Wird erweitert auf:", + "inline.macro": "Inlinemakro", + "inline.macro.not.available": "Das Inlinemakro ist an diesem Ort nicht verfügbar." +} \ No newline at end of file diff --git a/Extension/i18n/deu/src/LanguageServer/client.i18n.json b/Extension/i18n/deu/src/LanguageServer/client.i18n.json index 52064d258b..982899af51 100644 --- a/Extension/i18n/deu/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/deu/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "{0} verwenden", "selectAnotherCompiler.string": "Anderen Compiler auf meinem Computer auswählen...", "installCompiler.string": "Hilfe bei der Installation eines Compilers", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "Nicht mit einem Compiler konfigurieren (nicht empfohlen)", "selectCompiler.string": "Compiler auswählen", "confirmCompiler.string": "Ja", @@ -27,7 +28,7 @@ "server.crashed2": "Der Sprachserver ist in den letzten 3 Minuten 5-mal abgestürzt. Er wird nicht neu gestartet.", "loggingLevel.changed": "{0} wurde geändert in {1}", "dismiss.button": "Schließen", - "diable.warnings.button": "Warnungen deaktivieren", + "disable.warnings.button": "Warnungen deaktivieren", "unable.to.provide.configuration": "{0} kann keine IntelliSense-Konfigurationsinformationen für \"{1}\" bereitstellen. Stattdessen werden Einstellungen aus der Konfiguration \"{2}\" verwendet.", "config.not.found": "Der angeforderte Konfigurationsname wurde nicht gefunden: {0}", "unsupported.client": "Nicht unterstützter Client", diff --git a/Extension/i18n/deu/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/deu/src/LanguageServer/codeAnalysis.i18n.json index bf784a0f6b..ff6c7ceb7d 100644 --- a/Extension/i18n/deu/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/deu/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "Beheben aller Codeanalyseprobleme", - "clear_all_code_analysis_problems": "Alle Codeanalyseprobleme löschen", - "fix_all_type_problems": "Alle {0}-Probleme beheben", - "disable_all_type_problems": "Alle {0}-Probleme deaktivieren", - "clear_all_type_problems": "Alle {0}-Probleme löschen", - "clear_this_problem": "Dieses {0}-Problem löschen", - "fix_this_problem": "Dieses {0}-Problem beheben", - "show_documentation_for": "Dokumentation für {0} anzeigen" + "fix.all.code.analysis.problems": "Beheben aller Codeanalyseprobleme", + "clear.all.code.analysis.problems": "Alle Codeanalyseprobleme löschen", + "fix.all.type.problems": "Alle {0}-Probleme beheben", + "disable.all.type.problems": "Alle {0}-Probleme deaktivieren", + "clear.all.type.problems": "Alle {0}-Probleme löschen", + "clear.this.problem": "Dieses {0}-Problem löschen", + "fix.this.problem": "Dieses {0}-Problem beheben", + "show.documentation.for": "Dokumentation für {0} anzeigen" } \ No newline at end of file diff --git a/Extension/i18n/deu/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/deu/src/LanguageServer/cppBuildTaskProvider.i18n.json index 4ab5c2b099..900a53cae1 100644 --- a/Extension/i18n/deu/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/deu/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "Aktive Datei kompilieren", - "compiler_details": "Compiler:", - "task_generated_by_debugger": "Vom Debugger generierte Aufgabe.", + "build.active.file": "Aktive Datei erstellen", + "compiler.details": "Compiler:", + "task.generated.by.debugger": "Vom Debugger generierte Aufgabe.", "cannot.build.non.cpp": "Erstellen und Debuggen nicht möglich, da die aktive Datei keine C- oder C++-Quelldatei ist.", - "starting_build": "Kompilierung wird gestartet...", + "starting.build": "Build wird gestartet...", "build.run.terminated": "Die Build-Ausführung wurde beendet.", "build.finished.with.error": "Der Build wurde mit Fehlern abgeschlossen.", "build.finished.with.warnings": "Der Build wurde mit Warnungen abgeschlossen.", diff --git a/Extension/i18n/deu/src/LanguageServer/extension.i18n.json b/Extension/i18n/deu/src/LanguageServer/extension.i18n.json index 502e121cb8..38db2069e4 100644 --- a/Extension/i18n/deu/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/deu/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "vcpkg-Befehl zum Installieren von \"{0}\" in die Zwischenablage kopieren", "on.disabled.command": "IntelliSense-bezogene Befehle können nicht ausgeführt werden, wenn `C_Cpp.intelliSenseEngine` auf `disabled` festgelegt ist.", "client.not.found": "Client nicht gefunden.", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "Öffnen Sie zum Auswählen einer Konfiguration zuerst einen Ordner.", "configuration.provider.select.first": "Öffnen Sie zum Auswählen eines Konfigurationsanbieters zuerst einen Ordner.", "edit.configurations.open.first": "Zum Bearbeiten von Konfigurationen zuerst einen Ordner öffnen", diff --git a/Extension/i18n/deu/src/LanguageServer/ui.i18n.json b/Extension/i18n/deu/src/LanguageServer/ui.i18n.json index 83f770b394..b8006e9f5a 100644 --- a/Extension/i18n/deu/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/deu/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense: Aktualisieren", + "idle.intellisense.text": "IntelliSense: Bereit", + "absent.intellisense.text": "IntelliSense: Nicht konfiguriert", + "initializing.tagparser.text": "Arbeitsbereich wird initialisiert", + "indexing.tagparser.text": "Arbeitsbereich für die Indizierung", "running.tagparser.text": "Parsing-Arbeitsbereich", "paused.tagparser.text": "Parsing-Arbeitsbereich: Angehalten", "complete.tagparser.text": "Parsing abgeschlossen", - "initializing.tagparser.text": "Arbeitsbereich wird initialisiert", - "indexing.tagparser.text": "Arbeitsbereich für die Indizierung", "rescan.tagparse.text": "Arbeitsbereich neu einlesen", "c.cpp.parsing.open.files.tooltip": "Offene Dateien werden geparst", - "click.to.preview": "Klicken Sie, um eine Vorschau der Ergebnisse anzuzeigen.", - "updating.intellisense.text": "IntelliSense: Aktualisieren", - "idle.intellisense.text": "IntelliSense: Bereit", - "absent.intellisense.text": "IntelliSense: Nicht konfiguriert", "running.analysis.text": "Code Analysis: Wird ausgeführt", "paused.analysis.text": "Code Analysis: Angehalten", "mode.analysis.prefix": "Code Analysis-Modus: ", + "click.to.preview": "Klicken Sie, um eine Vorschau der Ergebnisse anzuzeigen.", "c.cpp.configureIntelliSenseStatus.text": "IntelliSense konfigurieren", - "c.cpp.configureIntelliSenseStatus.cppText": "IntelliSense in C/C++ konfigurieren", - "c.cpp.configuration.tooltip": "C/C++-Konfiguration", - "c.cpp.references.statusbar": "C/C++-Verweisstatus", "cpptools.status.intellisense": "Status von C/C++-IntelliSense", + "intellisense.select.text": "Compiler auswählen", + "rescan.intellisense.text": "Neu einlesen", + "rescan.intellisense.tooltip": "IntelliSense neu einlesen", "cpptools.status.tagparser": "Status des C/C++-Tagparsers", "cpptools.detail.tagparser": "Wird initialisiert...", + "tagparser.resume.text": "Fortsetzen", + "tagparser.pause.text": "Anhalten", "cpptools.status.codeanalysis": "C/C++-Code Analysis-Status", "c.cpp.codeanalysis.statusbar.runNow": "Jetzt ausführen", - "tagparser.pause.text": "Anhalten", - "tagparser.resume.text": "Fortsetzen", - "intellisense.select.text": "Compiler auswählen", - "rescan.intellisense.text": "Neu einlesen", - "rescan.intellisense.tooltip": "IntelliSense neu einlesen", "mode.codeanalysis.status.automatic": "Automatisch", "mode.codeanalysis.status.manual": "Manuell", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Optionen", "startup.codeanalysis.status": "Wird gestartet...", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "Jetzt ausführen", "running.analysis.processed.tooltip": "Wird ausgeführt: {0} / {1} ({2}%)", + "select.code.analysis.command": "Codeanalysebefehl auswählen...", + "cancel.analysis": "Abbrechen", + "resume.analysis": "Fortsetzen", + "pause.analysis": "Anhalten", + "another.analysis": "Starten Sie eine weitere...", + "select.command": "Befehl auswählen...", + "active.analysis": "Code Analysis auf \"Aktive Dateien\" ausführen", + "all.analysis": "Code Analysis auf \"Alle Dateien\" ausführen", + "open.analysis": "Code Analysis auf \"Dateien öffnen\" ausführen", + "c.cpp.references.statusbar": "C/C++-Verweisstatus", + "c.cpp.configuration.tooltip": "C/C++-Konfiguration", + "c.cpp.configureIntelliSenseStatus.cppText": "IntelliSense in C/C++ konfigurieren", "select.a.configuration": "Konfiguration auswählen...", "edit.configuration.ui": "Konfigurationen bearbeiten (Benutzeroberfläche)", "edit.configuration.json": "Konfigurationen bearbeiten (JSON)", @@ -46,16 +55,5 @@ "none": "Keine", "disable.configuration.provider": "Deaktivieren Sie den aktiven Konfigurationsanbieter, falls zutreffend.", "select.compile.commands": "compile_commands.json-Datei auswählen...", - "select.workspace": "Arbeitsbereichsordner auswählen...", - "select.command": "Befehl auswählen...", - "select.code.analysis.command": "Codeanalysebefehl auswählen...", - "resume.parsing": "Arbeitsbereichsanalyse fortsetzen", - "pause.parsing": "Arbeitsbereichsanalyse anhalten", - "cancel.analysis": "Abbrechen", - "resume.analysis": "Fortsetzen", - "pause.analysis": "Anhalten", - "another.analysis": "Starten Sie eine weitere...", - "active.analysis": "Code Analysis auf \"Aktive Dateien\" ausführen", - "all.analysis": "Code Analysis auf \"Alle Dateien\" ausführen", - "open.analysis": "Code Analysis auf \"Dateien öffnen\" ausführen" + "select.workspace": "Arbeitsbereichsordner auswählen..." } \ No newline at end of file diff --git a/Extension/i18n/deu/src/SSH/commands.i18n.json b/Extension/i18n/deu/src/SSH/commands.i18n.json index f28da44dc9..d532a18a61 100644 --- a/Extension/i18n/deu/src/SSH/commands.i18n.json +++ b/Extension/i18n/deu/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "„localSocket“ kann nicht gleichzeitig mit „bindAddress“ oder“\"Port“ in localForwards angegeben werden.", + "local.forward.local.conflict": "„localSocket“ kann nicht gleichzeitig mit „bindAddress“ oder“\"Port“ in localForwards angegeben werden", "local.forward.local.missing": "„Port“ oder „localSocket“ in localForwards erforderlich", - "local.forward.remote.conflict": "„remoteSocket“ kann nicht gleichzeitig mit „host“ oder „hostPort“ in localForwards angegeben werden.", + "local.forward.remote.conflict": "„remoteSocket“ kann nicht gleichzeitig mit „host“ oder „hostPort“ in localForwards angegeben werden", "local.forward.remote.missing": "„Host“ und „hostPort“ oder „remoteSocket“ sind in localForwards erforderlich." } \ No newline at end of file diff --git a/Extension/i18n/deu/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/deu/src/SSH/sshCommandRunner.i18n.json index 80c42011a1..1e2de9ee76 100644 --- a/Extension/i18n/deu/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/deu/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "Der SSH-Befehl wurde abgebrochen.", "ssh.passphrase.input.box": "Passphrase für SSH-Schlüssel eingeben {0}", "ssh.enter.password.for.user": "Geben Sie das Kennwort für Benutzer „{0}“ ein.", - "ssh_message_enterPassword": "Kennwort eingeben", + "ssh.message.enter.password": "Kennwort eingeben", "ssh.continue.confirmation.placeholder": "Möchten Sie wirklich fortfahren?", "ssh.host.key.confirmation.title": "\"{0}\" hat Fingerabdruck \"{1}\".", "continue": "Weiter", diff --git a/Extension/i18n/deu/src/nativeStrings.i18n.json b/Extension/i18n/deu/src/nativeStrings.i18n.json index a91ed5537b..587af934f3 100644 --- a/Extension/i18n/deu/src/nativeStrings.i18n.json +++ b/Extension/i18n/deu/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "Der Compiler im Pfad \"{0}\" konnte nicht nach standardmäßigen Standardversionen abgefragt werden. Die Compilerabfrage ist für diesen Compiler deaktiviert.", "unrecognized_language_standard_version": "Die Compilerabfrage hat eine unbekannte Sprachstandardversion zurückgegeben. Stattdessen wird die neueste unterstützte Version verwendet.", "intellisense_process_crash_detected": "IntelliSense-Prozessabsturz erkannt.", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "Rückgabewerte:", "nvcc_compiler_not_found": "Der nvcc-Compiler wurde nicht gefunden: {0}", "nvcc_host_compiler_not_found": "Der nvcc-Hostcompiler wurde nicht gefunden: {0}", diff --git a/Extension/i18n/deu/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/deu/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 2e9fd8fab9..6b7dbbc07c 100644 --- a/Extension/i18n/deu/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/deu/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "C++-Compiler unter macOS installieren", - "walkthough.mac.text1": "Wenn Sie mithilfe von C++ unter macOS entwickeln, empfehlen wir die Installation des Clang-Compilers. Sie müssen nur den folgenden Befehl in einem Terminalfenster(STRG+UMSCHALT+ `) ausführen, um die Befehlszeilen-Entwicklertools zu installieren:", - "walkthough.mac.text2": "Führen Sie den folgenden Befehl in einem Terminalfenster aus, um zu überprüfen, ob Clang installiert ist. Es sollte eine Meldung mit Informationen zur verwendeten Clang-Version angezeigt werden." + "walkthrough.mac.install.compiler": "C++-Compiler unter macOS installieren", + "walkthrough.mac.text1": "Wenn Sie mithilfe von C++ unter macOS entwickeln, empfehlen wir die Installation des Clang-Compilers. Sie müssen nur den folgenden Befehl in einem Terminalfenster(STRG+UMSCHALT+ `) ausführen, um die Befehlszeilen-Entwicklertools zu installieren:", + "walkthrough.mac.text2": "Führen Sie den folgenden Befehl in einem Terminalfenster aus, um zu überprüfen, ob Clang installiert ist. Es sollte eine Meldung mit Informationen zur verwendeten Clang-Version angezeigt werden." } \ No newline at end of file diff --git a/Extension/i18n/deu/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/deu/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/deu/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/deu/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/deu/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/deu/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/esn/Reinstalling the Extension.md.i18n.json b/Extension/i18n/esn/Reinstalling the Extension.md.i18n.json index 0cebc625c5..a67cbf55b1 100644 --- a/Extension/i18n/esn/Reinstalling the Extension.md.i18n.json +++ b/Extension/i18n/esn/Reinstalling the Extension.md.i18n.json @@ -16,6 +16,6 @@ "reinstall.extension.text5": "En Windows:", "reinstall.extension.text6": "En Linux:", "reinstall.extension.text7": "A continuación, reinstale mediante la interfaz de usuario de Marketplace en VS Code.", - "reinstall.extension.text8": "Si VS Code no puede implementar la versión correcta de la extensión, el VSIX correcto para el sistema se puede {0} e instalar mediante la opción 'Instalar desde VSIX...', en el menú '...' en la interfaz de usuario de Marketplace en VS Code.", + "reinstall.extension.text8": "Si VS Code no puede implementar la versión correcta de la extensión, el VSIX correcto para el sistema se puede {0} e instalar mediante la opción 'Instalar desde VSIX...', en el menú '..' en la interfaz de usuario de Marketplace en VS Code.", "download.vsix.link.title": "descargado del sitio web del Marketplace VS Code" -} +} \ No newline at end of file diff --git a/Extension/i18n/esn/package.i18n.json b/Extension/i18n/esn/package.i18n.json index b4ff0bb374..6ac1b4914c 100644 --- a/Extension/i18n/esn/package.i18n.json +++ b/Extension/i18n/esn/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "Editar configuraciones (interfaz de usuario)", "c_cpp.command.selectDefaultCompiler.title": "Seleccionar compilador predeterminado...", "c_cpp.command.selectIntelliSenseConfiguration.title": "Seleccionar configuración de IntelliSense...", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "Volver a examinar los compiladores", "c_cpp.command.switchHeaderSource.title": "Cambiar el encabezado o el origen", "c_cpp.command.enableErrorSquiggles.title": "Habilitar el subrayado ondulado de errores", @@ -416,7 +417,8 @@ "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.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.description": "No se encontró ningún compilador de C++ en la máquina, pero es necesario para usar la extensión de C++. Siga las instrucciones de la derecha para instalar uno y, a continuación, haga clic en \"Buscar mi nuevo compilador\".\n[Buscar mi nuevo compilador](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.description": "La extensión de C++ funciona con un compilador de C++. Haga clic en el botón siguiente para seleccionar uno de los que ya estén en su equipo.\n[Seleccionar mi compilador predeterminado](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Imagen que muestra la selección de una selección rápida predeterminada del compilador y la lista de compiladores encontrados en el equipo de los usuarios, uno de los cuales está seleccionado.", "c_cpp.walkthrough.create.cpp.file.title": "Crear un archivo de C++", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "Puede personalizar la configuración de depuración (por ejemplo, para pasar argumentos al programa en tiempo de ejecución) seleccionando \"Agregar configuración de depuración\" a la derecha del botón de reproducir. La configuración de depuración personalizada se guarda en el archivo launch.json del proyecto. \n[Más información](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "Puede personalizar la configuración de depuración (por ejemplo, para pasar argumentos al programa en tiempo de ejecución) seleccionando \"Agregar configuración de depuración\" a la derecha del botón de reproducir. La configuración de depuración personalizada se guarda en el archivo launch.json del proyecto. \n[Más información](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "Puede personalizar la configuración de depuración (por ejemplo, para pasar argumentos al programa en tiempo de ejecución) seleccionando \"Agregar configuración de depuración\" a la derecha del botón de reproducir. La configuración de depuración personalizada se guarda en el archivo launch.json del proyecto. \n[Más información](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "Imagen que muestra Agregar configuración de depuración en la lista desplegable" + "c_cpp.walkthrough.customize.debugging.altText": "Imagen que muestra Agregar configuración de depuración en la lista desplegable", + "c_cpp.codeActions.refactor.inline.macro.title": "Insertar macro", + "c_cpp.codeActions.refactor.inline.macro.description": "Reemplace la invocación de macro por el código expandido." } \ No newline at end of file diff --git a/Extension/i18n/esn/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/esn/src/Debugger/ParsedEnvironmentFile.i18n.json index 213380f187..ee131ea104 100644 --- a/Extension/i18n/esn/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/esn/src/Debugger/ParsedEnvironmentFile.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "ignoring.lines.in.envfile": "Se omitirán las líneas de {0} {1} que no se pueden analizar: " + "ignoring.lines.in.envfile": "Omitiendo líneas no analizables en {0} {1}: " } \ No newline at end of file diff --git a/Extension/i18n/esn/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/esn/src/Debugger/debugAdapterDescriptorFactory.i18n.json index 750f4d8cd9..1350794d6f 100644 --- a/Extension/i18n/esn/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/esn/src/Debugger/debugAdapterDescriptorFactory.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "debugger.not.available": "El tipo de depurador \"{0}\" no está disponible para máquinas que no sean Windows." + "debugger.not.available": "El tipo de depurador '{0}' no está disponible para equipos que no son de Windows." } \ No newline at end of file diff --git a/Extension/i18n/esn/src/Debugger/extension.i18n.json b/Extension/i18n/esn/src/Debugger/extension.i18n.json index 6e00c3e362..775633090c 100644 --- a/Extension/i18n/esn/src/Debugger/extension.i18n.json +++ b/Extension/i18n/esn/src/Debugger/extension.i18n.json @@ -14,5 +14,5 @@ "select.ssh.config.file": "Selección de un archivo de configuración SSH", "yes": "Sí", "no": "No", - "ssh.target.delete.confirmation": "¿Está seguro de que desea eliminar \"{0}\" de forma permanente?" + "ssh.target.delete.confirmation": "¿Está seguro de que desea eliminar permanentemente \"{0}\"?" } \ No newline at end of file diff --git a/Extension/i18n/esn/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/esn/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..601926c176 --- /dev/null +++ b/Extension/i18n/esn/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "Se expande a:", + "inline.macro": "Insertar macro", + "inline.macro.not.available": "La macro insertada no está disponible en esta ubicación." +} \ No newline at end of file diff --git a/Extension/i18n/esn/src/LanguageServer/client.i18n.json b/Extension/i18n/esn/src/LanguageServer/client.i18n.json index 6c47f880b7..301dcf0dba 100644 --- a/Extension/i18n/esn/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/esn/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "Uso {0}", "selectAnotherCompiler.string": "Seleccionar otro compilador en mi máquina...", "installCompiler.string": "Ayuda para instalar un compilador", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "No configurar con un compilador (no recomendado)", "selectCompiler.string": "Selecciona un compilador", "confirmCompiler.string": "Sí", @@ -27,7 +28,7 @@ "server.crashed2": "El servidor de lenguaje se ha bloqueado cinco veces en los tres últimos minutos. No se reiniciará.", "loggingLevel.changed": "{0} se cambió a: {1}", "dismiss.button": "Descartar", - "diable.warnings.button": "Deshabilitar advertencias", + "disable.warnings.button": "Deshabilitar advertencias", "unable.to.provide.configuration": "{0} no puede proporcionar información de configuración de IntelliSense para \"{1}\". Se utilizará la configuración de \"{2}\" en su lugar.", "config.not.found": "No se encuentra el nombre de la configuración que se ha solicitado: {0}", "unsupported.client": "Cliente no admitido", diff --git a/Extension/i18n/esn/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/esn/src/LanguageServer/codeAnalysis.i18n.json index a8a296d45a..09beaf1e59 100644 --- a/Extension/i18n/esn/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/esn/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "Corregir todos los problemas de análisis de código", - "clear_all_code_analysis_problems": "Borrar todos los problemas de análisis de código", - "fix_all_type_problems": "Corregir todos los problemas de {0}", - "disable_all_type_problems": "Deshabilitar todos los problemas de {0}", - "clear_all_type_problems": "Borrar todos los problemas de {0}", - "clear_this_problem": "Borrar este problema de {0}", - "fix_this_problem": "Corregir este problema de {0}", - "show_documentation_for": "Mostrar documentación de {0}" + "fix.all.code.analysis.problems": "Corregir todos los problemas de análisis de código", + "clear.all.code.analysis.problems": "Borrar todos los problemas de análisis de código", + "fix.all.type.problems": "Corregir todos los problemas de {0}", + "disable.all.type.problems": "Deshabilitar todos los problemas de {0}", + "clear.all.type.problems": "Borrar todos los problemas de {0}", + "clear.this.problem": "Borrar este problema de {0}", + "fix.this.problem": "Corregir este problema de {0}", + "show.documentation.for": "Mostrar documentación de {0}" } \ No newline at end of file diff --git a/Extension/i18n/esn/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/esn/src/LanguageServer/cppBuildTaskProvider.i18n.json index 4b404fde25..549f505726 100644 --- a/Extension/i18n/esn/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/esn/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "compilar archivo activo", - "compiler_details": "compilador:", - "task_generated_by_debugger": "Tarea generada por el depurador.", + "build.active.file": "compilar archivo activo", + "compiler.details": "compilador:", + "task.generated.by.debugger": "Tarea generada por el depurador.", "cannot.build.non.cpp": "No se puede compilar y depurar código porque el archivo activo no es un archivo de código fuente de C o C++.", - "starting_build": "Iniciando la compilación...", + "starting.build": "Iniciando compilación...", "build.run.terminated": "La ejecución de la compilación ha finalizado.", "build.finished.with.error": "La compilación ha finalizado con errores.", "build.finished.with.warnings": "La compilación ha finalizado con advertencias.", diff --git a/Extension/i18n/esn/src/LanguageServer/extension.i18n.json b/Extension/i18n/esn/src/LanguageServer/extension.i18n.json index df1007dd4b..8ebe73bc9d 100644 --- a/Extension/i18n/esn/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/esn/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "Copie el comando vcpkg para instalar \"{0}\" en el Portapapeles", "on.disabled.command": "Los comandos relacionados con IntelliSense no se pueden ejecutar cuando `C_Cpp.intelliSenseEngine` está establecido en `disabled`.", "client.not.found": "No se encuentra el cliente", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "Abre primero una carpeta para seleccionar una configuración.", "configuration.provider.select.first": "Abre primero una carpeta para seleccionar un proveedor de configuración.", "edit.configurations.open.first": "Abra una carpeta primero para editar las configuraciones", diff --git a/Extension/i18n/esn/src/LanguageServer/ui.i18n.json b/Extension/i18n/esn/src/LanguageServer/ui.i18n.json index 9fbcb3c3b2..e1e0efa215 100644 --- a/Extension/i18n/esn/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/esn/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense: actualización", + "idle.intellisense.text": "IntelliSense: listo", + "absent.intellisense.text": "IntelliSense: no configurado", + "initializing.tagparser.text": "Inicializando área de trabajo", + "indexing.tagparser.text": "Área de trabajo de indexación", "running.tagparser.text": "Analizar área de trabajo", "paused.tagparser.text": "Área de trabajo de análisis: en pausa", "complete.tagparser.text": "Análisis finalizado", - "initializing.tagparser.text": "Inicializando área de trabajo", - "indexing.tagparser.text": "Área de trabajo de indexación", "rescan.tagparse.text": "Volver a examinar el área de trabajo", "c.cpp.parsing.open.files.tooltip": "Analizando archivos abiertos", - "click.to.preview": "hacer clic para obtener una vista previa de los resultados", - "updating.intellisense.text": "IntelliSense: actualización", - "idle.intellisense.text": "IntelliSense: listo", - "absent.intellisense.text": "IntelliSense: no configurado", "running.analysis.text": "Code Analysis: en ejecución", "paused.analysis.text": "Code Analysis: en pausa", "mode.analysis.prefix": "Modo de Code Analysis: ", + "click.to.preview": "hacer clic para obtener una vista previa de los resultados", "c.cpp.configureIntelliSenseStatus.text": "Configurar IntelliSense", - "c.cpp.configureIntelliSenseStatus.cppText": "Configuración de IntelliSense en C/C++", - "c.cpp.configuration.tooltip": "Configuración de C/C++", - "c.cpp.references.statusbar": "Estado de referencias de C/C++", "cpptools.status.intellisense": "Estado de IntelliSense de C/C++", + "intellisense.select.text": "Seleccione un compilador", + "rescan.intellisense.text": "Volver a examinar", + "rescan.intellisense.tooltip": "Volver a examinar IntelliSense", "cpptools.status.tagparser": "Estado del analizador de etiquetas de C/C++", "cpptools.detail.tagparser": "Inicializando...", + "tagparser.resume.text": "Reanudar", + "tagparser.pause.text": "Pausa", "cpptools.status.codeanalysis": "Estado de Code Analysis de C/C++", "c.cpp.codeanalysis.statusbar.runNow": "Ejecutar ahora", - "tagparser.pause.text": "Pausa", - "tagparser.resume.text": "Reanudar", - "intellisense.select.text": "Seleccione un compilador", - "rescan.intellisense.text": "Volver a examinar", - "rescan.intellisense.tooltip": "Volver a examinar IntelliSense", "mode.codeanalysis.status.automatic": "Automático", "mode.codeanalysis.status.manual": "Manual", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Opciones", "startup.codeanalysis.status": "Iniciando...", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "Ejecutar ahora", "running.analysis.processed.tooltip": "En ejecución: {0} / {1} ({2}%)", + "select.code.analysis.command": "Seleccione un comando de análisis de código...", + "cancel.analysis": "Cancelar", + "resume.analysis": "Reanudar", + "pause.analysis": "Pausa", + "another.analysis": "Iniciar otro...", + "select.command": "Seleccione un comando...", + "active.analysis": "Ejecutar Code Analysis en el archivo activo", + "all.analysis": "Ejecutar análisis de código en todos los archivos", + "open.analysis": "Ejecutar análisis de código en archivos abiertos", + "c.cpp.references.statusbar": "Estado de referencias de C/C++", + "c.cpp.configuration.tooltip": "Configuración de C/C++", + "c.cpp.configureIntelliSenseStatus.cppText": "Configuración de IntelliSense en C/C++", "select.a.configuration": "Seleccione una configuración...", "edit.configuration.ui": "Editar configuraciones (interfaz de usuario)", "edit.configuration.json": "Editar configuraciones (JSON)", @@ -46,16 +55,5 @@ "none": "ninguno", "disable.configuration.provider": "Deshabilite el proveedor de configuración activo, si procede.", "select.compile.commands": "Seleccione un archivo compile_commands.json...", - "select.workspace": "Seleccione una carpeta del área de trabajo...", - "select.command": "Seleccione un comando...", - "select.code.analysis.command": "Seleccione un comando de análisis de código...", - "resume.parsing": "Reanudar el análisis de área de trabajo", - "pause.parsing": "Pausar el análisis de área de trabajo", - "cancel.analysis": "Cancelar", - "resume.analysis": "Reanudar", - "pause.analysis": "Pausa", - "another.analysis": "Iniciar otro...", - "active.analysis": "Ejecutar Code Analysis en el archivo activo", - "all.analysis": "Ejecutar análisis de código en todos los archivos", - "open.analysis": "Ejecutar análisis de código en archivos abiertos" + "select.workspace": "Seleccione una carpeta del área de trabajo..." } \ No newline at end of file diff --git a/Extension/i18n/esn/src/SSH/commands.i18n.json b/Extension/i18n/esn/src/SSH/commands.i18n.json index 5a058a7148..e6436eff17 100644 --- a/Extension/i18n/esn/src/SSH/commands.i18n.json +++ b/Extension/i18n/esn/src/SSH/commands.i18n.json @@ -6,6 +6,6 @@ { "local.forward.local.conflict": "\"localSocket\" no se puede especificar al mismo tiempo con \"bindAddress\" o \"port\" en localForwards", "local.forward.local.missing": "Se requiere \"port\" o \"localSocket\" en localForwards", - "local.forward.remote.conflict": "\"remoteSocket\" no se puede especificar al mismo tiempo con \"host\" o \"hostPort\" en localForwards", + "local.forward.remote.conflict": "No se puede especificar \"remoteSocket\" al mismo tiempo con \"host\" o \"hostPort\" en localForwards", "local.forward.remote.missing": "Se requiere \"host\" y \"hostPort\" o \"remoteSocket\" en localForwards" } \ No newline at end of file diff --git a/Extension/i18n/esn/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/esn/src/SSH/sshCommandRunner.i18n.json index 46d9373f94..87e27bd3c5 100644 --- a/Extension/i18n/esn/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/esn/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "Comando SSH cancelado", "ssh.passphrase.input.box": "Escriba la frase de contraseña para la clave SSH {0}", "ssh.enter.password.for.user": "Escriba la contraseña del usuario \"{0}\"", - "ssh_message_enterPassword": "Escribir contraseña", + "ssh.message.enter.password": "Escribir contraseña", "ssh.continue.confirmation.placeholder": "¿Está seguro de que desea continuar?", "ssh.host.key.confirmation.title": "\"{0}\" tiene la huella digital \"{1}\".", "continue": "Continuar", diff --git a/Extension/i18n/esn/src/nativeStrings.i18n.json b/Extension/i18n/esn/src/nativeStrings.i18n.json index fd1c220401..5ee4f78c00 100644 --- a/Extension/i18n/esn/src/nativeStrings.i18n.json +++ b/Extension/i18n/esn/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "No se pudo consultar el compilador en la ruta de acceso \"{0}\" para las versiones estándar predeterminadas. La consulta del compilador está deshabilitada para este.", "unrecognized_language_standard_version": "La consulta del compilador devolvió una versión estándar del lenguaje no reconocida. En su lugar se usará la última versión admitida.", "intellisense_process_crash_detected": "Se ha detectado un bloqueo del proceso de IntelliSense.", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "Devuelve los valores:", "nvcc_compiler_not_found": "No se encuentra el compilador de nvcc: {0}", "nvcc_host_compiler_not_found": "No se encuentra el compilador host nvcc: {0}", diff --git a/Extension/i18n/esn/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/esn/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 99e015cc4b..4901b5aedd 100644 --- a/Extension/i18n/esn/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/esn/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "Instalación de un compilador de C++ en macOS", - "walkthough.mac.text1": "Si está realizando el desarrollo de C++ para macOS, se recomienda instalar el compilador de Clang. Todo lo que debe hacer es ejecutar el siguiente comando en una ventana del terminal (Ctrl+Shift+ `) para instalar las herramientas de desarrollo de la línea de comandos:", - "walkthough.mac.text2": "A continuación, para comprobar que Clang está instalado, ejecute el siguiente comando en una ventana de Terminal. Debería ver un mensaje con información sobre la versión de Clang que está usando." + "walkthrough.mac.install.compiler": "Instalación de un compilador de C++ en macOS", + "walkthrough.mac.text1": "Si está realizando el desarrollo de C++ para macOS, se recomienda instalar el compilador de Clang. Todo lo que debe hacer es ejecutar el siguiente comando en una ventana del terminal (Ctrl+Shift+ `) para instalar las herramientas de desarrollo de la línea de comandos:", + "walkthrough.mac.text2": "A continuación, para comprobar que Clang está instalado, ejecute el siguiente comando en una ventana de Terminal. Debería ver un mensaje con información sobre la versión de Clang que está usando." } \ 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/esn/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/fra/Reinstalling the Extension.md.i18n.json b/Extension/i18n/fra/Reinstalling the Extension.md.i18n.json index e44fd740df..d891ef0ac4 100644 --- a/Extension/i18n/fra/Reinstalling the Extension.md.i18n.json +++ b/Extension/i18n/fra/Reinstalling the Extension.md.i18n.json @@ -16,6 +16,6 @@ "reinstall.extension.text5": "Sur Windows :", "reinstall.extension.text6": "Sur Linux :", "reinstall.extension.text7": "Réinstallez ensuite via l’interface utilisateur de la Place de marché dans VS Code.", - "reinstall.extension.text8": "Si la version correcte de l’extension ne peut pas être déployée par VS Code, le VSIX approprié pour votre système peut être {0} et installé à l’aide de l’option 'Installer à partir de VSIX...' sous le menu '...' de l’interface utilisateur de la Place de marché dans VS Code.", + "reinstall.extension.text8": "Si la version correcte de l’extension ne peut pas être déployée par VS Code, le VSIX approprié pour votre système peut être {0} et installé à l’aide de l’option 'Installer à partir de VSIX'...' sous le menu '...' de l’interface utilisateur de la Place de marché dans VS Code.", "download.vsix.link.title": "téléchargé à partir du site web de la place de marché VS Code" -} +} \ No newline at end of file diff --git a/Extension/i18n/fra/package.i18n.json b/Extension/i18n/fra/package.i18n.json index 0343b305b6..e11cb148c9 100644 --- a/Extension/i18n/fra/package.i18n.json +++ b/Extension/i18n/fra/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "Modifier les configurations (IU)", "c_cpp.command.selectDefaultCompiler.title": "Sélectionner un compilateur par défaut…", "c_cpp.command.selectIntelliSenseConfiguration.title": "Sélectionner la configuration IntelliSense…", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "Relancer l’analyse des compilateurs", "c_cpp.command.switchHeaderSource.title": "Basculer l'en-tête/la source", "c_cpp.command.enableErrorSquiggles.title": "Activer les tildes d'erreur", @@ -416,11 +417,12 @@ "c_cpp.walkthrough.description": "Permet de découvrir la riche expérience de développement C++ de VS Code.", "c_cpp.walkthrough.set.up.title": "Configurer votre environnement C++", "c_cpp.walkthrough.activating.description": "Activation de l’extension C++ pour déterminer si votre environnement C++ a été configuré.\nActivation de l’extension...", - "c_cpp.walkthrough.no.compilers.description": "Nous n’avons pas trouvé de compilateur C++ sur votre machine, qui est nécessaire pour utiliser l’extension C++. Suivez les instructions à droite pour en installer une, puis cliquez sur « Rechercher mon nouveau compilateur » ci-dessous.\n[Trouver mon nouveau compilateur](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.description": "L’extension C++ fonctionne avec un compilateur C++. Vous pouvez en sélectionner un parmi ceux déjà présents sur votre ordinateur en cliquant sur le bouton ci-dessous.\n[Sélectionner mon compilateur par défaut](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Image montrant la sélection d’une sélection rapide de compilateur par défaut et la liste des compilateurs trouvés sur l’ordinateur des utilisateurs, dont l’un est sélectionné.", "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.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 l’invite de commandes développeur", "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 l’invite de commandes du développeur. Suivez les instructions à droite pour relancer.\n[Recharger la fenêtre](command:workbench.action.reloadWindow)", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "Vous pouvez personnaliser votre configuration de débogage (par exemple, pour passer des arguments à votre programme au moment de l’exécution) en sélectionnant « Ajouter une configuration de débogage » à droite du bouton de lecture. La configuration de débogage personnalisée est enregistrée dans le fichier launch.json de votre projet. \n[En savoir plus](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "Vous pouvez personnaliser votre configuration de débogage (par exemple, pour passer des arguments à votre programme au moment de l’exécution) en sélectionnant « Ajouter une configuration de débogage » à droite du bouton de lecture. La configuration de débogage personnalisée est enregistrée dans le fichier launch.json de votre projet. \n[En savoir plus](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "Vous pouvez personnaliser votre configuration de débogage (par exemple, pour passer des arguments à votre programme au moment de l’exécution) en sélectionnant « Ajouter une configuration de débogage » à droite du bouton de lecture. La configuration de débogage personnalisée est enregistrée dans le fichier launch.json de votre projet. \n[En savoir plus](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "Image qui montre Ajouter une configuration de débogage dans la liste déroulante" -} + "c_cpp.walkthrough.customize.debugging.altText": "Image qui montre Ajouter une configuration de débogage dans la liste déroulante", + "c_cpp.codeActions.refactor.inline.macro.title": "Inline macro", + "c_cpp.codeActions.refactor.inline.macro.description": "Remplacer l’appel de macro par le code développé." +} \ No newline at end of file diff --git a/Extension/i18n/fra/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/fra/src/Debugger/ParsedEnvironmentFile.i18n.json index 140b3723fc..3824fb2a0a 100644 --- a/Extension/i18n/fra/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/fra/src/Debugger/ParsedEnvironmentFile.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "ignoring.lines.in.envfile": "Lignes non analysables ignorées dans {0} {1} : " + "ignoring.lines.in.envfile": "Lignes non analysables ignorées dans {0} {1}: " } \ No newline at end of file diff --git a/Extension/i18n/fra/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/fra/src/Debugger/debugAdapterDescriptorFactory.i18n.json index 50a48ecfd1..04de7143ee 100644 --- a/Extension/i18n/fra/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/fra/src/Debugger/debugAdapterDescriptorFactory.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "debugger.not.available": "Le type de débogueur '{0}' n'est pas disponible pour les machines non-Windows." + "debugger.not.available": "Le type de débogueur '{0}' n’est pas disponible pour les machines non Windows." } \ No newline at end of file diff --git a/Extension/i18n/fra/src/Debugger/extension.i18n.json b/Extension/i18n/fra/src/Debugger/extension.i18n.json index 6abf33a7ab..794ea2e9b2 100644 --- a/Extension/i18n/fra/src/Debugger/extension.i18n.json +++ b/Extension/i18n/fra/src/Debugger/extension.i18n.json @@ -14,5 +14,5 @@ "select.ssh.config.file": "Sélectionner le fichier de configuration SSH...", "yes": "Oui", "no": "Non", - "ssh.target.delete.confirmation": "Voulez-vous vraiment supprimer définitivement \"{0}\"?" + "ssh.target.delete.confirmation": "Voulez-vous vraiment supprimer définitivement «{0}» ?" } \ No newline at end of file diff --git a/Extension/i18n/fra/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/fra/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..4aaee10237 --- /dev/null +++ b/Extension/i18n/fra/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "Se développe sur :", + "inline.macro": "Inline macro", + "inline.macro.not.available": "La macro incluse n’est pas disponible à cet emplacement." +} \ No newline at end of file diff --git a/Extension/i18n/fra/src/LanguageServer/client.i18n.json b/Extension/i18n/fra/src/LanguageServer/client.i18n.json index ef35cba80a..9ba1b9e67b 100644 --- a/Extension/i18n/fra/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/fra/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "Utiliser {0}", "selectAnotherCompiler.string": "Sélectionner un autre compilateur sur ma machine…", "installCompiler.string": "M’aider à installer un compilateur", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "Ne pas configurer avec un compilateur (non recommandé)", "selectCompiler.string": "Sélectionner un compilateur", "confirmCompiler.string": "Oui", @@ -27,7 +28,7 @@ "server.crashed2": "Le serveur de langage s'est bloqué 5 fois au cours des 3 dernières minutes. Il n'est pas redémarré.", "loggingLevel.changed": "{0} a été changé en : {1}", "dismiss.button": "Ignorer", - "diable.warnings.button": "Désactiver les avertissements", + "disable.warnings.button": "Désactiver les avertissements", "unable.to.provide.configuration": "{0} ne peut pas fournir les informations de configuration IntelliSense de '{1}'. Les paramètres de la configuration de '{2}' sont utilisés à la place.", "config.not.found": "Le nom de configuration demandé est introuvable : {0}", "unsupported.client": "Client non pris en charge", diff --git a/Extension/i18n/fra/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/fra/src/LanguageServer/codeAnalysis.i18n.json index 8b2e904ae5..133215cb9e 100644 --- a/Extension/i18n/fra/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/fra/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "Résoudre tous les problèmes d’analyse du code", - "clear_all_code_analysis_problems": "Effacer tous les problèmes d’analyse du code", - "fix_all_type_problems": "Résoudre tous les problèmes de {0}", - "disable_all_type_problems": "Désactiver tous les problèmes de {0}", - "clear_all_type_problems": "Effacer tous les problèmes de {0}", - "clear_this_problem": "Effacer ce problème de {0}", - "fix_this_problem": "Résoudre ce problème de {0}", - "show_documentation_for": "Afficher la documentation pour {0}" + "fix.all.code.analysis.problems": "Résoudre tous les problèmes d’analyse du code", + "clear.all.code.analysis.problems": "Effacer tous les problèmes d’analyse du code", + "fix.all.type.problems": "Résoudre tous les problèmes de {0}", + "disable.all.type.problems": "Désactiver tous les problèmes de {0}", + "clear.all.type.problems": "Effacer tous les problèmes de {0}", + "clear.this.problem": "Effacer ce problème de {0}", + "fix.this.problem": "Résoudre ce problème de {0}", + "show.documentation.for": "Afficher la documentation pour {0}" } \ No newline at end of file diff --git a/Extension/i18n/fra/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/fra/src/LanguageServer/cppBuildTaskProvider.i18n.json index f92e42a451..3b47c0b9f0 100644 --- a/Extension/i18n/fra/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/fra/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "générer le fichier actif", - "compiler_details": "compilateur :", - "task_generated_by_debugger": "Tâche générée par le débogueur.", + "build.active.file": "générer le fichier actif", + "compiler.details": "compilateur :", + "task.generated.by.debugger": "Tâche générée par le débogueur.", "cannot.build.non.cpp": "Génération et débogage impossibles, car le fichier actif n'est pas un fichier source C ou C++.", - "starting_build": "Démarrage de la génération...", + "starting.build": "Démarrage de la génération...", "build.run.terminated": "Exécution est terminée.", "build.finished.with.error": "La génération s'est achevée avec une ou plusieurs erreurs.", "build.finished.with.warnings": "La génération s'est achevée avec un ou plusieurs avertissements.", diff --git a/Extension/i18n/fra/src/LanguageServer/extension.i18n.json b/Extension/i18n/fra/src/LanguageServer/extension.i18n.json index 2fadc91e69..451a9f7582 100644 --- a/Extension/i18n/fra/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/fra/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "Copier la commande vcpkg pour installer '{0}' dans le Presse-papiers", "on.disabled.command": "Les commandes liées à IntelliSense ne peuvent pas être exécutées quand `C_Cpp.intelliSenseEngine` a la valeur `disabled`.", "client.not.found": "client introuvable", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "Commencer par ouvrir un dossier pour sélectionner une configuration", "configuration.provider.select.first": "Commencer par ouvrir un dossier pour sélectionner un fournisseur de configuration", "edit.configurations.open.first": "Commencer par ouvrir un dossier pour modifier des configurations", diff --git a/Extension/i18n/fra/src/LanguageServer/ui.i18n.json b/Extension/i18n/fra/src/LanguageServer/ui.i18n.json index dfefc1bcea..be4a6bc6b8 100644 --- a/Extension/i18n/fra/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/fra/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense : mise à jour", + "idle.intellisense.text": "IntelliSense : prêt", + "absent.intellisense.text": "IntelliSense : non configuré", + "initializing.tagparser.text": "Initialisation de l’espace de travail", + "indexing.tagparser.text": "Indexation de l’espace de travail", "running.tagparser.text": "Analyse de l’espace de travail", "paused.tagparser.text": "Analyse de l’espace de travail : suspendu", "complete.tagparser.text": "Analyse terminée", - "initializing.tagparser.text": "Initialisation de l’espace de travail", - "indexing.tagparser.text": "Indexation de l’espace de travail", "rescan.tagparse.text": "Réanalyser l'espace de travail", "c.cpp.parsing.open.files.tooltip": "Analyse des fichiers ouverts", - "click.to.preview": "cliquez pour voir un aperçu des résultats", - "updating.intellisense.text": "IntelliSense : mise à jour", - "idle.intellisense.text": "IntelliSense : prêt", - "absent.intellisense.text": "IntelliSense : non configuré", "running.analysis.text": "Code Analysis : en cours d’exécution", "paused.analysis.text": "Code Analysis : suspendu", "mode.analysis.prefix": "Mode Code Analysis : ", + "click.to.preview": "cliquez pour voir un aperçu des résultats", "c.cpp.configureIntelliSenseStatus.text": "Configurer IntelliSense", - "c.cpp.configureIntelliSenseStatus.cppText": "Configuration d’IntelliSense en C/C++", - "c.cpp.configuration.tooltip": "Configuration C/C++", - "c.cpp.references.statusbar": "État des références C/C++", "cpptools.status.intellisense": "État IntelliSense C/C++", + "intellisense.select.text": "Sélectionnez un compilateur", + "rescan.intellisense.text": "Relancer l'analyse", + "rescan.intellisense.tooltip": "Relancer l'analyse IntelliSense", "cpptools.status.tagparser": "État de l’analyseur de balises C/C++", "cpptools.detail.tagparser": "Initialisation en cours...", + "tagparser.resume.text": "Reprendre", + "tagparser.pause.text": "Pause", "cpptools.status.codeanalysis": "État du Code Analysis C/C++", "c.cpp.codeanalysis.statusbar.runNow": "Exécuter maintenant", - "tagparser.pause.text": "Pause", - "tagparser.resume.text": "Reprendre", - "intellisense.select.text": "Sélectionnez un compilateur", - "rescan.intellisense.text": "Relancer l'analyse", - "rescan.intellisense.tooltip": "Relancer l'analyse IntelliSense", "mode.codeanalysis.status.automatic": "Automatique", "mode.codeanalysis.status.manual": "Manuel", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Options", "startup.codeanalysis.status": "Démarrage en cours...", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "Exécuter maintenant", "running.analysis.processed.tooltip": "En cours d’exécution : {0}/{1} ({2} %)", + "select.code.analysis.command": "Sélectionner une commande d’analyse du code...", + "cancel.analysis": "Annuler", + "resume.analysis": "Reprendre", + "pause.analysis": "Suspendre", + "another.analysis": "Démarrer une autre...", + "select.command": "Sélectionner une commande...", + "active.analysis": "Exécuter Code Analysis sur le fichier actif", + "all.analysis": "Exécuter une analyse de code sur Tous les fichiers", + "open.analysis": "Exécuter une analyse de code sur Ouvrir les fichiers", + "c.cpp.references.statusbar": "État des références C/C++", + "c.cpp.configuration.tooltip": "Configuration C/C++", + "c.cpp.configureIntelliSenseStatus.cppText": "Configuration d’IntelliSense en C/C++", "select.a.configuration": "Sélectionner une configuration...", "edit.configuration.ui": "Modifier les configurations (IU)", "edit.configuration.json": "Modifier les configurations (JSON)", @@ -46,16 +55,5 @@ "none": "aucun", "disable.configuration.provider": "Désactivez le fournisseur de configuration actif, le cas échéant.", "select.compile.commands": "Sélectionner un fichier compile_commands.json...", - "select.workspace": "Sélectionner un dossier d'espace de travail...", - "select.command": "Sélectionner une commande...", - "select.code.analysis.command": "Sélectionner une commande d’analyse du code...", - "resume.parsing": "Reprendre l’analyse de l’espace de travail", - "pause.parsing": "Suspendre l’analyse de l’espace de travail", - "cancel.analysis": "Annuler", - "resume.analysis": "Reprendre", - "pause.analysis": "Suspendre", - "another.analysis": "Démarrer une autre...", - "active.analysis": "Exécuter Code Analysis sur le fichier actif", - "all.analysis": "Exécuter une analyse de code sur Tous les fichiers", - "open.analysis": "Exécuter une analyse de code sur Ouvrir les fichiers" + "select.workspace": "Sélectionner un dossier d'espace de travail..." } \ No newline at end of file diff --git a/Extension/i18n/fra/src/SSH/commands.i18n.json b/Extension/i18n/fra/src/SSH/commands.i18n.json index eebf3dbbd2..dff9035e4d 100644 --- a/Extension/i18n/fra/src/SSH/commands.i18n.json +++ b/Extension/i18n/fra/src/SSH/commands.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "« localSocket » ne peut pas être spécifié en même temps avec « bindAddress » ou « port » dans localForwards", + "local.forward.local.conflict": "Impossible de spécifier « localSocket » en même temps avec « bindAddress » ou « port » dans localForwards", "local.forward.local.missing": "« port » ou « localSocket » requis dans localForwards", "local.forward.remote.conflict": "Impossible de spécifier « remoteSocket » en même temps que « host » ou « hostPort » dans localForwards", "local.forward.remote.missing": "« host » et « hostPort » ou « remoteSocket » requis dans localForwards" diff --git a/Extension/i18n/fra/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/fra/src/SSH/sshCommandRunner.i18n.json index b404f1d968..b300d90d61 100644 --- a/Extension/i18n/fra/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/fra/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "Commande SSH annulée", "ssh.passphrase.input.box": "Entrer la phrase secrète pour la clé SSH {0}", "ssh.enter.password.for.user": "Entrez le mot de passe de l’utilisateur «{0}»", - "ssh_message_enterPassword": "Entrez le mot de passe", + "ssh.message.enter.password": "Entrer le mot de passe", "ssh.continue.confirmation.placeholder": "Êtes-vous sûr de vouloir continuer ?", "ssh.host.key.confirmation.title": "« {0} » a une empreinte digitale « {1} ».", "continue": "Continuer", diff --git a/Extension/i18n/fra/src/nativeStrings.i18n.json b/Extension/i18n/fra/src/nativeStrings.i18n.json index 6d364926fb..a731a1a45c 100644 --- a/Extension/i18n/fra/src/nativeStrings.i18n.json +++ b/Extension/i18n/fra/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "Échec de l'interrogation du compilateur sur le chemin \"{0}\" pour les versions normalisées par défaut. L'interrogation du compilateur est désactivée pour ce compilateur.", "unrecognized_language_standard_version": "L'interrogation du compilateur a retourné une version de norme de langage non reconnue. La toute dernière version prise en charge va être utilisée à la place.", "intellisense_process_crash_detected": "Détection d'un plantage du processus IntelliSense.", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "Valeurs de retour :", "nvcc_compiler_not_found": "Impossible de localiser le compilateur nvcc : {0}", "nvcc_host_compiler_not_found": "Impossible de localiser le compilateur hôte pour nvcc : {0}", diff --git a/Extension/i18n/fra/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/fra/walkthrough/installcompiler/install-clang-macos.md.i18n.json index ee614df0df..350df6d161 100644 --- a/Extension/i18n/fra/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/fra/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "Installer un compilateur C++ sur macOS", - "walkthough.mac.text1": "Si vous effectuez du développement en C++ pour macOS, nous vous recommandons d’installer le compilateur Clang. Il vous suffit d’exécuter la commande suivante dans une fenêtre de Terminal (Ctrl+Shift+ `) pour installer les outils de développement en ligne de commande :", - "walkthough.mac.text2": "Ensuite, pour vérifier que Clang est installé, exécutez la commande suivante dans une fenêtre de terminal. Vous devez voir un message contenant des informations sur la version de Clang que vous utilisez." + "walkthrough.mac.install.compiler": "Installer un compilateur C++ sur macOS", + "walkthrough.mac.text1": "Si vous effectuez du développement en C++ pour macOS, nous vous recommandons d’installer le compilateur Clang. Il vous suffit d’exécuter la commande suivante dans une fenêtre de Terminal (Ctrl+Shift+ `) pour installer les outils de développement en ligne de commande :", + "walkthrough.mac.text2": "Ensuite, pour vérifier que Clang est installé, exécutez la commande suivante dans une fenêtre de terminal. Vous devez voir un message contenant des informations sur la version de Clang que vous utilisez." } \ 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/fra/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/ita/package.i18n.json b/Extension/i18n/ita/package.i18n.json index d4e4bb8651..8562789e87 100644 --- a/Extension/i18n/ita/package.i18n.json +++ b/Extension/i18n/ita/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "Modifica configurazioni (interfaccia utente)", "c_cpp.command.selectDefaultCompiler.title": "Seleziona compilatore predefinito...", "c_cpp.command.selectIntelliSenseConfiguration.title": "Seleziona configurazione IntelliSense...", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "Ripeti analisi dei compilatori", "c_cpp.command.switchHeaderSource.title": "Scambia intestazione/origine", "c_cpp.command.enableErrorSquiggles.title": "Abilita i segni di revisione per gli errori", @@ -416,11 +417,12 @@ "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...", - "c_cpp.walkthrough.no.compilers.description": "Non è stato possibile trovare un compilatore C++ nel computer, necessario per usare l'estensione C++. Seguire le istruzioni a destra per installarne uno, quindi fare clic su “Trova il nuovo compilatore” di seguito.\n [Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", - "c_cpp.walkthrough.compilers.found.description": "L'estensione C++ funziona con un compilatore C++. Selezionare una delle opzioni già presenti nel computer facendo clic sul pulsante seguente.\n [Selezionare il compilatore predefinito](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.compilers.found.description": "L'estensione C++ funziona con un compilatore C++. Selezionare una delle opzioni già presenti nel computer facendo clic sul pulsante seguente.\n [Selezionare il compilatore predefinito] (comando:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Immagine che mostra la selezione di un quickpick del compilatore predefinito e l'elenco dei compilatori trovati nel computer degli utenti, uno dei quali è selezionato.", "c_cpp.walkthrough.create.cpp.file.title": "Creare un file C++", - "c_cpp.walkthrough.create.cpp.file.description": "[Open](command:toSide:workbench.action.files.openFile) o [creare](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un file C++. Assicurasi di salvarlo con l'estensione \".cpp\", ad esempio \"helloworld.cpp\". \n[Creare un file C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", + "c_cpp.walkthrough.create.cpp.file.description": "[Open](command:toSide:workbench.action.files.openFile) o [creare](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un file C++. Assicurasi di salvarlo con l'estensione \".cpp\", ad esempio \"helloworld.cpp\". \n[Creare 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": "Prompt dei comandi per gli sviluppatori", "c_cpp.walkthrough.command.prompt.description": "Quando si usa il compilatore C++ Microsoft Visual Studio, l'estensione C++ richiede di avviare VS Code dal prompt dei comandi per sviluppatori. Seguire le istruzioni a destra per riavviare.\n[Reload Window](command:workbench.action.reloadWindow)", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "È possibile personalizzare la configurazione di debug, ad esempio per passare argomenti al programma in fase di esecuzione, selezionando \"Aggiungi configurazione di debug\" a destra del pulsante Riproduci. La configurazione di debug personalizzata viene salvata nel file launch.json del progetto. \n[Altre informazioni](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "È possibile personalizzare la configurazione di debug, ad esempio per passare argomenti al programma in fase di esecuzione, selezionando \"Aggiungi configurazione di debug\" a destra del pulsante Riproduci. La configurazione di debug personalizzata viene salvata nel file launch.json del progetto. \n[Altre informazioni](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "È possibile personalizzare la configurazione di debug, ad esempio per passare argomenti al programma in fase di esecuzione, selezionando \"Aggiungi configurazione di debug\" a destra del pulsante Riproduci. La configurazione di debug personalizzata viene salvata nel file launch.json del progetto. \n[Altre informazioni](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "Immagine che mostra l'aggiunta della configurazione di debug nell'elenco a discesa" -} + "c_cpp.walkthrough.customize.debugging.altText": "Immagine che mostra l'aggiunta della configurazione di debug nell'elenco a discesa", + "c_cpp.codeActions.refactor.inline.macro.title": "Macro inline", + "c_cpp.codeActions.refactor.inline.macro.description": "Sostituisci la chiamata della macro con il codice espanso." +} \ No newline at end of file diff --git a/Extension/i18n/ita/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/ita/src/Debugger/ParsedEnvironmentFile.i18n.json index 0be898ad9a..fc1a37621a 100644 --- a/Extension/i18n/ita/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/ita/src/Debugger/ParsedEnvironmentFile.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "ignoring.lines.in.envfile": "Le righe non analizzabili in {1} {0} verranno ignorate: " + "ignoring.lines.in.envfile": "Le righe non analizzabili in {0} {1} saranno ignorate: " } \ No newline at end of file diff --git a/Extension/i18n/ita/src/Debugger/extension.i18n.json b/Extension/i18n/ita/src/Debugger/extension.i18n.json index 75d0374362..687ba06c2a 100644 --- a/Extension/i18n/ita/src/Debugger/extension.i18n.json +++ b/Extension/i18n/ita/src/Debugger/extension.i18n.json @@ -14,5 +14,5 @@ "select.ssh.config.file": "Selezionare un file di configurazione SSH", "yes": "Sì", "no": "No", - "ssh.target.delete.confirmation": "Eliminare definitivamente \"{0}\"?" + "ssh.target.delete.confirmation": "Sei sicuro di voler eliminare definitivamente “{0}”?" } \ No newline at end of file diff --git a/Extension/i18n/ita/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/ita/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..a34da2b52e --- /dev/null +++ b/Extension/i18n/ita/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "Si espande in:", + "inline.macro": "Macro inline", + "inline.macro.not.available": "Macro inline non è disponibile in questa posizione." +} \ No newline at end of file diff --git a/Extension/i18n/ita/src/LanguageServer/client.i18n.json b/Extension/i18n/ita/src/LanguageServer/client.i18n.json index 68322d44ef..7eabc22943 100644 --- a/Extension/i18n/ita/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/ita/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "Usa {0}", "selectAnotherCompiler.string": "Seleziona un altro compilatore nel computer...", "installCompiler.string": "Aiutami a installare un compilatore", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "Non configurare un compilatore (scelta non consigliata)", "selectCompiler.string": "Seleziona compilatore", "confirmCompiler.string": "Sì", @@ -27,7 +28,7 @@ "server.crashed2": "Si sono verificati cinque arresti anomali del server di linguaggio negli ultimi tre minuti. Non verrà riavviato.", "loggingLevel.changed": "{0} è stato modificato in: {1}", "dismiss.button": "Ignora", - "diable.warnings.button": "Disabilita avvisi", + "disable.warnings.button": "Disabilita avvisi", "unable.to.provide.configuration": "{0} non riesce a fornire le informazioni di configurazione IntelliSense per '{1}'. Verranno usate le impostazioni della configurazione di '{2}'.", "config.not.found": "Il nome di configurazione richiesto non è stato trovato: {0}", "unsupported.client": "Client non supportato", diff --git a/Extension/i18n/ita/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/ita/src/LanguageServer/codeAnalysis.i18n.json index 991cae29ed..f0c190f251 100644 --- a/Extension/i18n/ita/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/ita/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "Correggere tutti i problemi Code Analysis", - "clear_all_code_analysis_problems": "Cancellare tutti i problemi di Code Analysis", - "fix_all_type_problems": "Correggere tutti i problemi {0}", - "disable_all_type_problems": "Disabilitare tutti i problemi {0}", - "clear_all_type_problems": "Cancellare tutti i problemi {0}", - "clear_this_problem": "Cancellare questo problema {0}", - "fix_this_problem": "Correggere questo problema {0}", - "show_documentation_for": "Mostrare documentazione per {0}" + "fix.all.code.analysis.problems": "Correggere tutti i problemi Code Analysis", + "clear.all.code.analysis.problems": "Cancellare tutti i problemi di Code Analysis", + "fix.all.type.problems": "Correggere tutti i problemi {0}", + "disable.all.type.problems": "Disabilitare tutti i problemi {0}", + "clear.all.type.problems": "Cancellare tutti i problemi {0}", + "clear.this.problem": "Cancellare questo problema {0}", + "fix.this.problem": "Correggere questo problema {0}", + "show.documentation.for": "Mostrare documentazione per {0}" } \ No newline at end of file diff --git a/Extension/i18n/ita/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/ita/src/LanguageServer/cppBuildTaskProvider.i18n.json index 015ab244af..10ab0e7f80 100644 --- a/Extension/i18n/ita/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/ita/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "compila il file attivo", - "compiler_details": "compilatore:", - "task_generated_by_debugger": "Attività generata dal debugger.", + "build.active.file": "compila file attivo", + "compiler.details": "compilatore:", + "task.generated.by.debugger": "Attività generata dal debugger.", "cannot.build.non.cpp": "Non è possibile compilare ed eseguire il debug perché il file attivo non è un file di origine C o C++.", - "starting_build": "Avvio della compilazione...", + "starting.build": "Avvio della compilazione...", "build.run.terminated": "L'esecuzione della compilazione è stata terminata.", "build.finished.with.error": "La compilazione è terminata con errore/i.", "build.finished.with.warnings": "La compilazione è terminata con uno o più avvisi.", diff --git a/Extension/i18n/ita/src/LanguageServer/extension.i18n.json b/Extension/i18n/ita/src/LanguageServer/extension.i18n.json index 06e24baf89..3562c58563 100644 --- a/Extension/i18n/ita/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/ita/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "Copiare il comando vcpkg per installare '{0}' negli Appunti", "on.disabled.command": "Non è possibile eseguire comandi correlati a IntelliSense quando `C_Cpp.intelliSenseEngine` è impostato su `disabled`.", "client.not.found": "client non trovato", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "Apri prima una cartella per selezionare una configurazione.", "configuration.provider.select.first": "Apri prima una cartella per selezionare un provider di configurazione.", "edit.configurations.open.first": "Aprire prima una cartella per modificare le configurazioni", diff --git a/Extension/i18n/ita/src/LanguageServer/ui.i18n.json b/Extension/i18n/ita/src/LanguageServer/ui.i18n.json index 4882996c54..8d58ebb5d5 100644 --- a/Extension/i18n/ita/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/ita/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense: aggiornamento", + "idle.intellisense.text": "IntelliSense: Pronto", + "absent.intellisense.text": "IntelliSense: Non configurato", + "initializing.tagparser.text": "Inizializzazione dell'area di lavoro", + "indexing.tagparser.text": "Area di lavoro di indicizzazione", "running.tagparser.text": "Analisi area di lavoro", "paused.tagparser.text": "Analisi area di lavoro: Sospesa", "complete.tagparser.text": "Analisi completata", - "initializing.tagparser.text": "Inizializzazione dell'area di lavoro", - "indexing.tagparser.text": "Area di lavoro di indicizzazione", "rescan.tagparse.text": "Ripeti analisi area di lavoro", "c.cpp.parsing.open.files.tooltip": "Analisi dei file aperti", - "click.to.preview": "fare clic per visualizzare l'anteprima dei risultati", - "updating.intellisense.text": "IntelliSense: aggiornamento", - "idle.intellisense.text": "IntelliSense: Pronto", - "absent.intellisense.text": "IntelliSense: Non configurato", "running.analysis.text": "Code Analysis: In esecuzione", "paused.analysis.text": "Code Analysis: Sospeso", "mode.analysis.prefix": "Modalità Code Analysis: ", + "click.to.preview": "fare clic per visualizzare l'anteprima dei risultati", "c.cpp.configureIntelliSenseStatus.text": "Configura IntelliSense", - "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ - Configura IntelliSense", - "c.cpp.configuration.tooltip": "Configurazione C/C++", - "c.cpp.references.statusbar": "Stato riferimenti C/C++", "cpptools.status.intellisense": "Stato IntelliSense C/C++", + "intellisense.select.text": "Seleziona un compilatore", + "rescan.intellisense.text": "Ripeti analisi", + "rescan.intellisense.tooltip": "Ripeti analisi di IntelliSense", "cpptools.status.tagparser": "Stato del parser del tag C/C++", "cpptools.detail.tagparser": "Inizializzazione...", + "tagparser.resume.text": "Riprendi", + "tagparser.pause.text": "Sospendi", "cpptools.status.codeanalysis": "Stato Code Analysis C/C++", "c.cpp.codeanalysis.statusbar.runNow": "Esegui", - "tagparser.pause.text": "Sospendi", - "tagparser.resume.text": "Riprendi", - "intellisense.select.text": "Seleziona un compilatore", - "rescan.intellisense.text": "Ripeti analisi", - "rescan.intellisense.tooltip": "Ripeti analisi di IntelliSense", "mode.codeanalysis.status.automatic": "Automatico", "mode.codeanalysis.status.manual": "Manuale", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Opzioni", "startup.codeanalysis.status": "Avvio...", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "Esegui", "running.analysis.processed.tooltip": "In esecuzione: {0} / {1} ({2}%)", + "select.code.analysis.command": "Selezionare un comando di Code Analysis...", + "cancel.analysis": "Annulla", + "resume.analysis": "Riprendi", + "pause.analysis": "Sospendi", + "another.analysis": "Avvia un'altra...", + "select.command": "Seleziona un comando...", + "active.analysis": "Esegui analisi del codice su File attivo", + "all.analysis": "Esegui analisi del codice su Tutti i file", + "open.analysis": "Esegui analisi del codice su Apri file", + "c.cpp.references.statusbar": "Stato riferimenti C/C++", + "c.cpp.configuration.tooltip": "Configurazione C/C++", + "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ - Configura IntelliSense", "select.a.configuration": "Seleziona una configurazione...", "edit.configuration.ui": "Modifica configurazioni (interfaccia utente)", "edit.configuration.json": "Modifica configurazioni (JSON)", @@ -46,16 +55,5 @@ "none": "nessuno", "disable.configuration.provider": "Disabilita il provider di configurazione attivo, se applicabile.", "select.compile.commands": "Seleziona un file compile_commands.json...", - "select.workspace": "Seleziona una cartella dell'area di lavoro...", - "select.command": "Seleziona un comando...", - "select.code.analysis.command": "Selezionare un comando di Code Analysis...", - "resume.parsing": "Riprendi analisi area di lavoro", - "pause.parsing": "Sospendi analisi area di lavoro", - "cancel.analysis": "Annulla", - "resume.analysis": "Riprendi", - "pause.analysis": "Sospendi", - "another.analysis": "Avvia un'altra...", - "active.analysis": "Esegui analisi del codice su File attivo", - "all.analysis": "Esegui analisi del codice su Tutti i file", - "open.analysis": "Esegui analisi del codice su Apri file" + "select.workspace": "Seleziona una cartella dell'area di lavoro..." } \ No newline at end of file diff --git a/Extension/i18n/ita/src/SSH/commands.i18n.json b/Extension/i18n/ita/src/SSH/commands.i18n.json index 453ff2d2e4..cc5e9cc935 100644 --- a/Extension/i18n/ita/src/SSH/commands.i18n.json +++ b/Extension/i18n/ita/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "Non è possibile specificare contemporaneamente \"localSocket\" con \"bindAddress\" o \"port\" in localForwards", + "local.forward.local.conflict": "Non è possibile specificare \"localSocket\" contemporaneamente con \"bindAddress\" o \"port\" in localForwards", "local.forward.local.missing": "\"port\" o \"localSocket\" obbligatorio in localForwards", - "local.forward.remote.conflict": "Non è possibile specificare contemporaneamente \"remoteSocket\" con \"host\" o \"hostPort\" in localForwards", + "local.forward.remote.conflict": "Non è possibile specificare \"remoteSocket\" contemporaneamente con \"host\" o \"hostPort\" in localForwards", "local.forward.remote.missing": "È necessario specificare \"host\" e \"hostPort\" o \"remoteSocket\" in localForwards" } \ No newline at end of file diff --git a/Extension/i18n/ita/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/ita/src/SSH/sshCommandRunner.i18n.json index 06581cc92a..212507d18a 100644 --- a/Extension/i18n/ita/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/ita/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "Comando SSH annullato", "ssh.passphrase.input.box": "Immettere la passphrase per la chiave SSH {0}", "ssh.enter.password.for.user": "Immettere la password per l'utente \"{0}\"", - "ssh_message_enterPassword": "Immettere la password", + "ssh.message.enter.password": "Immetti la password", "ssh.continue.confirmation.placeholder": "Continuare?", "ssh.host.key.confirmation.title": "\"{0}\" ha l'impronta digitale \"{1}\".", "continue": "Continua", diff --git a/Extension/i18n/ita/src/nativeStrings.i18n.json b/Extension/i18n/ita/src/nativeStrings.i18n.json index 822174a9ec..62769dc4f1 100644 --- a/Extension/i18n/ita/src/nativeStrings.i18n.json +++ b/Extension/i18n/ita/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "Non è stato possibile eseguire una query sul compilatore nel percorso \"{0}\" per le versioni standard predefinite. L'esecuzione di query del compilatore è disabilitata per questo compilatore.", "unrecognized_language_standard_version": "La query del compilatore ha restituito una versione standard del linguaggio non riconosciuta. In alternativa, verrà usata la versione più recente supportata.", "intellisense_process_crash_detected": "È stato rilevato un arresto anomalo del processo IntelliSense.", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "Valori restituiti:", "nvcc_compiler_not_found": "Non è possibile individuare il compilatore nvcc: {0}", "nvcc_host_compiler_not_found": "Non è possibile individuare il compilatore host nvcc: {0}", diff --git a/Extension/i18n/ita/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/ita/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 62b43a985b..b3116b90df 100644 --- a/Extension/i18n/ita/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/ita/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "Installa un compilatore C++ in macOS", - "walkthough.mac.text1": "Se si sviluppa con C++ per macOS, è consigliabile installare il compilatore Clang. A questo scopo, è sufficiente eseguire il comando seguente in una finestra di terminale (CTRL+MAIUSC+`) per installare gli strumenti di sviluppo da riga di comando:", - "walkthough.mac.text2": "Quindi, per verificare che Clang sia installato, eseguire il comando seguente in una finestra di terminale. Verrà visualizzato un messaggio contenente informazioni sulla versione di Clang in uso." + "walkthrough.mac.install.compiler": "Installa un compilatore C++ in macOS", + "walkthrough.mac.text1": "Se si sviluppa con C++ per macOS, è consigliabile installare il compilatore Clang. A questo scopo, è sufficiente eseguire il comando seguente in una finestra di terminale (CTRL+MAIUSC+`) per installare gli strumenti di sviluppo da riga di comando:", + "walkthrough.mac.text2": "Quindi, per verificare che Clang sia installato, eseguire il comando seguente in una finestra di terminale. Verrà visualizzato un messaggio contenente informazioni sulla versione di Clang in uso." } \ No newline at end of file diff --git a/Extension/i18n/ita/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json b/Extension/i18n/ita/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/ita/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/ita/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json b/Extension/i18n/ita/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/ita/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/jpn/package.i18n.json b/Extension/i18n/jpn/package.i18n.json index a8a8aecf8b..9e0449e8d9 100644 --- a/Extension/i18n/jpn/package.i18n.json +++ b/Extension/i18n/jpn/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "構成の編集 (UI)", "c_cpp.command.selectDefaultCompiler.title": "既定のコンパイラを選択...", "c_cpp.command.selectIntelliSenseConfiguration.title": "IntelliSense 構成を選択...", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "コンパイラの再スキャン", "c_cpp.command.switchHeaderSource.title": "ヘッダー/ソースの切り替え", "c_cpp.command.enableErrorSquiggles.title": "エラーの波線を有効にする", @@ -416,7 +417,8 @@ "c_cpp.walkthrough.description": "VS Code の豊富な C++ 開発エクスペリエンスをご確認ください。", "c_cpp.walkthrough.set.up.title": "C++ 環境のセットアップ", "c_cpp.walkthrough.activating.description": "C++ 環境が設定されているかどうかを判断するために C++ 拡張機能をアクティブ化しています。\n拡張機能をアクティブ化しています...", - "c_cpp.walkthrough.no.compilers.description": "C++ 拡張機能を使用するために必要な C++ コンパイラがマシンに見つかりませんでした。右側の指示に従ってインストールし、下の [新しいコンパイラを検索] をクリックします。\n[新しいコンパイラを検索](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.description": "C++ 拡張機能は C++ コンパイラで動作します。下のボタンをクリックして、マシンに既にあるものから 1 つ選択してください。\n[既定の値コンパイラの使用](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "既定のコンパイラのクイックピックと、ユーザー コンピューターで見つかったコンパイラのリストを示す画像。そのうちの 1 つが選択されています。", "c_cpp.walkthrough.create.cpp.file.title": "C++ ファイルの作成", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "再生ボタンの右側にある [デバッグ構成の追加] を選択すると、デバッグ構成をカスタマイズできます (たとえば、実行時にプログラムに引数を渡す)。カスタム デバッグ構成は、プロジェクトの launch.json ファイルに保存されます。\n[詳細情報](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "再生ボタンの右側にある [デバッグ構成の追加] を選択すると、デバッグ構成をカスタマイズできます (たとえば、実行時にプログラムに引数を渡す)。カスタム デバッグ構成は、プロジェクトの launch.json ファイルに保存されます。\n[詳細情報](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "再生ボタンの右側にある [デバッグ構成の追加] を選択すると、デバッグ構成をカスタマイズできます (たとえば、実行時にプログラムに引数を渡す)。カスタム デバッグ構成は、プロジェクトの launch.json ファイルに保存されます。\n[詳細情報](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "ドロップダウンの [デバッグ構成の追加] を表示するイメージ" + "c_cpp.walkthrough.customize.debugging.altText": "ドロップダウンの [デバッグ構成の追加] を表示するイメージ", + "c_cpp.codeActions.refactor.inline.macro.title": "インライン マクロ", + "c_cpp.codeActions.refactor.inline.macro.description": "マクロの呼び出しを展開されたコードで置き換えます。" } \ No newline at end of file diff --git a/Extension/i18n/jpn/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/jpn/src/Debugger/ParsedEnvironmentFile.i18n.json index 1024cc76c1..ff4a84e9ac 100644 --- a/Extension/i18n/jpn/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/jpn/src/Debugger/ParsedEnvironmentFile.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "ignoring.lines.in.envfile": "{0} {1} 内の解析できない行を無視します。" + "ignoring.lines.in.envfile": "{0} {1} で解析できない行を無視します: " } \ No newline at end of file diff --git a/Extension/i18n/jpn/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/jpn/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..49414e717e --- /dev/null +++ b/Extension/i18n/jpn/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "展開先:", + "inline.macro": "インライン マクロ", + "inline.macro.not.available": "インライン マクロは、この場所では使用できません。" +} \ No newline at end of file diff --git a/Extension/i18n/jpn/src/LanguageServer/client.i18n.json b/Extension/i18n/jpn/src/LanguageServer/client.i18n.json index cb8c105d10..3f812ce8b7 100644 --- a/Extension/i18n/jpn/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/jpn/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "{0}を使用する", "selectAnotherCompiler.string": "コンピューター上の別のコンパイラを選択...", "installCompiler.string": "コンパイラのインストールに関するヘルプ", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "コンパイラで構成しない (推奨されません)", "selectCompiler.string": "コンパイラを選択する", "confirmCompiler.string": "はい", @@ -27,7 +28,7 @@ "server.crashed2": "言語サーバーが過去 3 分間に 5 回クラッシュしました。再起動されません。", "loggingLevel.changed": "{0} が次に変更されました: {1}", "dismiss.button": "消去", - "diable.warnings.button": "警告を無効にする", + "disable.warnings.button": "警告を無効にする", "unable.to.provide.configuration": "{0} が '{1}' の IntelliSense 構成情報を指定できません。'{2}' 構成からの設定が代わりに使用されます。", "config.not.found": "要求された構成名が見つかりません: {0}", "unsupported.client": "サポートされていないクライアント", diff --git a/Extension/i18n/jpn/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/jpn/src/LanguageServer/codeAnalysis.i18n.json index e40f0c1bb7..3594b9a839 100644 --- a/Extension/i18n/jpn/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/jpn/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "すべてのコード分析の問題を修正する", - "clear_all_code_analysis_problems": "すべてのコード分析の問題をクリアする", - "fix_all_type_problems": "すべての {0} の問題を修正する", - "disable_all_type_problems": "すべての {0} の問題を無効にする", - "clear_all_type_problems": "すべての {0} の問題をクリアする", - "clear_this_problem": "この {0} 問題をクリアします", - "fix_this_problem": "この {0} の問題を修正する", - "show_documentation_for": "{0} のドキュメントを表示する" + "fix.all.code.analysis.problems": "すべてのコード分析の問題を修正する", + "clear.all.code.analysis.problems": "すべてのコード分析の問題をクリアする", + "fix.all.type.problems": "すべての {0} の問題を修正する", + "disable.all.type.problems": "すべての {0} の問題を無効にする", + "clear.all.type.problems": "すべての {0} の問題をクリアする", + "clear.this.problem": "この {0} 問題をクリアします", + "fix.this.problem": "この {0} の問題を修正する", + "show.documentation.for": "{0} のドキュメントを表示する" } \ No newline at end of file diff --git a/Extension/i18n/jpn/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/jpn/src/LanguageServer/cppBuildTaskProvider.i18n.json index 9d3cb1cce2..5be3dc38e7 100644 --- a/Extension/i18n/jpn/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/jpn/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "アクティブなファイルのビルド", - "compiler_details": "コンパイラ:", - "task_generated_by_debugger": "デバッガーによって生成されたタスク。", + "build.active.file": "アクティブなファイルのビルド", + "compiler.details": "コンパイラ:", + "task.generated.by.debugger": "デバッガーによって生成されたタスク。", "cannot.build.non.cpp": "アクティブ ファイルが C または C++ ソース ファイルではないため、ビルドおよびデバッグできません。", - "starting_build": "ビルドを開始しています...", + "starting.build": "ビルドを開始しています...", "build.run.terminated": "ビルドの実行が終了しました。", "build.finished.with.error": "ビルドが完了しましたが、エラーが発生しました。", "build.finished.with.warnings": "ビルドが完了しましたが、警告が発生しました。", diff --git a/Extension/i18n/jpn/src/LanguageServer/extension.i18n.json b/Extension/i18n/jpn/src/LanguageServer/extension.i18n.json index e491a51931..88d864d67a 100644 --- a/Extension/i18n/jpn/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/jpn/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "'{0}' をインストールするための vcpkg コマンドをクリップボードにコピーする", "on.disabled.command": "`C_Cpp.intelliSenseEngine` が `disabled` に設定されている場合、IntelliSense 関連のコマンドは実行できません。", "client.not.found": "クライアントが見つかりませんでした", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "構成を選択するには、まずフォルダーを開いてください。", "configuration.provider.select.first": "構成プロバイダーを選択するには、まずフォルダーを開いてください。", "edit.configurations.open.first": "構成を編集するには、まずフォルダーを開いてください", diff --git a/Extension/i18n/jpn/src/LanguageServer/ui.i18n.json b/Extension/i18n/jpn/src/LanguageServer/ui.i18n.json index ac67780d9d..ad2e276bcd 100644 --- a/Extension/i18n/jpn/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/jpn/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense: 更新中", + "idle.intellisense.text": "IntelliSense: 準備完了", + "absent.intellisense.text": "IntelliSense: 未構成", + "initializing.tagparser.text": "ワークスペースの初期化", + "indexing.tagparser.text": "ワークスペースのインデックス作成", "running.tagparser.text": "ワークスペースを解析しています", "paused.tagparser.text": "ワークスペースを解析しています: 一時停止", "complete.tagparser.text": "解析完了", - "initializing.tagparser.text": "ワークスペースの初期化", - "indexing.tagparser.text": "ワークスペースのインデックス作成", "rescan.tagparse.text": "ワークスペースの再スキャン", "c.cpp.parsing.open.files.tooltip": "開いているファイルを解析しています", - "click.to.preview": "クリックして結果をプレビューします", - "updating.intellisense.text": "IntelliSense: 更新中", - "idle.intellisense.text": "IntelliSense: 準備完了", - "absent.intellisense.text": "IntelliSense: 未構成", "running.analysis.text": "Code Analysis: 実行中", "paused.analysis.text": "Code Analysis: 一時停止", "mode.analysis.prefix": "Code Analysis モード: ", + "click.to.preview": "クリックして結果をプレビューします", "c.cpp.configureIntelliSenseStatus.text": "IntelliSense の構成", - "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ IntelliSense の構成", - "c.cpp.configuration.tooltip": "C/C++ 構成", - "c.cpp.references.statusbar": "C/C + + リファレンスの状態", "cpptools.status.intellisense": "C/c + + IntelliSense の状態", + "intellisense.select.text": "コンパイラを選択する", + "rescan.intellisense.text": "再スキャン", + "rescan.intellisense.tooltip": "IntelliSense の再スキャン", "cpptools.status.tagparser": "C/C + + タグ パーサーの状態", "cpptools.detail.tagparser": "初期化しています...", + "tagparser.resume.text": "再開", + "tagparser.pause.text": "一時停止", "cpptools.status.codeanalysis": "C/C++ Code Analysis の状態", "c.cpp.codeanalysis.statusbar.runNow": "直ちに実行", - "tagparser.pause.text": "一時停止", - "tagparser.resume.text": "再開", - "intellisense.select.text": "コンパイラを選択する", - "rescan.intellisense.text": "再スキャン", - "rescan.intellisense.tooltip": "IntelliSense の再スキャン", "mode.codeanalysis.status.automatic": "自動", "mode.codeanalysis.status.manual": "手動", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "オプション", "startup.codeanalysis.status": "開始しています...", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "直ちに実行", "running.analysis.processed.tooltip": "実行中: {0} / {1} ({2}%)", + "select.code.analysis.command": "コード分析コマンドを選択...", + "cancel.analysis": "キャンセル", + "resume.analysis": "再開", + "pause.analysis": "一時停止", + "another.analysis": "別のファイルを開始...", + "select.command": "コマンドを選択する...", + "active.analysis": "アクティブ ファイルで Code Analysis を実行する", + "all.analysis": "すべてのファイルで Code Analysis を実行する", + "open.analysis": "開いているファイルで Code Analysis を実行する", + "c.cpp.references.statusbar": "C/C + + リファレンスの状態", + "c.cpp.configuration.tooltip": "C/C++ 構成", + "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ IntelliSense の構成", "select.a.configuration": "構成を選択する...", "edit.configuration.ui": "構成の編集 (UI)", "edit.configuration.json": "構成の編集 (JSON)", @@ -46,16 +55,5 @@ "none": "なし", "disable.configuration.provider": "該当する場合は、アクティブな構成プロバイダーを無効にします。", "select.compile.commands": "compile_commands.json を選択してください...", - "select.workspace": "ワークスペース フォルダーを選択します...", - "select.command": "コマンドを選択する...", - "select.code.analysis.command": "コード分析コマンドを選択...", - "resume.parsing": "ワークスペースの解析の再開", - "pause.parsing": "ワークスペースの解析の一時停止", - "cancel.analysis": "キャンセル", - "resume.analysis": "再開", - "pause.analysis": "一時停止", - "another.analysis": "別のファイルを開始...", - "active.analysis": "アクティブ ファイルで Code Analysis を実行する", - "all.analysis": "すべてのファイルで Code Analysis を実行する", - "open.analysis": "開いているファイルで Code Analysis を実行する" + "select.workspace": "ワークスペース フォルダーを選択します..." } \ No newline at end of file diff --git a/Extension/i18n/jpn/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/jpn/src/SSH/sshCommandRunner.i18n.json index c226327037..0acef2076b 100644 --- a/Extension/i18n/jpn/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/jpn/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "SSH コマンドが取り消されました", "ssh.passphrase.input.box": "SSH キー {0} のパスフレーズを入力してください", "ssh.enter.password.for.user": "ユーザー \"{0}\" のパスワードを入力します。", - "ssh_message_enterPassword": "パスワードを入力してください", + "ssh.message.enter.password": "パスワードを入力してください", "ssh.continue.confirmation.placeholder": "続行しますか?", "ssh.host.key.confirmation.title": "\"{0}\" のフィンガープリントは \"{1}\" です。", "continue": "続行", diff --git a/Extension/i18n/jpn/src/nativeStrings.i18n.json b/Extension/i18n/jpn/src/nativeStrings.i18n.json index 9c01cf5874..f6d7713af8 100644 --- a/Extension/i18n/jpn/src/nativeStrings.i18n.json +++ b/Extension/i18n/jpn/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "既定の標準バージョンのパス \"{0}\" でコンパイラをクエリできませんでした。このコンパイラでは、コンパイラのクエリが無効になっています。", "unrecognized_language_standard_version": "コンパイラ クエリにより、認識されない言語標準バージョンが返されました。代わりに、サポートされている最新のバージョンが使用されます。", "intellisense_process_crash_detected": "IntelliSense プロセスのクラッシュが検出されました。", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "戻り値:", "nvcc_compiler_not_found": "nvcc コンパイラが見つかりません: {0}", "nvcc_host_compiler_not_found": "nvcc ホスト コンパイラが見つかりません: {0}", diff --git a/Extension/i18n/jpn/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/jpn/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 5a2fb0059d..5549cae23f 100644 --- a/Extension/i18n/jpn/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/jpn/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "macOS で C++ コンパイラをインストールする", - "walkthough.mac.text1": "macOS 向け C++ 開発を行っている場合は、Clang コンパイラをインストールすることをお勧めします。コマンド ライン開発者ツールをインストールするのに必要な操作は、ターミナル ウィンドウで以下のコマンドを実行するだけです (Ctrl+Shift+ `)。", - "walkthough.mac.text2": "次に、Clang がインストールされていることを確認するために、ターミナル ウィンドウで次のコマンドを実行します。使用している Clang のバージョンに関する情報を含むメッセージが表示されます。" + "walkthrough.mac.install.compiler": "macOS で C++ コンパイラをインストールする", + "walkthrough.mac.text1": "macOS 向け C++ 開発を行っている場合は、Clang コンパイラをインストールすることをお勧めします。コマンド ライン開発者ツールをインストールするのに必要な操作は、ターミナル ウィンドウで以下のコマンドを実行するだけです (Ctrl+Shift+ `)。", + "walkthrough.mac.text2": "次に、Clang がインストールされていることを確認するために、ターミナル ウィンドウで次のコマンドを実行します。使用している Clang のバージョンに関する情報を含むメッセージが表示されます。" } \ 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/jpn/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/kor/package.i18n.json b/Extension/i18n/kor/package.i18n.json index d97057fc5d..7af7e853a7 100644 --- a/Extension/i18n/kor/package.i18n.json +++ b/Extension/i18n/kor/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "구성 편집(UI)", "c_cpp.command.selectDefaultCompiler.title": "기본 컴파일러 선택...", "c_cpp.command.selectIntelliSenseConfiguration.title": "IntelliSense 구성 선택...", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "컴파일러 관련 재검사", "c_cpp.command.switchHeaderSource.title": "헤더/소스 전환", "c_cpp.command.enableErrorSquiggles.title": "오류 표시선 사용", @@ -416,7 +417,8 @@ "c_cpp.walkthrough.description": "VS Code의 풍부한 C++ 개발 환경을 살펴보세요.", "c_cpp.walkthrough.set.up.title": "C++ 환경 설정", "c_cpp.walkthrough.activating.description": "C++ 확장을 활성화하여 C++ 환경이 설정되었는지 확인합니다.\n확장 프로그램 활성화 중...", - "c_cpp.walkthrough.no.compilers.description": "컴퓨터에서 C++ 확장을 사용하는 데 필요한 C++ 컴파일러를 찾을 수 없습니다. 오른쪽의 지침에 따라 설치한 다음 아래의 \"새 컴파일러 찾기\"를 클릭하세요.\n[새 컴파일러 찾기](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.description": "C++ 확장은 C++ 컴파일러와 함께 작동합니다. 아래 버튼을 클릭하여 컴퓨터에 이미 있는 항목 중에서 하나를 선택하세요.\n[기본 컴파일러 선택](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "기본 컴파일러 빠른 선택 선택과 사용자 시스템에서 발견된 컴파일러 목록(이 중 하나가 선택됨)을 보여주는 이미지입니다.", "c_cpp.walkthrough.create.cpp.file.title": "C++ 파일 만들기", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "재생 버튼 오른쪽에 있는 \"디버그 구성 추가\"를 선택하여 디버그 구성을 사용자 지정할 수 있습니다(예: 런타임에 프로그램에 인수 전달). 사용자 지정 디버그 구성은 프로젝트의 launch.json 파일에 저장됩니다. \n[자세한 정보](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "재생 버튼 오른쪽에 있는 \"디버그 구성 추가\"를 선택하여 디버그 구성을 사용자 지정할 수 있습니다(예: 런타임에 프로그램에 인수 전달). 사용자 지정 디버그 구성은 프로젝트의 launch.json 파일에 저장됩니다. \n[자세한 정보](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "재생 버튼 오른쪽에 있는 \"디버그 구성 추가\"를 선택하여 디버그 구성을 사용자 지정할 수 있습니다(예: 런타임에 프로그램에 인수 전달). 사용자 지정 디버그 구성은 프로젝트의 launch.json 파일에 저장됩니다. \n[자세한 정보](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "드롭다운에서 디버그 구성 추가를 보여 주는 이미지" + "c_cpp.walkthrough.customize.debugging.altText": "드롭다운에서 디버그 구성 추가를 보여 주는 이미지", + "c_cpp.codeActions.refactor.inline.macro.title": "인라인 매크로", + "c_cpp.codeActions.refactor.inline.macro.description": "매크로 호출을 확장된 코드로 바꿉니다." } \ No newline at end of file diff --git a/Extension/i18n/kor/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/kor/src/Debugger/debugAdapterDescriptorFactory.i18n.json index 4043190993..7401e57793 100644 --- a/Extension/i18n/kor/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/kor/src/Debugger/debugAdapterDescriptorFactory.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "debugger.not.available": "Windows가 아닌 머신에서는 디버거 형식 '{0}'을(를) 사용할 수 없습니다." + "debugger.not.available": "Windows가 아닌 머신에서는 '{0}' 디버거 형식을 사용할 수 없습니다." } \ No newline at end of file diff --git a/Extension/i18n/kor/src/Debugger/extension.i18n.json b/Extension/i18n/kor/src/Debugger/extension.i18n.json index 57613acdbd..4304f664c7 100644 --- a/Extension/i18n/kor/src/Debugger/extension.i18n.json +++ b/Extension/i18n/kor/src/Debugger/extension.i18n.json @@ -14,5 +14,5 @@ "select.ssh.config.file": "SSH 구성 파일 선택", "yes": "예", "no": "아니요", - "ssh.target.delete.confirmation": "\"{0}\"을(를) 영구적으로 삭제하시겠습니까?" + "ssh.target.delete.confirmation": "\"{0}\"을(를) 영구 삭제할까요?" } \ No newline at end of file diff --git a/Extension/i18n/kor/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/kor/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..2c17124967 --- /dev/null +++ b/Extension/i18n/kor/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "다음으로 확장:", + "inline.macro": "인라인 매크로", + "inline.macro.not.available": "이 위치에서는 인라인 매크로를 사용할 수 없습니다." +} \ No newline at end of file diff --git a/Extension/i18n/kor/src/LanguageServer/client.i18n.json b/Extension/i18n/kor/src/LanguageServer/client.i18n.json index 0754d73ea5..5785752631 100644 --- a/Extension/i18n/kor/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/kor/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "{0} 사용", "selectAnotherCompiler.string": "내 컴퓨터에서 다른 컴파일러 선택...", "installCompiler.string": "컴파일러 설치 도움말", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "컴파일러를 사용하여 구성하지 않음(권장하지 않음)", "selectCompiler.string": "컴파일러 선택", "confirmCompiler.string": "예", @@ -27,7 +28,7 @@ "server.crashed2": "지난 3분 동안 언어 서버에서 크래시가 5회 발생했습니다. 다시 시작되지 않습니다.", "loggingLevel.changed": "{0}이(가) {1}(으)로 변경되었습니다.", "dismiss.button": "해제", - "diable.warnings.button": "경고 사용 안 함", + "disable.warnings.button": "경고 사용 안 함", "unable.to.provide.configuration": "{0}은(는) '{1}'에 대한 IntelliSense 구성 정보를 제공할 수 없습니다. '{2}' 구성의 설정이 대신 사용됩니다.", "config.not.found": "요청된 구성 이름을 찾을 수 없음: {0}", "unsupported.client": "지원되지 않는 클라이언트", diff --git a/Extension/i18n/kor/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/kor/src/LanguageServer/codeAnalysis.i18n.json index aad088431a..8f7e8c21df 100644 --- a/Extension/i18n/kor/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/kor/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "모든 코드 분석 문제 수정", - "clear_all_code_analysis_problems": "모든 코드 분석 문제 해결", - "fix_all_type_problems": "모든 {0} 문제 수정", - "disable_all_type_problems": "모든 {0} 문제 비활성화", - "clear_all_type_problems": "모든 {0} 문제 해결", - "clear_this_problem": "이 {0} 문제 해결", - "fix_this_problem": "이 {0} 문제 해결", - "show_documentation_for": "{0}에 대한 문서 표시" + "fix.all.code.analysis.problems": "모든 코드 분석 문제 수정", + "clear.all.code.analysis.problems": "모든 코드 분석 문제 해결", + "fix.all.type.problems": "모든 {0} 문제 수정", + "disable.all.type.problems": "모든 {0} 문제 비활성화", + "clear.all.type.problems": "모든 {0} 문제 해결", + "clear.this.problem": "이 {0} 문제 해결", + "fix.this.problem": "이 {0} 문제 해결", + "show.documentation.for": "{0}에 대한 문서 표시" } \ No newline at end of file diff --git a/Extension/i18n/kor/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/kor/src/LanguageServer/cppBuildTaskProvider.i18n.json index 1497894138..05332205f4 100644 --- a/Extension/i18n/kor/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/kor/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "활성 파일 빌드", - "compiler_details": "컴파일러:", - "task_generated_by_debugger": "디버거에서 생성된 작업입니다.", + "build.active.file": "활성 파일 빌드", + "compiler.details": "컴파일러:", + "task.generated.by.debugger": "디버거에서 생성된 작업입니다.", "cannot.build.non.cpp": "활성 파일이 C 또는 C++ 소스 파일이 아니므로 빌드 및 디버그할 수 없습니다.", - "starting_build": "빌드를 시작하는 중...", + "starting.build": "빌드를 시작하는 중...", "build.run.terminated": "빌드 실행이 종료되었습니다.", "build.finished.with.error": "빌드가 완료되었지만, 오류가 발생했습니다.", "build.finished.with.warnings": "빌드가 완료되었지만, 경고가 발생했습니다.", diff --git a/Extension/i18n/kor/src/LanguageServer/extension.i18n.json b/Extension/i18n/kor/src/LanguageServer/extension.i18n.json index 4240615fad..c16118d989 100644 --- a/Extension/i18n/kor/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/kor/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "'{0}'을(를) 설치할 vcpkg 명령을 클립보드에 복사", "on.disabled.command": "IntelliSense 관련 명령은 `C_Cpp.intelliSenseEngine`이 `disabled`로 설정된 경우 실행할 수 없습니다.", "client.not.found": "클라이언트를 찾을 수 없음", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "먼저 구성을 선택할 폴더를 엽니다.", "configuration.provider.select.first": "먼저 구성 공급자를 선택할 폴더를 엽니다.", "edit.configurations.open.first": "먼저 구성을 편집할 폴더 열기", diff --git a/Extension/i18n/kor/src/LanguageServer/ui.i18n.json b/Extension/i18n/kor/src/LanguageServer/ui.i18n.json index 3803a27c4d..baa1146ecb 100644 --- a/Extension/i18n/kor/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/kor/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense: 업데이트 중", + "idle.intellisense.text": "IntelliSense: 준비 완료", + "absent.intellisense.text": "IntelliSense: 구성되지 않음", + "initializing.tagparser.text": "작업 영역 초기화", + "indexing.tagparser.text": "작업 영역 인덱싱", "running.tagparser.text": "작업 영역 구문 분석", "paused.tagparser.text": "작업 영역 구문 분석: 일시 중지됨", "complete.tagparser.text": "구문 분석이 완료되었습니다.", - "initializing.tagparser.text": "작업 영역 초기화", - "indexing.tagparser.text": "작업 영역 인덱싱", "rescan.tagparse.text": "작업 영역 다시 검사", "c.cpp.parsing.open.files.tooltip": "열린 파일을 구문 분석하는 중", - "click.to.preview": "결과를 미리 보려면 클릭", - "updating.intellisense.text": "IntelliSense: 업데이트 중", - "idle.intellisense.text": "IntelliSense: 준비 완료", - "absent.intellisense.text": "IntelliSense: 구성되지 않음", "running.analysis.text": "Code Analysis: 실행 중", "paused.analysis.text": "Code Analysis: 일시 중지됨", "mode.analysis.prefix": "Code Analysis 모드: ", + "click.to.preview": "결과를 미리 보려면 클릭", "c.cpp.configureIntelliSenseStatus.text": "IntelliSense 구성", - "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ IntelliSense 구성", - "c.cpp.configuration.tooltip": "C/C++ 구성", - "c.cpp.references.statusbar": "C/C++ 참조 상태", "cpptools.status.intellisense": "C/C++ IntelliSense 상태", + "intellisense.select.text": "컴파일러 선택", + "rescan.intellisense.text": "다시 검사", + "rescan.intellisense.tooltip": "IntelliSense 다시 검사", "cpptools.status.tagparser": "C/C++ 태그 파서 상태", "cpptools.detail.tagparser": "초기화하는 중...", + "tagparser.resume.text": "다시 시작", + "tagparser.pause.text": "일시 중지", "cpptools.status.codeanalysis": "C/C++ Code Analysis 상태", "c.cpp.codeanalysis.statusbar.runNow": "지금 실행", - "tagparser.pause.text": "일시 중지", - "tagparser.resume.text": "다시 시작", - "intellisense.select.text": "컴파일러 선택", - "rescan.intellisense.text": "다시 검사", - "rescan.intellisense.tooltip": "IntelliSense 다시 검사", "mode.codeanalysis.status.automatic": "자동", "mode.codeanalysis.status.manual": "수동", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "옵션", "startup.codeanalysis.status": "시작 중...", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "지금 실행", "running.analysis.processed.tooltip": "실행 중: {0} / {1} ({2}%)", + "select.code.analysis.command": "코드 분석 명령 선택...", + "cancel.analysis": "취소", + "resume.analysis": "다시 시작", + "pause.analysis": "일시 중지", + "another.analysis": "다른 시작...", + "select.command": "명령 선택...", + "active.analysis": "활성 파일에서 코드 분석 실행", + "all.analysis": "모든 파일에 대한 코드 분석 실행", + "open.analysis": "열린 파일에서 코드 분석 실행", + "c.cpp.references.statusbar": "C/C++ 참조 상태", + "c.cpp.configuration.tooltip": "C/C++ 구성", + "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ IntelliSense 구성", "select.a.configuration": "구성 선택...", "edit.configuration.ui": "구성 편집(UI)", "edit.configuration.json": "구성 편집(JSON)", @@ -46,16 +55,5 @@ "none": "없음", "disable.configuration.provider": "해당하는 경우 활성 구성 공급자를 사용하지 않도록 설정합니다.", "select.compile.commands": "compile_commands.json 선택...", - "select.workspace": "작업 영역 폴더 선택...", - "select.command": "명령 선택...", - "select.code.analysis.command": "코드 분석 명령 선택...", - "resume.parsing": "작업 영역 구문 분석 다시 시작", - "pause.parsing": "작업 영역 구문 분석 일시 중지", - "cancel.analysis": "취소", - "resume.analysis": "다시 시작", - "pause.analysis": "일시 중지", - "another.analysis": "다른 시작...", - "active.analysis": "활성 파일에서 코드 분석 실행", - "all.analysis": "모든 파일에 대한 코드 분석 실행", - "open.analysis": "열린 파일에서 코드 분석 실행" + "select.workspace": "작업 영역 폴더 선택..." } \ No newline at end of file diff --git a/Extension/i18n/kor/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/kor/src/SSH/sshCommandRunner.i18n.json index c777250751..2a018a599d 100644 --- a/Extension/i18n/kor/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/kor/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "SSH 명령이 취소됨", "ssh.passphrase.input.box": "{0} SSH 키 암호 입력", "ssh.enter.password.for.user": "사용자 \"{0}\"의 암호를 입력하세요", - "ssh_message_enterPassword": "암호를 입력", + "ssh.message.enter.password": "암호 입력", "ssh.continue.confirmation.placeholder": "액세스를 여시겠습니까?", "ssh.host.key.confirmation.title": "\"{0}\"에 \"{1}\" 지문이 있습니다.", "continue": "계속하기", diff --git a/Extension/i18n/kor/src/nativeStrings.i18n.json b/Extension/i18n/kor/src/nativeStrings.i18n.json index a5010b7bc3..09bf16d475 100644 --- a/Extension/i18n/kor/src/nativeStrings.i18n.json +++ b/Extension/i18n/kor/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "기본 표준 버전에 대해 경로 \"{0}\"에서 컴파일러를 쿼리하지 못했습니다. 이 컴파일러에 대해서는 컴파일러 쿼리를 사용할 수 없습니다.", "unrecognized_language_standard_version": "컴파일러 쿼리에서 인식할 수 없는 언어 표준 버전을 반환했습니다. 지원되는 최신 버전이 대신 사용됩니다.", "intellisense_process_crash_detected": "IntelliSense 프로세스 크래시가 감지되었습니다.", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "반환 값:", "nvcc_compiler_not_found": "nvcc 컴파일러를 찾을 수 없음: {0}", "nvcc_host_compiler_not_found": "nvcc 호스트 컴파일러를 찾을 수 없음: {0}", diff --git a/Extension/i18n/kor/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/kor/walkthrough/installcompiler/install-clang-macos.md.i18n.json index cf67173766..1121e185f8 100644 --- a/Extension/i18n/kor/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/kor/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "macOS에 C++ 컴파일러 설치", - "walkthough.mac.text1": "macOS용 C++ 개발을 하는 경우 Clang 컴파일러를 설치하는 것이 좋습니다. 터미널 창(Ctrl+Shift+ `)에서 다음 명령을 실행하여 명령줄 개발자 도구를 설치하기만 하면 됩니다.", - "walkthough.mac.text2": "그런 다음 Clang이 설치되었는지 확인하려면 터미널 창에서 다음 명령을 실행합니다. 사용 중인 Clang 버전에 대한 정보가 포함된 메시지가 표시되어야 합니다." + "walkthrough.mac.install.compiler": "macOS에 C++ 컴파일러 설치", + "walkthrough.mac.text1": "macOS용 C++ 개발을 하는 경우 Clang 컴파일러를 설치하는 것이 좋습니다. 터미널 창(Ctrl+Shift+ `)에서 다음 명령을 실행하여 명령줄 개발자 도구를 설치하기만 하면 됩니다.", + "walkthrough.mac.text2": "그런 다음 Clang이 설치되었는지 확인하려면 터미널 창에서 다음 명령을 실행합니다. 사용 중인 Clang 버전에 대한 정보가 포함된 메시지가 표시되어야 합니다." } \ 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/kor/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/plk/package.i18n.json b/Extension/i18n/plk/package.i18n.json index 86eb9180b8..92ba59a05b 100644 --- a/Extension/i18n/plk/package.i18n.json +++ b/Extension/i18n/plk/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "Edytowanie konfiguracji (interfejs użytkownika)", "c_cpp.command.selectDefaultCompiler.title": "Wybierz domyślny kompilator...", "c_cpp.command.selectIntelliSenseConfiguration.title": "Wybierz konfigurację funkcji IntelliSense...", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "Ponownie zeskanuj w poszukiwaniu kompilatorów", "c_cpp.command.switchHeaderSource.title": "Przełączanie nagłówka/źródła", "c_cpp.command.enableErrorSquiggles.title": "Włączanie zygzaków sygnalizujących błędy", @@ -416,14 +417,15 @@ "c_cpp.walkthrough.description": "Poznaj zaawansowane środowisko deweloperskie języka C++ w edytorze VS Code.", "c_cpp.walkthrough.set.up.title": "Konfigurowanie środowiska C++", "c_cpp.walkthrough.activating.description": "Aktywowanie rozszerzenia języka C++ w celu określenia, czy środowisko C++ zostało skonfigurowane.\nTrwa aktywowanie rozszerzenia...", - "c_cpp.walkthrough.no.compilers.description": "Nie można odnaleźć na maszynie kompilatora języka C++, który jest wymagany, aby korzystać z rozszerzenia języka C++. Postępuj zgodnie z instrukcjami po prawej stronie, aby zainstalować, a następnie kliknij poniżej pozycję „Znajdź mój nowy kompilator”.\n[Znajdź mój nowy kompilator](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D", - "c_cpp.walkthrough.compilers.found.description": "Rozszerzenie języka C++ działa z kompilatorem języka C++. Wybierz jeden z tych, które są już na Twojej maszynie, klikając poniższy przycisk.\n[Wybierz domyślny kompilator](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.compilers.found.description": "Rozszerzenie języka C++ działa z kompilatorem języka C++. Wybierz jeden z tych, które są już na Twojej maszynie, klikając poniższy przycisk.\n[Wybierz domyślny kompilator](polecenie:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Obraz przedstawiający wybieranie domyślnego kompilatora za pomocą narzędzia QuickPick oraz listę kompilatorów znalezionych na maszynach użytkowników, z których jeden jest zaznaczony.", "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.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": "Uruchamianie z wiersza polecenia dla deweloperów", - "c_cpp.walkthrough.command.prompt.description": "Jeśli korzystasz z kompilatora języka C++ programu Microsoft Visual Studio, rozszerzenie języka C++ wymaga uruchomienia edytora VS Code z poziomu wiersza polecenia dla deweloperów. 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.description": "Jeśli korzystasz z kompilatora języka C++ programu Microsoft Visual Studio, rozszerzenie języka C++ wymaga uruchomienia edytora VS Code z poziomu wiersza polecenia dla deweloperów. Postępuj zgodnie z instrukcjami po prawej stronie, aby uruchomić ponownie.\n[Załaduj ponownie okno] (command:workbench.action.reloadWindow)", "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.", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "Możesz dostosować konfigurację debugowania (np. aby przekazywać argumenty do programu w czasie uruchamiania), wybierając pozycję „Dodaj konfigurację debugowania” po prawej stronie przycisku odtwarzania. Niestandardowa konfiguracja debugowania jest zapisywana w pliku projektu launch.json. \n[Dowiedz się więcej](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "Możesz dostosować konfigurację debugowania (np. aby przekazywać argumenty do programu w czasie uruchamiania), wybierając pozycję „Dodaj konfigurację debugowania” po prawej stronie przycisku odtwarzania. Niestandardowa konfiguracja debugowania jest zapisywana w pliku projektu launch.json. \n[Dowiedz się więcej](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "Możesz dostosować konfigurację debugowania (np. aby przekazywać argumenty do programu w czasie uruchamiania), wybierając pozycję „Dodaj konfigurację debugowania” po prawej stronie przycisku odtwarzania. Niestandardowa konfiguracja debugowania jest zapisywana w pliku projektu launch.json. \n[Dowiedz się więcej](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "Obraz przedstawiający pozycję „Dodaj konfigurację debugowania” na liście rozwijanej" -} + "c_cpp.walkthrough.customize.debugging.altText": "Obraz przedstawiający pozycję „Dodaj konfigurację debugowania” na liście rozwijanej", + "c_cpp.codeActions.refactor.inline.macro.title": "Osadź makro w tekście", + "c_cpp.codeActions.refactor.inline.macro.description": "Zamień wywołanie makra na rozwinięty kod." +} \ No newline at end of file diff --git a/Extension/i18n/plk/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/plk/src/Debugger/ParsedEnvironmentFile.i18n.json index f6c27b0ff2..f4a112b033 100644 --- a/Extension/i18n/plk/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/plk/src/Debugger/ParsedEnvironmentFile.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "ignoring.lines.in.envfile": "Ignorowanie wierszy, których nie przeanalizowano w pliku {0} {1}: " + "ignoring.lines.in.envfile": "Ignorowanie wierszy nienadających się do analizy w {0} {1}: " } \ No newline at end of file diff --git a/Extension/i18n/plk/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/plk/src/Debugger/debugAdapterDescriptorFactory.i18n.json index 657b3ebdfe..223a672cb4 100644 --- a/Extension/i18n/plk/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/plk/src/Debugger/debugAdapterDescriptorFactory.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "debugger.not.available": "Typ debugera „{0}” jest niedostępny dla maszyn z systemem innym niż Windows." + "debugger.not.available": "Typ debugera „{0}” nie jest dostępny dla maszyn z systemem innym niż Windows." } \ No newline at end of file diff --git a/Extension/i18n/plk/src/Debugger/extension.i18n.json b/Extension/i18n/plk/src/Debugger/extension.i18n.json index 5ae57a075b..3c59fa80cf 100644 --- a/Extension/i18n/plk/src/Debugger/extension.i18n.json +++ b/Extension/i18n/plk/src/Debugger/extension.i18n.json @@ -14,5 +14,5 @@ "select.ssh.config.file": "Wybierz plik konfiguracji SSH", "yes": "Tak", "no": "Nie", - "ssh.target.delete.confirmation": "Czy na pewno chcesz trwale usunąć plik „{0}”?" + "ssh.target.delete.confirmation": "Czy na pewno chcesz trwale usunąć „{0}”?" } \ No newline at end of file diff --git a/Extension/i18n/plk/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/plk/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..13bd8d3bed --- /dev/null +++ b/Extension/i18n/plk/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "Jest rozwijane do:", + "inline.macro": "Osadź makro w tekście", + "inline.macro.not.available": "Makro wbudowane jest niedostępne w tej lokalizacji." +} \ No newline at end of file diff --git a/Extension/i18n/plk/src/LanguageServer/client.i18n.json b/Extension/i18n/plk/src/LanguageServer/client.i18n.json index 1d3dd0c361..a36b720ad4 100644 --- a/Extension/i18n/plk/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/plk/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "Użyj kompilatora {0}", "selectAnotherCompiler.string": "Wybierz inny kompilator na mojej maszynie...", "installCompiler.string": "Pomóż mi zainstalować kompilator", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "Nie konfiguruj za pomocą kompilatora (niezalecane)", "selectCompiler.string": "Wybierz kompilator", "confirmCompiler.string": "Tak", @@ -27,7 +28,7 @@ "server.crashed2": "W ciągu ostatnich 3 minut awaria serwera języka wystąpiła 5 razy. Nie zostanie on ponownie uruchomiony.", "loggingLevel.changed": "Poziom {0} zmienił się na: {1}", "dismiss.button": "Odrzuć", - "diable.warnings.button": "Wyłącz ostrzeżenia", + "disable.warnings.button": "Wyłącz ostrzeżenia", "unable.to.provide.configuration": "{0} nie może dostarczyć informacji o konfiguracji funkcji IntelliSense dla elementu „{1}”. W zamian zostaną użyte ustawienia z konfiguracji „{2}”.", "config.not.found": "Nie znaleziono żądanej nazwy konfiguracji: {0}", "unsupported.client": "Nieobsługiwany klient", diff --git a/Extension/i18n/plk/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/plk/src/LanguageServer/codeAnalysis.i18n.json index 267ddf842c..5abbfd966c 100644 --- a/Extension/i18n/plk/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/plk/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "Rozwiąż wszystkie problemy z analizą kodu", - "clear_all_code_analysis_problems": "Wyczyść wszystkie problemy z analizą kodu", - "fix_all_type_problems": "Rozwiąż wszystkie problemy z {0}", - "disable_all_type_problems": "Wyłącz wszystkie problemy z {0}", - "clear_all_type_problems": "Wyczyść wszystkie problemy z {0}", - "clear_this_problem": "Wyczyść ten problem z {0}", - "fix_this_problem": "Rozwiąż ten problem z {0}", - "show_documentation_for": "Pokaż dokumentację dotyczącą {0}" + "fix.all.code.analysis.problems": "Rozwiąż wszystkie problemy z analizą kodu", + "clear.all.code.analysis.problems": "Wyczyść wszystkie problemy z analizą kodu", + "fix.all.type.problems": "Rozwiąż wszystkie problemy z {0}", + "disable.all.type.problems": "Wyłącz wszystkie problemy z {0}", + "clear.all.type.problems": "Wyczyść wszystkie problemy z {0}", + "clear.this.problem": "Wyczyść ten problem z {0}", + "fix.this.problem": "Rozwiąż ten problem z {0}", + "show.documentation.for": "Pokaż dokumentację dotyczącą {0}" } \ No newline at end of file diff --git a/Extension/i18n/plk/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/plk/src/LanguageServer/cppBuildTaskProvider.i18n.json index da6fea8bd4..8040ad2368 100644 --- a/Extension/i18n/plk/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/plk/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "kompiluj aktywny plik", - "compiler_details": "kompilator:", - "task_generated_by_debugger": "Zadanie wygenerowane przez debuger.", + "build.active.file": "kompiluj aktywny plik", + "compiler.details": "kompilator:", + "task.generated.by.debugger": "Zadanie wygenerowane przez debuger.", "cannot.build.non.cpp": "Nie można skompilować i debugować, ponieważ aktywny plik nie jest plikiem źródłowym języka C lub C++.", - "starting_build": "Trwa uruchamianie kompilacji...", + "starting.build": "Trwa uruchamianie kompilacji...", "build.run.terminated": "Uruchamianie kompilacji zostało przerwane.", "build.finished.with.error": "Kompilacja została zakończona z błędami.", "build.finished.with.warnings": "Kompilacja została zakończona z ostrzeżeniami.", diff --git a/Extension/i18n/plk/src/LanguageServer/extension.i18n.json b/Extension/i18n/plk/src/LanguageServer/extension.i18n.json index 4bf4cdef27..6e719e463a 100644 --- a/Extension/i18n/plk/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/plk/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "Skopiuj polecenie vcpkg, aby zainstalować element „{0}” w schowku", "on.disabled.command": "Nie można wykonywać poleceń związanych z funkcją IntelliSense, gdy właściwość `C_Cpp.intelliSenseEngine` ma wartość `disabled`.", "client.not.found": "nie znaleziono klienta", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "Najpierw otwórz folder, aby wybrać konfigurację.", "configuration.provider.select.first": "Najpierw otwórz folder, aby wybrać dostawcę konfiguracji.", "edit.configurations.open.first": "Otwórz najpierw folder, aby edytować konfiguracje", diff --git a/Extension/i18n/plk/src/LanguageServer/ui.i18n.json b/Extension/i18n/plk/src/LanguageServer/ui.i18n.json index e67c9c1243..81bba42870 100644 --- a/Extension/i18n/plk/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/plk/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense: aktualizowanie", + "idle.intellisense.text": "IntelliSense: gotowe", + "absent.intellisense.text": "IntelliSense: nieskonfigurowane", + "initializing.tagparser.text": "Inicjowanie obszaru roboczego", + "indexing.tagparser.text": "Indeksowanie obszaru roboczego", "running.tagparser.text": "Analizowanie obszaru roboczego", "paused.tagparser.text": "Analizowanie obszaru roboczego: wstrzymane", "complete.tagparser.text": "Analizowanie zakończone", - "initializing.tagparser.text": "Inicjowanie obszaru roboczego", - "indexing.tagparser.text": "Indeksowanie obszaru roboczego", "rescan.tagparse.text": "Ponowne skanowanie obszaru roboczego", "c.cpp.parsing.open.files.tooltip": "Analizowanie otwartych plików", - "click.to.preview": "kliknij, aby wyświetlić podgląd wyników", - "updating.intellisense.text": "IntelliSense: aktualizowanie", - "idle.intellisense.text": "IntelliSense: gotowe", - "absent.intellisense.text": "IntelliSense: nieskonfigurowane", "running.analysis.text": "Analiza kodu: uruchamianie", "paused.analysis.text": "Analiza kodu: wstrzymano", "mode.analysis.prefix": "Tryb analizy kodu: ", + "click.to.preview": "kliknij, aby wyświetlić podgląd wyników", "c.cpp.configureIntelliSenseStatus.text": "Konfigurowanie funkcji IntelliSense", - "c.cpp.configureIntelliSenseStatus.cppText": "Konfigurowanie funkcji IntelliSense (C/C++)", - "c.cpp.configuration.tooltip": "Konfiguracja języka C/C++", - "c.cpp.references.statusbar": "Stan odwołań języka C/C++", "cpptools.status.intellisense": "Stan funkcji IntelliSense języka C/C++", + "intellisense.select.text": "Wybierz kompilator", + "rescan.intellisense.text": "Skanuj ponownie", + "rescan.intellisense.tooltip": "Ponowne skanowanie funkcji IntelliSense", "cpptools.status.tagparser": "Stan parsera tagów języka C/C++", "cpptools.detail.tagparser": "Trwa inicjowanie...", + "tagparser.resume.text": "Wznów", + "tagparser.pause.text": "Wstrzymaj", "cpptools.status.codeanalysis": "Stan analizy kodu C/C++", "c.cpp.codeanalysis.statusbar.runNow": "Uruchom teraz", - "tagparser.pause.text": "Wstrzymaj", - "tagparser.resume.text": "Wznów", - "intellisense.select.text": "Wybierz kompilator", - "rescan.intellisense.text": "Skanuj ponownie", - "rescan.intellisense.tooltip": "Ponowne skanowanie funkcji IntelliSense", "mode.codeanalysis.status.automatic": "Automatycznie", "mode.codeanalysis.status.manual": "Ręczny", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Opcje", "startup.codeanalysis.status": "Trwa uruchamianie...", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "Uruchom teraz", "running.analysis.processed.tooltip": "Uruchomione: {0} / {1} ({2}%)", + "select.code.analysis.command": "Wybierz polecenie analizy kodu...", + "cancel.analysis": "Anuluj", + "resume.analysis": "Wznów", + "pause.analysis": "Wstrzymaj", + "another.analysis": "Uruchom kolejną...", + "select.command": "Wybierz polecenie...", + "active.analysis": "Uruchom analizę kodu dla aktywnego pliku", + "all.analysis": "Uruchamianie analizy kodu dla wszystkich plików", + "open.analysis": "Uruchamianie rozszerzenia Code Analysis na otwartych plikach", + "c.cpp.references.statusbar": "Stan odwołań języka C/C++", + "c.cpp.configuration.tooltip": "Konfiguracja języka C/C++", + "c.cpp.configureIntelliSenseStatus.cppText": "Konfigurowanie funkcji IntelliSense (C/C++)", "select.a.configuration": "Wybierz konfigurację...", "edit.configuration.ui": "Edytowanie konfiguracji (interfejs użytkownika)", "edit.configuration.json": "Edytowanie konfiguracji (JSON)", @@ -46,16 +55,5 @@ "none": "brak", "disable.configuration.provider": "Wyłącz aktywnego dostawcę konfiguracji, jeśli ma zastosowanie.", "select.compile.commands": "Wybierz plik compile_commands.json...", - "select.workspace": "Wybierz folder obszaru roboczego...", - "select.command": "Wybierz polecenie...", - "select.code.analysis.command": "Wybierz polecenie analizy kodu...", - "resume.parsing": "Wznów analizowanie obszaru roboczego", - "pause.parsing": "Wstrzymaj analizowanie obszaru roboczego", - "cancel.analysis": "Anuluj", - "resume.analysis": "Wznów", - "pause.analysis": "Wstrzymaj", - "another.analysis": "Uruchom kolejną...", - "active.analysis": "Uruchom analizę kodu dla aktywnego pliku", - "all.analysis": "Uruchamianie analizy kodu dla wszystkich plików", - "open.analysis": "Uruchamianie rozszerzenia Code Analysis na otwartych plikach" + "select.workspace": "Wybierz folder obszaru roboczego..." } \ No newline at end of file diff --git a/Extension/i18n/plk/src/SSH/commands.i18n.json b/Extension/i18n/plk/src/SSH/commands.i18n.json index 712739b05e..84d5ddc51e 100644 --- a/Extension/i18n/plk/src/SSH/commands.i18n.json +++ b/Extension/i18n/plk/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "„localSocket” nie może być określony jednocześnie za pomocą elementu „bindAddress” lub „port” w localForwards", + "local.forward.local.conflict": "Parametr „localSocket” nie może być określony jednocześnie za pomocą elementu „bindAddress” lub „port” w localForwards", "local.forward.local.missing": "„port” lub „localSocket” wymagane w localForwards", - "local.forward.remote.conflict": "Gniazdo „remoteSocket” nie może być określone jednocześnie z „host” lub \"hostPort\" w localForwards", + "local.forward.remote.conflict": "Parametr „remoteSocket” nie może być określone jednocześnie za pomocą elementu „host” lub \"hostPort\" w localForwards", "local.forward.remote.missing": "„Host” i „hostPort” lub „remoteSocket” są wymagane w localForwards" } \ No newline at end of file diff --git a/Extension/i18n/plk/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/plk/src/SSH/sshCommandRunner.i18n.json index b5d9662009..fdac7c937b 100644 --- a/Extension/i18n/plk/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/plk/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "Anulowano polecenie SSH", "ssh.passphrase.input.box": "Wprowadź hasło dla klucza SSH {0}", "ssh.enter.password.for.user": "Wprowadź hasło dla użytkownika „{0}”", - "ssh_message_enterPassword": "Wprowadź hasło", + "ssh.message.enter.password": "Wprowadź hasło", "ssh.continue.confirmation.placeholder": "Czy na pewno chcesz kontynuować?", "ssh.host.key.confirmation.title": "„{0}” ma odcisk palca „{1}”.", "continue": "Kontynuuj", diff --git a/Extension/i18n/plk/src/nativeStrings.i18n.json b/Extension/i18n/plk/src/nativeStrings.i18n.json index be62bbd354..bd7fa8c949 100644 --- a/Extension/i18n/plk/src/nativeStrings.i18n.json +++ b/Extension/i18n/plk/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "Nie można wykonać zapytań dotyczących kompilatora w ścieżce „{0}” dla domyślnych wersji standardowych. Wykonywanie zapytań dotyczących kompilatora jest wyłączone dla tego kompilatora.", "unrecognized_language_standard_version": "Zapytanie kompilatora zwróciło nierozpoznaną wersję standardu języka. Zamiast tego zostanie użyta najnowsza obsługiwana wersja.", "intellisense_process_crash_detected": "Wykryto awarię procesu funkcji IntelliSense.", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "Wartości zwracane:", "nvcc_compiler_not_found": "Nie można zlokalizować kompilatora nvcc: {0}", "nvcc_host_compiler_not_found": "Nie można zlokalizować kompilatora hosta nvcc: {0}", diff --git a/Extension/i18n/plk/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/plk/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 1c7c59828b..0b1d38156d 100644 --- a/Extension/i18n/plk/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/plk/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "Zainstaluj kompilator języka C++ w systemie macOS", - "walkthough.mac.text1": "Jeśli programujesz w języku C++ dla systemu macOS, zalecamy zainstalowanie kompilatora Clang. Wystarczy uruchomić następujące polecenie w oknie terminalu (Ctrl+Shift+ `), aby zainstalować narzędzia deweloperskie wiersza polecenia:", - "walkthough.mac.text2": "Następnie, aby sprawdzić, czy kompilator Clang jest zainstalowany, uruchom następujące polecenie w oknie terminalu. Powinien zostać wyświetlony komunikat z informacjami o używanej wersji kompilatora Clang." + "walkthrough.mac.install.compiler": "Zainstaluj kompilator języka C++ w systemie macOS", + "walkthrough.mac.text1": "Jeśli programujesz w języku C++ dla systemu macOS, zalecamy zainstalowanie kompilatora Clang. Wystarczy uruchomić następujące polecenie w oknie terminalu (Ctrl+Shift+ `), aby zainstalować narzędzia deweloperskie wiersza polecenia:", + "walkthrough.mac.text2": "Następnie, aby sprawdzić, czy kompilator Clang jest zainstalowany, uruchom następujące polecenie w oknie terminalu. Powinien zostać wyświetlony komunikat z informacjami o używanej wersji kompilatora Clang." } \ 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/plk/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/ptb/package.i18n.json b/Extension/i18n/ptb/package.i18n.json index 81da014fd0..5225ee2c2a 100644 --- a/Extension/i18n/ptb/package.i18n.json +++ b/Extension/i18n/ptb/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "Editar Configurações (IU)", "c_cpp.command.selectDefaultCompiler.title": "Selecione o compilador padrão...", "c_cpp.command.selectIntelliSenseConfiguration.title": "Selecione Configuração do IntelliSense...", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "Examinar novamente os Compiladores", "c_cpp.command.switchHeaderSource.title": "Alternar Cabeçalho/Origem", "c_cpp.command.enableErrorSquiggles.title": "Habilitar Rabiscos de Erro", @@ -416,14 +417,15 @@ "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...", - "c_cpp.walkthrough.no.compilers.description": "Não foi possível localizar um compilador C++ em sua máquina, necessário para usar a extensão C++. Siga as instruções à direita para instalar um e clique em “Localizar meu novo compilador” abaixo.\n[Localizar meu novo Compilador](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.description": "A extensão C++ funciona com um compilador C++. Selecione um daqueles que já estão em sua máquina clicando no botão abaixo.\n[Selecione meu Compilador Padrão](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Imagem mostrando a seleção rápida de um compilador padrão e a lista de compiladores encontrados na máquina do usuário, um dos quais está selecionado.", "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) em C++ arquivo. 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.description": "[Abrir](command:toSide:workbench.action.files.openFile) ou [criar](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) em C++ arquivo. Certifique-se de salvá-lo com a extensão \".cpp\", como \"helloworld.cpp\".\n[Criar um arquivo C++](comando: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 prompt de comando do desenvolvedor", - "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 prompt de comando do desenvolvedor. Siga as instruções à direita para reiniciar.\n[Recarregar Janela](command:workbench.action.reloadWindow)", + "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 prompt de comando do desenvolvedor. Siga as instruções à direita para reiniciar.\n[Recarregar Janela](comando:workbench.action.reloadWindow)", "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++ - Construir 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++ - Construir e depurar arquivo ativo\" para executar com o depurador.", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "Você pode personalizar sua configuração de depuração (por exemplo, para passar argumentos para seu programa em tempo de execução) selecionando \"Adicionar Configuração de Depuração\" à direita do botão de reprodução. A configuração de depuração personalizada é salva no arquivo launch.json do seu projeto. \n[Saiba Mais](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "Você pode personalizar sua configuração de depuração (por exemplo, para passar argumentos para seu programa em tempo de execução) selecionando \"Adicionar Configuração de Depuração\" à direita do botão de reprodução. A configuração de depuração personalizada é salva no arquivo launch.json do seu projeto.\n[Saiba mais](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "Você pode personalizar sua configuração de depuração (por exemplo, para passar argumentos para seu programa em tempo de execução) selecionando \"Adicionar Configuração de Depuração\" à direita do botão de reprodução. A configuração de depuração personalizada é salva no arquivo launch.json do seu projeto.\n[Saiba mais](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "Imagem que mostra Adicionar configuração de depuração no menu suspenso" -} + "c_cpp.walkthrough.customize.debugging.altText": "Imagem que mostra Adicionar configuração de depuração no menu suspenso", + "c_cpp.codeActions.refactor.inline.macro.title": "Macro embutida", + "c_cpp.codeActions.refactor.inline.macro.description": "Substitua a invocação da macro pelo código expandido." +} \ No newline at end of file diff --git a/Extension/i18n/ptb/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/ptb/src/Debugger/ParsedEnvironmentFile.i18n.json index 75a924f114..9a4e35d84e 100644 --- a/Extension/i18n/ptb/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/ptb/src/Debugger/ParsedEnvironmentFile.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "ignoring.lines.in.envfile": "Ignorando as linhas não analisáveis em {0} {1}: " + "ignoring.lines.in.envfile": "Ignorando linhas não analisáveis em {0} {1}: " } \ No newline at end of file diff --git a/Extension/i18n/ptb/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/ptb/src/Debugger/debugAdapterDescriptorFactory.i18n.json index 2f0ce7944a..c4d51c6d58 100644 --- a/Extension/i18n/ptb/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/ptb/src/Debugger/debugAdapterDescriptorFactory.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "debugger.not.available": "O tipo de depurador '{0}' não está disponível para computadores não Windows." + "debugger.not.available": "O tipo de depurador '{0}' não está disponível para máquinas que não sejam Windows." } \ No newline at end of file diff --git a/Extension/i18n/ptb/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/ptb/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..b57cab17ea --- /dev/null +++ b/Extension/i18n/ptb/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "Expande para:", + "inline.macro": "Macro embutida", + "inline.macro.not.available": "A macro embutida não está disponível neste local." +} \ No newline at end of file diff --git a/Extension/i18n/ptb/src/LanguageServer/client.i18n.json b/Extension/i18n/ptb/src/LanguageServer/client.i18n.json index d4f68b6466..855c5f29e7 100644 --- a/Extension/i18n/ptb/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/ptb/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "Usar {0}", "selectAnotherCompiler.string": "Selecione outro compilador na minha máquina...", "installCompiler.string": "Ajude-me a instalar um compilador", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "Não configure com um compilador (não recomendado)", "selectCompiler.string": "Selecionar Compilador", "confirmCompiler.string": "Sim", @@ -27,7 +28,7 @@ "server.crashed2": "O servidor de idioma falhou cinco vezes nos últimos três minutos. Ele não será reiniciado.", "loggingLevel.changed": "{0} foi alterado para: {1}", "dismiss.button": "Ignorar", - "diable.warnings.button": "Desabilitar os Avisos", + "disable.warnings.button": "Desabilitar os Avisos", "unable.to.provide.configuration": "{0} não pode fornecer informações de configuração de IntelliSense para '{1}'. Em seu lugar, serão usadas as definições da configuração '{2}'.", "config.not.found": "O nome de configuração solicitado não foi encontrado: {0}", "unsupported.client": "Cliente sem suporte", diff --git a/Extension/i18n/ptb/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/ptb/src/LanguageServer/codeAnalysis.i18n.json index 8201763e2d..6dd7d21566 100644 --- a/Extension/i18n/ptb/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/ptb/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "Corrigir todos os problemas de análise de código", - "clear_all_code_analysis_problems": "Limpar todos os problemas de análise de código", - "fix_all_type_problems": "Corrigir todos {0} problemas", - "disable_all_type_problems": "Desabilitar todos {0} problemas", - "clear_all_type_problems": "Limpar todos {0} problemas", - "clear_this_problem": "Limpar este {0} problema", - "fix_this_problem": "Corrija este {0} problema", - "show_documentation_for": "Mostrar documentação para {0}" + "fix.all.code.analysis.problems": "Corrigir todos os problemas de análise de código", + "clear.all.code.analysis.problems": "Limpar todos os problemas de análise de código", + "fix.all.type.problems": "Corrigir todos {0} problemas", + "disable.all.type.problems": "Desabilitar todos {0} problemas", + "clear.all.type.problems": "Limpar todos {0} problemas", + "clear.this.problem": "Limpar este {0} problema", + "fix.this.problem": "Corrija este {0} problema", + "show.documentation.for": "Mostrar documentação para {0}" } \ No newline at end of file diff --git a/Extension/i18n/ptb/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/ptb/src/LanguageServer/cppBuildTaskProvider.i18n.json index 121501950c..8353d28140 100644 --- a/Extension/i18n/ptb/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/ptb/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "arquivo de build ativo", - "compiler_details": "compilador:", - "task_generated_by_debugger": "Tarefa gerada pelo Depurador.", + "build.active.file": "arquivo de build ativo", + "compiler.details": "compilador:", + "task.generated.by.debugger": "Tarefa gerada pelo Depurador.", "cannot.build.non.cpp": "Não é possível criar e depurar porque o arquivo ativo não é um arquivo de origem C ou C++.", - "starting_build": "Iniciando o build...", + "starting.build": "Iniciando o build...", "build.run.terminated": "A execução da build foi terminada.", "build.finished.with.error": "Build concluída com erro(s).", "build.finished.with.warnings": "Build concluída com aviso(s).", diff --git a/Extension/i18n/ptb/src/LanguageServer/extension.i18n.json b/Extension/i18n/ptb/src/LanguageServer/extension.i18n.json index 81472724d5..40c0300be3 100644 --- a/Extension/i18n/ptb/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/ptb/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "Copiar o comando vcpkg para instalar '{0}' para a área de transferência", "on.disabled.command": "Comandos relacionados ao IntelliSense não podem ser executados quando `C_Cpp.intelliSenseEngine` está definido como `disabled`.", "client.not.found": "o cliente não foi encontrado", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "Primeiro, abra uma pasta para selecionar uma configuração.", "configuration.provider.select.first": "Primeiro, abra uma pasta para selecionar um provedor de configuração.", "edit.configurations.open.first": "Abrir uma pasta primeiro para editar as configurações", diff --git a/Extension/i18n/ptb/src/LanguageServer/ui.i18n.json b/Extension/i18n/ptb/src/LanguageServer/ui.i18n.json index 976c64d232..5a8c7df6d6 100644 --- a/Extension/i18n/ptb/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/ptb/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense: Atualizando", + "idle.intellisense.text": "IntelliSense: Pronto", + "absent.intellisense.text": "IntelliSense: Não Configurado", + "initializing.tagparser.text": "Inicializando o Workspace", + "indexing.tagparser.text": "Workspace da Indexação", "running.tagparser.text": "Analisando o Workspace", "paused.tagparser.text": "Workspace de Análise: Pausado", "complete.tagparser.text": "Análise Concluída", - "initializing.tagparser.text": "Inicializando o Workspace", - "indexing.tagparser.text": "Workspace da Indexação", "rescan.tagparse.text": "Examinar Novamente o Workspace", "c.cpp.parsing.open.files.tooltip": "Analisando Arquivos Abertos", - "click.to.preview": "clique aqui para visualizar os resultados", - "updating.intellisense.text": "IntelliSense: Atualizando", - "idle.intellisense.text": "IntelliSense: Pronto", - "absent.intellisense.text": "IntelliSense: Não Configurado", "running.analysis.text": "Code Analysis: em Execução", "paused.analysis.text": "Code Analysis: Pausado", "mode.analysis.prefix": "Modo do Code Analysis: ", + "click.to.preview": "clique aqui para visualizar os resultados", "c.cpp.configureIntelliSenseStatus.text": "Configurar o IntelliSense", - "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ Configurar IntelliSense", - "c.cpp.configuration.tooltip": "Configuração de C/C++", - "c.cpp.references.statusbar": "Status de Referências do C/C++", "cpptools.status.intellisense": "Status do IntelliSense do C/C++", + "intellisense.select.text": "Selecionar um Compilador", + "rescan.intellisense.text": "Examinar novamente", + "rescan.intellisense.tooltip": "Examinar Novamente o IntelliSense", "cpptools.status.tagparser": "Status do Analisador de Marcas do C/C++", "cpptools.detail.tagparser": "Inicializando...", + "tagparser.resume.text": "Retomar", + "tagparser.pause.text": "Pausar", "cpptools.status.codeanalysis": "Status do Code Analysis do C/C++", "c.cpp.codeanalysis.statusbar.runNow": "Executar Agora", - "tagparser.pause.text": "Pausar", - "tagparser.resume.text": "Retomar", - "intellisense.select.text": "Selecionar um Compilador", - "rescan.intellisense.text": "Examinar novamente", - "rescan.intellisense.tooltip": "Examinar Novamente o IntelliSense", "mode.codeanalysis.status.automatic": "Automático", "mode.codeanalysis.status.manual": "Manual", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Opções", "startup.codeanalysis.status": "Iniciando...", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "Executar Agora", "running.analysis.processed.tooltip": "Executando: {0} / {1} ({2}%)", + "select.code.analysis.command": "Selecione um comando de análise de código...", + "cancel.analysis": "Cancelar", + "resume.analysis": "Retomar", + "pause.analysis": "Pausar", + "another.analysis": "Iniciar Outro...", + "select.command": "Selecionar um comando...", + "active.analysis": "Executar Code Analysis no Arquivo Ativo", + "all.analysis": "Executar Code Analysis em Todos os Arquivos", + "open.analysis": "Executar Code Analysis em Abrir Arquivos", + "c.cpp.references.statusbar": "Status de Referências do C/C++", + "c.cpp.configuration.tooltip": "Configuração de C/C++", + "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ Configurar IntelliSense", "select.a.configuration": "Selecione uma Configuração...", "edit.configuration.ui": "Editar Configurações (IU)", "edit.configuration.json": "Editar Configurações (JSON)", @@ -46,16 +55,5 @@ "none": "nenhum", "disable.configuration.provider": "Desabilite o provedor de configuração ativo, se aplicável.", "select.compile.commands": "Selecione um compile_commands.json...", - "select.workspace": "Selecionar uma pasta de workspace...", - "select.command": "Selecionar um comando...", - "select.code.analysis.command": "Selecione um comando de análise de código...", - "resume.parsing": "Retomar a Análise do Espaço de trabalho", - "pause.parsing": "Pausar a Análise do Espaço de trabalho", - "cancel.analysis": "Cancelar", - "resume.analysis": "Retomar", - "pause.analysis": "Pausar", - "another.analysis": "Iniciar Outro...", - "active.analysis": "Executar Code Analysis no Arquivo Ativo", - "all.analysis": "Executar Code Analysis em Todos os Arquivos", - "open.analysis": "Executar Code Analysis em Abrir Arquivos" + "select.workspace": "Selecionar uma pasta de workspace..." } \ No newline at end of file diff --git a/Extension/i18n/ptb/src/SSH/commands.i18n.json b/Extension/i18n/ptb/src/SSH/commands.i18n.json index 37ee7421b0..cdf35bfa27 100644 --- a/Extension/i18n/ptb/src/SSH/commands.i18n.json +++ b/Extension/i18n/ptb/src/SSH/commands.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "\"localSocket\" não pode ser especificado ao mesmo tempo com \"bindAddress\" ou \"porta\" em localForwards", + "local.forward.local.conflict": "“localSocket” não pode ser especificado ao mesmo tempo com “bindAddress” ou “port” em localForwards", "local.forward.local.missing": "\"porta\" ou \"localSocket\" necessário em localForwards", "local.forward.remote.conflict": "\"remoteSocket\" não pode ser especificado ao mesmo tempo com \"host\" ou \"hostPort\" em localForwards", "local.forward.remote.missing": "\"host\" e \"hostPort\" ou \"remoteSocket\" necessários em localForwards" diff --git a/Extension/i18n/ptb/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/ptb/src/SSH/sshCommandRunner.i18n.json index c35d64f584..c9495a0fa8 100644 --- a/Extension/i18n/ptb/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/ptb/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "Comando SSH cancelado", "ssh.passphrase.input.box": "Inserir a frase secreta para a chave ssh {0}", "ssh.enter.password.for.user": "Insira a senha para o usuário “{0}”", - "ssh_message_enterPassword": "Digite a senha", + "ssh.message.enter.password": "Insira a senha", "ssh.continue.confirmation.placeholder": "Tem certeza de que deseja continuar?", "ssh.host.key.confirmation.title": "\"{0}\" tem impressão digital \"{1}\".", "continue": "Continuar", diff --git a/Extension/i18n/ptb/src/nativeStrings.i18n.json b/Extension/i18n/ptb/src/nativeStrings.i18n.json index 476ca4def2..a6dc05e105 100644 --- a/Extension/i18n/ptb/src/nativeStrings.i18n.json +++ b/Extension/i18n/ptb/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "Falha ao consultar compilador no caminho \"{0}\" para as versões padrão. A consulta do compilador está desabilitada para este compilador.", "unrecognized_language_standard_version": "A consulta do compilador retornou uma versão do padrão de linguagem não reconhecida. Nesse caso, será usada a última versão com suporte.", "intellisense_process_crash_detected": "Falha detectada no processo do IntelliSense.", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "Valores retornados:", "nvcc_compiler_not_found": "Não é possível localizar o compilador NVCC: {0}", "nvcc_host_compiler_not_found": "Não é possível localizar o compilador de host NVCC: {0}", diff --git a/Extension/i18n/ptb/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/ptb/walkthrough/installcompiler/install-clang-macos.md.i18n.json index c9082d7993..0cefa544ef 100644 --- a/Extension/i18n/ptb/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/ptb/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "Instalar um compilador C++ no macOS", - "walkthough.mac.text1": "Se você estiver desenvolvendo C++ para macOS, recomendamos instalar o compilador Clang. Tudo o que você precisa fazer é executar o seguinte comando em uma janela do Terminal (Ctrl+Shift+`) para instalar as ferramentas de desenvolvedor de linha de comando:", - "walkthough.mac.text2": "Em seguida, para verificar se o clang está instalado, execute o seguinte comando em uma janela do Terminal. Você deverá ver uma mensagem com informações sobre a versão do Clang que está usando." + "walkthrough.mac.install.compiler": "Instalar um compilador C++ no macOS", + "walkthrough.mac.text1": "Se você estiver desenvolvendo C++ para macOS, recomendamos instalar o compilador Clang. Tudo o que você precisa fazer é executar o seguinte comando em uma janela do Terminal (Ctrl+Shift+`) para instalar as ferramentas de desenvolvedor de linha de comando:", + "walkthrough.mac.text2": "Em seguida, para verificar se o clang está instalado, execute o seguinte comando em uma janela do Terminal. Você deverá ver uma mensagem com informações sobre a versão do Clang que está usando." } \ 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/ptb/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/rus/package.i18n.json b/Extension/i18n/rus/package.i18n.json index 3213768c19..cbbaba2075 100644 --- a/Extension/i18n/rus/package.i18n.json +++ b/Extension/i18n/rus/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "Изменить конфигурации (пользовательский интерфейс)", "c_cpp.command.selectDefaultCompiler.title": "Выбрать компилятор по умолчанию…", "c_cpp.command.selectIntelliSenseConfiguration.title": "Выбрать конфигурацию IntelliSense…", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "Повторный поиск компиляторов", "c_cpp.command.switchHeaderSource.title": "Переключить заголовок/источник", "c_cpp.command.enableErrorSquiggles.title": "Включить волнистые линии для ошибок", @@ -416,7 +417,8 @@ "c_cpp.walkthrough.description": "Изучите подробнее взаимодействие разработки C++ в VS Code.", "c_cpp.walkthrough.set.up.title": "Настройка среды C++", "c_cpp.walkthrough.activating.description": "Активируйте расширение C++, чтобы определить, настроена ли среда C++.\nАктивация расширения...", - "c_cpp.walkthrough.no.compilers.description": "Не удалось найти на этом компьютере компилятор C++, необходимый для использования расширения C++. Следуйте инструкциям справа, чтобы установить его, затем нажмите \"Найти мой новый компилятор\" ниже.\n[Найти мой новый компилятор](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.description": "Расширение C++ работает с компилятором C++. Выберите один из тех, которые уже установлены на вашем компьютере, нажав кнопку ниже.\n[Выбрать мой компилятор по умолчанию](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Изображение, показывающее быстрый выбор компилятора по умолчанию и список компиляторов, найденных на компьютере пользователя, один из которых выбран.", "c_cpp.walkthrough.create.cpp.file.title": "Создание файла C++", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "Вы можете настроить конфигурацию отладки (например, передать аргументы программе во время выполнения), выбрав \"Добавить конфигурацию отладки\" справа от кнопки воспроизведения. Пользовательская конфигурация отладки сохраняется в файле launch.json вашего проекта.\n[Подробнее](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "Вы можете настроить конфигурацию отладки (например, передать аргументы программе во время выполнения), выбрав \"Добавить конфигурацию отладки\" справа от кнопки воспроизведения. Пользовательская конфигурация отладки сохраняется в файле launch.json проекта.\n[Подробнее](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "Вы можете настроить конфигурацию отладки (например, передать аргументы программе во время выполнения), выбрав \"Добавить конфигурацию отладки\" справа от кнопки воспроизведения. Пользовательская конфигурация отладки сохраняется в файле launch.json вашего проекта.\n[Подробнее](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "Изображение, показывающее пункт \"Добавить конфигурацию отладки\" в раскрывающемся списке." + "c_cpp.walkthrough.customize.debugging.altText": "Изображение, показывающее пункт \"Добавить конфигурацию отладки\" в раскрывающемся списке.", + "c_cpp.codeActions.refactor.inline.macro.title": "Встроенный макрос", + "c_cpp.codeActions.refactor.inline.macro.description": "Заменить вызов макроса расширенным кодом." } \ No newline at end of file diff --git a/Extension/i18n/rus/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/rus/src/Debugger/ParsedEnvironmentFile.i18n.json index 11a2edf7c0..a4e45fd22e 100644 --- a/Extension/i18n/rus/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/rus/src/Debugger/ParsedEnvironmentFile.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "ignoring.lines.in.envfile": "Пропуск строк, не поддерживающих анализ, в файле {0} с именем {1}: " + "ignoring.lines.in.envfile": "Пропускаются строки, не поддающиеся анализу, в файле {0} с именем {1}: " } \ No newline at end of file diff --git a/Extension/i18n/rus/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/rus/src/Debugger/debugAdapterDescriptorFactory.i18n.json index bdc9648c20..704da1606e 100644 --- a/Extension/i18n/rus/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/rus/src/Debugger/debugAdapterDescriptorFactory.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "debugger.not.available": "Тип отладчика \"{0}\" недоступен для компьютеров, управляемых не операционной системой Windows." + "debugger.not.available": "Тип отладчика \"{0}\" недоступен для компьютеров с операционной системой, отличной от Windows." } \ No newline at end of file diff --git a/Extension/i18n/rus/src/Debugger/extension.i18n.json b/Extension/i18n/rus/src/Debugger/extension.i18n.json index 3f84a32606..806d0930e1 100644 --- a/Extension/i18n/rus/src/Debugger/extension.i18n.json +++ b/Extension/i18n/rus/src/Debugger/extension.i18n.json @@ -14,5 +14,5 @@ "select.ssh.config.file": "Выберите файл конфигурации SSH", "yes": "Да", "no": "Нет", - "ssh.target.delete.confirmation": "Действительно безвозвратно удалить \"{0}\"?" + "ssh.target.delete.confirmation": "Вы действительно хотите удалить \"{0}\" без возможности восстановления?" } \ No newline at end of file diff --git a/Extension/i18n/rus/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/rus/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..1381a9cabb --- /dev/null +++ b/Extension/i18n/rus/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "Расширяется в:", + "inline.macro": "Встроенный макрос", + "inline.macro.not.available": "Встроенный макрос недоступен в этом расположении." +} \ No newline at end of file diff --git a/Extension/i18n/rus/src/LanguageServer/client.i18n.json b/Extension/i18n/rus/src/LanguageServer/client.i18n.json index 00026caef1..009aec507d 100644 --- a/Extension/i18n/rus/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/rus/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "Использовать {0}", "selectAnotherCompiler.string": "Выбрать другой компилятор на моем компьютере…", "installCompiler.string": "Помогите мне установить компилятор", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "Не настраивать компилятор (не рекомендуется)", "selectCompiler.string": "Выбор компилятора", "confirmCompiler.string": "Да", @@ -27,7 +28,7 @@ "server.crashed2": "Языковой сервер аварийно завершил работу 5 раз за последние 3 минуты. Он не будет перезапущен.", "loggingLevel.changed": "{0} был изменен на: {1}", "dismiss.button": "Закрыть", - "diable.warnings.button": "Отключить предупреждения", + "disable.warnings.button": "Отключить предупреждения", "unable.to.provide.configuration": "{0} не удается предоставить сведения о конфигурации IntelliSense для \"{1}\". Вместо этого будут использованы параметры из конфигурации \"{2}\".", "config.not.found": "Запрошенное имя конфигурации не найдено: {0}", "unsupported.client": "Неподдерживаемый клиент", diff --git a/Extension/i18n/rus/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/rus/src/LanguageServer/codeAnalysis.i18n.json index aa2935ecf7..5fcb37abaa 100644 --- a/Extension/i18n/rus/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/rus/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "Исправить все проблемы анализа кода", - "clear_all_code_analysis_problems": "Очистить все проблемы анализа кода", - "fix_all_type_problems": "Исправить все проблемы типа \"{0}\"", - "disable_all_type_problems": "Отключить все проблемы типа \"{0}\"", - "clear_all_type_problems": "Очистить все проблемы типа \"{0}\"", - "clear_this_problem": "Очистить эту проблему \"{0}\"", - "fix_this_problem": "Исправить проблему \"{0}\"", - "show_documentation_for": "Показать документацию для: {0}" + "fix.all.code.analysis.problems": "Исправить все проблемы анализа кода", + "clear.all.code.analysis.problems": "Очистить все проблемы анализа кода", + "fix.all.type.problems": "Исправить все проблемы типа \"{0}\"", + "disable.all.type.problems": "Отключить все проблемы типа \"{0}\"", + "clear.all.type.problems": "Очистить все проблемы типа \"{0}\"", + "clear.this.problem": "Очистить эту проблему \"{0}\"", + "fix.this.problem": "Исправить проблему \"{0}\"", + "show.documentation.for": "Показать документацию для: {0}" } \ No newline at end of file diff --git a/Extension/i18n/rus/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/rus/src/LanguageServer/cppBuildTaskProvider.i18n.json index f91e7357a2..7fa611340a 100644 --- a/Extension/i18n/rus/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/rus/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "сборка активного файла", - "compiler_details": "компилятор:", - "task_generated_by_debugger": "Задача создана отладчиком.", + "build.active.file": "сборка активного файла", + "compiler.details": "компилятор:", + "task.generated.by.debugger": "Задача создана отладчиком.", "cannot.build.non.cpp": "Не удается выполнить сборку и отладку, так как активный файл не является исходным файлом C или C++.", - "starting_build": "Запуск сборки…", + "starting.build": "Запуск сборки…", "build.run.terminated": "Запуск сборки был прерван.", "build.finished.with.error": "Сборка завершена с ошибками.", "build.finished.with.warnings": "Сборка завершена с предупреждениями.", diff --git a/Extension/i18n/rus/src/LanguageServer/extension.i18n.json b/Extension/i18n/rus/src/LanguageServer/extension.i18n.json index f6b50496da..0e7e9b98ff 100644 --- a/Extension/i18n/rus/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/rus/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "Копировать команду vcpkg для установки \"{0}\" в буфер обмена", "on.disabled.command": "Команды, связанные с IntelliSense, не могут быть выполнены, если для `C_Cpp.intelliSenseEngine` установлено значение `disabled`.", "client.not.found": "Клиент не найден.", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "Сначала откройте папку, чтобы выбрать конфигурацию.", "configuration.provider.select.first": "Сначала откройте папку, чтобы выбрать поставщика конфигурации.", "edit.configurations.open.first": "Сначала откройте папку для изменения конфигураций", diff --git a/Extension/i18n/rus/src/LanguageServer/ui.i18n.json b/Extension/i18n/rus/src/LanguageServer/ui.i18n.json index cf632ff63f..cc27b5020c 100644 --- a/Extension/i18n/rus/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/rus/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense: обновление", + "idle.intellisense.text": "IntelliSense: готово", + "absent.intellisense.text": "IntelliSense: не настроено", + "initializing.tagparser.text": "Инициализация рабочей области", + "indexing.tagparser.text": "Индексация рабочей области", "running.tagparser.text": "Анализ рабочей области", "paused.tagparser.text": "Анализ рабочей области: приостановлено", "complete.tagparser.text": "Анализ завершен", - "initializing.tagparser.text": "Инициализация рабочей области", - "indexing.tagparser.text": "Индексация рабочей области", "rescan.tagparse.text": "Повторное сканирование рабочей области", "c.cpp.parsing.open.files.tooltip": "Анализ открытых файлов", - "click.to.preview": "щелкните для предварительного просмотра результатов", - "updating.intellisense.text": "IntelliSense: обновление", - "idle.intellisense.text": "IntelliSense: готово", - "absent.intellisense.text": "IntelliSense: не настроено", "running.analysis.text": "Code Analysis: запуск", "paused.analysis.text": "Code Analysis: приостановлено", "mode.analysis.prefix": "Режим Code Analysis: ", + "click.to.preview": "щелкните для предварительного просмотра результатов", "c.cpp.configureIntelliSenseStatus.text": "Настройка IntelliSense", - "c.cpp.configureIntelliSenseStatus.cppText": "Настройка IntelliSense C/C++", - "c.cpp.configuration.tooltip": "Конфигурация C/C++", - "c.cpp.references.statusbar": "Состояние ссылок C/C++", "cpptools.status.intellisense": "Состояние IntelliSense C/C++", + "intellisense.select.text": "Выбор компилятора", + "rescan.intellisense.text": "Повторное сканирование", + "rescan.intellisense.tooltip": "Повторное сканирование IntelliSense", "cpptools.status.tagparser": "Состояние анализатора тегов C/C++", "cpptools.detail.tagparser": "Выполняется инициализация…", + "tagparser.resume.text": "Возобновить", + "tagparser.pause.text": "Приостановить", "cpptools.status.codeanalysis": "Состояние Code Analysis C/C++", "c.cpp.codeanalysis.statusbar.runNow": "Запустить сейчас", - "tagparser.pause.text": "Приостановить", - "tagparser.resume.text": "Возобновить", - "intellisense.select.text": "Выбор компилятора", - "rescan.intellisense.text": "Повторное сканирование", - "rescan.intellisense.tooltip": "Повторное сканирование IntelliSense", "mode.codeanalysis.status.automatic": "Автоматически", "mode.codeanalysis.status.manual": "Вручную", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Параметры", "startup.codeanalysis.status": "Запуск…", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "Запустить сейчас", "running.analysis.processed.tooltip": "Выполняется: {0}/{1} ({2}%)", + "select.code.analysis.command": "Выберите команду анализа кода...", + "cancel.analysis": "Отмена", + "resume.analysis": "Возобновить", + "pause.analysis": "Приостановить", + "another.analysis": "Запустить другой...", + "select.command": "Выберите команду...", + "active.analysis": "Запустить Code Analysis в активном файле", + "all.analysis": "Запустить Code Analysis во всех файлах", + "open.analysis": "Запустить Code Analysis в открытых файлах", + "c.cpp.references.statusbar": "Состояние ссылок C/C++", + "c.cpp.configuration.tooltip": "Конфигурация C/C++", + "c.cpp.configureIntelliSenseStatus.cppText": "Настройка IntelliSense C/C++", "select.a.configuration": "Выберите конфигурацию...", "edit.configuration.ui": "Изменить конфигурации (пользовательский интерфейс)", "edit.configuration.json": "Изменить конфигурации (JSON)", @@ -46,16 +55,5 @@ "none": "нет", "disable.configuration.provider": "Отключите активный поставщик конфигурации (если применимо).", "select.compile.commands": "Выберите compile_commands.json...", - "select.workspace": "Выберите папку рабочей области…", - "select.command": "Выберите команду...", - "select.code.analysis.command": "Выберите команду анализа кода...", - "resume.parsing": "Возобновить анализ рабочей области", - "pause.parsing": "Приостановить анализ рабочей области", - "cancel.analysis": "Отмена", - "resume.analysis": "Возобновить", - "pause.analysis": "Приостановить", - "another.analysis": "Запустить другой...", - "active.analysis": "Запустить Code Analysis в активном файле", - "all.analysis": "Запустить Code Analysis во всех файлах", - "open.analysis": "Запустить Code Analysis в открытых файлах" + "select.workspace": "Выберите папку рабочей области…" } \ No newline at end of file diff --git a/Extension/i18n/rus/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/rus/src/SSH/sshCommandRunner.i18n.json index fef05d4565..48e43e1103 100644 --- a/Extension/i18n/rus/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/rus/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "Команда SSH отменена", "ssh.passphrase.input.box": "Введите парольную фразу для ключа SSH {0}", "ssh.enter.password.for.user": "Введите пароль для пользователя \"{0}\"", - "ssh_message_enterPassword": "Введите пароль", + "ssh.message.enter.password": "Введите пароль", "ssh.continue.confirmation.placeholder": "Вы действительно хотите продолжить?", "ssh.host.key.confirmation.title": "«{0}» имеет отпечаток «{1}».", "continue": "Продолжить", diff --git a/Extension/i18n/rus/src/nativeStrings.i18n.json b/Extension/i18n/rus/src/nativeStrings.i18n.json index 168ae7bd41..1a079f6fbb 100644 --- a/Extension/i18n/rus/src/nativeStrings.i18n.json +++ b/Extension/i18n/rus/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "Не удалось запросить компилятор по пути \"{0}\" для стандартных версий по умолчанию. Запросы для этого компилятора отключены.", "unrecognized_language_standard_version": "Проба компилятора возвратила нераспознанную версию стандарта языка. Вместо этого будет использоваться последняя поддерживаемая версия.", "intellisense_process_crash_detected": "Обнаружен сбой процесса IntelliSense.", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "Возвращаемые значения:", "nvcc_compiler_not_found": "Не удалось найти компилятор nvcc: {0}", "nvcc_host_compiler_not_found": "Не удалось найти компилятор узла nvcc: {0}", diff --git a/Extension/i18n/rus/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/rus/walkthrough/installcompiler/install-clang-macos.md.i18n.json index ecdeb7c7fe..1da32c9f32 100644 --- a/Extension/i18n/rus/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/rus/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "Установка компилятора C++ в macOS", - "walkthough.mac.text1": "Если вы занимаетесь разработкой на C++ для macOS, мы рекомендуем установить компилятор Clang. Все, что вам нужно сделать, это запустить следующую команду в окне терминала (CTRL + SHIFT + `), чтобы установить инструменты разработчика командной строки:", - "walkthough.mac.text2": "Убедитесь, что установлено решение Clang, выполнив следующую команду в окне терминала. Должно появиться сообщение со сведениями об используемой версии Clang." + "walkthrough.mac.install.compiler": "Установка компилятора C++ в macOS", + "walkthrough.mac.text1": "Если вы занимаетесь разработкой на C++ для macOS, мы рекомендуем установить компилятор Clang. Все, что вам нужно сделать, это запустить следующую команду в окне терминала (CTRL + SHIFT + `), чтобы установить инструменты разработчика командной строки:", + "walkthrough.mac.text2": "Убедитесь, что установлено решение Clang, выполнив следующую команду в окне терминала. Должно появиться сообщение со сведениями об используемой версии Clang." } \ 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/rus/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file diff --git a/Extension/i18n/trk/package.i18n.json b/Extension/i18n/trk/package.i18n.json index 672cff2355..623881e1f0 100644 --- a/Extension/i18n/trk/package.i18n.json +++ b/Extension/i18n/trk/package.i18n.json @@ -18,6 +18,7 @@ "c_cpp.command.configurationEditUI.title": "Yapılandırmaları Düzenle (UI)", "c_cpp.command.selectDefaultCompiler.title": "Varsayılan Derleyiciyi Seç...", "c_cpp.command.selectIntelliSenseConfiguration.title": "IntelliSense Yapılandırmasını Seç...", + "c_cpp.command.installCompiler.title": "Install a C++ Compiler", "c_cpp.command.rescanCompilers.title": "Derleyicileri Yeniden Tara", "c_cpp.command.switchHeaderSource.title": "Üst Bilgiyi/Kaynağı Değiştir", "c_cpp.command.enableErrorSquiggles.title": "Hata İlişkilendirmelerini Etkinleştir", @@ -416,14 +417,15 @@ "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.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.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?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.windows.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "We could not find a C++ compiler on your machine, which is required to use the C++ extension. Either select “Install a C++ Compiler” to have a compiler installed for you or follow the instructions on the right to install one, then click “Find my new Compiler” below.\r\n[Install a C++ Compiler](command:C_Cpp.InstallCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)\r\n[Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.description": "C++ uzantısı, bir C++ derleyicisiyle çalışır. Aşağıdaki düğmeyi tıklayarak makinenizde zaten bulunanlardan birini seçin.\n[Varsayılan Derleyicimi Seç](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Varsayılan bir derleyici seçme hızlı seçimini ve kullanıcının makinesinde bulunan ve biri seçili olan derleyicilerin listesini gösteren resim.", "c_cpp.walkthrough.create.cpp.file.title": "C++ dosyası oluşturun", "c_cpp.walkthrough.create.cpp.file.description": "[Aç](command:toSide:workbench.action.files.openFile) veya [create](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) bir C++ dosya. \"helloworld.cpp\" gibi \".cpp\" uzantısıyla kaydettiğinizden emin olun.\n[Bir 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": "Geliştirici komut istemini kullanarak yeniden başlat", - "c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ derleyicisini kullanırken, C++ uzantısı, geliştirici komut isteminden 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.description": "Microsoft Visual Studio C++ derleyicisini kullanırken, C++ uzantısı, geliştirici komut isteminden VS Code'u başlatmanızı gerektirir. Yeniden başlatmak için sağdaki talimatları izleyin.\n[Yeniden Yükleme Penceresi](komut:workbench.action.reloadWindow)", "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 oluştur 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 oluştur ve hata ayıkla\"yı seçin.", @@ -433,5 +435,7 @@ "c_cpp.walkthrough.customize.debugging.mac.description": "Yürüt düğmesinin sağındaki \"Hata Ayıklama Yapılandırması Ekle\"yi seçerek hata ayıklama yapılandırmanızı özelleştirebilirsiniz (ör. çalışma zamanında programınıza bağımsız değişkenler geçirmek için). Özel hata ayıklama yapılandırması, projenizin launch.json dosyasına kaydedilir.\n[Daha Fazla Bilgi Edinin](https://code.visualstudio.com/docs/cpp/config-linux#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.linux.description": "Yürüt düğmesinin sağındaki \"Hata Ayıklama Yapılandırması Ekle\"yi seçerek hata ayıklama yapılandırmanızı özelleştirebilirsiniz (ör. çalışma zamanında programınıza bağımsız değişkenler geçirmek için). Özel hata ayıklama yapılandırması, projenizin launch.json dosyasına kaydedilir.\n[Daha Fazla Bilgi Edinin](https://code.visualstudio.com/docs/cpp/config-msvc#_debug-helloworldcpp)", "c_cpp.walkthrough.customize.debugging.windows.description": "Yürüt düğmesinin sağındaki \"Hata Ayıklama Yapılandırması Ekle\"yi seçerek hata ayıklama yapılandırmanızı özelleştirebilirsiniz (ör. çalışma zamanında programınıza bağımsız değişkenler geçirmek için). Özel hata ayıklama yapılandırması, projenizin launch.json dosyasına kaydedilir. \n[Daha Fazla Bilgi Edinin](https://code.visualstudio.com/docs/cpp/config-clang-mac#_debug-helloworldcpp)", - "c_cpp.walkthrough.customize.debugging.altText": "Açılır menüde Hata Ayıklama Yapılandırması Ekle'yi gösteren resim" -} + "c_cpp.walkthrough.customize.debugging.altText": "Açılır menüde Hata Ayıklama Yapılandırması Ekle'yi gösteren resim", + "c_cpp.codeActions.refactor.inline.macro.title": "Satır içi makro", + "c_cpp.codeActions.refactor.inline.macro.description": "Makro çağrısını genişletilmiş kodla değiştirin." +} \ No newline at end of file diff --git a/Extension/i18n/trk/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/trk/src/Debugger/ParsedEnvironmentFile.i18n.json index 53054ca584..9cf0743cd4 100644 --- a/Extension/i18n/trk/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/trk/src/Debugger/ParsedEnvironmentFile.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "ignoring.lines.in.envfile": "{1} adlı {0} dosyasındaki ayrıştırılamayan satırlar yoksayılıyor: " + "ignoring.lines.in.envfile": "{0} {1} dosyasındaki ayrıştırılamayan satırlar yoksayılıyor: " } \ No newline at end of file diff --git a/Extension/i18n/trk/src/LanguageServer/Providers/codeActionProvider.i18n.json b/Extension/i18n/trk/src/LanguageServer/Providers/codeActionProvider.i18n.json new file mode 100644 index 0000000000..5961c217bb --- /dev/null +++ b/Extension/i18n/trk/src/LanguageServer/Providers/codeActionProvider.i18n.json @@ -0,0 +1,10 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "expands.to": "Şu öğeye genişler:", + "inline.macro": "Satır içi makro", + "inline.macro.not.available": "Satır içi makro bu konumda kullanılamıyor." +} \ No newline at end of file diff --git a/Extension/i18n/trk/src/LanguageServer/client.i18n.json b/Extension/i18n/trk/src/LanguageServer/client.i18n.json index 7ef538d626..f334725f2a 100644 --- a/Extension/i18n/trk/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/trk/src/LanguageServer/client.i18n.json @@ -17,6 +17,7 @@ "use.compileCommands": "{0} kullan", "selectAnotherCompiler.string": "Makinem üzerinde başka bir derleyici seç...", "installCompiler.string": "Derleyici yüklememe yardım et", + "installCompiler.string.nix": "Install a compiler", "noConfig.string": "Derleyiciyle yapılandırma (önerilmez)", "selectCompiler.string": "Derleyici Seç", "confirmCompiler.string": "Evet", @@ -27,7 +28,7 @@ "server.crashed2": "Dil sunucusu son 3 dakikada 5 kez kilitlendi. Sunucu yeniden başlatılmayacak.", "loggingLevel.changed": "{0} {1} olarak değiştirildi", "dismiss.button": "Kapat", - "diable.warnings.button": "Uyarıları Devre Dışı Bırak", + "disable.warnings.button": "Uyarıları Devre Dışı Bırak", "unable.to.provide.configuration": "{0}, '{1}' için IntelliSense yapılandırma bilgilerini sağlayamıyor. Bunun yerine '{2}' yapılandırmasındaki ayarlar kullanılacak.", "config.not.found": "İstenen yapılandırma adı bulunamadı: {0}", "unsupported.client": "Desteklenmeyen istemci", diff --git a/Extension/i18n/trk/src/LanguageServer/codeAnalysis.i18n.json b/Extension/i18n/trk/src/LanguageServer/codeAnalysis.i18n.json index 2343330003..4fae31b368 100644 --- a/Extension/i18n/trk/src/LanguageServer/codeAnalysis.i18n.json +++ b/Extension/i18n/trk/src/LanguageServer/codeAnalysis.i18n.json @@ -4,12 +4,12 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "fix_all_code_analysis_problems": "Tüm kod analizi sorunlarını düzelt", - "clear_all_code_analysis_problems": "Tüm kod analizi sorunlarını temizle", - "fix_all_type_problems": "Tüm {0} sorunlarını düzelt", - "disable_all_type_problems": "Tüm {0} sorunlarını devre dışı bırak", - "clear_all_type_problems": "Tüm {0} sorunlarını temizle", - "clear_this_problem": "Bu {0} sorununu temizle", - "fix_this_problem": "Bu {0} sorununu düzelt", - "show_documentation_for": "{0} için belgeleri göster" + "fix.all.code.analysis.problems": "Tüm kod analizi sorunlarını düzelt", + "clear.all.code.analysis.problems": "Tüm kod analizi sorunlarını temizle", + "fix.all.type.problems": "Tüm {0} sorunlarını düzelt", + "disable.all.type.problems": "Tüm {0} sorunlarını devre dışı bırak", + "clear.all.type.problems": "Tüm {0} sorunlarını temizle", + "clear.this.problem": "Bu {0} sorununu temizle", + "fix.this.problem": "Bu {0} sorununu düzelt", + "show.documentation.for": "{0} için belgeleri göster" } \ No newline at end of file diff --git a/Extension/i18n/trk/src/LanguageServer/cppBuildTaskProvider.i18n.json b/Extension/i18n/trk/src/LanguageServer/cppBuildTaskProvider.i18n.json index fdf66aa225..4952f9c516 100644 --- a/Extension/i18n/trk/src/LanguageServer/cppBuildTaskProvider.i18n.json +++ b/Extension/i18n/trk/src/LanguageServer/cppBuildTaskProvider.i18n.json @@ -4,11 +4,11 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "build_active_file": "etkin dosyayı derle", - "compiler_details": "derleyici:", - "task_generated_by_debugger": "Hata Ayıklayıcısı tarafından oluşturulan görev.", + "build.active.file": "etkin dosyayı derle", + "compiler.details": "derleyici:", + "task.generated.by.debugger": "Hata Ayıklayıcısı tarafından oluşturulan görev.", "cannot.build.non.cpp": "Etkin dosya bir C ya da C++ kaynak dosyası olmadığından derleme veya hata ayıklama yapılamıyor.", - "starting_build": "Derleme başlatılıyor...", + "starting.build": "Derleme başlatılıyor...", "build.run.terminated": "Derleme çalıştırması sonlandırıldı.", "build.finished.with.error": "Derleme hatalarla tamamlandı.", "build.finished.with.warnings": "Derleme uyarılarla tamamlandı.", diff --git a/Extension/i18n/trk/src/LanguageServer/extension.i18n.json b/Extension/i18n/trk/src/LanguageServer/extension.i18n.json index b13c8f7dcf..9c8173abd6 100644 --- a/Extension/i18n/trk/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/trk/src/LanguageServer/extension.i18n.json @@ -8,6 +8,11 @@ "copy.vcpkg.command": "'{0}' yükleme vcpkg komutunu panoya kopyalayın", "on.disabled.command": "`C_Cpp.intelliSenseEngine` `disabled` olarak ayarlandığında IntelliSense ile ilgili komutlar yürütülemez.", "client.not.found": "istemci bulunamadı", + "ok": "OK", + "install.compiler.mac.title": "The clang compiler will now be installed", + "install.compiler.mac.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", + "install.compiler.linux.title": "The gcc compiler will now be installed", + "install.compiler.linux.detail": "You may be prompted to type your password in the VS Code terminal window to authorize the installation.", "configuration.select.first": "Yapılandırma seçmek için önce bir klasör açın.", "configuration.provider.select.first": "Yapılandırma sağlayıcısı seçmek için önce bir klasör açın.", "edit.configurations.open.first": "Yapılandırmaları düzenlemek için önce bir klasör açın", diff --git a/Extension/i18n/trk/src/LanguageServer/ui.i18n.json b/Extension/i18n/trk/src/LanguageServer/ui.i18n.json index 01d6b3bbb2..2a2fc48346 100644 --- a/Extension/i18n/trk/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/trk/src/LanguageServer/ui.i18n.json @@ -4,40 +4,49 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { + "updating.intellisense.text": "IntelliSense: Güncelleştiriliyor", + "idle.intellisense.text": "IntelliSense: Hazır", + "absent.intellisense.text": "IntelliSense: Yapılandırılmadı", + "initializing.tagparser.text": "Çalışma Alanı Başlatılıyor", + "indexing.tagparser.text": "Çalışma Alanı Dizine Ekleniyor", "running.tagparser.text": "Çalışma Alanı Ayrıştırılıyor", "paused.tagparser.text": "Çalışma Alanı Ayrıştırılıyor: Duraklatıldı", "complete.tagparser.text": "Ayrıştırma Tamamlandı", - "initializing.tagparser.text": "Çalışma Alanı Başlatılıyor", - "indexing.tagparser.text": "Çalışma Alanı Dizine Ekleniyor", "rescan.tagparse.text": "Çalışma Alanını Yeniden Tara", "c.cpp.parsing.open.files.tooltip": "Açık Dosyalar Ayrıştırılıyor", - "click.to.preview": "sonuçların önizlemesini görüntülemek için tıklayın", - "updating.intellisense.text": "IntelliSense: Güncelleştiriliyor", - "idle.intellisense.text": "IntelliSense: Hazır", - "absent.intellisense.text": "IntelliSense: Yapılandırılmadı", "running.analysis.text": "Code Analysis: Çalışıyor", "paused.analysis.text": "Code Analysis: Duraklatıldı", "mode.analysis.prefix": "Code Analysis Modu: ", + "click.to.preview": "sonuçların önizlemesini görüntülemek için tıklayın", "c.cpp.configureIntelliSenseStatus.text": "IntelliSense'i Yapılandır", - "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ IntelliSense'i Yapılandır", - "c.cpp.configuration.tooltip": "C/C++ Yapılandırması", - "c.cpp.references.statusbar": "C/C++ Başvuruları Durumu", "cpptools.status.intellisense": "C/C++ IntelliSense Durumu", + "intellisense.select.text": "Derleyici seçin", + "rescan.intellisense.text": "Yeniden tara", + "rescan.intellisense.tooltip": "Rescan IntelliSense", "cpptools.status.tagparser": "C/C++ Etiket Ayrıştırıcısı Durumu", "cpptools.detail.tagparser": "Başlatılıyor...", + "tagparser.resume.text": "Sürdür", + "tagparser.pause.text": "Duraklat", "cpptools.status.codeanalysis": "C/C++ Code Analysis Durumu", "c.cpp.codeanalysis.statusbar.runNow": "Şimdi Çalıştır", - "tagparser.pause.text": "Duraklat", - "tagparser.resume.text": "Sürdür", - "intellisense.select.text": "Derleyici seçin", - "rescan.intellisense.text": "Yeniden tara", - "rescan.intellisense.tooltip": "Rescan IntelliSense", "mode.codeanalysis.status.automatic": "Otomatik", "mode.codeanalysis.status.manual": "El ile", "c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Seçenekler", "startup.codeanalysis.status": "Başlatılıyor...", "c.cpp.codeanalysis.statusbar.showRunNowOptions": "Şimdi Çalıştır", "running.analysis.processed.tooltip": "Çalışıyor: {0}/{1} (%{2})", + "select.code.analysis.command": "Kod analizi komutu seçin...", + "cancel.analysis": "İptal", + "resume.analysis": "Sürdür", + "pause.analysis": "Duraklat", + "another.analysis": "Başkasını Başlat...", + "select.command": "Komut seç...", + "active.analysis": "Aktif Dosyada Code Analysis’i Çalıştır", + "all.analysis": "Tüm Dosyalarda Code Analysis’i Çalıştır", + "open.analysis": "Açık Dosyalarda Code Analysis’i Çalıştır", + "c.cpp.references.statusbar": "C/C++ Başvuruları Durumu", + "c.cpp.configuration.tooltip": "C/C++ Yapılandırması", + "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ IntelliSense'i Yapılandır", "select.a.configuration": "Yapılandırma Seçin...", "edit.configuration.ui": "Yapılandırmaları Düzenle (UI)", "edit.configuration.json": "Yapılandırmaları Düzenle (JSON)", @@ -46,16 +55,5 @@ "none": "yok", "disable.configuration.provider": "Varsa etkin yapılandırma sağlayıcısını devre dışı bırakın.", "select.compile.commands": "compile_commands.json dosyası seçin...", - "select.workspace": "Çalışma alanı klasörü seçin...", - "select.command": "Komut seç...", - "select.code.analysis.command": "Kod analizi komutu seçin...", - "resume.parsing": "Çalışma Alanı Ayrıştırmasını Sürdür", - "pause.parsing": "Çalışma Alanı Ayrıştırmasını Duraklat", - "cancel.analysis": "İptal", - "resume.analysis": "Sürdür", - "pause.analysis": "Duraklat", - "another.analysis": "Başkasını Başlat...", - "active.analysis": "Aktif Dosyada Code Analysis’i Çalıştır", - "all.analysis": "Tüm Dosyalarda Code Analysis’i Çalıştır", - "open.analysis": "Açık Dosyalarda Code Analysis’i Çalıştır" + "select.workspace": "Çalışma alanı klasörü seçin..." } \ No newline at end of file diff --git a/Extension/i18n/trk/src/SSH/commands.i18n.json b/Extension/i18n/trk/src/SSH/commands.i18n.json index 49599f8376..ea48b1063d 100644 --- a/Extension/i18n/trk/src/SSH/commands.i18n.json +++ b/Extension/i18n/trk/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "localForwards içinde \"bindAddress\" veya \"port\" ile aynı anda \"localSocket\" belirtilemiyor", + "local.forward.local.conflict": "localForwards içinde \"bindAddress\" veya \"port\" ile aynı anda \"localSocket\" belirtilemez", "local.forward.local.missing": "localForwards içinde \"port\" veya \"localSocket\" gereklidir", - "local.forward.remote.conflict": "localForwards içinde \"host\" veya \"hostPort\" ile aynı anda \"remoteSocket\" belirtilemiyor", + "local.forward.remote.conflict": "localForwards içinde \"host\" veya \"hostPort\" ile aynı anda \"remoteSocket\" belirtilemez", "local.forward.remote.missing": "localForwards içinde \"host\" ve \"hostPort\" veya \"remoteSocket\" gereklidir" } \ No newline at end of file diff --git a/Extension/i18n/trk/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/trk/src/SSH/sshCommandRunner.i18n.json index 8668216dc0..79a98eae28 100644 --- a/Extension/i18n/trk/src/SSH/sshCommandRunner.i18n.json +++ b/Extension/i18n/trk/src/SSH/sshCommandRunner.i18n.json @@ -7,7 +7,7 @@ "ssh.canceled": "SSH komutu iptal edildi", "ssh.passphrase.input.box": "SSH anahtarı {0} için parolayı girin", "ssh.enter.password.for.user": "\"{0}\" adlı kullanıcı için parola girin", - "ssh_message_enterPassword": "Parolayı girin", + "ssh.message.enter.password": "Parola girin", "ssh.continue.confirmation.placeholder": "Devam etmek istediğinizden emin misiniz?", "ssh.host.key.confirmation.title": "\"{0}\", \"{1}\" parmak izine sahip.", "continue": "Devam et", diff --git a/Extension/i18n/trk/src/nativeStrings.i18n.json b/Extension/i18n/trk/src/nativeStrings.i18n.json index 3912435698..1de8a7e2d0 100644 --- a/Extension/i18n/trk/src/nativeStrings.i18n.json +++ b/Extension/i18n/trk/src/nativeStrings.i18n.json @@ -229,6 +229,7 @@ "failed_to_query_for_standard_version": "Varsayılan standart sürümler için \"{0}\" yolundaki derleyici sorgulanamadı. Derleyici sorgulaması bu derleyici için devre dışı bırakıldı.", "unrecognized_language_standard_version": "Derleyici sorgusu, tanınmayan bir dil standardı sürümü döndürdü. Bunun yerine desteklenen en güncel sürüm kullanılacak.", "intellisense_process_crash_detected": "IntelliSense işlem kilitlenmesi saptandı.", + "intellisense_feature_crash_detected": "IntelliSense process crash detected: {0}", "return_values_label": "Dönüş değerleri:", "nvcc_compiler_not_found": "Nvcc derleyicisi bulunamıyor: {0}", "nvcc_host_compiler_not_found": "Nvcc konak derleyicisi bulunamıyor: {0}", diff --git a/Extension/i18n/trk/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/trk/walkthrough/installcompiler/install-clang-macos.md.i18n.json index d14b6c0b9f..5017f2a9fd 100644 --- a/Extension/i18n/trk/walkthrough/installcompiler/install-clang-macos.md.i18n.json +++ b/Extension/i18n/trk/walkthrough/installcompiler/install-clang-macos.md.i18n.json @@ -4,7 +4,7 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "walkthough.mac.install.compiler": "macOS'a C++ derleyicisi yükleme", - "walkthough.mac.text1": "macOS için C++ geliştirmesi yapıyorsanız, Clang derleyicisini kurmanızı öneririz. Tek yapmanız gereken, komut satırı geliştirici araçlarını yüklemek için bir Terminal penceresinde (Ctrl+Shift+ `) aşağıdaki komutu çalıştırmaktır:", - "walkthough.mac.text2": "Ardından clang'in yüklü olduğunu doğrulamak için Terminal penceresinde aşağıdaki komutu çalıştırın. Kullanmakta olduğunuz Clang’in sürümü hakkındaki bilgileri içeren bir ileti göreceksiniz." + "walkthrough.mac.install.compiler": "macOS'a C++ derleyicisi yükleme", + "walkthrough.mac.text1": "macOS için C++ geliştirmesi yapıyorsanız, Clang derleyicisini kurmanızı öneririz. Tek yapmanız gereken, komut satırı geliştirici araçlarını yüklemek için bir Terminal penceresinde (Ctrl+Shift+ `) aşağıdaki komutu çalıştırmaktır:", + "walkthrough.mac.text2": "Ardından clang'in yüklü olduğunu doğrulamak için Terminal penceresinde aşağıdaki komutu çalıştırın. Kullanmakta olduğunuz Clang’in sürümü hakkındaki bilgileri içeren bir ileti 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows10.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file 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 new file mode 100644 index 0000000000..d646e80536 --- /dev/null +++ b/Extension/i18n/trk/walkthrough/installcompiler/install-compiler-windows11.md.i18n.json @@ -0,0 +1,23 @@ +/*--------------------------------------------------------------------------------------------- + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for license information. + *--------------------------------------------------------------------------------------------*/ +// Do not edit this file. It is machine generated. +{ + "walkthrough.windows.install.compiler": "Install a C++ compiler on Windows", + "walkthrough.windows.text1": "If you're doing C++ development for Windows, we recommend installing the Microsoft Visual C++ (MSVC) compiler.", + "walkthrough.windows.text2": "To install MSVC, open the VS Code terminal (CTRL + `) and paste in the following command:\r\n", + "walkthrough.windows.note1": "Note", + "walkthrough.windows.note1.text": "You can use the C++ toolset from Visual Studio Build Tools along with Visual Studio Code to compile, build, and verify any C++ codebase as long as you also have a valid Visual Studio license (either Community, Pro, or Enterprise) that you are actively using to develop that C++ codebase.", + "walkthrough.windows.verify.compiler": "Verifying the compiler installation", + "walkthrough.windows.open.command.prompt": "Open the {0} by typing 'developer' in the Windows Start menu.", + "walkthrough.windows.command.prompt.name1": "Developer Command Prompt for VS", + "walkthrough.windows.check.install": "Check your MSVC installation by typing {0} into the Developer Command Prompt for VS. You should see a copyright message with the version and basic usage description.", + "walkthrough.windows.note2": "Note", + "walkthrough.windows.note2.text": "To use MSVC from the command line or VS Code, you must run from a {0}. An ordinary shell such as {1}, {2}, or the Windows command prompt does not have the necessary path environment variables set.", + "walkthrough.windows.command.prompt.name2": "Developer Command Prompt for VS", + "walkthrough.windows.other.compilers": "Other compiler options", + "walkthrough.windows.text3": "If you're targeting Linux from Windows, check out {0}. Or, you could {1}.", + "walkthrough.windows.link.title1": "Using C++ and Windows Subsystem for Linux (WSL) in VS Code", + "walkthrough.windows.link.title2": "install GCC on Windows with MinGW" +} \ No newline at end of file