diff --git a/Extension/i18n/chs/package.i18n.json b/Extension/i18n/chs/package.i18n.json index 0cf6f4409e..28610a61a2 100644 --- a/Extension/i18n/chs/package.i18n.json +++ b/Extension/i18n/chs/package.i18n.json @@ -433,5 +433,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": "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/chs/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/chs/src/Debugger/ParsedEnvironmentFile.i18n.json index 82976b5983..0a258ca299 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": "Ignoring non-parsable lines in {0} {1}: " } \ No newline at end of file diff --git a/Extension/i18n/chs/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/chs/src/Debugger/debugAdapterDescriptorFactory.i18n.json index 95a451cb90..c42e57fa7c 100644 --- a/Extension/i18n/chs/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/chs/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": "Debugger type '{0}' is not available for non-Windows machines." } \ 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..dc18e4fafd 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": "Are you sure you want to permanently delete \"{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..1db42ae6e4 --- /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": "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/chs/src/LanguageServer/client.i18n.json b/Extension/i18n/chs/src/LanguageServer/client.i18n.json index 1c13c7d74a..5ace1fe6a1 100644 --- a/Extension/i18n/chs/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/chs/src/LanguageServer/client.i18n.json @@ -27,7 +27,7 @@ "server.crashed2": "在过去 3 分钟内,语言服务器崩溃了 5 次。它不会重新启动。", "loggingLevel.changed": "{0} 已更改为: {1}", "dismiss.button": "消除", - "diable.warnings.button": "禁用警告", + "disable.warnings.button": "Disable Warnings", "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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "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..34851b425d 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": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Task generated by Debugger.", "cannot.build.non.cpp": "无法生成和调试,因为活动文件不是 C 或 C++ 源文件。", - "starting_build": "正在启动生成...", + "starting.build": "Starting build...", "build.run.terminated": "生成运行已终止。", "build.finished.with.error": "生成已完成,但出现错误。", "build.finished.with.warnings": "生成已完成,但收到警告。", 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/commands.i18n.json b/Extension/i18n/chs/src/SSH/commands.i18n.json index c996b10b82..ebdf480e78 100644 --- a/Extension/i18n/chs/src/SSH/commands.i18n.json +++ b/Extension/i18n/chs/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "在 localForwards 中,不能同时使用 \"bindAddress\" 或 \"port\" 指定 \"localSocket\"", + "local.forward.local.conflict": "\"localSocket\" cannot be specified at the same time with \"bindAddress\" or \"port\" in localForwards", "local.forward.local.missing": "localForwards 中需要 \"port\" 或 \"localSocket\"", - "local.forward.remote.conflict": "在 localForwards 中,不能同时使用 \"host\" 或 \"hostPort\" 指定 \"remoteSocket\"", + "local.forward.remote.conflict": "\"remoteSocket\" cannot be specified at the same time with \"host\" or \"hostPort\" in localForwards", "local.forward.remote.missing": "localForwards 中需要 \"host\" 和 \"hostPort\" 或 \"remoteSocket\"" } \ 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..dbe9a477be 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": "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..37d4b0ab90 100644 --- a/Extension/i18n/chs/src/nativeStrings.i18n.json +++ b/Extension/i18n/chs/src/nativeStrings.i18n.json @@ -294,7 +294,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..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ No newline at end of file diff --git a/Extension/i18n/cht/package.i18n.json b/Extension/i18n/cht/package.i18n.json index 1b69c3fe0a..f96de829fd 100644 --- a/Extension/i18n/cht/package.i18n.json +++ b/Extension/i18n/cht/package.i18n.json @@ -433,5 +433,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": "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/cht/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/cht/src/Debugger/ParsedEnvironmentFile.i18n.json index 79bb1f8ce5..0a258ca299 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": "Ignoring non-parsable lines in {0} {1}: " } \ No newline at end of file diff --git a/Extension/i18n/cht/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/cht/src/Debugger/debugAdapterDescriptorFactory.i18n.json index b3dbcd1568..c42e57fa7c 100644 --- a/Extension/i18n/cht/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/cht/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": "Debugger type '{0}' is not available for non-Windows machines." } \ 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..11fa0a7bcd 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": "Are you sure you want to permanently delete \"{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..1db42ae6e4 --- /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": "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/cht/src/LanguageServer/client.i18n.json b/Extension/i18n/cht/src/LanguageServer/client.i18n.json index 2838697a5a..f7b9d058cd 100644 --- a/Extension/i18n/cht/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/cht/src/LanguageServer/client.i18n.json @@ -27,7 +27,7 @@ "server.crashed2": "語言伺服器在過去 3 分鐘內發生 5 次故障。將不會重新啟動。", "loggingLevel.changed": "{0} 已變更為: {1}", "dismiss.button": "關閉", - "diable.warnings.button": "停用警告", + "disable.warnings.button": "Disable Warnings", "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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "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..99b38b224c 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": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Task generated by Debugger.", "cannot.build.non.cpp": "因為作用中的檔案不是 C 或 C++ 來源檔案,所以無法建立和偵錯。", - "starting_build": "正在開始建置...", + "starting.build": "Starting build...", "build.run.terminated": "已終止建置執行。", "build.finished.with.error": "建置已完成,但發生錯誤。", "build.finished.with.warnings": "建置已完成,但出現警告。", 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/commands.i18n.json b/Extension/i18n/cht/src/SSH/commands.i18n.json index 8496e47d73..ebdf480e78 100644 --- a/Extension/i18n/cht/src/SSH/commands.i18n.json +++ b/Extension/i18n/cht/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "\"localSocket\" 不能同時與 \"bindAddress\" 或 \"port\" 在 localForwards 中指定", + "local.forward.local.conflict": "\"localSocket\" cannot be specified at the same time with \"bindAddress\" or \"port\" in localForwards", "local.forward.local.missing": "localForwards 中需要 \"port\" 或 \"localSocket\"", - "local.forward.remote.conflict": "\"remoteSocket\" 不能同時與 \"host\" 或 \"hostPort\" 在 localForwards 中指定", + "local.forward.remote.conflict": "\"remoteSocket\" cannot be specified at the same time with \"host\" or \"hostPort\" in localForwards", "local.forward.remote.missing": "localForwards 中需要 \"host\" 和 \"hostPort\" 或 \"remoteSocket\"" } \ 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..26e69bd3fc 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": "Enter password", "ssh.continue.confirmation.placeholder": "您確定要繼續嗎?", "ssh.host.key.confirmation.title": "「{0}」具有指紋「{1}」。", "continue": "繼續", 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..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ No newline at end of file diff --git a/Extension/i18n/csy/package.i18n.json b/Extension/i18n/csy/package.i18n.json index 41042a2068..67fad5e748 100644 --- a/Extension/i18n/csy/package.i18n.json +++ b/Extension/i18n/csy/package.i18n.json @@ -416,14 +416,14 @@ "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.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] (příkaz: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 +433,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..a95c8d4dd2 100644 --- a/Extension/i18n/csy/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/csy/src/LanguageServer/client.i18n.json @@ -27,7 +27,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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "Show documentation for {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..c229fc1e25 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": "Task generated by Debugger.", "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/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/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/csy/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 03ca24a6b1..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ No newline at end of file diff --git a/Extension/i18n/deu/package.i18n.json b/Extension/i18n/deu/package.i18n.json index 90492b7ebf..f974c4e8b2 100644 --- a/Extension/i18n/deu/package.i18n.json +++ b/Extension/i18n/deu/package.i18n.json @@ -416,11 +416,11 @@ "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.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](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 +433,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": "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/deu/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/deu/src/Debugger/ParsedEnvironmentFile.i18n.json index 2221d113c3..0a258ca299 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": "Ignoring non-parsable lines in {0} {1}: " } \ No newline at end of file diff --git a/Extension/i18n/deu/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/deu/src/Debugger/debugAdapterDescriptorFactory.i18n.json index 55b61ef953..c42e57fa7c 100644 --- a/Extension/i18n/deu/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/deu/src/Debugger/debugAdapterDescriptorFactory.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "debugger.not.available": "Der Debuggertyp \"{0}\" ist für Nicht-Windows-Computer nicht verfügbar." + "debugger.not.available": "Debugger type '{0}' is not available for non-Windows machines." } \ No newline at end of file diff --git a/Extension/i18n/deu/src/Debugger/extension.i18n.json b/Extension/i18n/deu/src/Debugger/extension.i18n.json index fb49fdb917..8e59276a8c 100644 --- a/Extension/i18n/deu/src/Debugger/extension.i18n.json +++ b/Extension/i18n/deu/src/Debugger/extension.i18n.json @@ -14,5 +14,5 @@ "select.ssh.config.file": "Wählen Sie eine SSH-Konfigurationsdatei aus", "yes": "Ja", "no": "Nein", - "ssh.target.delete.confirmation": "Möchten Sie „{0}“ endgültig löschen?" + "ssh.target.delete.confirmation": "Are you sure you want to permanently delete \"{0}\"?" } \ 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..1db42ae6e4 --- /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": "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/deu/src/LanguageServer/client.i18n.json b/Extension/i18n/deu/src/LanguageServer/client.i18n.json index 52064d258b..41a3c02054 100644 --- a/Extension/i18n/deu/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/deu/src/LanguageServer/client.i18n.json @@ -27,7 +27,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": "Disable Warnings", "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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "Show documentation for {0}" } \ 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..6fa0a6f10a 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": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Task generated by Debugger.", "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": "Starting build...", "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/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..704da179d1 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\" cannot be specified at the same time with \"bindAddress\" or \"port\" in localForwards", "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\" cannot be specified at the same time with \"host\" or \"hostPort\" in localForwards", "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..1fc8778441 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": "Enter password", "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/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/deu/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 2e9fd8fab9..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ 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..71f11ea570 100644 --- a/Extension/i18n/esn/package.i18n.json +++ b/Extension/i18n/esn/package.i18n.json @@ -433,5 +433,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": "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/esn/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/esn/src/Debugger/ParsedEnvironmentFile.i18n.json index 213380f187..0a258ca299 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": "Ignoring non-parsable lines in {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..c42e57fa7c 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": "Debugger type '{0}' is not available for non-Windows machines." } \ 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..8712405f22 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": "Are you sure you want to permanently delete \"{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..1db42ae6e4 --- /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": "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/esn/src/LanguageServer/client.i18n.json b/Extension/i18n/esn/src/LanguageServer/client.i18n.json index 6c47f880b7..951d2f374a 100644 --- a/Extension/i18n/esn/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/esn/src/LanguageServer/client.i18n.json @@ -27,7 +27,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": "Disable Warnings", "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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "Show documentation for {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..4d89edbd43 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": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Task generated by Debugger.", "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": "Starting build...", "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/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..6168e371da 100644 --- a/Extension/i18n/esn/src/SSH/commands.i18n.json +++ b/Extension/i18n/esn/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "\"localSocket\" no se puede especificar al mismo tiempo con \"bindAddress\" o \"port\" en localForwards", + "local.forward.local.conflict": "\"localSocket\" cannot be specified at the same time with \"bindAddress\" or \"port\" in 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": "\"remoteSocket\" cannot be specified at the same time with \"host\" or \"hostPort\" in 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..a490566419 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": "Enter password", "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/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/esn/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 99e015cc4b..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ 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..471d151494 100644 --- a/Extension/i18n/fra/package.i18n.json +++ b/Extension/i18n/fra/package.i18n.json @@ -420,7 +420,7 @@ "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 +433,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": "Replace the macro invocation with the expanded code." +} \ 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..0a258ca299 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": "Ignoring non-parsable lines in {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..c42e57fa7c 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": "Debugger type '{0}' is not available for non-Windows machines." } \ 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..9ab64e2a30 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": "Are you sure you want to permanently delete \"{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..1db42ae6e4 --- /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": "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/fra/src/LanguageServer/client.i18n.json b/Extension/i18n/fra/src/LanguageServer/client.i18n.json index ef35cba80a..a658330c9b 100644 --- a/Extension/i18n/fra/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/fra/src/LanguageServer/client.i18n.json @@ -27,7 +27,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": "Disable Warnings", "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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "Show documentation for {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..6c850a62fe 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": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Task generated by Debugger.", "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": "Starting build...", "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/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..b1883348f4 100644 --- a/Extension/i18n/fra/src/SSH/commands.i18n.json +++ b/Extension/i18n/fra/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // 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": "\"localSocket\" cannot be specified at the same time with \"bindAddress\" or \"port\" in 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.conflict": "\"remoteSocket\" cannot be specified at the same time with \"host\" or \"hostPort\" in localForwards", "local.forward.remote.missing": "« host » et « hostPort » ou « remoteSocket » requis dans localForwards" } \ No newline at end of file diff --git a/Extension/i18n/fra/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/fra/src/SSH/sshCommandRunner.i18n.json index b404f1d968..3dfc6ac983 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": "Enter password", "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/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/fra/walkthrough/installcompiler/install-clang-macos.md.i18n.json index ee614df0df..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ No newline at end of file diff --git a/Extension/i18n/ita/package.i18n.json b/Extension/i18n/ita/package.i18n.json index d4e4bb8651..5ec7fd93ab 100644 --- a/Extension/i18n/ita/package.i18n.json +++ b/Extension/i18n/ita/package.i18n.json @@ -416,11 +416,11 @@ "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.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] (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 +433,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": "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/ita/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/ita/src/Debugger/ParsedEnvironmentFile.i18n.json index 0be898ad9a..0a258ca299 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": "Ignoring non-parsable lines in {0} {1}: " } \ No newline at end of file diff --git a/Extension/i18n/ita/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/ita/src/Debugger/debugAdapterDescriptorFactory.i18n.json index ab3d0476b5..c42e57fa7c 100644 --- a/Extension/i18n/ita/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/ita/src/Debugger/debugAdapterDescriptorFactory.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "debugger.not.available": "Il tipo di debugger '{0}' non è disponibile per computer non Windows." + "debugger.not.available": "Debugger type '{0}' is not available for non-Windows machines." } \ 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..9144a6d2db 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": "Are you sure you want to permanently delete \"{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..1db42ae6e4 --- /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": "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/ita/src/LanguageServer/client.i18n.json b/Extension/i18n/ita/src/LanguageServer/client.i18n.json index 68322d44ef..a675beec7f 100644 --- a/Extension/i18n/ita/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/ita/src/LanguageServer/client.i18n.json @@ -27,7 +27,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": "Disable Warnings", "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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "Show documentation for {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..3fc5413388 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": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Task generated by 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": "Starting build...", "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/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..3b288e48a5 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": "\"localSocket\" cannot be specified at the same time with \"bindAddress\" or \"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": "\"remoteSocket\" cannot be specified at the same time with \"host\" or \"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..63e18440ea 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": "Enter 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/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/ita/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 62b43a985b..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ No newline at end of file diff --git a/Extension/i18n/jpn/package.i18n.json b/Extension/i18n/jpn/package.i18n.json index a8a8aecf8b..0454f28145 100644 --- a/Extension/i18n/jpn/package.i18n.json +++ b/Extension/i18n/jpn/package.i18n.json @@ -433,5 +433,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": "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/jpn/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/jpn/src/Debugger/ParsedEnvironmentFile.i18n.json index 1024cc76c1..0a258ca299 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": "Ignoring non-parsable lines in {0} {1}: " } \ No newline at end of file diff --git a/Extension/i18n/jpn/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/jpn/src/Debugger/debugAdapterDescriptorFactory.i18n.json index c36ada6146..c42e57fa7c 100644 --- a/Extension/i18n/jpn/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/jpn/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": "Debugger type '{0}' is not available for non-Windows machines." } \ No newline at end of file diff --git a/Extension/i18n/jpn/src/Debugger/extension.i18n.json b/Extension/i18n/jpn/src/Debugger/extension.i18n.json index 7cf5e99a21..65b460a7a2 100644 --- a/Extension/i18n/jpn/src/Debugger/extension.i18n.json +++ b/Extension/i18n/jpn/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": "Are you sure you want to permanently delete \"{0}\"?" } \ 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..1db42ae6e4 --- /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": "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/jpn/src/LanguageServer/client.i18n.json b/Extension/i18n/jpn/src/LanguageServer/client.i18n.json index cb8c105d10..aa6befb14c 100644 --- a/Extension/i18n/jpn/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/jpn/src/LanguageServer/client.i18n.json @@ -27,7 +27,7 @@ "server.crashed2": "言語サーバーが過去 3 分間に 5 回クラッシュしました。再起動されません。", "loggingLevel.changed": "{0} が次に変更されました: {1}", "dismiss.button": "消去", - "diable.warnings.button": "警告を無効にする", + "disable.warnings.button": "Disable Warnings", "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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "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..4538319eed 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": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Task generated by Debugger.", "cannot.build.non.cpp": "アクティブ ファイルが C または C++ ソース ファイルではないため、ビルドおよびデバッグできません。", - "starting_build": "ビルドを開始しています...", + "starting.build": "Starting build...", "build.run.terminated": "ビルドの実行が終了しました。", "build.finished.with.error": "ビルドが完了しましたが、エラーが発生しました。", "build.finished.with.warnings": "ビルドが完了しましたが、警告が発生しました。", 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/commands.i18n.json b/Extension/i18n/jpn/src/SSH/commands.i18n.json index e6171dfa78..065c433ec9 100644 --- a/Extension/i18n/jpn/src/SSH/commands.i18n.json +++ b/Extension/i18n/jpn/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "localForwards で \"bindAddress\" または \"port\" と同時に \"localSocket\" を指定することはできません", + "local.forward.local.conflict": "\"localSocket\" cannot be specified at the same time with \"bindAddress\" or \"port\" in localForwards", "local.forward.local.missing": "\"port\" または \"localSocket\" は localForwards で必要です", - "local.forward.remote.conflict": "localForwards で \"host\" または \"hostPort\" と同時に \"remoteSocket\" を指定することはできません", + "local.forward.remote.conflict": "\"remoteSocket\" cannot be specified at the same time with \"host\" or \"hostPort\" in localForwards", "local.forward.remote.missing": "\"host\" および \"hostPort\"、または \"remoteSocket\" が localForwards で必要です" } \ 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..1467e84be4 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": "Enter password", "ssh.continue.confirmation.placeholder": "続行しますか?", "ssh.host.key.confirmation.title": "\"{0}\" のフィンガープリントは \"{1}\" です。", "continue": "続行", 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..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ No newline at end of file diff --git a/Extension/i18n/kor/package.i18n.json b/Extension/i18n/kor/package.i18n.json index d97057fc5d..fc759a0b9f 100644 --- a/Extension/i18n/kor/package.i18n.json +++ b/Extension/i18n/kor/package.i18n.json @@ -433,5 +433,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": "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/kor/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/kor/src/Debugger/ParsedEnvironmentFile.i18n.json index 0886012f73..0a258ca299 100644 --- a/Extension/i18n/kor/src/Debugger/ParsedEnvironmentFile.i18n.json +++ b/Extension/i18n/kor/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": "Ignoring non-parsable lines in {0} {1}: " } \ 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..c42e57fa7c 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": "Debugger type '{0}' is not available for non-Windows machines." } \ 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..d974f311d5 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": "Are you sure you want to permanently delete \"{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..1db42ae6e4 --- /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": "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/kor/src/LanguageServer/client.i18n.json b/Extension/i18n/kor/src/LanguageServer/client.i18n.json index 0754d73ea5..cf75667195 100644 --- a/Extension/i18n/kor/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/kor/src/LanguageServer/client.i18n.json @@ -27,7 +27,7 @@ "server.crashed2": "지난 3분 동안 언어 서버에서 크래시가 5회 발생했습니다. 다시 시작되지 않습니다.", "loggingLevel.changed": "{0}이(가) {1}(으)로 변경되었습니다.", "dismiss.button": "해제", - "diable.warnings.button": "경고 사용 안 함", + "disable.warnings.button": "Disable Warnings", "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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "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..a7f7fc62de 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": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Task generated by Debugger.", "cannot.build.non.cpp": "활성 파일이 C 또는 C++ 소스 파일이 아니므로 빌드 및 디버그할 수 없습니다.", - "starting_build": "빌드를 시작하는 중...", + "starting.build": "Starting build...", "build.run.terminated": "빌드 실행이 종료되었습니다.", "build.finished.with.error": "빌드가 완료되었지만, 오류가 발생했습니다.", "build.finished.with.warnings": "빌드가 완료되었지만, 경고가 발생했습니다.", 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/commands.i18n.json b/Extension/i18n/kor/src/SSH/commands.i18n.json index 3bd3cab5ba..561b01ce88 100644 --- a/Extension/i18n/kor/src/SSH/commands.i18n.json +++ b/Extension/i18n/kor/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "\"localSocket\"은 localForwards의 \"bindAddress\" 또는 \"port\"와 동시에 지정할 수 없습니다.", + "local.forward.local.conflict": "\"localSocket\" cannot be specified at the same time with \"bindAddress\" or \"port\" in localForwards", "local.forward.local.missing": "localForwards에 \"port\" 또는 \"localSocket\"이 필요합니다.", - "local.forward.remote.conflict": "\"remoteSocket\"은 localForwards에서 \"host\" 또는 \"hostPort\"와 동시에 지정할 수 없습니다.", + "local.forward.remote.conflict": "\"remoteSocket\" cannot be specified at the same time with \"host\" or \"hostPort\" in localForwards", "local.forward.remote.missing": "\"host\" 및 \"hostPort\" 또는 \"remoteSocket\"이 localForwards에 필요합니다." } \ 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..8cb5617c8c 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": "Enter password", "ssh.continue.confirmation.placeholder": "액세스를 여시겠습니까?", "ssh.host.key.confirmation.title": "\"{0}\"에 \"{1}\" 지문이 있습니다.", "continue": "계속하기", 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..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ No newline at end of file diff --git a/Extension/i18n/plk/package.i18n.json b/Extension/i18n/plk/package.i18n.json index 86eb9180b8..d713f316c3 100644 --- a/Extension/i18n/plk/package.i18n.json +++ b/Extension/i18n/plk/package.i18n.json @@ -416,14 +416,14 @@ "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.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](polecenie: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 +433,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": "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/plk/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/plk/src/Debugger/ParsedEnvironmentFile.i18n.json index f6c27b0ff2..0a258ca299 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": "Ignoring non-parsable lines in {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..c42e57fa7c 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": "Debugger type '{0}' is not available for non-Windows machines." } \ 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..536f5ecbd2 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": "Are you sure you want to permanently delete \"{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..1db42ae6e4 --- /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": "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/plk/src/LanguageServer/client.i18n.json b/Extension/i18n/plk/src/LanguageServer/client.i18n.json index 1d3dd0c361..347b5620a3 100644 --- a/Extension/i18n/plk/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/plk/src/LanguageServer/client.i18n.json @@ -27,7 +27,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": "Disable Warnings", "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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "Show documentation for {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..e405ec9fb2 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": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Task generated by Debugger.", "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": "Starting build...", "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/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..9f7ffd3621 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": "\"localSocket\" cannot be specified at the same time with \"bindAddress\" or \"port\" in 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": "\"remoteSocket\" cannot be specified at the same time with \"host\" or \"hostPort\" in 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..8757e5db14 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": "Enter password", "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/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/plk/walkthrough/installcompiler/install-clang-macos.md.i18n.json index 1c7c59828b..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ No newline at end of file diff --git a/Extension/i18n/ptb/package.i18n.json b/Extension/i18n/ptb/package.i18n.json index 81da014fd0..4a875ab28e 100644 --- a/Extension/i18n/ptb/package.i18n.json +++ b/Extension/i18n/ptb/package.i18n.json @@ -420,10 +420,10 @@ "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 +433,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": "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/ptb/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/ptb/src/Debugger/ParsedEnvironmentFile.i18n.json index 75a924f114..0a258ca299 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": "Ignoring non-parsable lines in {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..c42e57fa7c 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": "Debugger type '{0}' is not available for non-Windows machines." } \ No newline at end of file diff --git a/Extension/i18n/ptb/src/Debugger/extension.i18n.json b/Extension/i18n/ptb/src/Debugger/extension.i18n.json index 66d5ee9494..a8c9ab6bf4 100644 --- a/Extension/i18n/ptb/src/Debugger/extension.i18n.json +++ b/Extension/i18n/ptb/src/Debugger/extension.i18n.json @@ -14,5 +14,5 @@ "select.ssh.config.file": "Abrir arquivo de configuração SSH", "yes": "Sim", "no": "Não", - "ssh.target.delete.confirmation": "Tem certeza de que deseja excluir permanentemente \"{0}\"?" + "ssh.target.delete.confirmation": "Are you sure you want to permanently delete \"{0}\"?" } \ 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..1db42ae6e4 --- /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": "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/ptb/src/LanguageServer/client.i18n.json b/Extension/i18n/ptb/src/LanguageServer/client.i18n.json index d4f68b6466..6c2baf98bb 100644 --- a/Extension/i18n/ptb/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/ptb/src/LanguageServer/client.i18n.json @@ -27,7 +27,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": "Disable Warnings", "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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "Show documentation for {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..13a1d9f940 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": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Task generated by Debugger.", "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": "Starting 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/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..e85adbdead 100644 --- a/Extension/i18n/ptb/src/SSH/commands.i18n.json +++ b/Extension/i18n/ptb/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // 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\" cannot be specified at the same time with \"bindAddress\" or \"port\" in 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.conflict": "\"remoteSocket\" cannot be specified at the same time with \"host\" or \"hostPort\" in localForwards", "local.forward.remote.missing": "\"host\" e \"hostPort\" ou \"remoteSocket\" necessários em localForwards" } \ No newline at end of file diff --git a/Extension/i18n/ptb/src/SSH/sshCommandRunner.i18n.json b/Extension/i18n/ptb/src/SSH/sshCommandRunner.i18n.json index c35d64f584..d685ec7537 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": "Enter password", "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/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/ptb/walkthrough/installcompiler/install-clang-macos.md.i18n.json index c9082d7993..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ No newline at end of file diff --git a/Extension/i18n/rus/package.i18n.json b/Extension/i18n/rus/package.i18n.json index 3213768c19..6e9ced86c7 100644 --- a/Extension/i18n/rus/package.i18n.json +++ b/Extension/i18n/rus/package.i18n.json @@ -433,5 +433,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": "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/rus/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/rus/src/Debugger/ParsedEnvironmentFile.i18n.json index 11a2edf7c0..0a258ca299 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": "Ignoring non-parsable lines in {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..c42e57fa7c 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": "Debugger type '{0}' is not available for non-Windows machines." } \ 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..e03d81719b 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": "Are you sure you want to permanently delete \"{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..1db42ae6e4 --- /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": "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/rus/src/LanguageServer/client.i18n.json b/Extension/i18n/rus/src/LanguageServer/client.i18n.json index 00026caef1..e7395daacf 100644 --- a/Extension/i18n/rus/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/rus/src/LanguageServer/client.i18n.json @@ -27,7 +27,7 @@ "server.crashed2": "Языковой сервер аварийно завершил работу 5 раз за последние 3 минуты. Он не будет перезапущен.", "loggingLevel.changed": "{0} был изменен на: {1}", "dismiss.button": "Закрыть", - "diable.warnings.button": "Отключить предупреждения", + "disable.warnings.button": "Disable Warnings", "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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "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..5eaae6c70d 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": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Task generated by Debugger.", "cannot.build.non.cpp": "Не удается выполнить сборку и отладку, так как активный файл не является исходным файлом C или C++.", - "starting_build": "Запуск сборки…", + "starting.build": "Starting build...", "build.run.terminated": "Запуск сборки был прерван.", "build.finished.with.error": "Сборка завершена с ошибками.", "build.finished.with.warnings": "Сборка завершена с предупреждениями.", 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/commands.i18n.json b/Extension/i18n/rus/src/SSH/commands.i18n.json index 6cefd417f4..7e52610f20 100644 --- a/Extension/i18n/rus/src/SSH/commands.i18n.json +++ b/Extension/i18n/rus/src/SSH/commands.i18n.json @@ -4,8 +4,8 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "local.forward.local.conflict": "\"localSocket\" не может быть указан одновременно с \"bindAddress\" или \"port\" в localForwards", + "local.forward.local.conflict": "\"localSocket\" cannot be specified at the same time with \"bindAddress\" or \"port\" in localForwards", "local.forward.local.missing": "В localForwards требуется \"port\" или \"localSocket\"", - "local.forward.remote.conflict": "\"remoteSocket\" не может быть указан одновременно с \"host\" или \"hostPort\" в localForwards", + "local.forward.remote.conflict": "\"remoteSocket\" cannot be specified at the same time with \"host\" or \"hostPort\" in localForwards", "local.forward.remote.missing": "В localForwards требуются \"host\" и \"hostPort\" или \"remoteSocket\"" } \ 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..4bac92aa89 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": "Enter password", "ssh.continue.confirmation.placeholder": "Вы действительно хотите продолжить?", "ssh.host.key.confirmation.title": "«{0}» имеет отпечаток «{1}».", "continue": "Продолжить", 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..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ No newline at end of file diff --git a/Extension/i18n/trk/package.i18n.json b/Extension/i18n/trk/package.i18n.json index 672cff2355..8593692e8c 100644 --- a/Extension/i18n/trk/package.i18n.json +++ b/Extension/i18n/trk/package.i18n.json @@ -416,14 +416,14 @@ "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.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](komut: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 +433,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": "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/trk/src/Debugger/ParsedEnvironmentFile.i18n.json b/Extension/i18n/trk/src/Debugger/ParsedEnvironmentFile.i18n.json index 53054ca584..0a258ca299 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": "Ignoring non-parsable lines in {0} {1}: " } \ No newline at end of file diff --git a/Extension/i18n/trk/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/trk/src/Debugger/debugAdapterDescriptorFactory.i18n.json index 5eb31f8750..c42e57fa7c 100644 --- a/Extension/i18n/trk/src/Debugger/debugAdapterDescriptorFactory.i18n.json +++ b/Extension/i18n/trk/src/Debugger/debugAdapterDescriptorFactory.i18n.json @@ -4,5 +4,5 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "debugger.not.available": "'{0}' hata ayıklayıcısı türü, Windows dışı makinelerde kullanılamaz." + "debugger.not.available": "Debugger type '{0}' is not available for non-Windows machines." } \ No newline at end of file diff --git a/Extension/i18n/trk/src/Debugger/extension.i18n.json b/Extension/i18n/trk/src/Debugger/extension.i18n.json index 0423c83894..6de1dc4d80 100644 --- a/Extension/i18n/trk/src/Debugger/extension.i18n.json +++ b/Extension/i18n/trk/src/Debugger/extension.i18n.json @@ -14,5 +14,5 @@ "select.ssh.config.file": "Bir SSH yapılandırma dosyası seçin...", "yes": "Evet", "no": "Hayır", - "ssh.target.delete.confirmation": "\"{0}\" öğesini kalıcı olarak silmek istediğinizden emin misiniz?" + "ssh.target.delete.confirmation": "Are you sure you want to permanently delete \"{0}\"?" } \ 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..1db42ae6e4 --- /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": "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/trk/src/LanguageServer/client.i18n.json b/Extension/i18n/trk/src/LanguageServer/client.i18n.json index 7ef538d626..dea39b3fd1 100644 --- a/Extension/i18n/trk/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/trk/src/LanguageServer/client.i18n.json @@ -27,7 +27,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": "Disable Warnings", "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..47e077bbfb 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": "Fix all code analysis problems", + "clear.all.code.analysis.problems": "Clear all code analysis problems", + "fix.all.type.problems": "Fix all {0} problems", + "disable.all.type.problems": "Disable all {0} problems", + "clear.all.type.problems": "Clear all {0} problems", + "clear.this.problem": "Clear this {0} problem", + "fix.this.problem": "Fix this {0} problem", + "show.documentation.for": "Show documentation for {0}" } \ 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..5d56ba9fe8 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": "build active file", + "compiler.details": "compiler:", + "task.generated.by.debugger": "Task generated by Debugger.", "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": "Starting build...", "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/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..e9ac217d10 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": "\"localSocket\" cannot be specified at the same time with \"bindAddress\" or \"port\" in localForwards", "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": "\"remoteSocket\" cannot be specified at the same time with \"host\" or \"hostPort\" in localForwards", "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..83e2886d2a 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": "Enter password", "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/walkthrough/installcompiler/install-clang-macos.md.i18n.json b/Extension/i18n/trk/walkthrough/installcompiler/install-clang-macos.md.i18n.json index d14b6c0b9f..0039d7892a 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": "Install a C++ compiler on macOS", + "walkthrough.mac.text1": "If you're doing C++ development for macOS, we recommend installing the Clang compiler. All you need to do is run the following command in a Terminal window(Ctrl+Shift+ `) to install the command line developer tools:", + "walkthrough.mac.text2": "Then, to verify that clang is installed, run the following command in a Terminal window. You should see a message with information about the version of Clang you're using." } \ No newline at end of file