diff --git a/Extension/i18n/chs/package.i18n.json b/Extension/i18n/chs/package.i18n.json
index ab4cb058e..a37e45f59 100644
--- a/Extension/i18n/chs/package.i18n.json
+++ b/Extension/i18n/chs/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "安装 C++ 编译器",
"c_cpp.command.rescanCompilers.title": "重新扫描编译器",
"c_cpp.command.switchHeaderSource.title": "切换标头/源",
+ "c_cpp.command.selectTranslationUnit.title": "选择翻译单元...",
"c_cpp.command.enableErrorSquiggles.title": "启用错误波形曲线",
"c_cpp.command.disableErrorSquiggles.title": "禁用错误波形曲线",
"c_cpp.command.toggleDimInactiveRegions.title": "切换非活动区域着色",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "控制扩展是否将报告在 `c_cpp_properties.json` 中检测到的错误。",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "未设置 `customConfigurationVariables` 时要在配置中使用的值,或 `${default}` 在 `customConfigurationVariables` 中作为键存在时要插入的值。",
"c_cpp.configuration.default.dotConfig.markdownDescription": "`dotConfig` 未指定或设置为 `${default}` 时要在配置中使用的值。",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "`recursiveIncludes.reduce` 未指定或设置为 `${default}` 时要在配置中使用的值。",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "`recursiveIncludes.priority` 未指定或设置为 `${default}` 时要在配置中使用的值。",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "`recursiveIncludes.order` 未指定或设置为 `${default}` 时要在配置中使用的值。",
"c_cpp.configuration.experimentalFeatures.description": "控制“实验性”功能是否可用。",
@@ -332,6 +332,7 @@
"c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "如果为 true,则禁用集成终端支持所需的调试对象控制台重定向。",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "传递到调试引擎的可选源文件映射。示例: `{ \"<原始源路径>\": \"<当前源路径>\" }`。",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "要将调试程序附加到的可选进程 ID。使用 `${command:pickProcess}` 获取要附加到的本地运行进程的列表。请注意,一些平台需要管理员权限才能附加到进程。",
+ "c_cpp.debuggers.processFilter.description": "可选正则表达式,用于按标签、描述或详细信息匹配远程附加候选项。如果恰好匹配一个进程,调试程序会自动附加。如果匹配多个进程,则进程选取器仅显示匹配的条目。如果没有进程匹配,则显示完整的进程选取器。如果正则表达式无效,会报告错误。",
"c_cpp.debuggers.program.attach.markdownDescription": "程序可执行文件的完整路径。调试器将搜索与此可执行文件路径匹配的正在运行的进程并附加到该进程。如果多个进程匹配,将显示选择提示。加载附加进程的调试符号需要此字段。",
"c_cpp.debuggers.symbolSearchPath.description": "用于搜索符号(即 pdb 或 .so)文件的目录的分号分隔列表。示例: \"c:\\dir1;c:\\dir2\"。",
"c_cpp.debuggers.dumpPath.description": "指定程序的转储文件的可选完整路径。例如: \"c:\\temp\\app.dmp\"。默认为 null。",
@@ -389,7 +390,7 @@
"c_cpp.taskDefinitions.detail.description": "任务的其他详细信息。",
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.description": "相同源树的当前路径和编译时路径。EditorPath 下的文件会映射到 CompileTimePath 路径以进行断点匹配,并在显示 stacktrace 位置时,从 CompileTimePath 映射到 EditorPath。",
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.editorPath.description": "编辑器将使用的源树的路径。",
- "c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "如果此条目仅用于堆栈帧位置映射,则设为 false。如果在指定断点位置时也需要使用此条目,则设为 true。",
+ "c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "如果此条目仅用于堆栈帧位置映射,则为设为 false。如果在指定断点位置时也需要使用此条目,则设为 true",
"c_cpp.debuggers.symbolOptions.description": "用于控制如何找到和加载符号(.pdb 文件)的选项。",
"c_cpp.debuggers.unknownBreakpointHandling.description": "控制在命中时如何处理(通常通过原始 GDB 命令)外部设置的断点。\n允许的值为 \"throw\" (好像应用程序抛出了异常)和 \"stop\" (只会暂停调试会话)。默认值为 \"throw\"。",
"c_cpp.debuggers.debuginfod.description": "控制 GDB 的 debuginfod 行为,以从 debuginfod 服务器下载调试符号。",
diff --git a/Extension/i18n/chs/src/Debugger/processFilter.i18n.json b/Extension/i18n/chs/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..11139e58b
--- /dev/null
+++ b/Extension/i18n/chs/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "{0} 正则表达式无效: {1}"
+}
diff --git a/Extension/i18n/chs/src/LanguageServer/extension.i18n.json b/Extension/i18n/chs/src/LanguageServer/extension.i18n.json
index 2696c4998..5411e85d0 100644
--- a/Extension/i18n/chs/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/chs/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "了解如何使用 vcpkg 为此标头安装库",
"copy.vcpkg.command": "将用于安装“{0}”的 vcpkg 命令复制到剪贴板",
"on.disabled.command": "当 `C_Cpp.intelliSenseEngine` 设置为 `disabled` 时,无法执行与 IntelliSense 相关的命令。",
+ "find.translation.units": "正在查找翻译单元...",
+ "no.translation.units.found": "未找到活动文件的翻译单元。",
+ "current.translation.unit": "当前翻译单元",
+ "select.translation.unit": "选择翻译单元",
+ "select.translation.unit.placeholder": "选择一个源文件作为翻译单元",
"switch.header.source": "正在切换标头/源...",
"client.not.found": "未找到客户端",
"ok": "确定",
diff --git a/Extension/i18n/chs/src/nativeStrings.i18n.json b/Extension/i18n/chs/src/nativeStrings.i18n.json
index 95a4af0aa..0aa8a01b9 100644
--- a/Extension/i18n/chs/src/nativeStrings.i18n.json
+++ b/Extension/i18n/chs/src/nativeStrings.i18n.json
@@ -434,5 +434,7 @@
"check_timed_out": "等待 {0} 分析完成时超时",
"failed_to_open_browse_db_lock_file": "未能打开浏览数据库锁定文件: {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "未能锁定浏览数据库锁定文件: {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "浏览数据库已禁用,因为其存储位置不支持 SQLite WAL 共享内存。将 browse.databaseFilename 设置为本地路径。"
+ "browse_database_disabled_incompatible_storage": "浏览数据库已禁用,因为其存储位置不支持 SQLite WAL 共享内存。将 browse.databaseFilename 设置为本地路径。",
+ "selected_translation_unit_not_include_file_previous": "所选翻译单元“{0}”不包含“{1}”。如果之前的翻译单元仍然可用,IntelliSense 将还原它;否则,将使用“{1}”作为仅包含头文件的翻译单元。",
+ "selected_translation_unit_not_include_file_header_only": "所选翻译单元“{0}”不包含“{1}”。没有可用的之前的翻译单元,因此 IntelliSense 将使用“{1}”作为仅包含头文件的翻译单元。"
}
diff --git a/Extension/i18n/chs/ui/settings.html.i18n.json b/Extension/i18n/chs/ui/settings.html.i18n.json
index 9aacbe225..a6ec13952 100644
--- a/Extension/i18n/chs/ui/settings.html.i18n.json
+++ b/Extension/i18n/chs/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "如果为 {0} (或已勾选),则标记分析器将仅分析在 {1} 中由源文件直接或间接包含的代码文件。如果为 {2} (或未选中),标记分析器将分析在 {3} 列表内指定路径中找到的所有代码文件。",
"database.filename": "浏览: 数据库文件名",
"database.filename.description": "所生成的符号数据库的路径。这指示扩展将标记分析器的符号数据库保存在工作区默认存储位置以外的其他位置。如果指定了相对路径,则它将相对于工作区的默认存储位置(而不是工作区文件夹本身)。{0} 变量可用于指定相对于工作区文件夹的路径(例如 {1})。",
- "recursiveIncludes.reduce": "递归包括: 缩减",
- "recursiveIncludes.reduce.description": "设置为 {0} 可将提供给 IntelliSense 的递归包含路径数减少到仅限当前由 #include 语句引用的路径。这需要首先分析文件以确定包含哪些文件。设置为 {1} 可将所有递归包含路径提供给 IntelliSense。当涉及到大量递归包含路径时,减少递归包含路径的数量可能会提高 IntelliSense 性能。如果不减少递归包含路径的数量,则可以通过避免需要分析文件以确定要提供的包含路径来提高 IntelliSense 性能。",
"recursiveIncludes.priority": "递归包括: 优先级",
"recursiveIncludes.priority.description": "递归包含路径的优先级。如果设置为 {0},则将在系统包含路径之前搜索递归包含路径。如果设置为 {1},则将在系统包含路径之后搜索递归包含路径。",
"recursiveIncludes.order": "递归包括: 顺序",
diff --git a/Extension/i18n/cht/package.i18n.json b/Extension/i18n/cht/package.i18n.json
index 995ff4dea..760e1f119 100644
--- a/Extension/i18n/cht/package.i18n.json
+++ b/Extension/i18n/cht/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "安裝 C++ 編譯器",
"c_cpp.command.rescanCompilers.title": "掃描編譯器",
"c_cpp.command.switchHeaderSource.title": "切換標頭/來源",
+ "c_cpp.command.selectTranslationUnit.title": "選取翻譯單位...",
"c_cpp.command.enableErrorSquiggles.title": "啟用錯誤波浪線",
"c_cpp.command.disableErrorSquiggles.title": "停用錯誤波浪線",
"c_cpp.command.toggleDimInactiveRegions.title": "切換非使用中的區域著色",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "控制延伸模組是否會回報 `c_cpp_properties.json` 中偵測到的錯誤。",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "當未設定 `customConfigurationVariables` 時要在組態中使用的值,或當 `${default}` 在 `customConfigurationVariables` 中顯示為索引鍵時要插入的值。",
"c_cpp.configuration.default.dotConfig.markdownDescription": "當 `dotConfig` 未指定或設定為 `${default}` 時,要在組態中使用的值。",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "當 `recursiveIncludes.reduce` 未指定或設定為 `${default}` 時,要在組態中使用的值。",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "當 `recursiveIncludes.priority` 未指定或設定為 `${default}` 時,要在組態中使用的值。",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "當 `recursiveIncludes.order` 未指定或設定為 `${default}` 時,要在組態中使用的值。",
"c_cpp.configuration.experimentalFeatures.description": "控制「實驗性」功能是否可用。",
@@ -332,6 +332,7 @@
"c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "若為 true,則停用整合式終端機支援需要的偵錯項目主控台重新導向。",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "傳遞至偵錯引擎的選擇性來源檔案對應。範例: `{ \"<原始來源路徑>\": \"<目前來源路徑>\" }`。",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "要附加偵錯工具的選擇性處理序識別碼。使用 `${command:pickProcess}` 可取得要附加的本機執行中處理序清單。請注意,某些平台需要系統管理員權限才能附加至處理序。",
+ "c_cpp.debuggers.processFilter.description": "用於依標籤、描述或詳細資料比對遠端附加候選項的選用規則運算式。如果只有一個處理序符合,偵錯工具就會自動附加。如果有多個處理序符合,系統只會顯示符合的項目供您選取。如果沒有處理序符合,則會顯示完整的處理序選擇器。無效的規則運算式會回報錯誤。",
"c_cpp.debuggers.program.attach.markdownDescription": "程式可執行檔的完整路徑。偵錯工具會搜尋符合此可執行路徑的執行中處理序,並連結至該處理序。如果有多個處理序相符,將會顯示選取提示。這是載入已連結處理序之偵錯符號的必要欄位。",
"c_cpp.debuggers.symbolSearchPath.description": "要用於搜尋符號 (即 pdb 或 .so) 檔案的目錄清單 (以分號分隔)。範例: \"c:\\dir1;c:\\dir2\"。",
"c_cpp.debuggers.dumpPath.description": "指定程式之傾印檔案的選擇性完整路徑。範例: \"c:\\temp\\app.dmp\"。預設為 null。",
diff --git a/Extension/i18n/cht/src/Debugger/processFilter.i18n.json b/Extension/i18n/cht/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..30188a913
--- /dev/null
+++ b/Extension/i18n/cht/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "無效的 {0} 規則運算式: {1}"
+}
diff --git a/Extension/i18n/cht/src/LanguageServer/devcmd.i18n.json b/Extension/i18n/cht/src/LanguageServer/devcmd.i18n.json
index 2d59ab5c9..4c31da49a 100644
--- a/Extension/i18n/cht/src/LanguageServer/devcmd.i18n.json
+++ b/Extension/i18n/cht/src/LanguageServer/devcmd.i18n.json
@@ -5,7 +5,7 @@
// Do not edit this file. It is machine generated.
{
"no.context.provided": "未提供內容",
- "not.windows": "“設定 Visual Studio 開發人員環境”命令僅可在 Windows 使用",
+ "not.windows": "\"設定 Visual Studio 開發人員環境\" 命令僅可在 Windows 使用",
"error.no.vs": "找不到包含 C++ 編譯器的 Visual Studio 安裝",
"operation.cancelled": "作業已取消",
"no.hosts": "找不到主機",
diff --git a/Extension/i18n/cht/src/LanguageServer/extension.i18n.json b/Extension/i18n/cht/src/LanguageServer/extension.i18n.json
index 39f58c2c5..8dbbc337f 100644
--- a/Extension/i18n/cht/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/cht/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "了解如何使用 vcpkg 安裝此標頭的程式庫",
"copy.vcpkg.command": "將用於安裝 '{0}' 的 vcpkg 命令複製到剪貼簿",
"on.disabled.command": "當 `C_Cpp.intelliSenseEngine` 設為 `disabled` 時,無法執行IntelliSense 的相關命令。",
+ "find.translation.units": "正在尋找翻譯單位...",
+ "no.translation.units.found": "找不到目前檔案的任何翻譯單位。",
+ "current.translation.unit": "目前翻譯單位",
+ "select.translation.unit": "選取翻譯單位",
+ "select.translation.unit.placeholder": "選取要用作翻譯單位的來源檔案",
"switch.header.source": "正在切換標頭/來源...",
"client.not.found": "找不到用戶端",
"ok": "確定",
diff --git a/Extension/i18n/cht/src/nativeStrings.i18n.json b/Extension/i18n/cht/src/nativeStrings.i18n.json
index 9416ae386..784f1473e 100644
--- a/Extension/i18n/cht/src/nativeStrings.i18n.json
+++ b/Extension/i18n/cht/src/nativeStrings.i18n.json
@@ -346,9 +346,9 @@
"auth_denied": "使用者拒絕授權。",
"auth_unexpected_error": "輪詢期間發生未預期的錯誤: {0}",
"auth_login_failed": "GitHub 登入失敗。請嘗試使用命令列中的 --login 進行登入。",
- "auth_login_failed_plugin": "GitHub 登入失敗。請執行 npx @microsoft/cpp-language-server --login",
+ "auth_login_failed_plugin": "GitHub 登入失敗。Run npx @microsoft/cpp-language-server --login",
"auth_eula_required": "必須接受 EULA 才能繼續。請使用 --accept-eula 執行。",
- "auth_eula_required_plugin": "必須接受 EULA 才能繼續。請執行 npx @microsoft/cpp-language-server --accept-eula",
+ "auth_eula_required_plugin": "必須接受 EULA 才能繼續。Run npx @microsoft/cpp-language-server --accept-eula",
"auth_already_authenticated": "已使用 GitHub 驗證。使用 --force-login 重新驗證。",
"config_unsupported_version": "初始化失敗: 不支援的設定版本。僅支援版本 1。",
"config_file_not_found": "初始化失敗: 找不到設定檔 '{0}'。",
@@ -434,5 +434,7 @@
"check_timed_out": "等候 {0} 的分析完成時逾時",
"failed_to_open_browse_db_lock_file": "無法開啟瀏覽資料庫鎖定檔案: {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "無法鎖定瀏覽資料庫鎖定檔案: {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "瀏覽資料庫已停用,因為其儲存位置不支援 SQLite WAL 共用記憶體。請將 browse.databaseFilename 設定為本機路徑。"
+ "browse_database_disabled_incompatible_storage": "瀏覽資料庫已停用,因為其儲存位置不支援 SQLite WAL 共用記憶體。請將 browse.databaseFilename 設定為本機路徑。",
+ "selected_translation_unit_not_include_file_previous": "選取的編譯單位 '{0}' 不包含 '{1}'。如果先前的編譯單位仍然可用,IntelliSense 將會還原;否則,它會使用 '{1}' 作為僅標頭的翻譯單位。",
+ "selected_translation_unit_not_include_file_header_only": "所選的翻譯單位 '{0}' 不包含 '{1}'。沒有可用的先前翻譯單位,因此 IntelliSense 會將 '{1}' 當做僅標頭的翻譯單位使用。"
}
diff --git a/Extension/i18n/cht/ui/settings.html.i18n.json b/Extension/i18n/cht/ui/settings.html.i18n.json
index da1b9e38e..442ec872f 100644
--- a/Extension/i18n/cht/ui/settings.html.i18n.json
+++ b/Extension/i18n/cht/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "若為 {0} (或已選取),標籤剖析器只會剖析 {1} 中原始程式檔直接或間接包含的程式碼檔。若為 {2} (或未選取),標籤剖析器會剖析在 {3} 清單中的指定路徑找到的所有程式碼檔。",
"database.filename": "瀏覽: 資料庫檔案名稱",
"database.filename.description": "產生符號資料庫路徑。這會指示延伸模組將標籤剖析器的符號資料庫儲存在工作區預設儲存位置以外的某處。如果指定了相對路徑,就會是相對於工作區預設儲存位置 (非工作區資料夾本身) 的路徑。{0} 變數可用於指定相對於工作區資料夾的路徑 (例如 {1})。",
- "recursiveIncludes.reduce": "遞迴包含: 減少",
- "recursiveIncludes.reduce.description": "設定為 {0},可使 IntelliSense 僅提供目前由 #include 陳述式參考的遞迴包含路徑。這需要先剖析檔案,以確定包含哪些檔案。設定為 {1} 以將所有遞迴包含路徑提供給 IntelliSense。當涉及非常大量的遞迴包含路徑時,減少遞迴包含路徑數目可能會改善 IntelliSense 的效能。不減少遞迴包含路徑的數量,可避免需要剖析檔案以決定要提供哪些包含路徑,從而 IntelliSense 效能。",
"recursiveIncludes.priority": "遞迴包含: 優先順序",
"recursiveIncludes.priority.description": "遞迴包含路徑的優先順序。如果設定為 {0},則會在系統包含路徑之前搜尋遞迴包含路徑。如果設定為 {1},則會在系統包含路徑之後搜尋遞迴包含路徑。",
"recursiveIncludes.order": "遞迴包含: 順序",
diff --git a/Extension/i18n/csy/package.i18n.json b/Extension/i18n/csy/package.i18n.json
index d865f3bd4..8802bbf94 100644
--- a/Extension/i18n/csy/package.i18n.json
+++ b/Extension/i18n/csy/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "Instalace kompilátoru C++",
"c_cpp.command.rescanCompilers.title": "Znovu prohledat kompilátory",
"c_cpp.command.switchHeaderSource.title": "Přepnout hlavičku/zdroj",
+ "c_cpp.command.selectTranslationUnit.title": "Vyberte jednotku překladu...",
"c_cpp.command.enableErrorSquiggles.title": "Povolit podtrhávání chyb vlnovkou",
"c_cpp.command.disableErrorSquiggles.title": "Zakázat podtrhávání chyb vlnovkou",
"c_cpp.command.toggleDimInactiveRegions.title": "Přepnout barvení neaktivních oblastí",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "Určuje, jestli rozšíření ohlásí chyby zjištěné v souboru `c_cpp_properties.json`.",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "Hodnota, která se použije v konfiguraci, pokud se nenastaví `customConfigurationVariables`, nebo hodnoty, které se mají vložit, pokud se v `customConfigurationVariables` jako klíč nachází `${default}`.",
"c_cpp.configuration.default.dotConfig.markdownDescription": "Hodnota, která se použije v konfiguraci, pokud se nezadá `dotConfig` nebo pokud se nastaví na `${default}`.",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "Hodnota, která se použije v konfiguraci, pokud se nezadá `recursiveIncludes.reduce` nebo pokud se nastaví na `${default}`",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "Hodnota, která se použije v konfiguraci, pokud se nezadá `recursiveIncludes.priority` nebo pokud se nastaví na `${default}`",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "Hodnota, která se použije v konfiguraci, pokud se nezadá `recursiveIncludes.order` nebo pokud se nastaví na `${default}`",
"c_cpp.configuration.experimentalFeatures.description": "Určuje, jestli je možné použít experimentální funkce.",
@@ -332,6 +332,7 @@
"c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "Pokud se nastaví na true, zakáže přesměrování konzoly laděného procesu, které se vyžaduje pro podporu integrovaného terminálu.",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "Ladicímu modulu se předala volitelná mapování zdrojových souborů. Příklad: `{ \"
\": \"\" }`.",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "Nepovinné ID procesu, ke kterému se má ladicí program připojit. Pokud chcete získat seznam místních spuštěných procesů, ke kterým se dá připojit, použijte `${command:pickProcess}`. Poznámka: Některé platformy vyžadují pro připojení k procesu oprávnění správce.",
+ "c_cpp.debuggers.processFilter.description": "Volitelný regulární výraz používaný k vyhledání kandidátů na vzdálené připojení podle popisku, popisu nebo podrobností Pokud odpovídá právě jeden proces, ladicí program se připojí automaticky. Pokud odpovídá více procesů, zobrazí se výběr procesu pouze s odpovídajícími položkami. Pokud neodpovídá žádný proces, zobrazí se úplný výběr procesu. Neplatný regulární výraz způsobí chybu.",
"c_cpp.debuggers.program.attach.markdownDescription": "Úplná cesta ke spustitelnému souboru programu. Ladicí program vyhledá spuštěný proces odpovídající této cestě spustitelného souboru a připojí se k němu. Pokud se více procesů shoduje, zobrazí se výzva k výběru. Toto pole se vyžaduje k načtení symbolů ladění pro připojený proces.",
"c_cpp.debuggers.symbolSearchPath.description": "Seznam středníkem oddělených adresářů, ve kterých se budou hledat soubory symbolů (tj. soubory pdb nebo .so). Příklad: c:\\dir1;c:\\dir2.",
"c_cpp.debuggers.dumpPath.description": "Volitelná úplná cesta k souboru výpisu pro zadaný program. Příklad: c:\\temp\\app.dmp. Výchozí hodnota je null.",
diff --git a/Extension/i18n/csy/src/Debugger/processFilter.i18n.json b/Extension/i18n/csy/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..2b61cbe25
--- /dev/null
+++ b/Extension/i18n/csy/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "Neplatný regulární výraz {0}: {1}"
+}
diff --git a/Extension/i18n/csy/src/LanguageServer/client.i18n.json b/Extension/i18n/csy/src/LanguageServer/client.i18n.json
index 12f00dbfc..68cd0c33b 100644
--- a/Extension/i18n/csy/src/LanguageServer/client.i18n.json
+++ b/Extension/i18n/csy/src/LanguageServer/client.i18n.json
@@ -26,7 +26,7 @@
"loggingLevel.changed": "{0} se změnila na: {1}",
"dismiss.button": "Zrušit",
"disable.warnings.button": "Zakázat upozornění",
- "unable.to.provide.configuration": "{0} nemůže poskytnout informace pro konfiguraci IntelliSense. Místo nich se použijí nastavení z konfigurace „{1}“.",
+ "unable.to.provide.configuration": "{0} nemůže poskytnout informace pro konfiguraci IntelliSense. Místo nich se použijí nastavení z konfigurace {1}.",
"config.not.found": "Požadovaný název konfigurace se nenašel: {0}",
"timed.out": "Po {0} ms vypršel časový limit.",
"parsing.stats.large.project": "Byl zjištěn výčet {0} souborů s {1} zdrojovými soubory C/C++. Možná budete chtít zvážit vyloučení některých souborů pro zlepšení výkonu.",
diff --git a/Extension/i18n/csy/src/LanguageServer/extension.i18n.json b/Extension/i18n/csy/src/LanguageServer/extension.i18n.json
index 4ed8f1550..a92f1411e 100644
--- a/Extension/i18n/csy/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/csy/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "Jak nainstalovat knihovnu pro tuto hlavičku pomocí vcpkg",
"copy.vcpkg.command": "Zkopírovat příkaz vcpkg pro instalaci {0} do schránky",
"on.disabled.command": "Příkazy související s IntelliSense se nedají spustit, když je `C_Cpp.intelliSenseEngine` nastavené na `disabled`.",
+ "find.translation.units": "Hledají se jednotky překladu...",
+ "no.translation.units.found": "Pro aktivní soubor nebyly nalezeny žádné jednotky překladu.",
+ "current.translation.unit": "Aktuální jednotka překladu",
+ "select.translation.unit": "Vybrat jednotku překladu",
+ "select.translation.unit.placeholder": "Vyberte zdrojový soubor, který se má použít jako jednotka překladu",
"switch.header.source": "Přepínání záhlaví/zdroje...",
"client.not.found": "klient se nenašel",
"ok": "OK",
diff --git a/Extension/i18n/csy/src/nativeStrings.i18n.json b/Extension/i18n/csy/src/nativeStrings.i18n.json
index f4894bda8..5ed4e24ef 100644
--- a/Extension/i18n/csy/src/nativeStrings.i18n.json
+++ b/Extension/i18n/csy/src/nativeStrings.i18n.json
@@ -434,5 +434,7 @@
"check_timed_out": "při čekání na dokončení analýzy souboru {0} vypršel časový limit",
"failed_to_open_browse_db_lock_file": "Nepodařilo se otevřít soubor zámku databáze procházení: {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "Nepodařilo se uzamknout soubor zámku databáze procházení: {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "Databáze procházení byla zakázána, protože její umístění úložiště nepodporuje sdílenou paměť SQLite WAL. Nastavte browse.databaseFilename na místní cestu."
+ "browse_database_disabled_incompatible_storage": "Databáze procházení byla zakázána, protože její umístění úložiště nepodporuje sdílenou paměť SQLite WAL. Nastavte browse.databaseFilename na místní cestu.",
+ "selected_translation_unit_not_include_file_previous": "Vybraná jednotka překladu '{0}' nezahrnuje '{1}'. IntelliSense obnoví předchozí jednotku překladu, pokud je stále k dispozici. V opačném případě použije '{1}' jako překladovou jednotku pouze pro záhlaví.",
+ "selected_translation_unit_not_include_file_header_only": "Vybraná jednotka překladu {0} neobsahuje {1}. Není k dispozici žádná předchozí jednotka překladu, takže IntelliSense použije {1} jako jednotku překladu jen pro hlavičku."
}
diff --git a/Extension/i18n/csy/ui/settings.html.i18n.json b/Extension/i18n/csy/ui/settings.html.i18n.json
index 4d578a438..123f454ab 100644
--- a/Extension/i18n/csy/ui/settings.html.i18n.json
+++ b/Extension/i18n/csy/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "Když se nastaví na {0} (nebo zaškrtne), analyzátor značek bude parsovat jen soubory kódů, které přímo nebo nepřímo zahrnul zdrojový soubor v {1}. Když se nastaví na {2} (nebo nezaškrtne), analyzátor značek bude parsovat všechny soubory kódů nalezené na cestách zadaných v seznamu {3}.",
"database.filename": "Procházení: název souboru databáze",
"database.filename.description": "Cesta k vygenerované databázi symbolů. Na základě této možnosti bude rozšíření ukládat databázi symbolů analyzátoru značek někam jinam než do výchozího umístění úložiště pracovního prostoru. Pokud se zadá relativní cesta, bude relativní vzhledem k výchozímu umístění úložiště pracovního prostoru, nikoli k samotné složce pracovního prostoru. Pokud chcete zadat cestu relativní ke složce pracovního prostoru (třeba {1}), dá se použít proměnná {0}.",
- "recursiveIncludes.reduce": "Rekurzivní soubory k zahrnutí: snížení",
- "recursiveIncludes.reduce.description": "Nastavením na {0} se počet cest rekurzivních souborů k zahrnutí poskytovaných funkci IntelliSense vždy sníží pouze na ty cesty, na které aktuálně odkazují příkazy #include. K tomu je potřeba nejdříve analyzovat soubory a zjistit, které soubory jsou zahrnuty. Nastavením na {1} poskytnete funkci IntelliSense všechny cesty rekurzivních souborů k zahrnutí. Snížení počtu cest rekurzivních souborů k zahrnutí může zlepšit výkon funkce IntelliSense, pokud se jedná o velmi velký počet cest souborů k zahrnutí. Nesnižování počtu cest rekurzivních souborů k zahrnutí může zlepšit výkon funkce IntelliSense, protože se vyhnete nutnosti analyzovat soubory a určit, které cesty souborů k zahrnutí je třeba poskytnout.",
"recursiveIncludes.priority": "Rekurzivní soubory k zahrnutí: priorita",
"recursiveIncludes.priority.description": "Priorita cest rekurzivních souborů zahrnutí Pokud je nastavená hodnota {0}, budou se cesty rekurzivních souborů k zahrnutí prohledávat před cestami systémových souborů k zahrnutí. Pokud je nastavená hodnota {1}, budou se cesty rekurzivních souborů k zahrnutí prohledávat po cestách systémových souborů k zahrnutí.",
"recursiveIncludes.order": "Rekurzivní soubory k zahrnutí: pořadí",
diff --git a/Extension/i18n/deu/package.i18n.json b/Extension/i18n/deu/package.i18n.json
index 4641d53a0..f5e5964a2 100644
--- a/Extension/i18n/deu/package.i18n.json
+++ b/Extension/i18n/deu/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "Installieren eines C++-Compilers",
"c_cpp.command.rescanCompilers.title": "Erneut nach Compilern suchen",
"c_cpp.command.switchHeaderSource.title": "Header/Quelle umschalten",
+ "c_cpp.command.selectTranslationUnit.title": "Übersetzungseinheit auswählen…",
"c_cpp.command.enableErrorSquiggles.title": "Fehlerwellenlinien aktivieren",
"c_cpp.command.disableErrorSquiggles.title": "Fehlerwellenlinien deaktivieren",
"c_cpp.command.toggleDimInactiveRegions.title": "Farbgebung für inaktive Regionen umschalten",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "Steuert, ob die Erweiterung in `c_cpp_properties.json` erkannte Fehler meldet.",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "Der Wert, der in einer Konfiguration verwendet werden soll, wenn `customConfigurationVariables` nicht festgelegt ist, oder die Werte, die eingefügt werden sollen, wenn `${default}` als Schlüssel in `customConfigurationVariables` vorhanden ist.",
"c_cpp.configuration.default.dotConfig.markdownDescription": "Der Wert, der in einer Konfiguration verwendet werden soll, wenn `dotConfig` entweder nicht angegeben oder auf `${default}` festgelegt ist.",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "Der Wert, der in einer Konfiguration verwendet werden soll, wenn `recursiveIncludes.reduce` entweder nicht angegeben oder auf `${default}` festgelegt ist.",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "Der Wert, der in einer Konfiguration verwendet werden soll, wenn `recursiveIncludes.priority` entweder nicht angegeben oder auf `${default}` festgelegt ist.",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "Der Wert, der in einer Konfiguration verwendet werden soll, wenn `recursiveIncludes.order` entweder nicht angegeben oder auf `${default}` festgelegt ist.",
"c_cpp.configuration.experimentalFeatures.description": "Hiermit wird gesteuert, ob experimentelle Features verwendet werden können.",
@@ -283,17 +283,17 @@
"c_cpp.debuggers.pipeTransport.pipeEnv.description": "Umgebungsvariablen, die an das Pipeprogramm übergeben werden.",
"c_cpp.debuggers.pipeTransport.quoteArgs.description": "Gibt an, ob Anführungszeichen gesetzt werden sollen, wenn die einzelnen pipeProgram-Argumente Zeichen enthalten (z. B. Leerzeichen oder Tabstopps). Bei Einstellung auf \"false\" wird der Debuggerbefehl nicht mehr automatisch in Anführungszeichen gesetzt. Der Standardwert ist \"true\".",
"c_cpp.debuggers.logging.description": "Optionale Flags zum Festlegen, welche Nachrichtentypen in der Debugging-Konsole protokolliert werden sollen.",
- "c_cpp.debuggers.logging.exceptions.description": "Optionales Flag zum Festlegen, ob Ausnahmemeldungen in der Debugging-Konsole protokolliert werden sollen. Der Standardwert ist \"true\".",
- "c_cpp.debuggers.logging.moduleLoad.description": "Optionales Flag zum Festlegen, ob Modulladeereignisse in der Debugging-Konsole protokolliert werden sollen. Der Standardwert ist \"true\".",
- "c_cpp.debuggers.logging.programOutput.description": "Optionales Flag zum Festlegen, ob die Programmausgabe in der Debugging-Konsole protokolliert werden soll. Der Standardwert ist \"true\".",
- "c_cpp.debuggers.logging.engineLogging.description": "Optionales Flag zum Festlegen, ob Nachrichten der Diagnosedebug-Engine in der Debugging-Konsole protokolliert werden sollen. Der Standardwert ist \"false\".",
- "c_cpp.debuggers.logging.trace.description": "Optionales Flag zum Festlegen, ob die Befehlsablaufverfolgung des Diagnoseadapters in der Debugging-Konsole protokolliert werden soll. Der Standardwert ist \"false\".",
- "c_cpp.debuggers.logging.traceResponse.description": "Optionales Flag zum Festlegen, ob die Befehls- und Antwortablaufverfolgung des Diagnoseadapters in der Debugging-Konsole protokolliert werden soll. Der Standardwert ist \"false\".",
+ "c_cpp.debuggers.logging.exceptions.description": "Optionales Flag zum Festlegen, ob Ausnahmemeldungen in der Debugging-Konsole protokolliert werden sollen. Der Standardwert ist true.",
+ "c_cpp.debuggers.logging.moduleLoad.description": "Optionales Flag zum Festlegen, ob Modulladeereignisse in der Debugging-Konsole protokolliert werden sollen. Der Standardwert ist true.",
+ "c_cpp.debuggers.logging.programOutput.description": "Optionales Flag zum Festlegen, ob die Programmausgabe in der Debugging-Konsole protokolliert werden soll. Der Standardwert ist true.",
+ "c_cpp.debuggers.logging.engineLogging.description": "Optionales Flag zum Festlegen, ob Nachrichten der Diagnosedebug-Engine in der Debugging-Konsole protokolliert werden sollen. Der Standardwert ist false.",
+ "c_cpp.debuggers.logging.trace.description": "Optionales Flag zum Festlegen, ob die Befehlsablaufverfolgung des Diagnoseadapters in der Debugging-Konsole protokolliert werden soll. Der Standardwert ist false.",
+ "c_cpp.debuggers.logging.traceResponse.description": "Optionales Flag zum Festlegen, ob die Befehls- und Antwortablaufverfolgung des Diagnoseadapters in der Debugging-Konsole protokolliert werden soll. Der Standardwert ist false.",
"c_cpp.debuggers.cppvsdbg.logging.threadExit.description": "Optionales Flag zum Bestimmen, ob Meldungen zum Beenden des Threads in der Debugging-Konsole protokolliert werden sollen. Standardwert: \"false\".",
"c_cpp.debuggers.cppvsdbg.logging.processExit.description": "Optionale Kennzeichnung zum Bestimmen, ob Meldungen zum Beenden des Zielprozesses in der Debugging-Konsole protokolliert werden sollen. Standardwert: \"true\".",
"c_cpp.debuggers.text.description": "Der auszuführende Debuggerbefehl.",
"c_cpp.debuggers.description.description": "Optionale Beschreibung des Befehls.",
- "c_cpp.debuggers.ignoreFailures.description": "Wenn dieser Wert auf \"true\" festgelegt ist, werden durch den Befehl verursachte Fehler ignoriert. Der Standardwert ist \"false\".",
+ "c_cpp.debuggers.ignoreFailures.description": "Wenn dieser Wert auf true festgelegt ist, werden durch den Befehl verursachte Fehler ignoriert. Der Standardwert ist false.",
"c_cpp.debuggers.program.description": "Vollständiger Pfad zur ausführbaren Programmdatei.",
"c_cpp.debuggers.args.description": "Befehlszeilenargumente, die an das Programm übergeben werden.",
"c_cpp.debuggers.targetArchitecture.description": "Die Architektur der zu debuggenden Komponente. Falls dieser Parameter nicht festgelegt ist, wird die Architektur automatisch erkannt. Zulässige Werte sind \"x86\", \"arm\", \"arm64\", \"mips\", \"x64\", \"amd64\" und \"x86_64\".",
@@ -322,23 +322,24 @@
"c_cpp.debuggers.filterStderr.description": "stderr-Stream für ein vom Server gestartetes Muster suchen und stderr in der Debugausgabe protokollieren. Der Standardwert ist \"false\".",
"c_cpp.debuggers.serverLaunchTimeout.description": "Optionale Zeit in Millisekunden, während der der Debugger auf den Start von debugServer wartet. Der Standardwert ist 10.000.",
"c_cpp.debuggers.coreDumpPath.description": "Optionaler vollständiger Pfad zu einer Kern-Speicherabbilddatei für das angegebene Programm. Der Standardwert ist \"NULL\".",
- "c_cpp.debuggers.cppdbg.externalConsole.description": "Wenn dieser Wert auf \"true\" festgelegt ist, wird eine Konsole für die zu debuggende Komponente gestartet. Bei \"false\" wird die Komponente unter Linux und Windows in der integrierten Konsole angezeigt.",
- "c_cpp.debuggers.cppvsdbg.externalConsole.description": "[Veraltet für 'console'] Wenn dieser Wert auf \"true\" festgelegt ist, wird eine Konsole für die zu debuggende Komponente gestartet. Bei \"false\" wird keine Konsole gestartet.",
+ "c_cpp.debuggers.cppdbg.externalConsole.description": "Wenn dieser Wert auf true festgelegt ist, wird eine Konsole für die zu debuggende Komponente gestartet. Bei false wird die Komponente unter Linux und Windows in der integrierten Konsole angezeigt.",
+ "c_cpp.debuggers.cppvsdbg.externalConsole.description": "[Veraltet für 'console'] Wenn dieser Wert auf true festgelegt ist, wird eine Konsole für die zu debuggende Komponente gestartet. Bei false wird keine Konsole gestartet.",
"c_cpp.debuggers.cppvsdbg.console.description": "Gibt an, wo das Debugziel gestartet wird. Wenn keine Angabe vorliegt, wird standardmäßig „internalConsole“ verwendet.",
"c_cpp.debuggers.cppvsdbg.console.internalConsole.description": "Die Ausgabe an die Debugging-Konsole von VS Code. Das Lesen von Konsoleneingaben (z. B. `std::cin` oder `scanf`) wird nicht unterstützt.",
"c_cpp.debuggers.cppvsdbg.console.integratedTerminal.description": "Das integrierte Terminal von VS Code.",
"c_cpp.debuggers.cppvsdbg.console.externalTerminal.description": "Konsolenanwendungen werden in einem externen Terminalfenster gestartet. Das Fenster wird in Neustartszenarien erneut verwendet und beim Beenden der Anwendung nicht automatisch ausgeblendet.",
"c_cpp.debuggers.cppvsdbg.console.newExternalWindow.description": "Konsolenanwendungen werden in ihrem eigenen externen Konsolenfenster gestartet, das beim Beenden der Anwendung ebenfalls beendet wird. Nicht-Konsolenanwendungen werden ohne Terminal ausgeführt, und stdout/stderr wird ignoriert.",
- "c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "Wenn dieser Wert auf \"true\" festgelegt ist, wird für die zu debuggende Komponente die Konsolenumleitung deaktiviert, die für die Unterstützung des integrierten Terminals erforderlich ist.",
+ "c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "Wenn dieser Wert auf true festgelegt ist, wird für die zu debuggende Komponente die Konsolenumleitung deaktiviert, die für die Unterstützung des integrierten Terminals erforderlich ist.",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "Optionale Quelldateizuordnungen, die an die Debug-Engine übergeben werden. Beispiel: `{ \"\": \"\" }`.",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "Optionale Prozess-ID, an die der Debugger angefügt werden soll. Verwenden Sie `${command:pickProcess}`, um eine Liste der lokalen ausgeführten Prozesse abzurufen, an die das Anfügen möglich ist. Beachten Sie, dass für einige Plattformen Administratorrechte erforderlich sind, damit an einen Prozess angefügt werden kann.",
+ "c_cpp.debuggers.processFilter.description": "Optionaler regulärer Ausdruck, der verwendet wird, um Kandidaten für das Remoting-Anfügen nach Bezeichnung, Beschreibung oder Detail abzugleichen. Wenn genau ein Prozess übereinstimmt, hängt der Debugger automatisch an. Wenn mehrere Prozesse übereinstimmen, wird die Prozessauswahl nur mit den passenden Einträgen angezeigt. Wenn kein Prozess übereinstimmt, wird die vollständige Prozessauswahl angezeigt. Ein ungültiger regulärer Ausdruck gibt einen Fehler aus.",
"c_cpp.debuggers.program.attach.markdownDescription": "Vollständiger Pfad zur ausführbaren Programmdatei. Der Debugger sucht nach einem laufenden Prozess, der diesem ausführbaren Pfad entspricht, und bindet ihn an. Wenn mehrere Prozesse übereinstimmen, wird eine Auswahlaufforderung angezeigt. Dieses Feld ist erforderlich, um Debugsymbole für den angehängten Prozess zu laden.",
"c_cpp.debuggers.symbolSearchPath.description": "Durch Semikolons getrennte Liste von Verzeichnissen, die für die Suche nach Symboldateien (d. h. PDB- oder .so-Dateien) verwendet werden sollen. Beispiel: „c:\\dir1;c:\\dir2“.",
"c_cpp.debuggers.dumpPath.description": "Optionaler vollständiger Pfad zu einer Dumpdatei für das angegebene Programm. Beispiel: \"c:\\temp\\app.dmp\". Standardwert ist NULL.",
- "c_cpp.debuggers.enableDebugHeap.description": "Wenn dieser Wert auf \"false\" festgelegt ist, wird der Prozess mit deaktiviertem Debug-Heap gestartet. Hiermit wird die Umgebungsvariable \"_NO_DEBUG_HEAP\" auf \"1\" festgelegt.",
+ "c_cpp.debuggers.enableDebugHeap.description": "Wenn dieser Wert auf false festgelegt ist, wird der Prozess mit deaktiviertem Debug-Heap gestartet. Hiermit wird die Umgebungsvariable \"_NO_DEBUG_HEAP\" auf \"1\" festgelegt.",
"c_cpp.debuggers.symbolLoadInfo.description": "Explizite Steuerung des Symbolladevorgangs.",
- "c_cpp.debuggers.symbolLoadInfo.loadAll.description": "Bei \"true\" werden Symbole für alle Bibliotheken geladen, andernfalls werden keine solib-Symbole geladen. Der Standardwert ist \"true\".",
- "c_cpp.debuggers.symbolLoadInfo.exceptionList.description": "Liste mit Dateinamen (Platzhalter zulässig), getrennt durch Semikolons `;`. Ändert das Verhalten von „LoadAll“. Wenn „LoadAll“ auf \"true\" festgelegt ist, werden keine Symbole für Bibliotheken geladen, die einem beliebigen Namen in der Liste entsprechen. Andernfalls werden nur Symbole für übereinstimmende Bibliotheken geladen. Beispiel: `foo.so;bar.so`.",
+ "c_cpp.debuggers.symbolLoadInfo.loadAll.description": "Bei true werden Symbole für alle Bibliotheken geladen, andernfalls werden keine solib-Symbole geladen. Der Standardwert ist true.",
+ "c_cpp.debuggers.symbolLoadInfo.exceptionList.description": "Liste mit Dateinamen (Platzhalter zulässig), getrennt durch Semikolons ';'. Ändert das Verhalten von „LoadAll“. Wenn „LoadAll“ auf 'true' festgelegt ist, werden keine Symbole für Bibliotheken geladen, die einem beliebigen Namen in der Liste entsprechen. Andernfalls werden nur Symbole für übereinstimmende Bibliotheken geladen. Beispiel: 'foo.so;bar.so'.",
"c_cpp.debuggers.requireExactSource.description": "Optionales Flag, um anzufordern, dass der aktuelle Quellcode mit der PDB-Datei übereinstimmt.",
"c_cpp.debuggers.stopAtConnect.description": "Wenn \"true\", sollte der Debugger nach dem Herstellen einer Verbindung mit dem Ziel beendet werden. Wenn \"false\" wird der Debugger nach dem Herstellen der Verbindung fortgesetzt. Entspricht standardmäßig \"false\".",
"c_cpp.debuggers.hardwareBreakpoints.description": "Explizite Steuerung des Hardwarehaltepunktverhaltens für Remoteziele.",
@@ -389,7 +390,7 @@
"c_cpp.taskDefinitions.detail.description": "Zusätzliche Details zur Aufgabe.",
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.description": "Dies sind die Pfade zu denselben Quellstrukturen – einmal aktuell und einmal zur Kompilierzeit. Im EditorPath gefundene Dateien werden zum Haltepunktabgleich dem CompileTimePath-Pfad zugeordnet. Bei der Anzeige von Speicherorten für die Stapelüberwachung erfolgt die Zuordnung vom CompileTimePath zum EditorPath.",
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.editorPath.description": "Der Pfad zur Quellstruktur, die vom Editor verwendet wird.",
- "c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "\"false\", wenn dieser Eintrag nur für eine Stapelrahmen-Speicherortzuordnung verwendet wird. \"true\", wenn dieser Eintrag auch zum Angeben von Haltepunktpositionen verwendet werden soll.",
+ "c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "Auf „false“ setzen, wenn dieser Eintrag nur für die Zuordnung von Stapelrahmenpositionen verwendet wird. Auf „true“ setzen, wenn dieser Eintrag auch beim Angeben von Haltepunktpositionen verwendet werden soll.",
"c_cpp.debuggers.symbolOptions.description": "Optionen zum Steuern, wie Symbole (PDB-Dateien) gefunden und geladen werden.",
"c_cpp.debuggers.unknownBreakpointHandling.description": "Steuert, wie extern gesetzte Haltepunkte (normalerweise über rohe GDB-Befehle) behandelt werden, wenn ihnen begegnet wird.\nErlaubte Werte sind \"throw\", was sich so verhält, als ob eine Ausnahme von der Anwendung ausgelöst würde, und \"stop\", was die Debugsitzung nur pausiert. Der Standardwert ist \"throw\".",
"c_cpp.debuggers.debuginfod.description": "Steuert das debuginfod-Verhalten von GDB beim Herunterladen von Debugsymbolen von debuginfod-Servern.",
diff --git a/Extension/i18n/deu/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/deu/src/Debugger/debugAdapterDescriptorFactory.i18n.json
index ca0a1eed9..a72137443 100644
--- a/Extension/i18n/deu/src/Debugger/debugAdapterDescriptorFactory.i18n.json
+++ b/Extension/i18n/deu/src/Debugger/debugAdapterDescriptorFactory.i18n.json
@@ -8,5 +8,5 @@
"debugger.noDebug.requestType.not.supported": "„Ausführen ohne Debuggen“ wird nur für Startkonfigurationen unterstützt.",
"debugger.unsupported.properties": "Startkonfigurationen mit den folgenden Eigenschaften können nicht direkt im Terminal ausgeführt werden: {0}",
"debugger.fallback.message": "Die Programmausgabe wird stattdessen in der Debugging-Konsole angezeigt.",
- "debugger.fallback.message2": "Um diese Warnung zu unterdrücken, legen Sie die Eigenschaft „ignoreRunWithoutDebuggingWarnings“ in Ihrer Startkonfiguration auf \"true\" fest."
+ "debugger.fallback.message2": "Um diese Warnung zu unterdrücken, legen Sie die Eigenschaft „ignoreRunWithoutDebuggingWarnings“ in Ihrer Startkonfiguration auf TRUE fest."
}
diff --git a/Extension/i18n/deu/src/Debugger/processFilter.i18n.json b/Extension/i18n/deu/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..fca7e5635
--- /dev/null
+++ b/Extension/i18n/deu/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "Ungültiger {0}regulärer Ausdruck: {1}"
+}
diff --git a/Extension/i18n/deu/src/LanguageServer/extension.i18n.json b/Extension/i18n/deu/src/LanguageServer/extension.i18n.json
index 29325fb22..1184ce8ef 100644
--- a/Extension/i18n/deu/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/deu/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "Erfahren Sie, wie Sie mit vcpkg eine Bibliothek für diesen Header installieren.",
"copy.vcpkg.command": "vcpkg-Befehl zum Installieren von \"{0}\" in die Zwischenablage kopieren",
"on.disabled.command": "IntelliSense-bezogene Befehle können nicht ausgeführt werden, wenn `C_Cpp.intelliSenseEngine` auf `disabled` festgelegt ist.",
+ "find.translation.units": "Suche nach Übersetzungseinheiten…",
+ "no.translation.units.found": "Für die aktive Datei wurden keine Übersetzungseinheiten gefunden.",
+ "current.translation.unit": "Aktuelle Übersetzungseinheit",
+ "select.translation.unit": "Wählen Sie eine Übersetzungseinheit aus",
+ "select.translation.unit.placeholder": "Wählen Sie eine Quelldatei aus, die als Übersetzungseinheit verwendet werden soll.",
"switch.header.source": "Header/Quelle wird gewechselt...",
"client.not.found": "Client nicht gefunden.",
"ok": "OK",
diff --git a/Extension/i18n/deu/src/nativeStrings.i18n.json b/Extension/i18n/deu/src/nativeStrings.i18n.json
index dd3385faa..108d3f5ee 100644
--- a/Extension/i18n/deu/src/nativeStrings.i18n.json
+++ b/Extension/i18n/deu/src/nativeStrings.i18n.json
@@ -419,13 +419,13 @@
"help_allow_missing_lsp_config": "Zulassen, dass der Server gestartet wird, auch wenn die angegebene --lsp-config-Datei nicht vorhanden ist.",
"initialize_failed_during_engine_setup": "Fehler bei der Initialisierung während der Engine-Einrichtung.",
"important_label": "Wichtig:",
- "help_check": "Validieren Sie eine Quelldatei gegenüber der compile_commands.json, indem Sie sie vollständig parsen und analysieren und Diagnosen melden. Der Befehl wird mit einem Exitcode ungleich null beendet, wenn Fehler gefunden werden.",
+ "help_check": "Validieren Sie eine Quelldatei gegenüber der compile_commands.json, indem Sie sie vollständig parsen und analysieren und Diagnosen melden. Wird mit einem anderen Wert als Null, wenn Fehler gefunden werden.",
"help_check_compile_commands": "Pfad zu einem bestimmten compile_commands.json (oder dessen Verzeichnis), das mit „--check“ verwendet werden soll. Standardmäßig wird die automatische Ermittlung verwendet.",
"check_not_authorized": "nicht autorisiert; zum Ausführen von „--check“ ist eine Anmeldung erforderlich",
"check_requires_source": "„--check“ erfordert eine Quelldatei: --check=",
"check_source_not_found": "Quelldatei nicht gefunden: {0}",
"check_compile_commands_not_found": "compile_commands.json nicht gefunden: {0}",
- "check_compile_commands_not_discovered": "compile_commands.json wurde in keinem übergeordneten Verzeichnis von {0} gefunden; übergeben Sie --check-compile-commands=, um den Pfad explizit anzugeben",
+ "check_compile_commands_not_discovered": "compile_commands.json wurde in keinem übergeordneten Verzeichnis von {0} gefunden; „--check-compile-commands=“ durchlaufen lassen, um es explizit anzugeben",
"check_engine_init_failed": "Fehler beim Initialisieren der Sprach-Engine",
"check_no_workspace_folder": "Kein Arbeitsbereichsordner aufgelöst für {0}",
"check_not_in_compile_commands": "{0} ist nicht vorhanden in {1}",
@@ -434,5 +434,7 @@
"check_timed_out": "Timeout beim Warten auf den Abschluss der Analyse von {0}",
"failed_to_open_browse_db_lock_file": "Fehler beim Öffnen der Sperrdatei der Browse-Datenbank: {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "Fehler beim Sperren der Sperrdatei der Browse-Datenbank: {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "Die Browse-Datenbank wurde deaktiviert, da ihr Speicherort den gemeinsam genutzten Speicher von SQLite WAL nicht unterstützt. Legen Sie browse.databaseFilename auf einen lokalen Pfad fest."
+ "browse_database_disabled_incompatible_storage": "Das Durchsuchen der Datenbank wurde deaktiviert, da der Speicherort gemeinsam genutzten SQLite-WAL-Speicher nicht unterstützt. Legen Sie browse.databaseFilename auf einen lokalen Pfad fest.",
+ "selected_translation_unit_not_include_file_previous": "Die ausgewählte Übersetzungseinheit '{0}' enthält keine '{1}'. IntelliSense stellt die vorherige Übersetzungseinheit wieder her, wenn sie noch verfügbar ist. Andernfalls wird '{1}' als reine Header-Übersetzungseinheit verwendet.",
+ "selected_translation_unit_not_include_file_header_only": "Die ausgewählte Übersetzungseinheit '{0}' enthält keine '{1}'. Es ist keine vorherige Übersetzungseinheit verfügbar, weshalb IntelliSense '{1}' als reine Headerübersetzungseinheit verwendet."
}
diff --git a/Extension/i18n/deu/ui/settings.html.i18n.json b/Extension/i18n/deu/ui/settings.html.i18n.json
index 9d3310433..de524d003 100644
--- a/Extension/i18n/deu/ui/settings.html.i18n.json
+++ b/Extension/i18n/deu/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "Wenn {0} (oder aktiviert) ist, analysiert der Tagparser nur Codedateien, die direkt oder indirekt von einer Quelldatei in {1} eingeschlossen wurden. Wenn {2} (oder nicht aktiviert) ist, analysiert der Tagparser alle Codedateien, die in den in der {3} Liste angegebenen Pfaden gefunden wurden.",
"database.filename": "Durchsuchen: Datenbankdateiname",
"database.filename.description": "Der Pfad zur generierten Symboldatenbank. Hiermit wird die Erweiterung angewiesen, die Symboldatenbank des Tagparsers an einem anderen Speicherort als dem Standardspeicherort des Arbeitsbereichs zu speichern. Bei Angabe eines relativen Pfads wird dieser relativ zum Standardspeicherort des Arbeitsbereichs und nicht zum Arbeitsbereichsordner selbst erstellt. Die Variable „{0}“ kann verwendet werden, um einen Pfad relativ zum Arbeitsbereichsordner (Beispiel: {1}) anzugeben.",
- "recursiveIncludes.reduce": "Rekursive Umfasst: Reduzieren",
- "recursiveIncludes.reduce.description": "Legen Sie diese Option auf „{0}“ fest, um die Anzahl der rekursiven Includepfade, die für IntelliSense bereitgestellt werden, auf die Pfade zu verringern, auf die derzeit von #include-Anweisungen verwiesen wird. Dazu müssen zuerst die Dateien analysiert werden, um zu bestimmen, welche Dateien eingeschlossen werden. Legen Sie diese Option auf „{1}“ fest, um alle rekursiven Includepfade für IntelliSense bereitzustellen. Wenn Sie die Anzahl rekursiver Includepfade verringern, kann sich die Leistung von IntelliSense verbessern, wenn eine sehr große Anzahl rekursiver Includepfade betroffen ist. Wenn Sie die Anzahl rekursiver Includepfade nicht verringern, kann die Leistung von IntelliSense verbessert werden, da die Dateien nicht analysiert werden müssen, um zu bestimmen, welche Includepfade bereitgestellt werden sollen.",
"recursiveIncludes.priority": "„Rekursiv“ umfasst: Priorität",
"recursiveIncludes.priority.description": "Die Priorität rekursiver Includepfade. Wenn sie auf „{0}“ festgelegt ist, werden die rekursiven Includepfade vor den systemseitigen Includepfaden durchsucht. Wenn sie auf „{1}“ festgelegt ist, werden die rekursiven Includepfade nach den systemseitigen Includepfaden durchsucht.",
"recursiveIncludes.order": "Rekursiv umfasst: Reihenfolge",
diff --git a/Extension/i18n/esn/package.i18n.json b/Extension/i18n/esn/package.i18n.json
index df58f87dc..a2c6d8bb6 100644
--- a/Extension/i18n/esn/package.i18n.json
+++ b/Extension/i18n/esn/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "Instalar un compilador de C++",
"c_cpp.command.rescanCompilers.title": "Volver a examinar los compiladores",
"c_cpp.command.switchHeaderSource.title": "Cambiar el encabezado o el origen",
+ "c_cpp.command.selectTranslationUnit.title": "Seleccionar una unidad de traducción...",
"c_cpp.command.enableErrorSquiggles.title": "Habilitar el subrayado ondulado de errores",
"c_cpp.command.disableErrorSquiggles.title": "Deshabilitar el subrayado ondulado de errores",
"c_cpp.command.toggleDimInactiveRegions.title": "Alternar el coloreado de las regiones inactivas",
@@ -185,7 +186,7 @@
"c_cpp.configuration.intelliSenseEngine.default.description": "Proporciona resultados que reconocen el contexto a través de un proceso de IntelliSense independiente.",
"c_cpp.configuration.intelliSenseEngine.tagParser.description": "Proporciona resultados \"fuzzy\" que no tienen en cuenta el contexto.",
"c_cpp.configuration.intelliSenseEngine.disabled.description": "Desactiva las características del servicio de lenguaje C/C++.",
- "c_cpp.configuration.autocomplete.markdownDescription": "Controla el proveedor de finalización automática. Si está `disabled` y desea completarse con palabras, también tendrá que establecer `\"[cpp]\": {\"editor.wordBasedSuggestions\": }` (y de forma similar para los lenguajes `c` y `cuda-cpp`).",
+ "c_cpp.configuration.autocomplete.markdownDescription": "Controla el proveedor de finalización automática. Si está `disabled` y desea completarse con palabras, también tendrá que establecer `\"[cpp]\": {\"editor.wordBasedSuggestions\": }` (y de forma similar para los lenguajes `c` y `cuda-cpp`).",
"c_cpp.configuration.autocomplete.default.description": "Usa el motor de IntelliSense activo.",
"c_cpp.configuration.autocomplete.disabled.description": "Usa la finalización basada en palabras proporcionada por Visual Studio Code.",
"c_cpp.configuration.errorSquiggles.description": "Controla si los posibles errores de compilación detectados por el motor de IntelliSense se notificarán al editor. También controla si se notifican advertencias de análisis de código si no se encuentran las inclusiones. El motor del analizador de etiquetas omite esta configuración.",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "Controla si la extensión notificará los errores detectados en `c_cpp_properties.json`.",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "Valor que debe usarse en una configuración si no se establece `customConfigurationVariables`, o bien los valores que se deben insertar si se especifica `${default}` como clave en `customConfigurationVariables`.",
"c_cpp.configuration.default.dotConfig.markdownDescription": "Valor que debe usarse en una configuración si no se especifica `dotConfig` o si se establece en `${default}`.",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "Valor que debe usarse en una configuración si no se ha especificado `recursiveIncludes.reduce` o se ha establecido en `${default}`.",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "Valor que debe usarse en una configuración si no se ha especificado `recursiveIncludes.priority` o se ha establecido en `${default}`.",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "Valor que debe usarse en una configuración si no se ha especificado `recursiveIncludes.order` o se ha establecido en `${default}`.",
"c_cpp.configuration.experimentalFeatures.description": "Controla si se pueden usar las características \"experimentales\".",
@@ -323,7 +323,7 @@
"c_cpp.debuggers.serverLaunchTimeout.description": "Tiempo opcional, en milisegundos, que el depurador debe esperar a que se inicie debugServer. El valor predeterminado es 10000.",
"c_cpp.debuggers.coreDumpPath.description": "Ruta de acceso completa opcional a un archivo de volcado de memoria básico para el programa especificado. El valor predeterminado es NULL.",
"c_cpp.debuggers.cppdbg.externalConsole.description": "Si se establece en true, se inicia una consola para el depurado. Si se establece en false, en Linux y Windows aparecerá en la consola integrada.",
- "c_cpp.debuggers.cppvsdbg.externalConsole.description": "[En desuso por 'console'] Si se establece en true, se inicia una consola para el elemento depurado. Si se establece en false, no se inicia ninguna consola.",
+ "c_cpp.debuggers.cppvsdbg.externalConsole.description": "[En desuso por la 'console'] Si se establece en true, se inicia una consola para el elemento depurado. Si se establece en false, no se inicia ninguna consola.",
"c_cpp.debuggers.cppvsdbg.console.description": "Indica dónde se debe iniciar el destino de depuración. Si no se define, el valor predeterminado es \"internalConsole\".",
"c_cpp.debuggers.cppvsdbg.console.internalConsole.description": "Salida a la Consola de depuración de VS Code. No se admite la lectura de entrada de la consola (ejemplo: \"std::cin\" o \"scanf\").",
"c_cpp.debuggers.cppvsdbg.console.integratedTerminal.description": "Terminal integrado de VS Code.",
@@ -332,6 +332,7 @@
"c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "Si se establece en true, se deshabilita la redirección de la consola del depurado necesaria para la compatibilidad con el terminal integrado.",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "Asignaciones de archivo de origen opcionales pasadas al motor de depuración. Ejemplo: `{ \"\": \"\" }`.",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "Id. de proceso opcional al que debe asociarse el depurador. Use `${command:pickProcess}` para obtener una lista de los procesos locales en ejecución a los que se puede asociar. Tenga en cuenta que algunas plataformas requieren privilegios de administrador para poder asociar el depurador a un proceso.",
+ "c_cpp.debuggers.processFilter.description": "Expresión regular opcional que se usa para buscar coincidencias con candidatos de asociación remota por etiqueta, descripción o detalle. Si coincide exactamente un proceso, el depurador se asocia automáticamente. Si coinciden varios procesos, el selector de procesos se muestra solo con entradas coincidentes. Si no hay coincidencias de proceso, se muestra el selector de procesos completo. Una expresión regular no válida notifica un error.",
"c_cpp.debuggers.program.attach.markdownDescription": "Ruta de acceso completa al ejecutable del programa. El depurador buscará un proceso en ejecución que coincida con esta ruta de acceso ejecutable y se asociará a él. Si coinciden varios procesos, se mostrará un mensaje de selección. Este campo es necesario para cargar símbolos de depuración para el proceso adjunto.",
"c_cpp.debuggers.symbolSearchPath.description": "Lista separada por punto y coma de directorios que se van a usar para buscar archivos de símbolos (es decir, pdb o .so). Ejemplo: \"c:\\dir1;c:\\dir2\".",
"c_cpp.debuggers.dumpPath.description": "Ruta de acceso completa opcional a un archivo de volcado de memoria para el programa especificado. Ejemplo: \"c:\\temp\\app.dmp\". El valor predeterminado es null.",
@@ -389,7 +390,7 @@
"c_cpp.taskDefinitions.detail.description": "Detalles adicionales de la tarea.",
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.description": "Rutas de acceso actuales y en tiempo de compilación a los mismos árboles de origen. Los archivos que se encuentran en EditorPath se asignan a la ruta de acceso CompileTimePath para la coincidencia de los puntos de interrupción y se asignan de CompileTimePath a EditorPath al mostrar ubicaciones de seguimiento de la pila.",
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.editorPath.description": "La ruta de acceso al árbol de origen que el editor va a usar.",
- "c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "Establézcalo en false si esta entrada solo se usa para la asignación de ubicación de marco de pila. Establézcalo en true si esta entrada también se debe usar al especificar ubicaciones de punto de interrupción.",
+ "c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "Se establece en false si esta entrada solo se usa para la asignación de ubicación de marco de pila. Se establece en true si esta entrada también se debe usar al especificar ubicaciones de punto de interrupción.",
"c_cpp.debuggers.symbolOptions.description": "Opciones para controlar cómo se encuentran y se cargan los símbolos (archivos .pdb).",
"c_cpp.debuggers.unknownBreakpointHandling.description": "Controla cómo se controlan los puntos de interrupción establecidos externamente (normalmente a través de comandos GDB sin procesar) cuando se alcanzan.\nLos valores permitidos son \"throw\", que actúa como si la aplicación iniciara una excepción y \"stop\", que solo pausa la sesión de depuración. El valor predeterminado es \"throw\".",
"c_cpp.debuggers.debuginfod.description": "Controla el comportamiento de debuginfod de GDB para descargar símbolos de depuración de servidores debuginfod.",
diff --git a/Extension/i18n/esn/src/Debugger/debugAdapterDescriptorFactory.i18n.json b/Extension/i18n/esn/src/Debugger/debugAdapterDescriptorFactory.i18n.json
index 3e722ffca..21fb1579e 100644
--- a/Extension/i18n/esn/src/Debugger/debugAdapterDescriptorFactory.i18n.json
+++ b/Extension/i18n/esn/src/Debugger/debugAdapterDescriptorFactory.i18n.json
@@ -7,6 +7,6 @@
"debugger.not.available": "El tipo de depurador '{0}' no está disponible para equipos que no son de Windows.",
"debugger.noDebug.requestType.not.supported": "Ejecutar sin depuración solo se admite para las configuraciones de inicio.",
"debugger.unsupported.properties": "Las configuraciones de inicio con las siguientes propiedades no se pueden ejecutar directamente en el terminal: {0}",
- "debugger.fallback.message": "En su lugar, la salida del programa aparecerá en la Consola de depuración.",
+ "debugger.fallback.message": "La salida del programa aparecerá en el Consola de depuración en su lugar.",
"debugger.fallback.message2": "Para suprimir esta advertencia, establezca la propiedad \"ignoreRunWithoutDebuggingWarnings\" en true en la configuración de inicio."
}
diff --git a/Extension/i18n/esn/src/Debugger/processFilter.i18n.json b/Extension/i18n/esn/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..65aea8d3c
--- /dev/null
+++ b/Extension/i18n/esn/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "{0} Expresión regular {1} no válida: "
+}
diff --git a/Extension/i18n/esn/src/LanguageServer/extension.i18n.json b/Extension/i18n/esn/src/LanguageServer/extension.i18n.json
index c2e1e224e..0476fbf24 100644
--- a/Extension/i18n/esn/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/esn/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "Más información sobre el modo de instalar una biblioteca para este encabezado con vcpkg",
"copy.vcpkg.command": "Copie el comando vcpkg para instalar \"{0}\" en el Portapapeles",
"on.disabled.command": "Los comandos relacionados con IntelliSense no se pueden ejecutar cuando `C_Cpp.intelliSenseEngine` está establecido en `disabled`.",
+ "find.translation.units": "Buscando unidades de traducción...",
+ "no.translation.units.found": "No se encontraron unidades de traducción para el archivo activo.",
+ "current.translation.unit": "Unidad de traducción actual",
+ "select.translation.unit": "Seleccionar una unidad de traducción",
+ "select.translation.unit.placeholder": "Seleccione un archivo de origen para usarlo como unidad de traducción",
"switch.header.source": "Cambiando encabezado/origen...",
"client.not.found": "No se encuentra el cliente",
"ok": "Aceptar",
diff --git a/Extension/i18n/esn/src/nativeStrings.i18n.json b/Extension/i18n/esn/src/nativeStrings.i18n.json
index b95aadcb0..3fea5a497 100644
--- a/Extension/i18n/esn/src/nativeStrings.i18n.json
+++ b/Extension/i18n/esn/src/nativeStrings.i18n.json
@@ -346,13 +346,13 @@
"auth_denied": "El usuario denegó la autorización.",
"auth_unexpected_error": "Error inesperado durante el sondeo: {0}",
"auth_login_failed": "Error de inicio de sesión de GitHub. Intente ejecutar con --login desde la línea de comandos para iniciar sesión.",
- "auth_login_failed_plugin": "Error de inicio de sesión de GitHub. Ejecute npx @microsoft/cpp-language-server --login",
+ "auth_login_failed_plugin": "Error de inicio de sesión de GitHub. Run npx @microsoft/cpp-language-server --login",
"auth_eula_required": "Se debe aceptar el EULA para continuar. Se ejecuta con --accept-eula.",
- "auth_eula_required_plugin": "Se debe aceptar el EULA para continuar. Ejecute npx @microsoft/cpp-language-server --accept-eula",
+ "auth_eula_required_plugin": "Se debe aceptar el EULA para continuar. Run npx @microsoft/cpp-language-server --accept-eula",
"auth_already_authenticated": "Ya se ha autenticado con GitHub. Use --force-login para volver a autenticarse.",
"config_unsupported_version": "Error de inicialización: versión de configuración no admitida. Solo se admite la versión 1.",
- "config_file_not_found": "Error de inicialización: no se encontró el archivo de configuración '{0}'.",
- "config_parse_failed": "Error de inicialización: no se puede analizar el archivo de configuración '{0}'. Compruebe el formato JSON. Error: {1}",
+ "config_file_not_found": "Error de inicialización: no se encontró el archivo de configuración ''{0}\".",
+ "config_parse_failed": "Error de inicialización: no se puede analizar el archivo de configuración ''{0}\". Compruebe el formato JSON. Error: {1}",
"config_repo_path_invalid": "Error de inicialización: \"repositoryPath\" no está configurado o no es válido.",
"config_missing_source": "Error de inicialización: se debe configurar \"compileCommands\" o \"cppProperties\".",
"config_dual_source": "Error de inicialización: no se pueden configurar a la vez \"compileCommands\" y \"cppProperties\".",
@@ -425,7 +425,7 @@
"check_requires_source": "--check requiere un archivo de origen: --check=",
"check_source_not_found": "no se encuentra el archivo de origen: {0}",
"check_compile_commands_not_found": "No se encontró compile_commands.json: {0}",
- "check_compile_commands_not_discovered": "no se pudo encontrar compile_commands.json en ningún directorio padre de {0}; pase --check-compile-commands= para indicarlo explícitamente",
+ "check_compile_commands_not_discovered": "no se pudo encontrar compile_commands.json en ningún directorio principal de {0}; pase --check-compile-commands= para indicarlo explícitamente",
"check_engine_init_failed": "no se pudo inicializar el motor de lenguaje",
"check_no_workspace_folder": "no se resolvió ninguna carpeta del área de trabajo para {0}",
"check_not_in_compile_commands": "{0} no se encuentra en {1}",
@@ -434,5 +434,7 @@
"check_timed_out": "se agotó el tiempo de espera para finalizar el análisis de {0}",
"failed_to_open_browse_db_lock_file": "No se pudo abrir el archivo de bloqueo de la base de datos de exploración: {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "No se pudo bloquear el archivo de bloqueo de la base de datos de exploración: {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "La base de datos de exploración se deshabilitó porque su ubicación de almacenamiento no admite la memoria compartida de SQLite WAL. Establezca browse.databaseFilename en una ruta de acceso local."
+ "browse_database_disabled_incompatible_storage": "La base de datos de exploración se deshabilitó porque su ubicación de almacenamiento no admite la memoria compartida WAL de SQLite. Establezca browse.databaseFilename en una ruta de acceso local.",
+ "selected_translation_unit_not_include_file_previous": "El '{0}' de unidad de traducción seleccionado no incluye '{1}'. IntelliSense restaurará la unidad de traducción anterior si aún está disponible; de lo contrario, usará '{1}' como una unidad de traducción de solo encabezado.",
+ "selected_translation_unit_not_include_file_header_only": "El '{0}' de unidad de traducción seleccionado no incluye '{1}'. No hay ninguna unidad de traducción anterior disponible, por lo que IntelliSense usará '{1}' como unidad de traducción de solo encabezado."
}
diff --git a/Extension/i18n/esn/ui/settings.html.i18n.json b/Extension/i18n/esn/ui/settings.html.i18n.json
index 46da000cd..6f0129713 100644
--- a/Extension/i18n/esn/ui/settings.html.i18n.json
+++ b/Extension/i18n/esn/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "Cuando {0} (o activado), el analizador de etiquetas solo analizará los archivos de código que un archivo de código fuente haya incluido directa o indirectamente en {1}. Cuando {2} (o no está activado), el analizador de etiquetas analizará todos los archivos de código que se encuentran en las rutas de acceso especificadas en la lista de {3} .",
"database.filename": "Examinar: nombre del archivo de base de datos",
"database.filename.description": "La ruta de acceso a la base de datos de símbolos generada. Esto indica a la extensión que guarde la base de datos de símbolos del analizador de etiquetas en una ubicación distinta de la ubicación de almacenamiento predeterminada del área de trabajo. Si se especifica una ruta de acceso relativa, será relativa a la ubicación de almacenamiento predeterminada del área de trabajo, no a la carpeta del área de trabajo en sí. La variable {0} se puede usar para especificar una ruta de acceso relativa a la carpeta del área de trabajo (por ejemplo, {1}).",
- "recursiveIncludes.reduce": "Inclusiones recursivas: orden: reducción",
- "recursiveIncludes.reduce.description": "Establézcalo en {0} para reducir siempre el número de rutas de inclusión recursivas proporcionadas a IntelliSense solo a aquellas rutas a las que hacen referencia actualmente las instrucciones #include. Esto requiere primero analizar los archivos para determinar qué archivos se incluyen. Establézcalo en {1} para proporcionar todas las rutas de inclusión recursivas a IntelliSense. Reducir el número de rutas de inclusiones recursivas puede mejorar el rendimiento de IntelliSense cuando hay un gran número de rutas de inclusión recursivas involucradas. No reducir el número de rutas de inclusión recursivas puede mejorar el rendimiento de IntelliSense al evitar la necesidad de analizar archivos para determinar qué rutas de inclusión proporcionar.",
"recursiveIncludes.priority": "Inclusión recursiva: prioridad",
"recursiveIncludes.priority.description": "La prioridad de las rutas de acceso de inclusión recursivas. Si se establece en {0}, se buscarán las rutas de inclusión recursivas antes que las rutas de inclusión del sistema. Si se establece en {1}, se buscarán las rutas de inclusión recursivas después de las rutas de inclusión del sistema.",
"recursiveIncludes.order": "Inclusiones recursivas: orden",
diff --git a/Extension/i18n/fra/package.i18n.json b/Extension/i18n/fra/package.i18n.json
index d8564d1fb..dd2031bf9 100644
--- a/Extension/i18n/fra/package.i18n.json
+++ b/Extension/i18n/fra/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "Installer un compilateur C++",
"c_cpp.command.rescanCompilers.title": "Relancer l’analyse des compilateurs",
"c_cpp.command.switchHeaderSource.title": "Basculer l'en-tête/la source",
+ "c_cpp.command.selectTranslationUnit.title": "Sélectionnez une unité de traduction…",
"c_cpp.command.enableErrorSquiggles.title": "Activer les tildes d'erreur",
"c_cpp.command.disableErrorSquiggles.title": "Désactiver les tildes d'erreur",
"c_cpp.command.toggleDimInactiveRegions.title": "Activer/désactiver la colorisation des régions inactives",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "Contrôle si l'extension signale les erreurs détectées dans `c_cpp_properties.json`.",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "Valeur à utiliser dans une configuration si `customConfigurationVariables` n'est pas défini, ou valeurs à insérer si `${default}` est présent dans `customConfigurationVariables`.",
"c_cpp.configuration.default.dotConfig.markdownDescription": "Valeur à utiliser dans une configuration si `dotConfig` n'est pas spécifié ou est défini sur `${default}`.",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "Valeur à utiliser dans une configuration si `recursiveIncludes.reduce` n’est pas spécifié ou est défini sur `${default}`.",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "Valeur à utiliser dans une configuration si `recursiveIncludes.priority` n’est pas spécifié ou est défini sur `${default}`.",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "Valeur à utiliser dans une configuration si `recursiveIncludes.order` n’est pas spécifié ou est défini sur `${default}`.",
"c_cpp.configuration.experimentalFeatures.description": "Contrôle si les fonctionnalités \"expérimentales\" sont utilisables.",
@@ -332,6 +332,7 @@
"c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "Si la valeur est true, désactive la redirection de la console de l'élément débogué nécessaire pour prendre en charge le terminal intégré.",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "Mappages de fichiers sources facultatifs passés au moteur de débogage. Exemple : `{ \"\": \"\" }`.",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "ID de processus facultatif auquel attacher le débogueur. Utilisez `${command:pickProcess}` pour obtenir la liste des processus locaux en cours d'exécution à attacher. Notez que certaines plateformes nécessitent des privilèges d'administrateur(-trice) pour attacher un processus.",
+ "c_cpp.debuggers.processFilter.description": "Expression régulière facultative utilisée pour faire correspondre les candidats de l’attachement à distance par étiquette, description ou détail. Si un seul processus correspond, le débogueur s’y attache automatiquement. Si plusieurs processus correspondent, le sélecteur de processus s’affiche avec les entrées correspondantes uniquement. Si aucun processus ne correspond, le sélecteur de processus complet s’affiche. Une expression régulière non valide signale une erreur.",
"c_cpp.debuggers.program.attach.markdownDescription": "Chemin complet du programme exécutable. Le débogueur recherche un processus en cours d’exécution correspondant à ce chemin et s’y attache. Si plusieurs processus correspondent, une invite de sélection s’affiche. Ce champ est obligatoire pour charger les symboles de débogage du processus attaché.",
"c_cpp.debuggers.symbolSearchPath.description": "Liste de répertoires séparés par des points-virgules à utiliser pour rechercher les fichiers de symboles (c'est-à-dire, pdb ou .so). Exemple : « c:\\dir1;c:\\dir2 ».",
"c_cpp.debuggers.dumpPath.description": "Chemin complet facultatif d'un fichier d'image mémoire pour le programme spécifié. Exemple : \"c:\\temp\\app.dmp\". La valeur par défaut est null.",
@@ -389,7 +390,7 @@
"c_cpp.taskDefinitions.detail.description": "Détails supplémentaires de la tâche.",
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.description": "Chemins actuels et au moment de la compilation des mêmes arborescences sources. Les fichiers situés dans EditorPath sont mappés au chemin CompileTimePath pour les correspondances de points d'arrêt et sont mappés de CompileTimePath à EditorPath au moment de l'affichage des emplacements d'arborescences des appels de procédure.",
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.editorPath.description": "Chemin de l'arborescence source que l'éditeur va utiliser.",
- "c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "Définissez sur false si cette entrée est utilisée uniquement pour le mappage d’emplacements de frame de pile. Définissez sur true si cette entrée doit également être utilisée lors de la spécification d’emplacements de point d’arrêt.",
+ "c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "Défini sur false si cette entrée est utilisée uniquement pour le mappage d’emplacements de frame de pile. Défini sur true si cette entrée doit également être utilisée lors de la spécification d’emplacements de point d’arrêt.",
"c_cpp.debuggers.symbolOptions.description": "Options permettant de contrôler la façon dont les symboles (fichiers .pdb) sont trouvés et chargés.",
"c_cpp.debuggers.unknownBreakpointHandling.description": "Contrôle la façon dont les points d’arrêt définis en externe (généralement via des commandes GDB brutes) sont gérés en cas d’accès.\nLes valeurs autorisées sont « throw », qui agit comme si une exception était levée par l’application, et « stop », qui suspend uniquement la session de débogage. La valeur par défaut est « throw ».",
"c_cpp.debuggers.debuginfod.description": "Permet de contrôler le comportement de debuginfod par GDB pour télécharger les symboles de débogage à partir de serveurs debuginfod.",
diff --git a/Extension/i18n/fra/src/Debugger/processFilter.i18n.json b/Extension/i18n/fra/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..e95780572
--- /dev/null
+++ b/Extension/i18n/fra/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "Expression régulière {0} non valide : {1}"
+}
diff --git a/Extension/i18n/fra/src/LanguageServer/extension.i18n.json b/Extension/i18n/fra/src/LanguageServer/extension.i18n.json
index 69160615f..c0d500ea2 100644
--- a/Extension/i18n/fra/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/fra/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "Découvrir comment installer une bibliothèque pour cet en-tête avec vcpkg",
"copy.vcpkg.command": "Copier la commande vcpkg pour installer '{0}' dans le Presse-papiers",
"on.disabled.command": "Les commandes liées à IntelliSense ne peuvent pas être exécutées quand `C_Cpp.intelliSenseEngine` a la valeur `disabled`.",
+ "find.translation.units": "Recherche des unités de traduction en cours…",
+ "no.translation.units.found": "Nous n’avons trouvé aucune unité de traduction n’a été pour le fichier actif.",
+ "current.translation.unit": "Unité de traduction actuelle",
+ "select.translation.unit": "Sélectionner une unité de traduction",
+ "select.translation.unit.placeholder": "Sélectionner un fichier source à utiliser comme unité de traduction",
"switch.header.source": "Changement d’en-tête/source en cours... Merci de patienter.",
"client.not.found": "client introuvable",
"ok": "OK",
diff --git a/Extension/i18n/fra/src/nativeStrings.i18n.json b/Extension/i18n/fra/src/nativeStrings.i18n.json
index 9efb53d19..344e11318 100644
--- a/Extension/i18n/fra/src/nativeStrings.i18n.json
+++ b/Extension/i18n/fra/src/nativeStrings.i18n.json
@@ -12,7 +12,7 @@
"edit_include_path": "Modifier le paramètre \"includePath\"",
"disable_error_squiggles": "Désactiver les tildes d'erreur",
"enable_error_squiggles": "Activer tous les tildes d'erreur",
- "include_errors_update_include_path_squiggles_disabled2": "Erreurs #include détectées. Veuillez mettre à jour votre includePath. Les erreurs de syntaxe concernant ce fichier ne seront pas signalées tant que les fichiers inclus n’auront pas été trouvés.",
+ "include_errors_update_include_path_squiggles_disabled2": "#incluez les erreurs détectées. Veuillez mettre à jour votre includePath. Les erreurs de syntaxe concernant ce fichier ne seront pas signalées tant que les fichiers inclus n’auront pas été trouvés.",
"include_errors_update_include_path_intellisense_disabled": "Erreurs #include détectées. Mettez à jour includePath. Les fonctionnalités IntelliSense de cette unité de traduction ({0}) sont fournies par l'analyseur de balises.",
"include_errors_update_compile_commands_or_include_path_intellisense_disabled": "Erreurs #include détectées. Mettez à jour compile_commands.json ou includePath. Les fonctionnalités IntelliSense de cette unité de traduction ({0}) sont fournies par l'analyseur de balises.",
"could_not_parse_compile_commands": "Impossible d'analyser \"{0}\". 'includePath' dans c_cpp_properties.json dans le dossier '{1}' sera utilisé à la place.",
@@ -122,7 +122,7 @@
"formatting_diff": "Mise en forme de la sortie comparée :",
"disable_inactive_regions": "Désactiver la colorisation de la région inactive",
"error_limit_exceeded": "Limite d'erreurs dépassée, {0} erreur(s) non signalée(s).",
- "include_errors_update_compile_commands_or_include_path_squiggles_disabled2": "Erreurs #include détectées. Envisagez de mettre à jour votre fichier compile_commands.json ou votre includePath. Les erreurs de syntaxe concernant ce fichier ne seront pas signalées tant que les fichiers inclus n’auront pas été trouvés.",
+ "include_errors_update_compile_commands_or_include_path_squiggles_disabled2": "#incluez les erreurs détectées. Consider updating your compile_commands.json or includePath. Les erreurs de syntaxe concernant ce fichier ne seront pas signalées tant que les fichiers inclus n’auront pas été trouvés.",
"cannot_reset_database": "Impossible de réinitialiser la base de données IntelliSense. Pour effectuer une réinitialisation manuelle, fermez toutes les instances de VS Code, puis supprimez ce fichier : {0}",
"formatting_failed_see_output": "La mise en forme a échoué. Pour plus d'informations, consultez la fenêtre sortie.",
"populating_include_completion_cache": "Remplissage du cache de fin d'inclusion.",
@@ -160,7 +160,7 @@
"fallback_to_no_bitness": "Échec de l'interrogation du compilateur. Retour au mode sans nombre de bits.",
"intellisense_client_creation_aborted": "Abandon de la création du client IntelliSense : {0}",
"include_errors_config_provider_intellisense_disabled": "Erreurs #include détectées d'après les informations fournies par le paramètre configurationProvider. Les fonctionnalités IntelliSense de cette unité de traduction ({0}) sont fournies par l'analyseur de balises.",
- "include_errors_config_provider_squiggles_disabled2": "Erreurs #include détectées d'après les informations fournies par le paramètre configurationProvider. Les erreurs de syntaxe concernant ce fichier ne seront pas signalées tant que les fichiers inclus n’auront pas été trouvés.",
+ "include_errors_config_provider_squiggles_disabled2": "#incluez les erreurs détectées basées sur les informations fournies par le paramètre configurationProvider. Les erreurs de syntaxe concernant ce fichier ne seront pas signalées tant que les fichiers inclus n’auront pas été trouvés.",
"preprocessor_keyword": "mot clé de préprocesseur",
"c_keyword": "Mot clé C",
"cpp_keyword": "Mot clé C++",
@@ -419,7 +419,7 @@
"help_allow_missing_lsp_config": "Autorisez le serveur à démarrer même si le fichier --lsp-config spécifié n’existe pas.",
"initialize_failed_during_engine_setup": "Échec de l’initialisation lors de la configuration du moteur.",
"important_label": "Important :",
- "help_check": "Validez un fichier source par rapport à compile_commands.json en effectuant une analyse syntaxique et sémantique complète, puis signalez tous les diagnostics. La commande se termine avec un code différent de zéro si des erreurs sont détectées.",
+ "help_check": "Validez un fichier source par rapport à compile_commands.json en le analysant entièrement et en l’examinant, puis signalez tous les diagnostics. La commande se termine avec une valeur différente de zéro si des erreurs sont détectées.",
"help_check_compile_commands": "Chemin vers un compile_commands.json spécifique (ou vers son répertoire) à utiliser avec --check. La valeur par défaut est la découverte automatique.",
"check_not_authorized": "non autorisé; la connexion est requise pour exécuter --check",
"check_requires_source": "--check nécessite un fichier source : --check=",
@@ -434,5 +434,7 @@
"check_timed_out": "Délai d’attente dépassé en attendant la fin de l’analyse de {0}",
"failed_to_open_browse_db_lock_file": "Échec de l’ouverture du fichier de verrouillage de la base de données de navigation : {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "Échec du verrouillage du fichier de verrouillage de la base de données de navigation : {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "La base de données de navigation a été désactivée, car son emplacement de stockage ne prend pas en charge la mémoire partagée SQLite WAL. Définissez browse.databaseFilename sur un chemin local."
+ "browse_database_disabled_incompatible_storage": "La base de données de navigation a été désactivée, car son emplacement de stockage ne prend pas en charge la mémoire partagée SQLite WAL. Définissez browse.databaseFilename sur un chemin local.",
+ "selected_translation_unit_not_include_file_previous": "L’unité de traduction sélectionnée « {0} » n’inclut pas « {1} ». IntelliSense restaurera l’unité de traduction précédente si elle est encore disponible. Sinon, il utilisera « {1} » comme unité de traduction d’en-tête uniquement.",
+ "selected_translation_unit_not_include_file_header_only": "L’unité de traduction sélectionnée '{0}' n’inclut pas '{1}'. Aucune unité de traduction précédente n’est disponible, IntelliSense l’utilise donc '{1}' comme unité de traduction d’en-tête uniquement."
}
diff --git a/Extension/i18n/fra/ui/settings.html.i18n.json b/Extension/i18n/fra/ui/settings.html.i18n.json
index 02109892a..54f0d0e04 100644
--- a/Extension/i18n/fra/ui/settings.html.i18n.json
+++ b/Extension/i18n/fra/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "Lorsque {0} (ou activé), l’analyseur de balise analyse uniquement les fichiers de code qui ont été inclus directement ou indirectement par un fichier source dans {1}. Lorsque {2} (ou non activé), l’analyseur de balise analyse tous les fichiers de code trouvés dans les chemins d’accès spécifiés dans la liste {3} .",
"database.filename": "Parcourir : nom de fichier de base de données",
"database.filename.description": "Chemin de la base de données de symboles générée. Cela indique à l'extension d'enregistrer la base de données de symboles de l'analyseur de balises à un emplacement autre que l'emplacement de stockage par défaut de l'espace de travail. Si un chemin relatif est spécifié, il est relatif à l'emplacement de stockage par défaut de l'espace de travail et non au dossier d'espace de travail lui-même. La variable {0} peut être utilisée pour spécifier un chemin relatif au dossier d'espace de travail (par ex., {1}).",
- "recursiveIncludes.reduce": "Inclusions récursives : réduire",
- "recursiveIncludes.reduce.description": "Affectez la valeur {0} pour toujours réduire le nombre de chemins d’accès d’inclusion récursive fournis à IntelliSense uniquement aux chemins actuellement référencés par des instructions #include. Pour cela, vous devez d’abord analyser les fichiers pour déterminer lesquels sont inclus. Affectez la valeur {1} pour fournir tous les chemins d’accès d’inclusion récursive à IntelliSense. La réduction du nombre de chemins d’accès d’inclusion récursive peut améliorer les performances d’IntelliSense lorsque de très nombreux chemins d’accès d’inclusion récursive sont impliqués. Ne pas réduire le nombre de chemins d’accès d’inclusion récursive peut améliorer les performances d’IntelliSense en évitant la nécessité d’analyser les fichiers pour déterminer quels chemins d’accès d’inclusion fournir.",
"recursiveIncludes.priority": "Inclusions récursives : priorité",
"recursiveIncludes.priority.description": "Priorité des chemins d’accès d’inclusion récursive. Si la valeur est {0}, les chemins d’accès d’inclusion récursive seront recherchés avant les chemins d’accès d’inclusion système. Si la valeur est {1}, les chemins d’accès d’inclusion récursive seront recherchés après les chemins d’accès d’inclusion système.",
"recursiveIncludes.order": "Inclusions récursives : trier",
diff --git a/Extension/i18n/ita/package.i18n.json b/Extension/i18n/ita/package.i18n.json
index d4cea0efe..49981a65a 100644
--- a/Extension/i18n/ita/package.i18n.json
+++ b/Extension/i18n/ita/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "Installare un compilatore C++",
"c_cpp.command.rescanCompilers.title": "Ripeti analisi dei compilatori",
"c_cpp.command.switchHeaderSource.title": "Scambia intestazione/origine",
+ "c_cpp.command.selectTranslationUnit.title": "Select a Translation Unit...",
"c_cpp.command.enableErrorSquiggles.title": "Abilita i segni di revisione per gli errori",
"c_cpp.command.disableErrorSquiggles.title": "Disabilita i segni di revisione per gli errori",
"c_cpp.command.toggleDimInactiveRegions.title": "Attiva/Disattiva colorazione delle aree inattive",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "Controlla se l'estensione segnala errori rilevati in `c_cpp_properties.json`.",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "Valore da usare in una configurazione se `customConfigurationVariables` non è impostato oppure valori da inserire se `${default}` è presente come chiave in `customConfigurationVariables`.",
"c_cpp.configuration.default.dotConfig.markdownDescription": "Il valore da usare in una configurazione se `dotConfig` non è specificato o impostato su `${default}`.",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "Il valore da usare in una configurazione se `recursiveIncludes.reduce` non è specificato o impostato su `${default}`.",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "Il valore da usare in una configurazione se `recursiveIncludes.priority` non è specificato o impostato su `${default}`.",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "Il valore da usare in una configurazione se `recursiveIncludes.order` non è specificato o impostato su `${default}`.",
"c_cpp.configuration.experimentalFeatures.description": "Controlla se le funzionalità \"sperimentali\" sono utilizzabili.",
@@ -332,6 +332,7 @@
"c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "Se è true, disabilita il reindirizzamento della console dell'oggetto del debug richiesto per il supporto del terminale integrato.",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "Mapping di file di origine facoltativi passati al motore di debug. Esempio: `{ \"\": \"\" }`.",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "ID processo facoltativo a cui collegare il debugger. Usare `${command:pickProcess}` per ottenere un elenco dei processi locali in esecuzione a cui collegarsi. Tenere presente che alcune piattaforme richiedono privilegi di amministratore per collegarsi a un processo.",
+ "c_cpp.debuggers.processFilter.description": "Espressione regolare facoltativa usata per trovare corrispondenze con candidati di collegamento remoto in base a etichetta, descrizione o dettaglio. Se esattamente un processo corrisponde, il debugger si connette automaticamente. Se più processi corrispondono, la selezione processi viene visualizzata solo con le voci corrispondenti. Se nessun processo corrisponde, viene visualizzata la selezione completa del processo. Un'espressione regolare non valida segnala un errore.",
"c_cpp.debuggers.program.attach.markdownDescription": "Percorso completo dell'eseguibile del programma. Il debugger cercherà un processo in esecuzione che corrisponde a questo percorso dell'eseguibile e vi si collegherà. Se più processi corrispondono, verrà mostrato un prompt per la selezione. Questo campo è necessario per caricare i simboli di debug del processo collegato.",
"c_cpp.debuggers.symbolSearchPath.description": "Elenco di directory delimitate da punto e virgola da usare per la ricerca di file di simboli, ovvero PDB o .SO. Esempio: \"c:\\dir1;c:\\dir2\".",
"c_cpp.debuggers.dumpPath.description": "Percorso completo facoltativo di un file dump per il programma specificato. Esempio: \"c:\\temp\\app.dmp\". L'impostazione predefinita è Null.",
@@ -389,7 +390,7 @@
"c_cpp.taskDefinitions.detail.description": "Dettagli aggiuntivi dell'attività.",
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.description": "Percorsi correnti e della fase di compilazione degli stessi alberi di origine. I file trovati in EditorPath vengono associati al percorso CompileTimePath per la corrispondenza dei punti di interruzione e associati da CompileTimePath a EditorPath durante la visualizzazione dei percorsi delle analisi dello stack.",
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.editorPath.description": "Percorso dell'albero di origine che verrà usato dall'editor.",
- "c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "Impostare su false se la voce viene utilizzata solo per il mapping della posizione dello stack frame. Impostare su true se la voce deve essere utilizzata anche quando si specificano le posizioni dei punti di interruzione.",
+ "c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "Impostare su false se la voce viene utilizzata solo per il mapping della posizione dello stack frame. Impostare su true se la voce deve essere utilizzata anche quando si specificano i percorsi dei punti di interruzione.",
"c_cpp.debuggers.symbolOptions.description": "Opzioni per controllare il modo in cui vengono trovati e caricati i simboli (file PDB).",
"c_cpp.debuggers.unknownBreakpointHandling.description": "Controllare la modalità di gestione dei punti di interruzione impostati esternamente (in genere tramite comandi GDB non elaborati) quando vengono selezionati.\nI valori consentiti sono \"throw\", che funziona come se fosse stata generata un'eccezione dall'applicazione e \"stop\", che sospende solo la sessione di debug. Il valore predefinito è \"throw\".",
"c_cpp.debuggers.debuginfod.description": "Controllare il comportamento di debuginfod in GDB per il download dei simboli di debug dai server debuginfod.",
diff --git a/Extension/i18n/ita/src/Debugger/processFilter.i18n.json b/Extension/i18n/ita/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..c7fd37d7f
--- /dev/null
+++ b/Extension/i18n/ita/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "Espressione regolare {0} non valida: {1}"
+}
diff --git a/Extension/i18n/ita/src/LanguageServer/client.i18n.json b/Extension/i18n/ita/src/LanguageServer/client.i18n.json
index 5d358bf92..f3b976638 100644
--- a/Extension/i18n/ita/src/LanguageServer/client.i18n.json
+++ b/Extension/i18n/ita/src/LanguageServer/client.i18n.json
@@ -26,7 +26,7 @@
"loggingLevel.changed": "{0} è stato modificato in: {1}",
"dismiss.button": "Ignora",
"disable.warnings.button": "Disabilita avvisi",
- "unable.to.provide.configuration": "{0} non è in grado di fornire le informazioni di configurazione IntelliSense. Verranno usate le impostazioni della configurazione di '{1}'.",
+ "unable.to.provide.configuration": "{0} non in grado di fornire le informazioni di configurazione IntelliSense. Verranno usate le impostazioni della configurazione di '{1}'.",
"config.not.found": "Il nome di configurazione richiesto non è stato trovato: {0}",
"timed.out": "Timeout raggiunto in {0} ms.",
"parsing.stats.large.project": "Sono stati enumerati {0} file con {1} file di origine C/C++ rilevati. Per ottenere prestazioni migliori, è possibile scegliere di escludere alcuni file.",
diff --git a/Extension/i18n/ita/src/LanguageServer/extension.i18n.json b/Extension/i18n/ita/src/LanguageServer/extension.i18n.json
index 01f519d09..4af080f3a 100644
--- a/Extension/i18n/ita/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/ita/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "Informazioni su come installare una libreria per questa intestazione con vcpkg",
"copy.vcpkg.command": "Copiare il comando vcpkg per installare '{0}' negli Appunti",
"on.disabled.command": "Non è possibile eseguire comandi correlati a IntelliSense quando `C_Cpp.intelliSenseEngine` è impostato su `disabled`.",
+ "find.translation.units": "Finding Translation Units...",
+ "no.translation.units.found": "No translation units were found for the active file.",
+ "current.translation.unit": "Current translation unit",
+ "select.translation.unit": "Select a Translation Unit",
+ "select.translation.unit.placeholder": "Selezionare un file di origine da usare come unità di conversione",
"switch.header.source": "Scambio intestazione/origine in corso...",
"client.not.found": "client non trovato",
"ok": "OK",
diff --git a/Extension/i18n/ita/src/nativeStrings.i18n.json b/Extension/i18n/ita/src/nativeStrings.i18n.json
index 9a1f2ed14..7432880a5 100644
--- a/Extension/i18n/ita/src/nativeStrings.i18n.json
+++ b/Extension/i18n/ita/src/nativeStrings.i18n.json
@@ -419,13 +419,13 @@
"help_allow_missing_lsp_config": "Consentire l'avvio del server anche se il file --lsp-config specificato non esiste.",
"initialize_failed_during_engine_setup": "Inizializzazione non riuscita durante la configurazione del motore.",
"important_label": "Importante:",
- "help_check": "Convalida un file di origine rispetto a compile_commands.json eseguendone completamente il parsing e l'analisi e segnalando eventuali diagnostiche. Termina con un codice diverso da zero se vengono rilevati errori.",
+ "help_check": "Convalida un file di origine rispetto a compile_commands.json attraverso l'analisi dettagliate e la segnalazione di eventuali diagnostiche. Esce un valore diverso da zero se vengono rilevati errori.",
"help_check_compile_commands": "Percorso a un compile_commands.json specifico (o alla relativa directory) da usare con --check. L'impostazione predefinita è l'individuazione automatica.",
"check_not_authorized": "non autorizzato; per eseguire --check è necessario accedere",
"check_requires_source": "--check richiede un file di origine: --check=",
"check_source_not_found": "file di origine non trovato: {0}",
"check_compile_commands_not_found": "compile_commands.json non trovato: {0}",
- "check_compile_commands_not_discovered": "non è stato possibile trovare compile_commands.json in alcuna directory padre di {0}; passare --check-compile-commands= per specificarlo in modo esplicito",
+ "check_compile_commands_not_discovered": "non ha potuto trovare compile_commands.json in alcuna directory padre di {0}; passare --check-compile-commands= per specificarlo in modo esplicito",
"check_engine_init_failed": "non è stato possibile inizializzare il motore del linguaggio",
"check_no_workspace_folder": "non è stata risolta alcuna cartella dell'area di lavoro per {0}",
"check_not_in_compile_commands": "{0} non è presente in {1}",
@@ -434,5 +434,7 @@
"check_timed_out": "timeout durante l'attesa del completamento dell'analisi di {0}",
"failed_to_open_browse_db_lock_file": "Non è stato possibile aprire il file di blocco del database di esplorazione: {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "Non è stato possibile bloccare il file di blocco del database di esplorazione: {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "Il database di esplorazione è stato disabilitato perché la posizione di archiviazione non supporta la memoria condivisa richiesta da SQLite WAL. Impostare browse.databaseFilename su un percorso locale."
+ "browse_database_disabled_incompatible_storage": "Il database di esplorazione è stato disabilitato perché la posizione di archiviazione non supporta la memoria condivisa WAL di SQLite. Impostare browse.databaseFilename su un percorso locale.",
+ "selected_translation_unit_not_include_file_previous": "L'unità di conversione selezionata '{0}' non include '{1}'. IntelliSense ripristinerà l'unità di conversione precedente, se è ancora disponibile; In caso contrario, utilizzerà '{1}' come unità di conversione di sola intestazione.",
+ "selected_translation_unit_not_include_file_header_only": "L'unità di conversione selezionata '{0}' non include '{1}'. Non è disponibile alcuna unità di conversione precedente, quindi IntelliSense userà '{1}' come unità di conversione di sola intestazione."
}
diff --git a/Extension/i18n/ita/ui/settings.html.i18n.json b/Extension/i18n/ita/ui/settings.html.i18n.json
index 833abb1a3..c68daa176 100644
--- a/Extension/i18n/ita/ui/settings.html.i18n.json
+++ b/Extension/i18n/ita/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "Quando è impostato su {0} (o selezionato), il parser tag analizzerà solo i file di codice che sono stati inclusi direttamente o indirettamente da un file di origine in {1}. Quando è impostato su {2} (o non è selezionato), il parser tag analizzerà tutti i file di codice trovati nei percorsi specificati nell'elenco di {3}.",
"database.filename": "Sfoglia: nome del file di database",
"database.filename.description": "Percorso del database dei simboli generato. Indica all'estensione di salvare il database dei simboli del parser di tag in una posizione diversa da quella di archiviazione predefinita dell'area di lavoro. Se viene specificato un percorso relativo, sarà relativo alla posizione di archiviazione predefinita dell'area di lavoro e non alla cartella dell'area di lavoro. È possibile usare la variabile {0} per specificare un percorso relativo alla cartella dell'area di lavoro, ad esempio {1}.",
- "recursiveIncludes.reduce": "Inclusioni ricorsive: riduzione",
- "recursiveIncludes.reduce.description": "Imposta su {0} per ridurre il numero di percorsi di inclusione ricorsivi forniti a IntelliSense, limitandoli solo ai percorsi attualmente referenziati da istruzioni #include. Per determinare quali file sono inclusi, è necessario prima analizzare i file. Imposta su {1} per fornire tutti i percorsi di inclusione ricorsivi a IntelliSense. La riduzione del numero di percorsi di inclusione ricorsivi può migliorare le prestazioni di IntelliSense in caso di un numero molto elevato di percorsi di inclusione ricorsivi. Non ridurre il numero di percorsi di inclusione ricorsivi può migliorare le prestazioni di IntelliSense evitando la necessità di analizzare i file per determinare quali percorsi di inclusione fornire.",
"recursiveIncludes.priority": "Inclusioni ricorsive: priorità",
"recursiveIncludes.priority.description": "La priorità dei percorsi di inclusione ricorsivi. Se impostato su {0}, i percorsi di inclusione ricorsivi verranno cercati prima dei percorsi di inclusione di sistema. Se impostato su {1}, i percorsi di inclusione ricorsivi verranno cercati dopo i percorsi di inclusione di sistema.",
"recursiveIncludes.order": "Inclusioni ricorsive: ordine",
diff --git a/Extension/i18n/jpn/package.i18n.json b/Extension/i18n/jpn/package.i18n.json
index b2e754bde..137401e64 100644
--- a/Extension/i18n/jpn/package.i18n.json
+++ b/Extension/i18n/jpn/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "C++ コンパイラのインストール",
"c_cpp.command.rescanCompilers.title": "コンパイラの再スキャン",
"c_cpp.command.switchHeaderSource.title": "ヘッダー/ソースの切り替え",
+ "c_cpp.command.selectTranslationUnit.title": "翻訳単位を選択...",
"c_cpp.command.enableErrorSquiggles.title": "エラーの波線を有効にする",
"c_cpp.command.disableErrorSquiggles.title": "エラーの波線を無効にする",
"c_cpp.command.toggleDimInactiveRegions.title": "非アクティブな領域の色づけの切り替え",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "拡張機能が、`c_cpp_properties.json` で検出されたエラーを報告するかどうかを制御します。",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "`customConfigurationVariables` が設定されていない場合に構成で使用される値、または `customConfigurationVariables` 内に `${default}` がキーとして存在する場合に挿入される値。",
"c_cpp.configuration.default.dotConfig.markdownDescription": "`dotConfig` が指定されていないか、`${default}` に設定されている場合に、構成で使用される値。",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "`recursiveIncludes.reduce` が指定されていないか、`${default}` に設定されている場合に、構成で使用される値。",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "`recursiveIncludes.priority` が指定されていないか、`${default}` に設定されている場合に、構成で使用される値。",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "`recursiveIncludes.order` が指定されていないか、`${default}` に設定されている場合に、構成で使用される値。",
"c_cpp.configuration.experimentalFeatures.description": "\"experimental\" の機能を使用できるかどうかを制御します。",
@@ -332,6 +332,7 @@
"c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "true の場合、統合ターミナルのサポートに必要なデバッグ対象のコンソール リダイレクトが無効になります。",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "デバッグ エンジンに渡されるオプションのソース ファイル マッピング。例: `{ \"<元のソース パス>\": \"<現在のソース パス>\" }`。",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "デバッガーをアタッチするためのオプションのプロセス ID。ローカルで実行される、アタッチ先プロセスのリストを取得するには、`${command:pickProcess}` を使用します。一部のプラットフォームでは、プロセスにアタッチするために管理者特権が必要となることに注意してください。",
+ "c_cpp.debuggers.processFilter.description": "ラベル、説明、または詳細でリモートアタッチ候補を照合するために使用されるオプションの正規表現。1 つのプロセスが一致する場合、デバッガーは自動的にアタッチされます。複数のプロセスが一致する場合、一致するエントリのみが含まれるプロセス ピッカーが表示されます。一致するプロセスがない場合は、完全なプロセス ピッカーが表示されます。正規表現が無効な場合、エラーが報告されます。",
"c_cpp.debuggers.program.attach.markdownDescription": "プログラム実行可能ファイルへの完全なパス。デバッガーは、この実行可能ファイルのパスに一致する実行中のプロセスを検索し、アタッチします。複数のプロセスが一致する場合は、選択プロンプトが表示されます。アタッチされたプロセスのデバッグ シンボルを読み込むには、このフィールドが必要です。",
"c_cpp.debuggers.symbolSearchPath.description": "シンボル (つまり pdb または .so) ファイルの検索に使用する、セミコロンで区切られたディレクトリの一覧です。例: \"c:\\dir1;c:\\dir2\"。",
"c_cpp.debuggers.dumpPath.description": "指定したプログラムのダンプ ファイルへの完全なパスです (オプション)。例: \"c:\\temp\\app.dmp\"。既定値は null です。",
diff --git a/Extension/i18n/jpn/src/Debugger/processFilter.i18n.json b/Extension/i18n/jpn/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..563d96dd8
--- /dev/null
+++ b/Extension/i18n/jpn/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "無効な {0} 正規表現: {1}"
+}
diff --git a/Extension/i18n/jpn/src/LanguageServer/extension.i18n.json b/Extension/i18n/jpn/src/LanguageServer/extension.i18n.json
index f936f939f..b9522ae2b 100644
--- a/Extension/i18n/jpn/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/jpn/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "このヘッダーのライブラリを vcpkg でインストールする方法の詳細",
"copy.vcpkg.command": "'{0}' をインストールするための vcpkg コマンドをクリップボードにコピーする",
"on.disabled.command": "`C_Cpp.intelliSenseEngine` が `disabled` に設定されている場合、IntelliSense 関連のコマンドは実行できません。",
+ "find.translation.units": "翻訳単位を検索しています...",
+ "no.translation.units.found": "アクティブ ファイルに対する翻訳単位が見つかりませんでした。",
+ "current.translation.unit": "現在の翻訳単位",
+ "select.translation.unit": "翻訳単位を選択してください",
+ "select.translation.unit.placeholder": "翻訳単位として使用するソース ファイルを選択してください",
"switch.header.source": "ヘッダー/ソースを切り替えています...",
"client.not.found": "クライアントが見つかりませんでした",
"ok": "OK",
diff --git a/Extension/i18n/jpn/src/nativeStrings.i18n.json b/Extension/i18n/jpn/src/nativeStrings.i18n.json
index 18b9f7dfb..ecf20daee 100644
--- a/Extension/i18n/jpn/src/nativeStrings.i18n.json
+++ b/Extension/i18n/jpn/src/nativeStrings.i18n.json
@@ -419,7 +419,7 @@
"help_allow_missing_lsp_config": "指定された --lsp-config ファイルが存在しない場合でも、サーバーの起動を許可します。",
"initialize_failed_during_engine_setup": "エンジンのセットアップ中に初期化に失敗しました。",
"important_label": "重要:",
- "help_check": "ソース ファイルを完全に構文解析および分析して診断を報告し、compile_commands.json に照らして検証します。エラーが見つかった場合は、0 以外の終了コードで終了します。",
+ "help_check": "全体的な解析と分析を行ない診断を報告することで、compile_commands.json に対しソース ファイルを検証します。エラーが見つかった場合は 0 以外を終了します。",
"help_check_compile_commands": "--check とともに使用する、特定のcompile_commands.json (またはそのディレクトリ) へのパス。既定値は自動検出です。",
"check_not_authorized": "未承認: --check を実行するにはサインインが必要です",
"check_requires_source": "--check にはソース ファイルが必要です: --check=",
@@ -427,12 +427,14 @@
"check_compile_commands_not_found": "compile_commands.json が見つかりません: {0}",
"check_compile_commands_not_discovered": "{0} のいずれの親ディレクトリにも、compile_commands.json が見つかりませんでした。--check-compile-commands= を渡して明示的に指定してください",
"check_engine_init_failed": "言語エンジンの初期化に失敗しました",
- "check_no_workspace_folder": "{0} のワークスペース フォルダーを解決できませんでした",
+ "check_no_workspace_folder": "{0} について解決されたワークスペース フォルダーはありません",
"check_not_in_compile_commands": "{0} は {1} 内に存在しません",
"check_read_failed": "{0} の読み取りに失敗しました",
"check_open_failed": "分析のために {0} を開けませんでした",
- "check_timed_out": "{0} の分析が完了するのを待機中にタイムアウトしました",
+ "check_timed_out": "{0} の分析完了の待機がタイムアウトしました",
"failed_to_open_browse_db_lock_file": "参照データベースのロック ファイルを開けませんでした: {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "参照データベースのロック ファイルをロックできませんでした: {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "参照データベースは、保存場所が SQLite WAL の共有メモリをサポートしていないため、無効になりました。browse.databaseFilename をローカル パスに設定してください。"
+ "browse_database_disabled_incompatible_storage": "参照データベースは、保存場所が SQLite WAL の共有メモリをサポートしていないため、無効になりました。browse.databaseFilename をローカル パスに設定してください。",
+ "selected_translation_unit_not_include_file_previous": "選択された翻訳単位 '{0}' には '{1}' が含まれていません。IntelliSense は、以前の翻訳単位がまだ使用できる場合はそれを復元します。そうでない場合は、'{1}' をヘッダーのみの翻訳単位として使用します。",
+ "selected_translation_unit_not_include_file_header_only": "選択された翻訳単位 '{0}' には '{1}' が含まれていません。以前の翻訳単位を使用できないため、IntelliSense は '{1}' をヘッダーのみの翻訳単位として使用します。"
}
diff --git a/Extension/i18n/jpn/ui/settings.html.i18n.json b/Extension/i18n/jpn/ui/settings.html.i18n.json
index 67a260ac7..2ad5dd3eb 100644
--- a/Extension/i18n/jpn/ui/settings.html.i18n.json
+++ b/Extension/i18n/jpn/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "{0} (またはチェックボックスがオン) の場合、タグ パーサーは、{1} のソース ファイルによって直接的または間接的にインクルードされたコード ファイルのみを解析します。{2} (またはチェック ボックスがオフ) の場合、タグ パーサーは、{3} の一覧に指定されたパスで見つかったすべてのコード ファイルを解析します。",
"database.filename": "参照: データベース ファイル名",
"database.filename.description": "生成されたシンボル データベースへのパスです。これは、タグ パーサーのシンボル データベースをワークスペースの既定のストレージの場所以外に保存するように拡張機能に指示します。相対パスを指定した場合、ワークスペース フォルダー自体ではなく、ワークスペースの既定のストレージの場所に対する相対パスになります。{0} 変数を使用して、ワークスペース フォルダーに対する相対パスを指定することもできます (例: {1})。",
- "recursiveIncludes.reduce": "再帰的インクルード: 縮小",
- "recursiveIncludes.reduce.description": "{0} に設定すると、IntelliSense に提供される再帰インクルード パスの数は #include ステートメントによって現在参照されているパスのみに減らされます。これには、まずファイルを解析して、どのファイルが含まれているかを判断する必要があります。すべての再帰インクルード パスを IntelliSense に提供するには、{1} に設定します。非常に多数の再帰インクルード パスが関係している場合、再帰インクルード パスの数を減らすと、IntelliSense のパフォーマンスが向上する可能性があります。再帰インクルード パスの数を減らさないことで、どのインクルード パスを提供するかを判断するためのファイル解析が不要になり、IntelliSense のパフォーマンスが向上する場合があります。",
"recursiveIncludes.priority": "再帰インクルード: 優先度",
"recursiveIncludes.priority.description": "再帰インクルード パスの優先順位。{0} に設定すると、再帰インクルード パスはシステム インクルード パスの前に検索されます。{1} に設定すると、再帰インクルード パスはシステム インクルード パスの後に検索されます。",
"recursiveIncludes.order": "再帰的インクルード: 順序",
diff --git a/Extension/i18n/kor/package.i18n.json b/Extension/i18n/kor/package.i18n.json
index 76e9c6edb..c50921743 100644
--- a/Extension/i18n/kor/package.i18n.json
+++ b/Extension/i18n/kor/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "C++ 컴파일러 설치",
"c_cpp.command.rescanCompilers.title": "컴파일러 관련 재검사",
"c_cpp.command.switchHeaderSource.title": "헤더/소스 전환",
+ "c_cpp.command.selectTranslationUnit.title": "변환 단위 선택...",
"c_cpp.command.enableErrorSquiggles.title": "오류 표시선 사용",
"c_cpp.command.disableErrorSquiggles.title": "오류 표시선 사용 안 함",
"c_cpp.command.toggleDimInactiveRegions.title": "비활성 영역 색 지정 설정/해제",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "확장이 `c_cpp_properties.json`에서 검색된 오류를 보고하도록 할지를 제어합니다.",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "`customConfigurationVariables`가 설정되지 않은 경우 구성에서 사용할 값 또는 `${default}`가 `customConfigurationVariables`에 키로 존재하는 경우 삽입할 값입니다.",
"c_cpp.configuration.default.dotConfig.markdownDescription": "`dotConfig`가 지정되지 않았거나 `${default}`로 설정된 경우 구성에 사용할 값입니다.",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "`recursiveIncludes.reduce`가 지정되지 않았거나 `${default}`로 설정된 경우 구성에 사용할 값입니다.",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "`recursiveIncludes.priority`가 지정되지 않았거나 `${default}`로 설정된 경우 구성에 사용할 값입니다.",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "`recursiveIncludes.order`가 지정되지 않았거나 `${default}`로 설정된 경우 구성에 사용할 값입니다.",
"c_cpp.configuration.experimentalFeatures.description": "\"실험적\" 기능을 사용할 수 있는지 여부를 제어합니다.",
@@ -323,7 +323,7 @@
"c_cpp.debuggers.serverLaunchTimeout.description": "debugServer가 시작될 때까지 디버거가 대기할 선택적 시간(밀리초)입니다. 기본값은 10000입니다.",
"c_cpp.debuggers.coreDumpPath.description": "지정된 프로그램에 대한 코어 덤프 파일의 선택적 전체 경로입니다. 기본값은 null입니다.",
"c_cpp.debuggers.cppdbg.externalConsole.description": "true이면 콘솔이 디버기에 대해 시작됩니다. false이면 Linux 및 Windows에서 통합 콘솔에 표시됩니다.",
- "c_cpp.debuggers.cppvsdbg.externalConsole.description": "['console'로 대체되어 더 이상 사용되지 않음] true이면 디버그 대상용 콘솔이 시작됩니다. false이면 콘솔이 시작되지 않습니다.",
+ "c_cpp.debuggers.cppvsdbg.externalConsole.description": "['console'에서 사용되지 않음] true이면 콘솔이 디버기에 대해 시작됩니다. false이면 콘솔이 시작되지 않습니다.",
"c_cpp.debuggers.cppvsdbg.console.description": "디버그 대상을 시작할 위치입니다. 정의되지 않은 경우 기본값인 'internalConsole'로 설정됩니다.",
"c_cpp.debuggers.cppvsdbg.console.internalConsole.description": "VS Code 디버그 콘솔에 출력합니다. 콘솔 입력 읽기(예: 'std::cin' 또는 'scanf')는 지원되지 않습니다.",
"c_cpp.debuggers.cppvsdbg.console.integratedTerminal.description": "VS Code의 통합 터미널",
@@ -332,10 +332,11 @@
"c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "true이면 통합 터미널 지원에 필요한 디버기 콘솔 리디렉션을 사용하지 않도록 설정합니다.",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "디버그 엔진에 전달되는 선택적 소스 파일 매핑입니다. 예: `{ \"<원래 소스 경로>\": \"<현재 소스 경로>\" }`.",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "디버거를 연결할 선택적 프로세스 ID입니다. `${command:pickProcess}`를 사용하여 연결할 로컬 실행 프로세스 목록을 가져옵니다. 일부 플랫폼에서는 프로세스에 연결하기 위해 관리자 권한이 필요합니다.",
+ "c_cpp.debuggers.processFilter.description": "레이블, 설명 또는 세부 정보로 원격 연결 후보를 일치시키는 데 사용하는 선택적 정규식입니다. 정확히 하나의 프로세스가 일치하면 디버거가 자동으로 연결됩니다. 여러 프로세스가 일치하면 일치하는 항목만 표시된 프로세스 선택기가 나타납니다. 일치하는 프로세스가 없으면 전체 프로세스 선택기가 표시됩니다. 잘못된 정규식이면 오류가 보고됩니다.",
"c_cpp.debuggers.program.attach.markdownDescription": "프로그램 실행 파일의 전체 경로입니다. 디버거는 이 실행 파일 경로와 일치하는 실행 중인 프로세스를 찾아 연결합니다. 여러 프로세스가 일치하는 경우 선택 프롬프트가 나타납니다. 이 필드는 연결된 프로세스의 디버그 기호를 로드하는 데 필요합니다.",
"c_cpp.debuggers.symbolSearchPath.description": "기호(pdb 또는 .so) 파일 검색에 사용할 디렉터리의 세미콜론으로 구분된 목록입니다. 예: \"c:\\dir1;c:\\dir2\".",
"c_cpp.debuggers.dumpPath.description": "지정된 프로그램에 대한 코어 덤프 파일의 선택적 전체 경로입니다(예: \"c:\\temp\\app.dmp\"). 기본값은 null입니다.",
- "c_cpp.debuggers.enableDebugHeap.description": "false이면 디버그 힙이 사용되지 않도록 설정된 상태로 프로세스가 시작됩니다. 이렇게 하면 환경 변수 '_NO_DEBUG_HEAP'이 '1'로 설정됩니다.",
+ "c_cpp.debuggers.enableDebugHeap.description": "false이면 디버그 힙이 사용하지 않도록 설정된 상태로 프로세스가 시작됩니다. 이렇게 하면 환경 변수 '_NO_DEBUG_HEAP'이 '1'로 설정됩니다.",
"c_cpp.debuggers.symbolLoadInfo.description": "기호 로드를 명시적으로 제어합니다.",
"c_cpp.debuggers.symbolLoadInfo.loadAll.description": "true이면 모든 라이브러리의 기호가 로드됩니다. true가 아니면 solib 기호가 로드되지 않습니다. 기본값은 true입니다.",
"c_cpp.debuggers.symbolLoadInfo.exceptionList.description": "세미콜론 ';'으로 구분된 파일 이름(와일드카드 허용) 목록이며, LoadAll의 동작을 수정합니다. LoadAll이 true이면 목록에 있는 이름과 일치하는 라이브러리의 기호를 로드하지 않습니다. true가 아니면 일치하는 라이브러리의 기호만 로드합니다. 예: \"foo.so;bar.so\"",
diff --git a/Extension/i18n/kor/src/Debugger/processFilter.i18n.json b/Extension/i18n/kor/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..2047b98ac
--- /dev/null
+++ b/Extension/i18n/kor/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "잘못된 {0} 정규식: {1}"
+}
diff --git a/Extension/i18n/kor/src/LanguageServer/extension.i18n.json b/Extension/i18n/kor/src/LanguageServer/extension.i18n.json
index 2b9986c9a..506af3783 100644
--- a/Extension/i18n/kor/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/kor/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "vcpkg를 사용하여 이 헤더의 라이브러리를 설치하는 방법 알아보기",
"copy.vcpkg.command": "'{0}'을(를) 설치할 vcpkg 명령을 클립보드에 복사",
"on.disabled.command": "IntelliSense 관련 명령은 `C_Cpp.intelliSenseEngine`이 `disabled`로 설정된 경우 실행할 수 없습니다.",
+ "find.translation.units": "변환 단위를 찾는 중...",
+ "no.translation.units.found": "활성 파일에 대한 변환 단위를 찾을 수 없습니다.",
+ "current.translation.unit": "현재 변환 단위",
+ "select.translation.unit": "변환 단위 선택",
+ "select.translation.unit.placeholder": "변환 단위로 사용할 원본 파일 선택",
"switch.header.source": "헤더/원본을 전환하는 중...",
"client.not.found": "클라이언트를 찾을 수 없음",
"ok": "확인",
diff --git a/Extension/i18n/kor/src/nativeStrings.i18n.json b/Extension/i18n/kor/src/nativeStrings.i18n.json
index ada469c08..08f876d11 100644
--- a/Extension/i18n/kor/src/nativeStrings.i18n.json
+++ b/Extension/i18n/kor/src/nativeStrings.i18n.json
@@ -160,7 +160,7 @@
"fallback_to_no_bitness": "컴파일러를 쿼리하지 못했습니다. 0비트로 대체하는 중입니다.",
"intellisense_client_creation_aborted": "IntelliSense 클라이언트 만들기가 중단됨: {0}",
"include_errors_config_provider_intellisense_disabled": "configurationProvider 설정에서 제공하는 정보를 기준으로 #include 오류가 검색되었습니다. 태그 파서가 이 변환 단위({0})에 적합한 IntelliSense 기능을 제공합니다.",
- "include_errors_config_provider_squiggles_disabled2": "configurationProvider 설정에서 제공하는 정보를 기준으로 #include 오류가 감지되었습니다. 포함된 파일을 찾을 때까지 이 파일의 구문 오류는 보고되지 않습니다.",
+ "include_errors_config_provider_squiggles_disabled2": "configurationProvider 설정에서 제공하는 정보를 기준으로 #include 오류가 검색되었습니다. 포함된 파일을 찾을 때까지 이 파일의 구문 오류는 보고되지 않습니다.",
"preprocessor_keyword": "전처리기 키워드",
"c_keyword": "C 키워드",
"cpp_keyword": "C++ 키워드",
@@ -419,11 +419,11 @@
"help_allow_missing_lsp_config": "지정된 --lsp-config 파일이 없어도 서버를 시작할 수 있도록 허용합니다.",
"initialize_failed_during_engine_setup": "엔진을 설정하는 동안 초기화하지 못했습니다.",
"important_label": "중요:",
- "help_check": "소스 파일을 완전히 구문 분석 및 분석하고 진단 결과를 보고하여 compile_commands.json을 기준으로 유효성을 검사합니다. 오류가 발견되면 0이 아닌 종료 코드로 종료합니다.",
+ "help_check": "원본 파일을 완전히 구문 분석 및 분석하고 진단 결과를 보고하여 compile_commands.json을 기준으로 원본 파일의 유효성을 검사합니다. 오류가 발견되면 0이 아닌 값으로 종료합니다.",
"help_check_compile_commands": "--check와 함께 사용할 특정 compile_commands.json(또는 해당 디렉터리)의 경로입니다. 기본값은 자동 검색입니다.",
"check_not_authorized": "권한이 없습니다. --check를 실행하려면 로그인이 필요합니다.",
"check_requires_source": "--check에는 소스 파일이 필요합니다. --check=",
- "check_source_not_found": "소스 파일을 찾을 수 없음: {0}",
+ "check_source_not_found": "원본 파일을 찾을 수 없음: {0}",
"check_compile_commands_not_found": "compile_commands.json을 찾을 수 없음: {0}",
"check_compile_commands_not_discovered": "{0}의 상위 디렉터리에서 compile_commands.json을 찾을 수 없습니다. 명시적으로 지정하려면 --check-compile-commands=를 전달하세요.",
"check_engine_init_failed": "언어 엔진을 초기화하지 못했습니다.",
@@ -434,5 +434,7 @@
"check_timed_out": "{0}에 대한 분석이 완료되기를 기다리는 동안 시간이 초과되었습니다.",
"failed_to_open_browse_db_lock_file": "찾아보기 데이터베이스 잠금 파일을 열지 못했습니다. {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "찾아보기 데이터베이스 잠금 파일을 잠그지 못했습니다. {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "저장소 위치에서 SQLite WAL 공유 메모리를 지원하지 않으므로 찾아보기 데이터베이스를 사용할 수 없습니다. browse.databaseFilename을 로컬 경로로 설정하세요."
+ "browse_database_disabled_incompatible_storage": "저장소 위치에서 SQLite WAL 공유 메모리를 지원하지 않으므로 찾아보기 데이터베이스를 사용할 수 없습니다. browse.databaseFilename을 로컬 경로로 설정하세요.",
+ "selected_translation_unit_not_include_file_previous": "선택한 변환 단위 '{1}'에는 '{0}'이(가) 포함되어 있지 않습니다. IntelliSense는 이전 변환 단위를 사용할 수 있으면 복원하며, 그렇지 않으면 '{1}'을(를) 헤더 전용 변환 단위로 사용합니다.",
+ "selected_translation_unit_not_include_file_header_only": "선택한 번역 단위 '{0}'에 '{1}'가 포함되어 있지 않습니다. 이전 변환 단위를 사용할 수 없으므로 IntelliSense는 '{1}' 헤더 전용 변환 단위로 사용합니다."
}
diff --git a/Extension/i18n/kor/ui/settings.html.i18n.json b/Extension/i18n/kor/ui/settings.html.i18n.json
index 5928f080a..67113cd8f 100644
--- a/Extension/i18n/kor/ui/settings.html.i18n.json
+++ b/Extension/i18n/kor/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "{0}(또는 선택)인 경우 태그 파서는 {1} 의 원본 파일에 직접 또는 간접적으로 포함된 코드 파일만 구문 분석합니다. {2} 인 경우(또는 선택하지 않은 경우) 태그 파서는 {3} 목록에 지정된 경로에 있는 모든 코드 파일을 구문 분석합니다.",
"database.filename": "찾아보기: 데이터베이스 파일 이름",
"database.filename.description": "생성된 기호 데이터베이스의 경로입니다. 이 경로는 태그 파서의 기호 데이터베이스를 작업 영역의 기본 스토리지 위치가 아닌 다른 곳에 저장하도록 확장에 지시합니다. 상대 경로가 지정된 경우 작업 영역 폴더 자체가 아니라 작업 영역의 기본 스토리지 위치에 대해 상대적으로 만들어집니다. {0} 변수를 사용하여 작업 영역 폴더에 상대적인 경로를 지정할 수 있습니다(예: {1}).",
- "recursiveIncludes.reduce": "재귀 포함: 축소",
- "recursiveIncludes.reduce.description": "IntelliSense에 제공된 재귀 포함 경로의 수를 현재 #include 문에서 참조하는 경로로만 줄이려면 {0}(으)로 설정합니다. 이를 위해서는 포함된 파일을 확인하기 위해 먼저 파일을 구문 분석해야 합니다. IntelliSense에 대한 모든 재귀 포함 경로를 제공하려면 {1}(으)로 설정합니다. 재귀 포함 경로의 수를 줄이면 매우 많은 수의 재귀 포함 경로가 관련된 경우 IntelliSense 성능이 향상될 수 있습니다. 재귀 포함 경로의 수를 줄이지 않으면 제공할 포함 경로를 확인하기 위해 파일을 구문 분석할 필요가 없으므로 IntelliSense 성능을 향상시킬 수 있습니다.",
"recursiveIncludes.priority": "재귀 포함: 우선 순위",
"recursiveIncludes.priority.description": "재귀 포함 경로의 우선 순위입니다. {0}(으)로 설정하면 재귀 포함 경로가 시스템 포함 경로 전에 검색됩니다. {1}(으)로 설정하면 시스템 포함 경로 후에 재귀 포함 경로가 검색됩니다.",
"recursiveIncludes.order": "재귀 포함: 주문",
diff --git a/Extension/i18n/plk/package.i18n.json b/Extension/i18n/plk/package.i18n.json
index 2af190b82..e0b2fb47a 100644
--- a/Extension/i18n/plk/package.i18n.json
+++ b/Extension/i18n/plk/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "Zainstaluj kompilator języka C++",
"c_cpp.command.rescanCompilers.title": "Ponownie zeskanuj w poszukiwaniu kompilatorów",
"c_cpp.command.switchHeaderSource.title": "Przełączanie nagłówka/źródła",
+ "c_cpp.command.selectTranslationUnit.title": "Select a Translation Unit...",
"c_cpp.command.enableErrorSquiggles.title": "Włączanie zygzaków sygnalizujących błędy",
"c_cpp.command.disableErrorSquiggles.title": "Wyłączanie zygzaków sygnalizujących błędy",
"c_cpp.command.toggleDimInactiveRegions.title": "Przełączanie kolorowania regionów nieaktywnych",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "Określa, czy rozszerzenie będzie raportować błędy wykryte w pliku `c_cpp_properties.json`.",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "Wartość do użycia w konfiguracji, jeśli element `customConfigurationVariables` nie został ustawiony, lub wartości do wstawienia, jeśli element `${default}` istnieje jako klucz w elemencie `customConfigurationVariables`.",
"c_cpp.configuration.default.dotConfig.markdownDescription": "Wartość do użycia w konfiguracji, jeśli parametr `dotConfig` nie został określony lub jest ustawiony na wartość `${default}`.",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "Wartość do użycia w konfiguracji, jeśli parametr `recursiveIncludes.reduce` nie jest określony lub jest ustawiony na wartość `${default}`.",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "Wartość do użycia w konfiguracji, jeśli parametr `recursiveIncludes.priority` nie jest określony lub jest ustawiony na wartość `${default}`.",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "Wartość do użycia w konfiguracji, jeśli parametr `recursiveIncludes.order` nie został określony lub jest ustawiony na wartość `${default}`.",
"c_cpp.configuration.experimentalFeatures.description": "Określa, czy można używać funkcji „eksperymentalnych”.",
@@ -332,6 +332,7 @@
"c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "Jeśli wartość to true, wyłącza przekierowywanie konsoli debugowanego obiektu, które jest wymagane do obsługi zintegrowanego terminalu.",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "Opcjonalne mapowania plików źródłowych przekazane do silnika debugowania. Przykład: `{ \"\": \"\" }`.",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "Opcjonalny identyfikator procesu, do którego ma zostać dołączony debuger. Użyj polecenia `${command:pickProcess}`, aby uzyskać listę uruchomionych lokalnie procesów, do których można dołączyć. Pamiętaj, że niektóre platformy wymagają uprawnień administratora, aby dołączyć je do procesu.",
+ "c_cpp.debuggers.processFilter.description": "Opcjonalne wyrażenie regularne służące do dopasowywania kandydatów do zdalnego dołączania według etykiety, opisu lub szczegółów. Jeśli pasuje dokładnie jeden proces, debuger dołącza automatycznie. Jeśli pasuje kilka procesów, wyświetlany jest selektor procesów z tylko pasującymi wpisami. Jeśli żaden proces nie pasuje, wyświetlany jest selektor wszystkich procesów. Nieprawidłowe wyrażenie regularne zgłasza błąd.",
"c_cpp.debuggers.program.attach.markdownDescription": "Pełna ścieżka do pliku wykonywalnego programu. Debuger wyszuka uruchomiony proces zgodny z tą ścieżką wykonywalną i dołączy do niego. Jeśli wiele procesów jest zgodnych, zostanie wyświetlony monit o zaznaczenie. To pole jest wymagane do załadowania symboli debugowania dla dołączonego procesu.",
"c_cpp.debuggers.symbolSearchPath.description": "Rozdzielana średnikami lista katalogów do wyszukiwania plików symboli (tj. pdb lub .so). Przykład: „c:\\dir1;c:\\dir2”.",
"c_cpp.debuggers.dumpPath.description": "Opcjonalna pełna ścieżka do pliku zrzutu dla określonego programu. Przykład: „c:\\temp\\app.dmp”. Wartość domyślna to null.",
diff --git a/Extension/i18n/plk/src/Debugger/processFilter.i18n.json b/Extension/i18n/plk/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..411a5b307
--- /dev/null
+++ b/Extension/i18n/plk/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "Nieprawidłowe wyrażenie regularne {0}: {1}"
+}
diff --git a/Extension/i18n/plk/src/LanguageServer/extension.i18n.json b/Extension/i18n/plk/src/LanguageServer/extension.i18n.json
index 6da719cf2..187b58619 100644
--- a/Extension/i18n/plk/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/plk/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "Dowiedz się, jak zainstalować bibliotekę dla tego nagłówka przy użyciu menedżera vcpkg",
"copy.vcpkg.command": "Skopiuj polecenie vcpkg, aby zainstalować element „{0}” w schowku",
"on.disabled.command": "Nie można wykonywać poleceń związanych z funkcją IntelliSense, gdy właściwość `C_Cpp.intelliSenseEngine` ma wartość `disabled`.",
+ "find.translation.units": "Finding Translation Units...",
+ "no.translation.units.found": "No translation units were found for the active file.",
+ "current.translation.unit": "Current translation unit",
+ "select.translation.unit": "Select a Translation Unit",
+ "select.translation.unit.placeholder": "Select a source file to use as the translation unit",
"switch.header.source": "Trwa przełączanie nagłówka/źródła...",
"client.not.found": "nie znaleziono klienta",
"ok": "OK",
diff --git a/Extension/i18n/plk/src/nativeStrings.i18n.json b/Extension/i18n/plk/src/nativeStrings.i18n.json
index a34703384..590316939 100644
--- a/Extension/i18n/plk/src/nativeStrings.i18n.json
+++ b/Extension/i18n/plk/src/nativeStrings.i18n.json
@@ -434,5 +434,7 @@
"check_timed_out": "przekroczono limit czasu oczekiwania na zakończenie analizy {0}",
"failed_to_open_browse_db_lock_file": "Nie można otworzyć pliku blokady bazy danych przeglądania: {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "Nie można zablokować pliku blokady bazy danych przeglądania: {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "Baza danych przeglądania została wyłączona, ponieważ jej lokalizacja przechowywania nie obsługuje współużytkowanej pamięci SQLite WAL. Ustaw parametr browse.databaseFilename na ścieżkę lokalną."
+ "browse_database_disabled_incompatible_storage": "Baza danych przeglądania została wyłączona, ponieważ jej lokalizacja przechowywania nie obsługuje współużytkowanej pamięci SQLite WAL. Ustaw parametr browse.databaseFilename na ścieżkę lokalną.",
+ "selected_translation_unit_not_include_file_previous": "The selected translation unit '{0}' does not include '{1}'. IntelliSense will restore the previous translation unit if it is still available; otherwise, it will use '{1}' as a header-only translation unit.",
+ "selected_translation_unit_not_include_file_header_only": "The selected translation unit '{0}' does not include '{1}'. No previous translation unit is available, so IntelliSense will use '{1}' as a header-only translation unit."
}
diff --git a/Extension/i18n/plk/ui/settings.html.i18n.json b/Extension/i18n/plk/ui/settings.html.i18n.json
index ed4446987..58e9c4bae 100644
--- a/Extension/i18n/plk/ui/settings.html.i18n.json
+++ b/Extension/i18n/plk/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "Jeśli wartość jest równa {0} (lub jest zaznaczona), analizator tagów analizuje tylko pliki kodu, które zostały bezpośrednio lub pośrednio dołączone przez plik źródłowy w {1}. Jeśli wartość jest równa {2} (lub nie jest zaznaczona), analizator tagów będzie analizować wszystkie pliki kodu znalezione w ścieżkach określonych na {3} liście.",
"database.filename": "Przeglądaj: nazwa pliku bazy danych",
"database.filename.description": "Ścieżka do generowanej bazy danych symboli. Określa ona, że rozszerzenie ma zapisać bazę danych symboli analizatora tagów w innym miejscu niż domyślna lokalizacja magazynowania obszaru roboczego. Jeśli zostanie określona ścieżka względna, będzie to ścieżka względem domyślnej lokalizacji magazynowania obszaru roboczego, a nie folderu obszaru roboczego. Można użyć zmiennej {0} do określenia ścieżki względem folderu obszaru roboczego (np. {1}).",
- "recursiveIncludes.reduce": "Rekursywne obejmuje: redukcję",
- "recursiveIncludes.reduce.description": "Ustaw na wartość {0}, aby zmniejszyć liczbę ścieżek rekursywnego dołączania dostarczanych do funkcji IntelliSense tylko do tych ścieżek, do których obecnie odwołują się instrukcje #include. Wymaga to najpierw przeanalizowania plików w celu określenia, które pliki są dołączane. Ustaw na wartość{1}, aby dostarczać wszystkie ścieżki rekursywnego dołączania do funkcji IntelliSense. Zmniejszenie liczby ścieżek rekursywnego dołączania może zwiększyć wydajność funkcji IntelliSense w przypadku dużej liczby ścieżek rekursywnego dołączania. Brak zmniejszenia liczby ścieżek rekursywnego dołączania może zwiększyć wydajność funkcji IntelliSense, unikając konieczności analizowania plików w celu określenia, które ścieżki dołączane należy podać.",
"recursiveIncludes.priority": "Rekursywne dołączania: priorytet",
"recursiveIncludes.priority.description": "Priorytet ścieżek rekursywnego dołączania. Jeśli ustawiono na wartość {0}, ścieżki rekursywnego dołączania będą przeszukiwane przed ścieżkami systemowego dołączania. Jeśli ustawiono na wartość {1}, ścieżki rekursywnego dołączania będą przeszukiwane po ścieżkach systemowego dołączania.",
"recursiveIncludes.order": "Rekursywne obejmuje: kolejność",
diff --git a/Extension/i18n/ptb/package.i18n.json b/Extension/i18n/ptb/package.i18n.json
index 491e58a69..a7b1d4739 100644
--- a/Extension/i18n/ptb/package.i18n.json
+++ b/Extension/i18n/ptb/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "Instalar um compilador C++",
"c_cpp.command.rescanCompilers.title": "Examinar novamente os Compiladores",
"c_cpp.command.switchHeaderSource.title": "Alternar Cabeçalho/Origem",
+ "c_cpp.command.selectTranslationUnit.title": "Selecionar uma Unidade de Tradução...",
"c_cpp.command.enableErrorSquiggles.title": "Habilitar Rabiscos de Erro",
"c_cpp.command.disableErrorSquiggles.title": "Desabilitar Rabiscos de Erro",
"c_cpp.command.toggleDimInactiveRegions.title": "Ativar/Desativar a Colorização de Região Inativa",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "Controla se a extensão reportará erros detectados em `c_cpp_properties.json`.",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "O valor a ser usado em uma configuração se `customConfigurationVariables` não estiver definido, ou os valores a serem inseridos se `${default}` estiver presente como uma chave em `customConfigurationVariables`.",
"c_cpp.configuration.default.dotConfig.markdownDescription": "O valor a ser usado em uma configuração se `dotConfig` não for especificado ou definido como `${default}`.",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "O valor a ser usado em uma configuração se `recursiveIncludes.reduce` não for especificado ou definido como `${default}`.",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "O valor a ser usado em uma configuração se `recursiveIncludes.priority` não for especificado ou definido como `${default}`.",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "O valor a ser usado em uma configuração se `recursiveIncludes.order` não for especificado ou definido como `${default}`.",
"c_cpp.configuration.experimentalFeatures.description": "Controla se os recursos \"experimentais\" podem ser usados.",
@@ -332,6 +332,7 @@
"c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "Se for true, desabilitará o redirecionamento do console do depurador requerido para o suporte do Terminal Integrado.",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "Mapeamentos opcionais de arquivo de origem passados para o mecanismo de depuração. Exemplo: `{ \"\": \"\" }`.",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "ID do processo opcional ao qual anexar o depurador. Use `${command:pickProcess}` para obter uma lista de processos locais em execução aos quais anexar. Observe que algumas plataformas exigem privilégios de administrador para anexação a um processo.",
+ "c_cpp.debuggers.processFilter.description": "Expressão regular opcional usada para corresponder aos candidatos à anexação remota por rótulo, descrição ou detalhe. Se exatamente um processo corresponder, o depurador será anexado automaticamente. Se vários processos corresponderem, o seletor de processos será mostrado apenas com entradas correspondentes. Se nenhum processo corresponder, o seletor de processo completo será mostrado. Uma expressão regular inválida relata um erro.",
"c_cpp.debuggers.program.attach.markdownDescription": "Caminho completo para o executável do programa. O depurador pesquisará um processo em execução que corresponda a esse caminho executável e anexará a ele. Se vários processos corresponderem, um prompt de seleção será mostrado. Esse campo é necessário para carregar símbolos de depuração para o processo anexado.",
"c_cpp.debuggers.symbolSearchPath.description": "Lista separada por ponto e vírgula de diretórios a serem usadas para pesquisar arquivos de símbolos (ou seja, pdb ou .so). Exemplo: \"c:\\dir1;c:\\dir2\".",
"c_cpp.debuggers.dumpPath.description": "Caminho completo opcional para um arquivo de despejo para o programa especificado. Exemplo: \"c:\\temp\\app.dmp\". Usa nulo como padrão.",
diff --git a/Extension/i18n/ptb/src/Debugger/processFilter.i18n.json b/Extension/i18n/ptb/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..8fe505489
--- /dev/null
+++ b/Extension/i18n/ptb/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "Expressão regular {0} inválida: {1}"
+}
diff --git a/Extension/i18n/ptb/src/LanguageServer/client.i18n.json b/Extension/i18n/ptb/src/LanguageServer/client.i18n.json
index 0c4d6c84a..58ddfdd82 100644
--- a/Extension/i18n/ptb/src/LanguageServer/client.i18n.json
+++ b/Extension/i18n/ptb/src/LanguageServer/client.i18n.json
@@ -26,7 +26,7 @@
"loggingLevel.changed": "{0} foi alterado para: {1}",
"dismiss.button": "Ignorar",
"disable.warnings.button": "Desabilitar os Avisos",
- "unable.to.provide.configuration": "{0} não é capaz de fornecer informações de configuração do IntelliSense. As configurações de '{1}' serão usadas em vez disso.",
+ "unable.to.provide.configuration": "{0} não é capaz de fornecer informações de configuração do IntelliSense. As configurações da configuração '{1}' serão usadas em vez disso.",
"config.not.found": "O nome de configuração solicitado não foi encontrado: {0}",
"timed.out": "Tempo limite atingido em {0} ms.",
"parsing.stats.large.project": "{0} arquivos enumerados com {1} arquivos de origem C/C++ detectados. Talvez você queira considerar a exclusão de alguns arquivos para melhorar o desempenho.",
diff --git a/Extension/i18n/ptb/src/LanguageServer/extension.i18n.json b/Extension/i18n/ptb/src/LanguageServer/extension.i18n.json
index ca1c51a8b..d08148352 100644
--- a/Extension/i18n/ptb/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/ptb/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "Saiba como instalar uma biblioteca para este cabeçalho com vcpkg",
"copy.vcpkg.command": "Copiar o comando vcpkg para instalar '{0}' para a área de transferência",
"on.disabled.command": "Comandos relacionados ao IntelliSense não podem ser executados quando `C_Cpp.intelliSenseEngine` está definido como `disabled`.",
+ "find.translation.units": "Localizando Unidades de Tradução...",
+ "no.translation.units.found": "Nenhuma unidade de tradução foi encontrada para o arquivo ativo.",
+ "current.translation.unit": "Unidade de tradução atual",
+ "select.translation.unit": "Selecionar uma Unidade de Tradução",
+ "select.translation.unit.placeholder": "Selecione um arquivo de origem para usar como unidade de tradução",
"switch.header.source": "Alternando cabeçalho/origem...",
"client.not.found": "o cliente não foi encontrado",
"ok": "OK",
diff --git a/Extension/i18n/ptb/src/nativeStrings.i18n.json b/Extension/i18n/ptb/src/nativeStrings.i18n.json
index 836965894..91b3625c1 100644
--- a/Extension/i18n/ptb/src/nativeStrings.i18n.json
+++ b/Extension/i18n/ptb/src/nativeStrings.i18n.json
@@ -12,9 +12,9 @@
"edit_include_path": "Editar a configuração de \"includePath\"",
"disable_error_squiggles": "Desabilitar rabiscos de erro",
"enable_error_squiggles": "Habilitar todos os rabiscos de erro",
- "include_errors_update_include_path_squiggles_disabled2": "Foram detectados erros de #include. Atualize seu includePath. Erros de sintaxe para este arquivo não serão relatados até que os arquivos incluídos sejam encontrados.",
- "include_errors_update_include_path_intellisense_disabled": "Foram detectados erros de #include. Atualize o includePath. Os recursos do IntelliSense para esta unidade de tradução ({0}) serão fornecidos pelo Analisador de Marca.",
- "include_errors_update_compile_commands_or_include_path_intellisense_disabled": "Foram detectados erros de #include. Considere atualizar o compile_commands.json ou o includePath. Os recursos do IntelliSense para esta unidade de tradução ({0}) serão fornecidos pelo Analisador de Marca.",
+ "include_errors_update_include_path_squiggles_disabled2": "#incluir os erros detectados. Atualize seu includePath. Erros de sintaxe para este arquivo não serão relatados até que os arquivos incluídos sejam encontrados.",
+ "include_errors_update_include_path_intellisense_disabled": "#incluir erros detectados. Atualize o includePath. Os recursos do IntelliSense para esta unidade de tradução ({0}) serão fornecidos pelo Analisador de Marca.",
+ "include_errors_update_compile_commands_or_include_path_intellisense_disabled": "#incluir erros detectados. Considere atualizar o compile_commands.json ou o includePath. Os recursos do IntelliSense para esta unidade de tradução ({0}) serão fornecidos pelo Analisador de Marca.",
"could_not_parse_compile_commands": "Não foi possível analisar \"{0}\". Em seu lugar, será usado o 'includePath' de c_cpp_properties.json na pasta '{1}'.",
"could_not_find_compile_commands": "Não foi possível encontrar \"{0}\". Em seu lugar, será usado o 'includePath' de c_cpp_properties.json na pasta '{1}'.",
"file_not_found_in_path": "\"{0}\" não foi encontrado em \"{1}\". Em seu lugar, será usado 'includePath' de c_cpp_properties.json na pasta '{2}' para esse arquivo.",
@@ -122,7 +122,7 @@
"formatting_diff": "Formatando a saída diferenciada:",
"disable_inactive_regions": "Desabilitar a colorização da região inativa",
"error_limit_exceeded": "O limite de erros foi excedido. {0} erros não relatados.",
- "include_errors_update_compile_commands_or_include_path_squiggles_disabled2": "Foram detectados erros de #include. Considere atualizar seu compile_commands.json ou includePath. Erros de sintaxe para este arquivo não serão relatados até que os arquivos incluídos sejam encontrados.",
+ "include_errors_update_compile_commands_or_include_path_squiggles_disabled2": "#incluir os erros detectados. Considere atualizar seu compile_commands.json ou includePath. Erros de sintaxe para este arquivo não serão relatados até que os arquivos incluídos sejam encontrados.",
"cannot_reset_database": "O banco de dados do IntelliSense não pôde ser redefinido. Para redefinir manualmente, feche todas as instâncias do VS Code e exclua este arquivo: {0}",
"formatting_failed_see_output": "Falha na formatação. Consulte a janela de saída para obter detalhes.",
"populating_include_completion_cache": "Preenchendo o cache de conclusão de inclusão.",
@@ -159,8 +159,8 @@
"fallback_to_64_bit_mode2": "Falha ao consultar o compilador. Voltando para o intelliSenseMode de 64 bits.",
"fallback_to_no_bitness": "Falha ao consultar o compilador. Voltando para nenhum número de bit.",
"intellisense_client_creation_aborted": "Criação de cliente do IntelliSense anulada: {0}",
- "include_errors_config_provider_intellisense_disabled": "Foram detectados erros de #include com base nas informações fornecidas pela configuração configurationProvider. Os recursos do IntelliSense para essa unidade de tradução ({0}) serão fornecidos pelo Analisador de Marca.",
- "include_errors_config_provider_squiggles_disabled2": "Foram detectados erros de #include com base nas informações fornecidas pela configuração configurationProvider. Erros de sintaxe para este arquivo não serão relatados até que os arquivos incluídos sejam encontrados.",
+ "include_errors_config_provider_intellisense_disabled": "#inclui erros detectados com base nas informações fornecidas pela configuração configurationProvider. Os recursos do IntelliSense para essa unidade de conversão ({0}) serão fornecidos pelo Analisador de Marca.",
+ "include_errors_config_provider_squiggles_disabled2": "#inclui erros detectados com base nas informações fornecidas pela configuração configurationProvider. Erros de sintaxe para este arquivo não serão relatados até que os arquivos incluídos sejam encontrados.",
"preprocessor_keyword": "palavra-chave do pré-processador",
"c_keyword": "Palavra-chave C",
"cpp_keyword": "Palavra-chave C++",
@@ -434,5 +434,7 @@
"check_timed_out": "tempo limite esgotado enquanto aguardava a conclusão da análise de {0}",
"failed_to_open_browse_db_lock_file": "Não foi possível abrir o arquivo de bloqueio do banco de dados de navegação: {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "Não foi possível bloquear o arquivo de bloqueio do banco de dados de navegação: {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "O banco de dados de navegação foi desabilitado porque seu local de armazenamento não dá suporte à memória compartilhada do SQLite WAL. Defina browse.databaseFilename como um caminho local."
+ "browse_database_disabled_incompatible_storage": "O banco de dados de navegação foi desabilitado porque seu local de armazenamento não dá suporte à memória compartilhada WAL do SQLite. Defina browse.databaseFilename como um caminho local.",
+ "selected_translation_unit_not_include_file_previous": "A unidade de tradução selecionada '{0}' não inclui '{1}'. O IntelliSense restaurará a unidade de tradução anterior se ela ainda estiver disponível; caso contrário, ele usará '{1}' como uma unidade de tradução somente de cabeçalho.",
+ "selected_translation_unit_not_include_file_header_only": "A unidade de tradução selecionada '{0}' não inclui '{1}'. Nenhuma unidade de tradução anterior está disponível, portanto, o IntelliSense usará '{1}' como uma unidade de tradução somente de cabeçalho."
}
diff --git a/Extension/i18n/ptb/ui/settings.html.i18n.json b/Extension/i18n/ptb/ui/settings.html.i18n.json
index 50a65efed..724804c82 100644
--- a/Extension/i18n/ptb/ui/settings.html.i18n.json
+++ b/Extension/i18n/ptb/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "Quando {0} (ou marcado), o Analisador de Marca analisará somente os arquivos de código que foram diretamente ou indiretamente incluídos em um arquivo de origem no {1}. Quando {2} (ou não marcado), o Analisador de Marca analisará todos os arquivos de código encontrados nos caminhos especificados na lista de {3}.",
"database.filename": "Procurar: nome do arquivo do banco de dados",
"database.filename.description": "O caminho para o banco de dados de símbolo gerado. Isso instrui a extensão a salvar o banco de dados de símbolos do Analisador de Marca em algum lugar diferente do local de armazenamento padrão do workspace. Se um caminho relativo for especificado, ele será feito em relação ao local de armazenamento padrão do workspace, não à própria pasta do workspace. A {0} variável pode ser usada para especificar um caminho relativo à pasta do workspace (por exemplo, {1}).",
- "recursiveIncludes.reduce": "Inclusões recursivas: reduzir",
- "recursiveIncludes.reduce.description": "Defina como {0} para reduzir o número de caminhos de inclusão recursivos fornecidos ao IntelliSense apenas para os caminhos atualmente referenciados por instruções #include. Isso requer primeiro a análise de arquivos para determinar quais arquivos estão incluídos. Defina como {1} para fornecer todos os caminhos de inclusão recursivos para o IntelliSense. Reduzir o número de caminhos de inclusão recursivos pode melhorar o desempenho do IntelliSense quando um número muito grande de caminhos de inclusão recursivos está envolvido. Não reduzir o número de caminhos de inclusão recursivos pode melhorar o desempenho do IntelliSense, evitando a necessidade de analisar arquivos para determinar quais caminhos de inclusão fornecer.",
"recursiveIncludes.priority": "Inclui recursiva: prioridade",
"recursiveIncludes.priority.description": "A prioridade dos caminhos de inclusão recursivo. Se definido como {0}, os caminhos de inclusão recursivos serão pesquisados antes que o sistema inclua caminhos. Se definido como {1}, os caminhos de inclusão recursivos serão pesquisados depois que o sistema incluir caminhos.",
"recursiveIncludes.order": "Inclusões recursivas: pedido",
diff --git a/Extension/i18n/rus/package.i18n.json b/Extension/i18n/rus/package.i18n.json
index 28d1df96c..b9ed6a419 100644
--- a/Extension/i18n/rus/package.i18n.json
+++ b/Extension/i18n/rus/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "Установка компилятора C++",
"c_cpp.command.rescanCompilers.title": "Повторный поиск компиляторов",
"c_cpp.command.switchHeaderSource.title": "Переключить заголовок/источник",
+ "c_cpp.command.selectTranslationUnit.title": "Выбор единицы перевода...",
"c_cpp.command.enableErrorSquiggles.title": "Включить волнистые линии для ошибок",
"c_cpp.command.disableErrorSquiggles.title": "Отключить волнистые линии для ошибок",
"c_cpp.command.toggleDimInactiveRegions.title": "Переключить раскраску неактивных областей",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "Определяет, будет ли расширение сообщать об ошибках, обнаруженных в `c_cpp_properties.json`.",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "Значение, используемое в конфигурации, если параметр `customConfigurationVariables` не установлен, или вставляемые значения, если в `customConfigurationVariables` присутствует значение `${default}` в качестве ключа.",
"c_cpp.configuration.default.dotConfig.markdownDescription": "Значение, используемое в конфигурации, если параметр `dotConfig` не указан или имеет значение `${default}`.",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "Значение, используемое в конфигурации, если параметр `recursiveIncludes.reduce` не указан или имеет значение `${default}`.",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "Значение, используемое в конфигурации, если параметр `recursiveIncludes.priority` не указан или имеет значение `${default}`.",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "Значение, используемое в конфигурации, если параметр `recursiveIncludes.order` не указан или имеет значение `${default}`.",
"c_cpp.configuration.experimentalFeatures.description": "Определяет, можно ли использовать \"экспериментальные\" функции.",
@@ -332,6 +332,7 @@
"c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "Если задано значение true, отключается перенаправление консоли отлаживаемого объекта, необходимое для поддержки встроенного терминала.",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "Необязательные сопоставления исходных файлов, передаваемые подсистеме отладки. Пример: `{ \"<первоначальный путь к источнику>\": \"<текущий путь к источнику>\" }`.",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "Необязательный идентификатор процесса, к которому требуется подключить отладчик. Используйте `${command:pickProcess}`, чтобы получить список локальных запущенных процессов для подключения. Обратите внимание, что для подключения к процессам на некоторых платформах требуются права администратора.",
+ "c_cpp.debuggers.processFilter.description": "Необязательное регулярное выражение, используемое для сопоставления кандидатов удаленного подключения по метке, описанию или деталям. Если найден ровно один подходящий процесс, отладчик подключается автоматически. Если найдено несколько подходящих процессов, отображается средство выбора процессов только с подходящими записями. Если ни один процесс не подходит, отображается полное средство выбора процессов. Недопустимое регулярное выражение приводит к ошибке.",
"c_cpp.debuggers.program.attach.markdownDescription": "Полный путь к исполняемому файлу program. Отладчик будет искать запущенный процесс, совпадающий с путем этого исполняемого файла, и подключаться к нему. Если процессов несколько, появится запрос выбора. Это поле обязательно с целью загрузки символов отладки для подключенного процесса.",
"c_cpp.debuggers.symbolSearchPath.description": "Список каталогов, разделенных точкой с запятой, который следует использовать для поиска файлов символов (таких как PDB или SO). Пример: \"c:\\каталог_1;c:\\каталог_2\".",
"c_cpp.debuggers.dumpPath.description": "Необязательный полный путь к основному файлу дампа для указанной программы. Пример: \"c:\\temp\\app.dmp\". Значение по умолчанию: null.",
@@ -389,7 +390,7 @@
"c_cpp.taskDefinitions.detail.description": "Дополнительные сведения о задаче.",
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.description": "Текущие пути и пути времени компиляции к одним и тем же деревьям SourceTree. Файлы по пути EditorPath сопоставляются с путем CompileTimePath для сопоставления точек останова, а также сопоставляются из пути CompileTimePath с путем EditorPath при отображении расположений трассировки стека.",
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.editorPath.description": "Путь к дереву SourceTree, которое будет использоваться редактором.",
- "c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "Установите значение false, если эта запись используется только для сопоставления расположений кадра стека. Установите значение true, если эта запись также должна использоваться при указании расположений точек останова.",
+ "c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "Настроено значение false, если эта запись используется только для сопоставления расположений кадра стека. Настроено значение true, если эта запись также должна использоваться при указании расположений точек останова.",
"c_cpp.debuggers.symbolOptions.description": "Параметры, управляющие поиском и загрузкой символов (PDB-файлов).",
"c_cpp.debuggers.unknownBreakpointHandling.description": "Управляет тем, как точки останова, установленные извне (обычно через необработанные команды GDB), обрабатываются при попадании.\nДопустимые значения: \"throw\", который действует так, как если бы приложение выдало исключение, и \"stop\", который только приостанавливает сеанс отладки. Значение по умолчанию — \"throw\".",
"c_cpp.debuggers.debuginfod.description": "Управляет поведением debuginfod в GDB при скачивании символов отладки с серверов debuginfod.",
@@ -407,7 +408,7 @@
"c_cpp.debuggers.VSSymbolOptionsModuleFilter.excludedModules.description": "Массив модулей, для которых отладчик не должен загружать символы. Поддерживаются подстановочные знаки (например: MyCompany.*.dll)\n\nЭто свойство игнорируется, если для \"mode\" задано значение \"loadAllButExcluded\".",
"c_cpp.debuggers.VSSymbolOptionsModuleFilter.includedModules.description": "Массив модулей, для которых отладчик должен загружать символы. Поддерживаются подстановочные знаки (например: MyCompany.*.dll)\n\nЭто свойство игнорируется, если для \"mode\" задано значение \"loadOnlyIncluded\".",
"c_cpp.debuggers.VSSymbolOptionsModuleFilter.includeSymbolsNextToModules.description": "Если значение равно true, для любого модуля, НЕ входящего в массив \"includedModules\", отладчик по-прежнему будет проверять рядом с самим модулем и запускаемым исполняемым файлом, но он не будет проверять пути в списке поиска символов. По умолчанию для этого параметра установлено значение \"true\".\n\nЭто свойство игнорируется, если для параметра \"mode\" установлено значение \"loadOnlyIncluded\".",
- "c_cpp.debuggers.ignoreRunWithoutDebuggingWarnings.description": "Если значение равно true, предупреждение не будет записано в журнал, если при запуске без отладки не удастся запустить программу в терминале.",
+ "c_cpp.debuggers.ignoreRunWithoutDebuggingWarnings.description": "Если значение равно true, то при запуске без отладки программа не будет запущена в терминале без предупреждения.",
"c_cpp.semanticTokenTypes.referenceType.description": "Стиль для ссылочных типов C++/CLI.",
"c_cpp.semanticTokenTypes.cliProperty.description": "Стиль для свойств C++/CLI.",
"c_cpp.semanticTokenTypes.genericType.description": "Стиль для универсальных типов C++/CLI.",
diff --git a/Extension/i18n/rus/src/Debugger/processFilter.i18n.json b/Extension/i18n/rus/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..99f842142
--- /dev/null
+++ b/Extension/i18n/rus/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "Недопустимое регулярное выражение {0}: {1}"
+}
diff --git a/Extension/i18n/rus/src/LanguageServer/client.i18n.json b/Extension/i18n/rus/src/LanguageServer/client.i18n.json
index c13f934d4..559185bd9 100644
--- a/Extension/i18n/rus/src/LanguageServer/client.i18n.json
+++ b/Extension/i18n/rus/src/LanguageServer/client.i18n.json
@@ -26,7 +26,7 @@
"loggingLevel.changed": "{0} был изменен на: {1}",
"dismiss.button": "Закрыть",
"disable.warnings.button": "Отключить предупреждения",
- "unable.to.provide.configuration": "{0} не удается предоставить сведения о конфигурации IntelliSense. Вместо этого будут использованы параметры из конфигурации \"{1}\".",
+ "unable.to.provide.configuration": "{0} не удается предоставить сведения о конфигурации IntelliSense для. Вместо этого будут использованы параметры из конфигурации \"{1}\".",
"config.not.found": "Запрошенное имя конфигурации не найдено: {0}",
"timed.out": "Время ожидания истекло через {0} мс.",
"parsing.stats.large.project": "Обнаружены перечисленные файлы ({0}) с исходными файлами C/C++ ({1}). Следует рассмотреть возможность исключения некоторых файлов для повышения производительности.",
diff --git a/Extension/i18n/rus/src/LanguageServer/extension.i18n.json b/Extension/i18n/rus/src/LanguageServer/extension.i18n.json
index 8ca4dd931..4fb592e35 100644
--- a/Extension/i18n/rus/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/rus/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "Сведения об установке библиотеки для этого заголовка с помощью vcpkg",
"copy.vcpkg.command": "Копировать команду vcpkg для установки \"{0}\" в буфер обмена",
"on.disabled.command": "Команды, связанные с IntelliSense, не могут быть выполнены, если для `C_Cpp.intelliSenseEngine` установлено значение `disabled`.",
+ "find.translation.units": "Поиск единиц перевода...",
+ "no.translation.units.found": "Не найдены единицы перевода для активного файла.",
+ "current.translation.unit": "Текущая единица перевода",
+ "select.translation.unit": "Выберите единицу перевода",
+ "select.translation.unit.placeholder": "Выберите исходный файл, который будет использоваться в качестве единицы перевода",
"switch.header.source": "Переключение заголовка/источника...",
"client.not.found": "Клиент не найден.",
"ok": "ОК",
diff --git a/Extension/i18n/rus/src/nativeStrings.i18n.json b/Extension/i18n/rus/src/nativeStrings.i18n.json
index 90ac86999..21fae8dee 100644
--- a/Extension/i18n/rus/src/nativeStrings.i18n.json
+++ b/Extension/i18n/rus/src/nativeStrings.i18n.json
@@ -13,8 +13,8 @@
"disable_error_squiggles": "Отключить волнистые линии для ошибок",
"enable_error_squiggles": "Включить все волнистые линии для ошибок",
"include_errors_update_include_path_squiggles_disabled2": "Обнаружены ошибки #include. Обновите includePath. Синтаксические ошибки для этого файла не будут сообщаться, пока не будут найдены включаемые файлы.",
- "include_errors_update_include_path_intellisense_disabled": "Обнаружены ошибки #include. Измените includePath. Функции IntelliSense для этой единицы трансляции ({0}) будут предоставлены анализатором тегов.",
- "include_errors_update_compile_commands_or_include_path_intellisense_disabled": "Обнаружены ошибки #include. Рекомендуется изменить compile_commands.json или includePath. Функции IntelliSense для этой единицы трансляции ({0}) будут предоставлены анализатором тегов.",
+ "include_errors_update_include_path_intellisense_disabled": "Обнаружены ошибки #include. Измените includePath. Функции IntelliSense для этой единицы трансляции ({0}) будет предоставлены анализатором тегов.",
+ "include_errors_update_compile_commands_or_include_path_intellisense_disabled": "Обнаружены ошибки #include. Рекомендуется изменить compile_commands.json или includePath. Функции IntelliSense для этой единицы трансляции ({0}) будет предоставлены анализатором тегов.",
"could_not_parse_compile_commands": "Не удалось проанализировать \"{0}\". Вместо этого будет использоваться \"includePath\" из файла c_cpp_properties.json в папке \"{1}\".",
"could_not_find_compile_commands": "Не удалось найти \"{0}\". Вместо этого будет использоваться \"includePath\" из файла c_cpp_properties.json в папке \"{1}\".",
"file_not_found_in_path": "Не удалось найти \"{0}\" в \"{1}\". Вместо него для этого файла будет использоваться \"includePath\" из файла c_cpp_properties.json в папке \"{2}\".",
@@ -159,7 +159,7 @@
"fallback_to_64_bit_mode2": "Не удалось запросить сведения от компилятора. Возврат к 64-разрядному режиму IntelliSenseMode.",
"fallback_to_no_bitness": "Не удалось запросить сведения от компилятора. Возврат к режиму без использования разрядности.",
"intellisense_client_creation_aborted": "Создание клиента IntelliSense прервано: {0}",
- "include_errors_config_provider_intellisense_disabled": "Обнаружены ошибки #include на основе сведений, предоставленных параметром configurationProvider. Функции IntelliSense для этой единицы трансляции ({0}) будут предоставлены анализатором тегов.",
+ "include_errors_config_provider_intellisense_disabled": "обнаружены ошибки #include на основе сведений, предоставленных параметром configurationProvider. Функции IntelliSense для этой записи преобразования ({0}) будут предоставлены анализатором тегов.",
"include_errors_config_provider_squiggles_disabled2": "Обнаружены ошибки #include на основе сведений, предоставленных параметром configurationProvider. Синтаксические ошибки для этого файла не будут сообщаться, пока не будут найдены включаемые файлы.",
"preprocessor_keyword": "ключевое слово препроцессора",
"c_keyword": "Ключевое слово C",
@@ -419,7 +419,7 @@
"help_allow_missing_lsp_config": "Разрешить запуск сервера, даже если указанный файл --lsp-config не существует.",
"initialize_failed_during_engine_setup": "Сбой инициализации при настройке подсистемы.",
"important_label": "Важно!",
- "help_check": "Проверить исходный файл на соответствие compile_commands.json, выполнив его полный синтаксический разбор и анализ и сообщив обо всех результатах диагностики. При обнаружении ошибок выполняется выход с ненулевым кодом.",
+ "help_check": "Проверить исходный файл на соответствие compile_commands.json путем полного его рассмотрения и анализа с сообщением обо всех результатах диагностики. При обнаружении ошибок выполняется выход с ненулевым кодом.",
"help_check_compile_commands": "Путь к конкретному файлу compile_commands.json (или к его каталогу) для использования с параметром --check. По умолчанию используется автоматическое обнаружение.",
"check_not_authorized": "не авторизовано; для выполнения --check требуется вход",
"check_requires_source": "--check требует указать исходный файл: --check=",
@@ -434,5 +434,7 @@
"check_timed_out": "истекло время ожидания завершения анализа {0}",
"failed_to_open_browse_db_lock_file": "Не удалось открыть файл блокировки базы данных просмотра: {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "Не удалось заблокировать файл блокировки базы данных просмотра: {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "База данных просмотра была отключена, так как ее место хранения не поддерживает общую память SQLite WAL. Настройте для browse.databaseFilename локальный путь."
+ "browse_database_disabled_incompatible_storage": "База данных просмотра была отключена, так как ее место хранения не поддерживает общую память SQLite WAL. Настройте для browse.databaseFilename локальный путь.",
+ "selected_translation_unit_not_include_file_previous": "Выбранная единица трансляции '{0}' не содержит '{1}'. IntelliSense восстановит предыдущую единицу трансляции, если она еще доступна; В противном случае он будет использовать '{1}' в качестве единицы трансляции только для заголовков.",
+ "selected_translation_unit_not_include_file_header_only": "Выбранная единица трансляции '{0}' не содержит '{1}'. Предыдущая единица трансляции недоступна, поэтому IntelliSense будет использовать '{1}' как единицу трансляции только для заголовков."
}
diff --git a/Extension/i18n/rus/ui/settings.html.i18n.json b/Extension/i18n/rus/ui/settings.html.i18n.json
index e0f62dd54..21c9fb276 100644
--- a/Extension/i18n/rus/ui/settings.html.i18n.json
+++ b/Extension/i18n/rus/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "При значении {0} (или если установлен флажок) анализатор тегов будет анализировать только файлы кода, прямо или косвенно включаемые исходным файлом в {1}. При значении {2} (или если флажок не установлен) анализатор тегов будет анализировать все файлы кода, найденные по путям, указанным в списке {3}.",
"database.filename": "Обзор: имя файла базы данных",
"database.filename.description": "Путь к создаваемой базе данных символов. Этот параметр указывает расширению расположение для сохранение базы данных символов анализатора тегов, отличное от используемого в этой рабочей области места хранения по умолчанию.Если указать относительный путь, он будет определяться относительно места хранения по умолчанию, а не от папки самой рабочей области. Чтобы указать путь относительно папки рабочей области, можно использовать переменную {0} (например, {1}).",
- "recursiveIncludes.reduce": "Рекурсивные включения: уменьшение",
- "recursiveIncludes.reduce.description": "Задайте значение {0}, чтобы всегда уменьшать количество путей рекурсивного включения, предоставляемых для IntelliSense, только до тех путей, на которые в настоящее время ссылаются инструкции #include. Для этого необходимо сначала проанализировать файлы, чтобы определить, какие файлы включены. Задайте значение {1}, чтобы предоставить все пути рекурсивного включения для IntelliSense. Уменьшение количества путей рекурсивного включения может повысить производительность IntelliSense, если задействовано очень большое количество путей рекурсивного включения. Отсутствие уменьшения количества путей рекурсивного включения может улучшить производительность IntelliSense благодаря отказу от необходимости анализа файлов для определения того, какие пути включения следует предоставить.",
"recursiveIncludes.priority": "Рекурсивные включения: приоритет",
"recursiveIncludes.priority.description": "Приоритет путей рекурсивного включения. Если задано значение {0}, поиск путей рекурсивного включения будет выполняться до путей системного включения. Если задано значение {1}, поиск путей рекурсивного включения будет выполняться после путей системного включения.",
"recursiveIncludes.order": "Рекурсивные включения: порядок",
diff --git a/Extension/i18n/trk/package.i18n.json b/Extension/i18n/trk/package.i18n.json
index 9bbf9af87..02a767d2a 100644
--- a/Extension/i18n/trk/package.i18n.json
+++ b/Extension/i18n/trk/package.i18n.json
@@ -20,6 +20,7 @@
"c_cpp.command.installCompiler.title": "C++ Derleyicisi Yükle",
"c_cpp.command.rescanCompilers.title": "Derleyicileri Yeniden Tara",
"c_cpp.command.switchHeaderSource.title": "Üst Bilgiyi/Kaynağı Değiştir",
+ "c_cpp.command.selectTranslationUnit.title": "Çeviri Birimi Seçin...",
"c_cpp.command.enableErrorSquiggles.title": "Hata İlişkilendirmelerini Etkinleştir",
"c_cpp.command.disableErrorSquiggles.title": "Hata İlişkilendirmelerini Devre Dışı Bırak",
"c_cpp.command.toggleDimInactiveRegions.title": "Etkin Olmayan Bölge Renklendirmeyi Aç/Kapat",
@@ -242,7 +243,6 @@
"c_cpp.configuration.default.enableConfigurationSquiggles.markdownDescription": "Uzantının `c_cpp_properties.json` dosyasında algılanan hataları bildirip bildirmeyeceğini denetler.",
"c_cpp.configuration.default.customConfigurationVariables.markdownDescription": "`customConfigurationVariables` ayarlanmamışsa bir yapılandırmada kullanılacak değer veya `customConfigurationVariables` içinde anahtar olarak `${default}` varsa eklenecek değerler.",
"c_cpp.configuration.default.dotConfig.markdownDescription": "`dotConfig` belirtilmemişse veya `${default}` olarak ayarlanmışsa bir yapılandırmada kullanılacak değer.",
- "c_cpp.configuration.default.recursiveIncludes.reduce.markdownDescription": "`recursiveIncludes.reduce` belirtilmemişse veya `${default}` olarak ayarlanmamışsa bir yapılandırmada kullanılacak değer.",
"c_cpp.configuration.default.recursiveIncludes.priority.markdownDescription": "`recursiveIncludes.priority` belirtilmemişse veya `${default}` olarak ayarlanmamışsa bir yapılandırmada kullanılacak değer.",
"c_cpp.configuration.default.recursiveIncludes.order.markdownDescription": "`recursiveIncludes.order` belirtilmemişse veya `${default}` olarak ayarlanmamışsa bir yapılandırmada kullanılacak değer.",
"c_cpp.configuration.experimentalFeatures.description": "\"Deneysel\" özelliklerin kullanılabilir olup olmadığını denetler.",
@@ -332,6 +332,7 @@
"c_cpp.debuggers.avoidWindowsConsoleRedirection.description": "Değer true ise, Tümleşik Terminal desteği için gerekli olan hata ayıklanan işlem konsol yeniden yönlendirmesini devre dışı bırakır.",
"c_cpp.debuggers.sourceFileMap.markdownDescription": "Hata ayıklama altyapısına geçirilen isteğe bağlı kaynak dosya eşlemeleri. Örnek: `{ \"\": \"\" }`.",
"c_cpp.debuggers.processId.anyOf.markdownDescription": "Hata ayıklayıcının ekleneceği isteğe bağlı işlem kimliği. Eklenilecek yerel çalışan işlemlerin bir listesini almak için `${command:pickProcess}` kullanın. Bazı platformların bir işleme ekleme yapmak için yönetici ayrıcalıkları gerektirdiğini unutmayın.",
+ "c_cpp.debuggers.processFilter.description": "Etiket, açıklama veya ayrıntıya göre uzak bağlantı adaylarını eşleştirmek için kullanılan isteğe bağlı normal ifade. Tam olarak bir işlem eşleşirse hata ayıklayıcı otomatik olarak bağlanır. Birden fazla işlem eşleşirse, yalnızca eşleşen girdilerin gösterildiği işlem seçici görüntülenir. Hiçbir işlem eşleşmezse işlem seçicinin tamamı gösterilir. Geçersiz bir normal ifade hata olarak bildirilir.",
"c_cpp.debuggers.program.attach.markdownDescription": "Programın yürütülebilir dosyasının tam yolu. Hata ayıklayıcı, bu yürütülebilir dosya yoluyla eşleşen çalışan bir işlemi arayacak ve ona eklenecek. Birden çok çalışan işlem eşleşiyorsa bir seçim istemi gösterilecek. Ekli işlem için hata ayıklama sembollerini yüklerken bu alan gereklidir.",
"c_cpp.debuggers.symbolSearchPath.description": "Sembol (yani pdb veya .so) dosyalarını aramak için kullanılacak, noktalı virgülle ayrılmış dizinlerin listesi. Örnek: \"c:\\dizin1;c:\\dizin2\".",
"c_cpp.debuggers.dumpPath.description": "Belirtilen program için döküm dosyasının isteğe bağlı tam yolu. Örnek: \"c:\\temp\\app.dmp\". Varsayılan olarak null değerini alır.",
@@ -393,7 +394,7 @@
"c_cpp.debuggers.symbolOptions.description": "Simgelerin (.pdb dosyaları) nasıl bulunup yüklendiğini denetleme seçenekleri.",
"c_cpp.debuggers.unknownBreakpointHandling.description": "İsabet ettiğinde harici olarak (genellikle ham GDB komutları aracılığıyla) ayarlanan kesme noktalarının nasıl işlendiğini kontrol eder.\nİzin verilen değerler, uygulama tarafından bir istisna oluşturulmuş gibi davranan \"throw\" ve yalnızca hata ayıklama oturumunu duraklatan \"stop\" değerleridir. Varsayılan değer \"throw\"dur.",
"c_cpp.debuggers.debuginfod.description": "debuginfod sunucularından hata ayıklama sembollerini indirmek için GDB'nin debuginfod davranışını denetler.",
- "c_cpp.debuggers.debuginfod.enabled.description": "false ise (varsayılan), GDB debuginfod sunucularıyla iletişim kurmaz. debuginfod desteğini etkinleştirmek için true olarak ayarlayın.",
+ "c_cpp.debuggers.debuginfod.enabled.description": "If false (default), GDB will not contact debuginfod servers. Set to true to enable debuginfod support.",
"c_cpp.debuggers.debuginfod.timeout.description": "debuginfod sunucu istekleri için saniye cinsinden zaman aşımı. Varsayılan değer 30'dur. GDB/libdebuginfod varsayılanlarını kullanmak için 0 değerine ayarlayın (geçersiz kılma yok).",
"c_cpp.debuggers.VSSymbolOptions.description": "Sembolleri bulup hata ayıklama bağdaştırıcısına yüklemeye yönelik yapılandırma sağlar.",
"c_cpp.debuggers.VSSymbolOptions.searchPaths.description": ".pdb dosyalarını aramak için sembol sunucusu URL’si (ör: http://MyExampleSymbolServer) veya dizin (ör. /build/symbols) dizisi. Bu dizinler, modülün yanındaki varsayılan konumların yanı sıra, pdb'nin bırakıldığı yolda arama yapar.",
diff --git a/Extension/i18n/trk/src/Debugger/processFilter.i18n.json b/Extension/i18n/trk/src/Debugger/processFilter.i18n.json
new file mode 100644
index 000000000..c790a3773
--- /dev/null
+++ b/Extension/i18n/trk/src/Debugger/processFilter.i18n.json
@@ -0,0 +1,8 @@
+/*---------------------------------------------------------------------------------------------
+ * Copyright (c) Microsoft Corporation. All rights reserved.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
+ *--------------------------------------------------------------------------------------------*/
+// Do not edit this file. It is machine generated.
+{
+ "invalid.processFilter.regex": "Geçersiz {0} normal ifadesi: {1}"
+}
diff --git a/Extension/i18n/trk/src/LanguageServer/extension.i18n.json b/Extension/i18n/trk/src/LanguageServer/extension.i18n.json
index cc06ebee8..a3741baea 100644
--- a/Extension/i18n/trk/src/LanguageServer/extension.i18n.json
+++ b/Extension/i18n/trk/src/LanguageServer/extension.i18n.json
@@ -7,6 +7,11 @@
"learn.how.to.install.a.library": "vcpkg ile bu üst bilgi için bir kitaplık yüklemeyi öğrenin",
"copy.vcpkg.command": "'{0}' yükleme vcpkg komutunu panoya kopyalayın",
"on.disabled.command": "`C_Cpp.intelliSenseEngine` `disabled` olarak ayarlandığında IntelliSense ile ilgili komutlar yürütülemez.",
+ "find.translation.units": "Çeviri Birimleri Bulunuyor...",
+ "no.translation.units.found": "Etkin dosyada hiçbir çeviri birimi bulunamadı.",
+ "current.translation.unit": "Geçerli çeviri birimi",
+ "select.translation.unit": "Çeviri Birimi Seçin",
+ "select.translation.unit.placeholder": "Çeviri birimi olarak kullanılacak bir kaynak dosya seçin",
"switch.header.source": "Başlık/Kaynak Değiştiriliyor...",
"client.not.found": "istemci bulunamadı",
"ok": "Tamam",
diff --git a/Extension/i18n/trk/src/nativeStrings.i18n.json b/Extension/i18n/trk/src/nativeStrings.i18n.json
index 9e67d9bd7..b3fa7c680 100644
--- a/Extension/i18n/trk/src/nativeStrings.i18n.json
+++ b/Extension/i18n/trk/src/nativeStrings.i18n.json
@@ -421,7 +421,7 @@
"important_label": "Önemli:",
"help_check": "Bir kaynak dosyayı compile_commands.json ile tam ayrıştırıp analiz ederek doğrular ve tüm tanılamaları raporlar. Hatalar bulunursa sıfır olmayan bir değerle çıkar.",
"help_check_compile_commands": "--check ile kullanılacak belirli bir compile_commands.json (veya dizini) için yol. Varsayılan olarak otomatik bulmaya çalışır.",
- "check_not_authorized": "yetki yok; --check seçeneğini kullanmak için giriş yapmak gerekiyor",
+ "check_not_authorized": "--check'i çalıştırmak için yetki yok; giriş yapmak gerekiyor",
"check_requires_source": "--check bir kaynak dosya gerektirir: --check=",
"check_source_not_found": "kaynak dosya bulunamadı: {0}",
"check_compile_commands_not_found": "compile_commands.json bulunamadı: {0}",
@@ -434,5 +434,7 @@
"check_timed_out": "{0} analizinin tamamlanması beklenirken zaman aşımına uğradı",
"failed_to_open_browse_db_lock_file": "Gözatma veritabanı kilit dosyası açılamadı: {0} (errno={1})",
"failed_to_lock_browse_db_lock_file": "Gözatma veritabanı kilit dosyası kilitlenemedi: {0} (errno={1})",
- "browse_database_disabled_incompatible_storage": "Gözatma veritabanının depolama konumu SQLite WAL paylaşılan belleğini desteklemediğinden, bu veritabanı devre dışı bırakıldı. browse.databaseFilename öğesini yerel bir yola ayarlayın."
+ "browse_database_disabled_incompatible_storage": "Göz atma veritabanının depolama konumu SQLite WAL paylaşılan belleğini desteklemediğinden, bu veritabanı devre dışı bırakıldı. browse.databaseFilename öğesini yerel bir yola ayarlayın.",
+ "selected_translation_unit_not_include_file_previous": "Seçilen çeviri birimi '{0}' '{1}' içermiyor. IntelliSense, hala kullanılabilir durumdaysa önceki çeviri birimini geri yükler; aksi takdirde, '{1}' yalnızca başlık çeviri birimi olarak kullanacaktır.",
+ "selected_translation_unit_not_include_file_header_only": "Seçilen çeviri birimi '{0}' '{1}' içermiyor. Kullanılabilir önceki çeviri birimi olmadığından IntelliSense, '{1}' yalnızca başlık çeviri birimi olarak kullanacak."
}
diff --git a/Extension/i18n/trk/ui/settings.html.i18n.json b/Extension/i18n/trk/ui/settings.html.i18n.json
index 4c8404313..e10d5ed4f 100644
--- a/Extension/i18n/trk/ui/settings.html.i18n.json
+++ b/Extension/i18n/trk/ui/settings.html.i18n.json
@@ -67,8 +67,6 @@
"limit.symbols.checkbox": "{0} (veya işaretli) olduğunda, Etiket Ayrıştırıcı yalnızca {1} içindeki bir kaynak dosya tarafından doğrudan veya dolaylı olarak dahil edilen kod dosyalarını ayrıştırır. {2} olduğunda (veya işaretlenmediğinde), Etiket Ayrıştırıcı {3} listesinde belirtilen yollarda bulunan tüm kod dosyalarını ayrıştırır.",
"database.filename": "Gözat: veritabanı dosya adı",
"database.filename.description": "Oluşturulan sembol veritabanının yolu. Bu, uzantının Etiket Ayrıştırıcısının sembol veritabanının çalışma alanı varsayılan depolama konumundan başka bir yerde kaydedilmesini sağlar. Göreli yol belirtilirse, çalışma alanı klasörünün kendisi değil, çalışma alanının varsayılan depolama konumuyla göreli olarak yapılır. {0} değişkeni, çalışma alanı klasörüne göreli bir yol belirtmek için kullanılabilir (örneğin, {1}).",
- "recursiveIncludes.reduce": "Özyinelemeli eklemeler: azalt",
- "recursiveIncludes.reduce.description": "IntelliSense'e sağlanan özyinelemeli ekleme yollarının sayısını her zaman yalnızca o anda #include deyimleri tarafından başvurulan yollara indirgemek için {0} olarak ayarlayın. Bu, hangi dosyaların eklendiğini belirlemek için önce dosyaların ayrıştırılmasını gerektirir. IntelliSense'e tüm özyinelemeli ekleme yollarını sağlamak için {1} olarak ayarlayın. Özyinelemeli ekleme yollarının sayısının azaltılması, çok sayıda özyinelemeli ekleme yolu söz konusu olduğunda IntelliSense performansını artırabilir. Özyinelemeli ekleme yollarının sayısını azaltmamak, hangi ekleme yollarının sağlanacağını belirlemek için dosyaları ayrıştırma ihtiyacını ortadan kaldırarak IntelliSense performansını artırabilir.",
"recursiveIncludes.priority": "Özyinelemeli içerikler: öncelik",
"recursiveIncludes.priority.description": "Özyinelemeli ekleme yollarının önceliği. {0} olarak ayarlanırsa özyinelemeli ekleme yolları, sistem ekleme yollarından önce aranır. {1} olarak ayarlanırsa özyinelemeli ekleme yolları, sistem ekleme yollarından sonra aranır.",
"recursiveIncludes.order": "Özyinelemeli eklemeler: düzenle",