diff --git a/Extension/i18n/chs/package.i18n.json b/Extension/i18n/chs/package.i18n.json index 39f01dbf96..14b40db90b 100644 --- a/Extension/i18n/chs/package.i18n.json +++ b/Extension/i18n/chs/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "如果设置为 `default`,则假定工作区的文件系统在 Windows 上不区分大小写,在 macOS 或 Linux 上区分大小写。如果设置为 `enabled`,则假定工作区的文件系统在 Windows 上区分大小写。", "c_cpp.configuration.enhancedColorization.markdownDescription": "如果启用,则根据 IntelliSense 对代码进行着色。仅当 `#C_Cpp.intelliSenseEngine#` 设置为 `default` 时,此设置才适用。", "c_cpp.configuration.codeFolding.description": "如果启用,则由语言服务器提供代码折叠范围。", + "c_cpp.configuration.markdownInComments.description": "Select whether markdown will be available in the hover tooltip. By default, only a subset of markdown will be applied to comments in the hover tooltip.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "Enable all markdown features in the hover tooltip except those that include the '_' and '*' characters.", + "c_cpp.configuration.markdownInComments.enabled.description": "Enable all markdown features in the hover tooltip.", + "c_cpp.configuration.markdownInComments.disabled.description": "Disable all markdown features in the hover tooltip.", "c_cpp.configuration.hover.description": "如果禁用,则语言服务器不再提供悬停详细信息。", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "为 [vcpkg 依存关系管理器](https://aka.ms/vcpkg/) 启用集成服务。", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "当来自 `nan` 和 `node-addon-api` 的包含路径为依赖项时,请将其添加。", diff --git a/Extension/i18n/chs/src/LanguageServer/client.i18n.json b/Extension/i18n/chs/src/LanguageServer/client.i18n.json index 54ce814274..4a6a993405 100644 --- a/Extension/i18n/chs/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/chs/src/LanguageServer/client.i18n.json @@ -4,11 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "无法启动 C/C++ 语言服务器。IntelliSense 功能将被禁用。错误: {0}", - "check.permissions": "EPERM: 检查“{0}”的权限", "select.compiler": "选择要为 IntelliSense 配置的编译器", "configure.intelliSense.forFolder": "你希望如何为“{0}”文件夹配置 IntelliSense?", - "configure.intelliSense.thisFolder": "你希望如何为此文件夹配置 IntelliSense?", + "configure.intelliSense.thisFolder": "How would you like to configure IntelliSense for this folder?", "found.string": "在 {0} 找到", "use.compiler": "使用 {0}", "configuration.providers": "配置提供程序", @@ -23,6 +21,8 @@ "selectCompiler.string": "选择编译器", "confirmCompiler.string": "是", "selectCompiler.message": "已找到编译器 {0}。是否要使用此编译器配置 IntelliSense?", + "unable.to.start": "无法启动 C/C++ 语言服务器。IntelliSense 功能将被禁用。错误: {0}", + "check.permissions": "EPERM: 检查“{0}”的权限", "server.crashed.restart": "语言服务器崩溃。正在重新启动...", "server.crashed2": "在过去 3 分钟内,语言服务器崩溃了 5 次。它不会重新启动。", "loggingLevel.changed": "{0} 已更改为: {1}", diff --git a/Extension/i18n/chs/src/LanguageServer/extension.i18n.json b/Extension/i18n/chs/src/LanguageServer/extension.i18n.json index fecb32cde6..e46ec78267 100644 --- a/Extension/i18n/chs/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/chs/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "首先打开一个文件夹以选择配置。", "configuration.provider.select.first": "首先打开一个文件夹以选择配置提供程序。", "edit.configurations.open.first": "首先打开一个文件夹以编辑配置", - "code.action.aborted": "无法应用代码分析修复程序,因为文档已更改。", - "add.includepath.open.first": "首先打开一个要添加到 {0} 的文件夹" + "code.action.aborted": "无法应用代码分析修复程序,因为文档已更改。" } \ No newline at end of file diff --git a/Extension/i18n/chs/src/LanguageServer/ui.i18n.json b/Extension/i18n/chs/src/LanguageServer/ui.i18n.json index 5c0dfcd0d6..fe78ff2668 100644 --- a/Extension/i18n/chs/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/chs/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Code Analysis 模式:", "c.cpp.configureIntelliSenseStatus.text": "配置 IntelliSense", "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ 配置 IntelliSense", - "select.command": "选择命令...", - "select.code.analysis.command": "选择代码分析命令...", "c.cpp.configuration.tooltip": "C/C++ 配置", "c.cpp.references.statusbar": "C/C++ 引用状态", "cpptools.status.intellisense": "C/C++ IntelliSense 状态", @@ -49,6 +47,8 @@ "disable.configuration.provider": "禁用活动配置提供程序(如果适用)。", "select.compile.commands": "选择 compile_commands.json...", "select.workspace": "选择工作区文件夹…", + "select.command": "选择命令...", + "select.code.analysis.command": "选择代码分析命令...", "resume.parsing": "恢复工作区分析", "pause.parsing": "暂停工作区分析", "cancel.analysis": "取消", diff --git a/Extension/i18n/cht/package.i18n.json b/Extension/i18n/cht/package.i18n.json index 30474053e9..0fc1995bb2 100644 --- a/Extension/i18n/cht/package.i18n.json +++ b/Extension/i18n/cht/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "如果設定為 `default`,則工作區的檔案系統會在 Windows 上假設為不區分大小寫,而在 macOS 或 Linux 上區分大小寫。如果設為 `enabled`,則工作區的檔案系統在 Windows 上會假設為區分大小寫。", "c_cpp.configuration.enhancedColorization.markdownDescription": "若啟用,將會依據 IntelliSense 顯示彩色的程式碼。僅當 `#C_Cpp.intelliSenseEngine#` 設為 `default` 時,才適用此設定。", "c_cpp.configuration.codeFolding.description": "若啟用,則由語言伺服器提供程式碼摺疊功能範圍。", + "c_cpp.configuration.markdownInComments.description": "Select whether markdown will be available in the hover tooltip. By default, only a subset of markdown will be applied to comments in the hover tooltip.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "Enable all markdown features in the hover tooltip except those that include the '_' and '*' characters.", + "c_cpp.configuration.markdownInComments.enabled.description": "Enable all markdown features in the hover tooltip.", + "c_cpp.configuration.markdownInComments.disabled.description": "Disable all markdown features in the hover tooltip.", "c_cpp.configuration.hover.description": "如果停用,語言伺服器將不再提供暫留詳細資料。", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "啟用 [vcpkg 相依性管理員](https://aka.ms/vcpkg/) 的整合服務。", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "當 `nan` 和 `node-addon-api` 為相依性時,從中新增 include 路徑。", diff --git a/Extension/i18n/cht/src/LanguageServer/client.i18n.json b/Extension/i18n/cht/src/LanguageServer/client.i18n.json index 3a10756b1d..a80abb0744 100644 --- a/Extension/i18n/cht/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/cht/src/LanguageServer/client.i18n.json @@ -4,11 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "無法啟動 C/C + + 語言伺服器。將停用 IntelliSense 功能。錯誤: {0}", - "check.permissions": "EPERM: 檢查 '{0}' 的權限", "select.compiler": "選取要設定 IntelliSense 的編譯器", "configure.intelliSense.forFolder": "想如何為 '{0}' 資料夾設定 IntelliSense。", - "configure.intelliSense.thisFolder": "想如何為此資料夾設定 IntelliSense。", + "configure.intelliSense.thisFolder": "How would you like to configure IntelliSense for this folder?", "found.string": "在 {0} 找到", "use.compiler": "使用 {0}", "configuration.providers": "設定提供者", @@ -23,6 +21,8 @@ "selectCompiler.string": "選取編譯器", "confirmCompiler.string": "是", "selectCompiler.message": "找到編譯器 {0}。您要使用此編譯器來設定 IntelliSense 嗎?", + "unable.to.start": "無法啟動 C/C + + 語言伺服器。將停用 IntelliSense 功能。錯誤: {0}", + "check.permissions": "EPERM: 檢查 '{0}' 的權限", "server.crashed.restart": "語言伺服器當機。正在重新啟動...", "server.crashed2": "語言伺服器在過去 3 分鐘內發生 5 次故障。將不會重新啟動。", "loggingLevel.changed": "{0} 已變更為: {1}", diff --git a/Extension/i18n/cht/src/LanguageServer/extension.i18n.json b/Extension/i18n/cht/src/LanguageServer/extension.i18n.json index 059f0dcb28..e9cf474038 100644 --- a/Extension/i18n/cht/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/cht/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "先開啟資料夾以選取設定。", "configuration.provider.select.first": "先開啟資料夾以選取設定提供者。", "edit.configurations.open.first": "先開啟資料夾以編輯組態", - "code.action.aborted": "無法套用程式碼分析修正,因為文件已變更。", - "add.includepath.open.first": "先開啟資料夾以新增至 {0}" + "code.action.aborted": "無法套用程式碼分析修正,因為文件已變更。" } \ No newline at end of file diff --git a/Extension/i18n/cht/src/LanguageServer/ui.i18n.json b/Extension/i18n/cht/src/LanguageServer/ui.i18n.json index 3b3fab2419..b85098e16d 100644 --- a/Extension/i18n/cht/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/cht/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Code Analysis 模式: ", "c.cpp.configureIntelliSenseStatus.text": "設定 IntelliSense", "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ 設定 IntelliSense", - "select.command": "選取命令...", - "select.code.analysis.command": "選取程式碼分析命令...", "c.cpp.configuration.tooltip": "C/C++ 組態", "c.cpp.references.statusbar": "C/C++ 參考狀態", "cpptools.status.intellisense": "C/C++ IntelliSense 狀態", @@ -49,6 +47,8 @@ "disable.configuration.provider": "如果適用,停用現有組態提供者。", "select.compile.commands": "選取 compile_commands.json...", "select.workspace": "選取工作區資料夾...", + "select.command": "選取命令...", + "select.code.analysis.command": "選取程式碼分析命令...", "resume.parsing": "繼續工作區剖析", "pause.parsing": "暫停工作區剖析", "cancel.analysis": "取消", diff --git a/Extension/i18n/cht/ui/settings.html.i18n.json b/Extension/i18n/cht/ui/settings.html.i18n.json index afa690ac37..febd46d6e1 100644 --- a/Extension/i18n/cht/ui/settings.html.i18n.json +++ b/Extension/i18n/cht/ui/settings.html.i18n.json @@ -32,7 +32,7 @@ "intellisense.mode": "IntelliSense 模式", "intellisense.mode.description": "要使用的 IntelliSense 模式 (對應到 MSVC、gcc 或 Clang 的平台及架構變體)。如果未設定或設為 {0},延伸模組會選擇該平台的預設。Windows 預設為 {1}、Linux 預設為 {2}、macOS 預設為 {3}。選取特定的 IntelliSense 模式可覆寫 {4} 模式。僅指定 {5} 變體 (例如 {6}) 的 IntelliSense 模式即為舊版模式,會依據主機平台自動轉換為 {7} 變體。", "include.path": "包含路徑", - "include.path.description": "include 路徑是包含來源檔案所含之標頭檔 (例如 {0}) 的資料夾。請為 IntelliSense 引擎指定搜尋所含標頭檔時所要使用的路徑清單。這些路徑不會重複搜尋。若要重複搜尋,請指定 {1}。例如 {2} 會搜尋所有子目錄,而 {3} 不會。若在安裝了 Visual Studio 的 Windows 上,或在 {4} 設定中指定了編譯器,就無須在此清單中列出系統的 include 路徑。", + "include.path.description": "include 路徑是包含來源檔案所含之標頭檔 (例如 {0}) 的資料夾。請為 Intellisense 引擎指定搜尋所含標頭檔時所要使用的路徑清單。這些路徑不會重複搜尋。若要重複搜尋,請指定 {1}。例如 {2} 會搜尋所有子目錄,而 {3} 不會。若在安裝了 Visual Studio 的 Windows 上,或在 {4} 設定中指定了編譯器,就無須在此清單中列出系統的 include 路徑。", "one.include.path.per.line": "每行一個包含路徑。", "defines": "定義", "defines.description": "剖析檔案時,IntelliSense 引擎要使用的前置處理器定義清單。可使用 {0} 來設定值,例如 {1}。", diff --git a/Extension/i18n/csy/package.i18n.json b/Extension/i18n/csy/package.i18n.json index cf89c169aa..8c7aa58802 100644 --- a/Extension/i18n/csy/package.i18n.json +++ b/Extension/i18n/csy/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "Když se nastaví na `default`, předpokládá se, že systém souborů pracovního prostoru ve Windows nerozlišuje velká a malá písmena a v macOS nebo Linuxu rozlišuje malá a velká písmena. Když se tato možnost nastaví na `enabled`, předpokládá se, že systém souborů pracovního prostoru ve Windows rozlišuje velká a malá písmena.", "c_cpp.configuration.enhancedColorization.markdownDescription": "Když se tato možnost povolí, kód se bude obarvovat podle IntelliSense. Toto nastavení se použije jen v případě, že možnost `#C_Cpp.intelliSenseEngine#` je nastavená na `default`.", "c_cpp.configuration.codeFolding.description": "Když se tato možnost povolí, rozsahy sbalování kódu bude poskytovat jazykový server.", + "c_cpp.configuration.markdownInComments.description": "Select whether markdown will be available in the hover tooltip. By default, only a subset of markdown will be applied to comments in the hover tooltip.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "Enable all markdown features in the hover tooltip except those that include the '_' and '*' characters.", + "c_cpp.configuration.markdownInComments.enabled.description": "Enable all markdown features in the hover tooltip.", + "c_cpp.configuration.markdownInComments.disabled.description": "Disable all markdown features in the hover tooltip.", "c_cpp.configuration.hover.description": "Pokud je tato možnost zakázaná, podrobnosti o najetí myší už nebude poskytovat jazykový server.", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "Povolte integrační služby pro [správce závislostí vcpkg](https://aka.ms/vcpkg/).", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "Pokud existují závislosti, přidejte cesty pro zahrnuté soubory z `nan` a `node-addon-api`.", @@ -412,14 +416,14 @@ "c_cpp.walkthrough.description": "Ponořte se do bohatého vývojového prostředí jazyka C++ VS Code.", "c_cpp.walkthrough.set.up.title": "Nastavení vašeho prostředí C++", "c_cpp.walkthrough.activating.description": "Aktivuje se rozšíření C++, aby se zjistilo, jestli je vaše prostředí C++ nastavené.\nRozšíření se aktivuje...", - "c_cpp.walkthrough.no.compilers.description": "Na vašem počítači jsme nenašli kompilátor C++, který je nutný k použití rozšíření C++. Nainstalujte si ho podle pokynů na pravé straně a potom klikněte níže na Najít můj nový kompilátor.\n[Najít můj nový kompilátor](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", - "c_cpp.walkthrough.compilers.found.description": "Rozšíření C++ funguje s kompilátorem C++. Vyberte jednu z těch, které už máte na počítači, kliknutím na tlačítko níže.\n [Vybrat můj Výchozí kompilátor](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "Na vašem počítači jsme nenašli kompilátor C++, který je nutný k použití rozšíření C++. Nainstalujte si ho podle pokynů na pravé straně a potom klikněte níže na Najít můj nový kompilátor.\n[Najít můj nový kompilátor] (příkaz:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.compilers.found.description": "Rozšíření C++ funguje s kompilátorem C++. Vyberte jednu z těch, které už máte na počítači, kliknutím na tlačítko níže.\n [Vybrat můj Výchozí kompilátor] (příkaz:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Obrázek znázorňující výběr výchozího rychlého výběru kompilátoru a seznam kompilátorů nalezených na počítači uživatelů, z nichž jeden je vybraný.", "c_cpp.walkthrough.create.cpp.file.title": "Vytvoření souboru C++", - "c_cpp.walkthrough.create.cpp.file.description": "[Otevřete](command:toSide:workbench.action.files.openFile) nebo [vytvořte](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) soubor C++. Nezapomeňte ho uložit s příponou .cpp, například „helloworld.cpp“. \n[Vytvořte soubor C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", + "c_cpp.walkthrough.create.cpp.file.description": "[Otevřete] (command:toSide:workbench.action.files.openFile) nebo [vytvořte](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) soubor C++. Nezapomeňte ho uložit s příponou .cpp, například „helloworld.cpp“. \n[Vytvořte soubor C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Otevřete soubor C++ nebo složku s projektem C++.", "c_cpp.walkthrough.command.prompt.title": "Spustit z příkazového řádku vývojáře", - "c_cpp.walkthrough.command.prompt.description": "Při použití kompilátoru Microsoft Visual Studio C++ vyžaduje rozšíření C++ spuštění VS Code z příkazového řádku vývojáře. Postupujte podle pokynů na pravé straně a spusťte ho znovu.\n [Znovu načíst okno](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.description": "Při použití kompilátoru Microsoft Visual Studio C++ vyžaduje rozšíření C++ spuštění VS Code z příkazového řádku vývojáře. Postupujte podle pokynů na pravé straně a spusťte ho znovu.\n [Znovu načíst okno] (command:workbench.action.reloadWindow)", "c_cpp.walkthrough.run.debug.title": "Spuštění a ladění souboru C++", "c_cpp.walkthrough.run.debug.mac.description": "Otevřete soubor C++ a klikněte na tlačítko přehrát v pravém horním rohu editoru nebo stiskněte klávesu F5, když jste na souboru. Pokud chcete spustit s ladicím programem, vyberte clang++ – Sestavit a ladit aktivní soubor.", "c_cpp.walkthrough.run.debug.linux.description": "Otevřete soubor C++ a klikněte na tlačítko přehrát v pravém horním rohu editoru nebo stiskněte klávesu F5, když jste na souboru. Pokud chcete spustit s ladicím programem, vyberte g++ – Sestavit a ladit aktivní soubor.", diff --git a/Extension/i18n/csy/src/LanguageServer/client.i18n.json b/Extension/i18n/csy/src/LanguageServer/client.i18n.json index e1dbde6458..695d721c18 100644 --- a/Extension/i18n/csy/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/csy/src/LanguageServer/client.i18n.json @@ -4,11 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "Nepovedlo se spustit jazykový server C/C++. Funkce IntelliSense se zakážou. Chyba: {0}", - "check.permissions": "EPERM: Zkontrolujte oprávnění pro {0}.", "select.compiler": "Vyberte kompilátor, který se má nakonfigurovat pro IntelliSense.", "configure.intelliSense.forFolder": "Jak chcete nakonfigurovat IntelliSense pro složku {0}?", - "configure.intelliSense.thisFolder": "Jak chcete nakonfigurovat IntelliSense pro tuto složku?", + "configure.intelliSense.thisFolder": "How would you like to configure IntelliSense for this folder?", "found.string": "Nalezeno v: {0}", "use.compiler": "Použít {0}", "configuration.providers": "poskytovatelé konfigurace", @@ -23,6 +21,8 @@ "selectCompiler.string": "Vybrat kompilátor", "confirmCompiler.string": "Ano", "selectCompiler.message": "Byl nalezen {0} kompilátoru. Chcete nakonfigurovat IntelliSense s tímto kompilátorem?", + "unable.to.start": "Nepovedlo se spustit jazykový server C/C++. Funkce IntelliSense se zakážou. Chyba: {0}", + "check.permissions": "EPERM: Zkontrolujte oprávnění pro {0}.", "server.crashed.restart": "Došlo k chybovému ukončení jazykového serveru. Restartuje se…", "server.crashed2": "Jazykový server se 5krát za poslední 3 minuty chybově ukončil. Nebude se restartovat.", "loggingLevel.changed": "{0} se změnila na: {1}", diff --git a/Extension/i18n/csy/src/LanguageServer/extension.i18n.json b/Extension/i18n/csy/src/LanguageServer/extension.i18n.json index e12b1c19c2..e9150846dc 100644 --- a/Extension/i18n/csy/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/csy/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "Pokud chcete vybrat konfiguraci, otevřete nejdříve složku.", "configuration.provider.select.first": "Pokud chcete vybrat poskytovatele konfigurace, otevřete nejdříve složku.", "edit.configurations.open.first": "Pokud chcete upravit konfigurace, otevřete nejdříve složku.", - "code.action.aborted": "Opravu analýzy kódu nelze použít, protože dokument byl změněn.", - "add.includepath.open.first": "Nejdříve otevřete složku, která se má přidat do {0}." + "code.action.aborted": "Opravu analýzy kódu nelze použít, protože dokument byl změněn." } \ No newline at end of file diff --git a/Extension/i18n/csy/src/LanguageServer/ui.i18n.json b/Extension/i18n/csy/src/LanguageServer/ui.i18n.json index 25b7cd41c9..d3e39397f9 100644 --- a/Extension/i18n/csy/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/csy/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Režim Code Analysis: ", "c.cpp.configureIntelliSenseStatus.text": "Konfigurovat IntelliSense", "c.cpp.configureIntelliSenseStatus.cppText": "Konfigurovat IntelliSense v C/C++", - "select.command": "Vyberte příkaz…", - "select.code.analysis.command": "Vyberte příkaz pro analýzu kódu…", "c.cpp.configuration.tooltip": "Konfigurace C/C++", "c.cpp.references.statusbar": "Stav odkazů jazyka C/C++", "cpptools.status.intellisense": "C/C++ IntelliSense Status", @@ -49,6 +47,8 @@ "disable.configuration.provider": "Zakažte aktivního poskytovatele konfigurací, pokud je to možné.", "select.compile.commands": "Vyberte soubor compile_commands.json...", "select.workspace": "Vyberte složku pracovního prostoru...", + "select.command": "Vyberte příkaz…", + "select.code.analysis.command": "Vyberte příkaz pro analýzu kódu…", "resume.parsing": "Pokračovat v analýze pracovního prostoru", "pause.parsing": "Pozastavit analýzu pracovního prostoru", "cancel.analysis": "Zrušit", diff --git a/Extension/i18n/deu/package.i18n.json b/Extension/i18n/deu/package.i18n.json index abbf6fff36..52fc65ed5e 100644 --- a/Extension/i18n/deu/package.i18n.json +++ b/Extension/i18n/deu/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "Wenn diese Einstellung auf `default` festgelegt ist, wird davon ausgegangen, dass für das Dateisystem des Arbeitsbereichs unter Windows die Groß-/Kleinschreibung nicht berücksichtigt und unter macOS oder Linux berücksichtigt wird. Wenn diese Einstellung auf `enabled` festgelegt ist, wird davon ausgegangen, dass für das Dateisystem des Arbeitsbereichs unter Windows die Groß-/Kleinschreibung beachtet wird.", "c_cpp.configuration.enhancedColorization.markdownDescription": "Wenn diese Option aktiviert ist, wird der Code basierend auf IntelliSense eingefärbt. Diese Einstellung gilt nur, wenn `#C_Cpp.intelliSenseEngine#` auf `default` festgelegt ist.", "c_cpp.configuration.codeFolding.description": "Wenn diese Option aktiviert ist, werden Codefaltbereiche vom Sprachserver bereitgestellt.", + "c_cpp.configuration.markdownInComments.description": "Select whether markdown will be available in the hover tooltip. By default, only a subset of markdown will be applied to comments in the hover tooltip.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "Enable all markdown features in the hover tooltip except those that include the '_' and '*' characters.", + "c_cpp.configuration.markdownInComments.enabled.description": "Enable all markdown features in the hover tooltip.", + "c_cpp.configuration.markdownInComments.disabled.description": "Disable all markdown features in the hover tooltip.", "c_cpp.configuration.hover.description": "Wenn diese Option deaktiviert ist, werden die Hoverdetails nicht mehr vom Sprachserver bereitgestellt.", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "Hiermit aktivieren Sie Integrationsdienste für den [vcpkg-Abhängigkeitsmanager](https://aka.ms/vcpkg/).", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "Fügen Sie Includepfade aus `nan` und `node-addon-api` hinzu, wenn es sich um Abhängigkeiten handelt.", @@ -412,11 +416,11 @@ "c_cpp.walkthrough.description": "Tauchen Sie ein in die umfassende C++-Entwicklungserfahrung VS Code.", "c_cpp.walkthrough.set.up.title": "C++-Umgebung einrichten", "c_cpp.walkthrough.activating.description": "Die C++-Erweiterung wird aktiviert, um zu bestimmen, ob Ihre C++-Umgebung eingerichtet wurde.\nErweiterung wird aktiviert...", - "c_cpp.walkthrough.no.compilers.description": "Auf Ihrem Computer wurde kein C++-Compiler gefunden, der für die Verwendung der C++-Erweiterung erforderlich ist. Befolgen Sie die Anweisungen auf der rechten Seite, um einen zu installieren, und klicken Sie unten auf \"Meinen neuen Compiler suchen\".\n[Meinen neuen Compiler suchen](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", - "c_cpp.walkthrough.compilers.found.description": "Die C++-Erweiterung funktioniert mit einem C++-Compiler. Wählen Sie eines der Elemente aus, die bereits auf Ihrem Computer vorhanden sind, indem Sie unten auf die Schaltfläche klicken.\n[Meinen Standard-Compiler auswählen](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "Auf Ihrem Computer wurde kein C++-Compiler gefunden, der für die Verwendung der C++-Erweiterung erforderlich ist. Befolgen Sie die Anweisungen auf der rechten Seite, um einen zu installieren, und klicken Sie unten auf \"Meinen neuen Compiler suchen\".\n[Meinen neuen Compiler suchen] (command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.compilers.found.description": "Die C++-Erweiterung funktioniert mit einem C++-Compiler. Wählen Sie eines der Elemente aus, die bereits auf Ihrem Computer vorhanden sind, indem Sie unten auf die Schaltfläche klicken.\n[Meinen Standard-Compiler auswählen](Befehl:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Abbildung, das die Auswahl eines standardmäßigen Compilerschnellauswahl und die Liste der Compiler auf dem Benutzercomputer anzeigt, von denen einer ausgewählt ist.", "c_cpp.walkthrough.create.cpp.file.title": "C++-Datei erstellen", - "c_cpp.walkthrough.create.cpp.file.description": "[Open](command:toSide:workbench.action.files.openFile) oder [create](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) eine C++-Datei. Speichern Sie die Datei unbedingt mit der Erweiterung \".cpp\", z. B. \"helloworld.cpp\". \n[C++-Datei erstellen](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", + "c_cpp.walkthrough.create.cpp.file.description": "[Open](command:toSide:workbench.action.files.openFile) oder [create](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) eine C++-Datei. Speichern Sie die Datei unbedingt mit der Erweiterung \".cpp\", z. B. \"helloworld.cpp\". \n[C++-Datei erstellen] (command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Öffnen Sie eine C++-Datei oder einen Ordner mit einem C++-Projekt.", "c_cpp.walkthrough.command.prompt.title": "Starten über die Developer-Eingabeaufforderung", "c_cpp.walkthrough.command.prompt.description": "Wenn Sie den Microsoft Visual Studio C++-Compiler verwenden, erfordert die C++-Erweiterung, dass Sie VS Code über die Entwicklereingabeaufforderung starten. Befolgen Sie die Anweisungen auf der rechten Seite, um den Neustart zu starten.\n[Reload Window](command:workbench.action.reloadWindow)", diff --git a/Extension/i18n/deu/src/LanguageServer/client.i18n.json b/Extension/i18n/deu/src/LanguageServer/client.i18n.json index 3d35d367f1..abb710c2b5 100644 --- a/Extension/i18n/deu/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/deu/src/LanguageServer/client.i18n.json @@ -4,11 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "Der C/C++-Sprachserver kann nicht gestartet werden. IntelliSense-Features werden deaktiviert. Fehler: {0}", - "check.permissions": "EPERM: Berechtigungen für \"{0}\" überprüfen", "select.compiler": "Wählen Sie einen Compiler aus, der für IntelliSense konfiguriert werden soll.", "configure.intelliSense.forFolder": "Wie möchten Sie IntelliSense für den Ordner \"{0}\" konfigurieren?", - "configure.intelliSense.thisFolder": "Wie möchten Sie IntelliSense für diesen Ordner konfigurieren?", + "configure.intelliSense.thisFolder": "How would you like to configure IntelliSense for this folder?", "found.string": "Gefunden unter {0}", "use.compiler": "{0} verwenden", "configuration.providers": "Konfigurationsanbieter", @@ -23,6 +21,8 @@ "selectCompiler.string": "Compiler auswählen", "confirmCompiler.string": "Ja", "selectCompiler.message": "Der Compiler {0} wurde gefunden. Möchten Sie IntelliSense mit diesem Compiler konfigurieren?", + "unable.to.start": "Der C/C++-Sprachserver kann nicht gestartet werden. IntelliSense-Features werden deaktiviert. Fehler: {0}", + "check.permissions": "EPERM: Berechtigungen für \"{0}\" überprüfen", "server.crashed.restart": "Der Sprach-Server ist abgestürzt. Neustart wird ausgeführt ...", "server.crashed2": "Der Sprachserver ist in den letzten 3 Minuten 5-mal abgestürzt. Er wird nicht neu gestartet.", "loggingLevel.changed": "{0} wurde geändert in {1}", diff --git a/Extension/i18n/deu/src/LanguageServer/extension.i18n.json b/Extension/i18n/deu/src/LanguageServer/extension.i18n.json index 33359264de..502e121cb8 100644 --- a/Extension/i18n/deu/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/deu/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "Öffnen Sie zum Auswählen einer Konfiguration zuerst einen Ordner.", "configuration.provider.select.first": "Öffnen Sie zum Auswählen eines Konfigurationsanbieters zuerst einen Ordner.", "edit.configurations.open.first": "Zum Bearbeiten von Konfigurationen zuerst einen Ordner öffnen", - "code.action.aborted": "Der Codeanalysepatch konnte nicht angewendet werden, da sich das Dokument geändert hat.", - "add.includepath.open.first": "Zuerst einen Ordner öffnen, der \"{0}\" hinzugefügt werden soll" + "code.action.aborted": "Der Codeanalysepatch konnte nicht angewendet werden, da sich das Dokument geändert hat." } \ No newline at end of file diff --git a/Extension/i18n/deu/src/LanguageServer/ui.i18n.json b/Extension/i18n/deu/src/LanguageServer/ui.i18n.json index d269c38a4d..83f770b394 100644 --- a/Extension/i18n/deu/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/deu/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Code Analysis-Modus: ", "c.cpp.configureIntelliSenseStatus.text": "IntelliSense konfigurieren", "c.cpp.configureIntelliSenseStatus.cppText": "IntelliSense in C/C++ konfigurieren", - "select.command": "Befehl auswählen...", - "select.code.analysis.command": "Codeanalysebefehl auswählen...", "c.cpp.configuration.tooltip": "C/C++-Konfiguration", "c.cpp.references.statusbar": "C/C++-Verweisstatus", "cpptools.status.intellisense": "Status von C/C++-IntelliSense", @@ -49,6 +47,8 @@ "disable.configuration.provider": "Deaktivieren Sie den aktiven Konfigurationsanbieter, falls zutreffend.", "select.compile.commands": "compile_commands.json-Datei auswählen...", "select.workspace": "Arbeitsbereichsordner auswählen...", + "select.command": "Befehl auswählen...", + "select.code.analysis.command": "Codeanalysebefehl auswählen...", "resume.parsing": "Arbeitsbereichsanalyse fortsetzen", "pause.parsing": "Arbeitsbereichsanalyse anhalten", "cancel.analysis": "Abbrechen", diff --git a/Extension/i18n/esn/Reinstalling the Extension.md.i18n.json b/Extension/i18n/esn/Reinstalling the Extension.md.i18n.json index 614409eab8..a67cbf55b1 100644 --- a/Extension/i18n/esn/Reinstalling the Extension.md.i18n.json +++ b/Extension/i18n/esn/Reinstalling the Extension.md.i18n.json @@ -16,6 +16,6 @@ "reinstall.extension.text5": "En Windows:", "reinstall.extension.text6": "En Linux:", "reinstall.extension.text7": "A continuación, reinstale mediante la interfaz de usuario de Marketplace en VS Code.", - "reinstall.extension.text8": "Si VS Code no puede implementar la versión correcta de la extensión, el VSIX correcto para el sistema se puede {0} e instalar mediante la opción 'Instalar desde VSIX...', en el menú '...' en la interfaz de usuario de Marketplace en VS Code.", + "reinstall.extension.text8": "Si VS Code no puede implementar la versión correcta de la extensión, el VSIX correcto para el sistema se puede {0} e instalar mediante la opción 'Instalar desde VSIX...', en el menú '..' en la interfaz de usuario de Marketplace en VS Code.", "download.vsix.link.title": "descargado del sitio web del Marketplace VS Code" } \ No newline at end of file diff --git a/Extension/i18n/esn/package.i18n.json b/Extension/i18n/esn/package.i18n.json index c33c20fd2c..b4ff0bb374 100644 --- a/Extension/i18n/esn/package.i18n.json +++ b/Extension/i18n/esn/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "Si se establece en `default`, el sistema de archivos del área de trabajo no distingue mayúsculas de minúsculas en Windows y distingue mayúsculas de minúsculas en macOS o Linux. Si se establece en `enabled`, el sistema de archivos del área de trabajo distingue mayúsculas de minúsculas en Windows.", "c_cpp.configuration.enhancedColorization.markdownDescription": "Si se habilita esta opción, el código se colorea de acuerdo con IntelliSense. Esta configuración solo se aplica si `#C_Cpp.intelliSenseEngine#` se establece en `default`.", "c_cpp.configuration.codeFolding.description": "Si está habilitada, el servidor de lenguaje proporciona intervalos de plegado de código.", + "c_cpp.configuration.markdownInComments.description": "Seleccione si Markdown estará disponible en la información sobre herramientas que aparece al mantener el puntero. De manera predeterminada, solo se aplicará un subconjunto de Markdown a los comentarios de la información sobre herramientas que aparece al mantener el puntero.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "Habilita todas las características de Markdown en la información sobre herramientas que aparece al mantener el puntero, excepto las que incluyen los caracteres \"_\" y \"*\".", + "c_cpp.configuration.markdownInComments.enabled.description": "Habilite todas las características de Markdown en la información sobre herramientas que aparece al mantener el puntero.", + "c_cpp.configuration.markdownInComments.disabled.description": "Deshabilite todas las características de Markdown en la información sobre herramientas que aparece al mantener el puntero.", "c_cpp.configuration.hover.description": "Si se deshabilita, el servidor de lenguaje ya no proporciona detalles al mantener el puntero.", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "Habilita los servicios de integración para el [administrador de dependencias de vcpkgs](https://aka.ms/vcpkg/).", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "Agrega rutas de acceso de inclusión de `nan` y `node-addon-api` cuando sean dependencias.", diff --git a/Extension/i18n/esn/src/LanguageServer/client.i18n.json b/Extension/i18n/esn/src/LanguageServer/client.i18n.json index e65979476e..5d09e73d0a 100644 --- a/Extension/i18n/esn/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/esn/src/LanguageServer/client.i18n.json @@ -4,11 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "No se puede iniciar el servidor de lenguaje de C/C++. Las características de IntelliSense se deshabilitarán. Error: {0}", - "check.permissions": "EPERM: Compruebe los permisos de \"{0}\"", "select.compiler": "Selecciona un compilador para configurarlo para IntelliSense", "configure.intelliSense.forFolder": "¿Cómo deseas configurar IntelliSense para la carpeta \"{0}\"?", - "configure.intelliSense.thisFolder": "¿Cómo deseas configurar IntelliSense para esta carpeta?", + "configure.intelliSense.thisFolder": "¿Cómo desea configurar IntelliSense para esta carpeta?", "found.string": "Encontrado en {0}", "use.compiler": "Uso {0}", "configuration.providers": "proveedores de configuración", @@ -23,6 +21,8 @@ "selectCompiler.string": "Selecciona un compilador", "confirmCompiler.string": "Sí", "selectCompiler.message": "Se encontró el compilador {0}. ¿Desea configurar IntelliSense con este compilador?", + "unable.to.start": "No se puede iniciar el servidor de lenguaje de C/C++. Las características de IntelliSense se deshabilitarán. Error: {0}", + "check.permissions": "EPERM: Compruebe los permisos de \"{0}\"", "server.crashed.restart": "El servidor de lenguaje se bloqueó. Se está reiniciando...", "server.crashed2": "El servidor de lenguaje se ha bloqueado cinco veces en los tres últimos minutos. No se reiniciará.", "loggingLevel.changed": "{0} se cambió a: {1}", diff --git a/Extension/i18n/esn/src/LanguageServer/extension.i18n.json b/Extension/i18n/esn/src/LanguageServer/extension.i18n.json index a0dcf7d15f..df1007dd4b 100644 --- a/Extension/i18n/esn/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/esn/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "Abre primero una carpeta para seleccionar una configuración.", "configuration.provider.select.first": "Abre primero una carpeta para seleccionar un proveedor de configuración.", "edit.configurations.open.first": "Abra una carpeta primero para editar las configuraciones", - "code.action.aborted": "No se pudo aplicar la corrección de análisis de código porque el documento ha cambiado.", - "add.includepath.open.first": "Abra primero una carpeta para agregarla a {0}" + "code.action.aborted": "No se pudo aplicar la corrección de análisis de código porque el documento ha cambiado." } \ No newline at end of file diff --git a/Extension/i18n/esn/src/LanguageServer/ui.i18n.json b/Extension/i18n/esn/src/LanguageServer/ui.i18n.json index c6f40a88e6..9fbcb3c3b2 100644 --- a/Extension/i18n/esn/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/esn/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Modo de Code Analysis: ", "c.cpp.configureIntelliSenseStatus.text": "Configurar IntelliSense", "c.cpp.configureIntelliSenseStatus.cppText": "Configuración de IntelliSense en C/C++", - "select.command": "Seleccione un comando...", - "select.code.analysis.command": "Seleccione un comando de análisis de código...", "c.cpp.configuration.tooltip": "Configuración de C/C++", "c.cpp.references.statusbar": "Estado de referencias de C/C++", "cpptools.status.intellisense": "Estado de IntelliSense de C/C++", @@ -49,6 +47,8 @@ "disable.configuration.provider": "Deshabilite el proveedor de configuración activo, si procede.", "select.compile.commands": "Seleccione un archivo compile_commands.json...", "select.workspace": "Seleccione una carpeta del área de trabajo...", + "select.command": "Seleccione un comando...", + "select.code.analysis.command": "Seleccione un comando de análisis de código...", "resume.parsing": "Reanudar el análisis de área de trabajo", "pause.parsing": "Pausar el análisis de área de trabajo", "cancel.analysis": "Cancelar", diff --git a/Extension/i18n/fra/Reinstalling the Extension.md.i18n.json b/Extension/i18n/fra/Reinstalling the Extension.md.i18n.json index cea5a6a246..d891ef0ac4 100644 --- a/Extension/i18n/fra/Reinstalling the Extension.md.i18n.json +++ b/Extension/i18n/fra/Reinstalling the Extension.md.i18n.json @@ -16,6 +16,6 @@ "reinstall.extension.text5": "Sur Windows :", "reinstall.extension.text6": "Sur Linux :", "reinstall.extension.text7": "Réinstallez ensuite via l’interface utilisateur de la Place de marché dans VS Code.", - "reinstall.extension.text8": "Si la version correcte de l’extension ne peut pas être déployée par VS Code, le VSIX approprié pour votre système peut être {0} et installé à l’aide de l’option 'Installer à partir de VSIX...' sous le menu '...' de l’interface utilisateur de la Place de marché dans VS Code.", + "reinstall.extension.text8": "Si la version correcte de l’extension ne peut pas être déployée par VS Code, le VSIX approprié pour votre système peut être {0} et installé à l’aide de l’option 'Installer à partir de VSIX'...' sous le menu '...' de l’interface utilisateur de la Place de marché dans VS Code.", "download.vsix.link.title": "téléchargé à partir du site web de la place de marché VS Code" } \ No newline at end of file diff --git a/Extension/i18n/fra/package.i18n.json b/Extension/i18n/fra/package.i18n.json index ea54744d6c..f000e71ad8 100644 --- a/Extension/i18n/fra/package.i18n.json +++ b/Extension/i18n/fra/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "Si la valeur est définie sur `default`, le système de fichiers de l’espace de travail est supposé ne pas respecter la casse sur Windows et respecter la casse sur macOS ou Linux. Si la valeur est `enabled`, le système de fichiers de l’espace de travail est supposé respecter la casse sur Windows.", "c_cpp.configuration.enhancedColorization.markdownDescription": "Si cette option est activée, le code est colorisé en fonction d'IntelliSense. Ce paramètre s'applique uniquement si `#C_Cpp.intelliSenseEngine#` est défini sur `default`.", "c_cpp.configuration.codeFolding.description": "Si cette fonctionnalité est activée, les plages de pliage de code sont fournies par le serveur de langage.", + "c_cpp.configuration.markdownInComments.description": "Indiquez si Markdown sera disponible dans l’info-bulle de pointage. Par défaut, seul un sous-ensemble de Markdown est appliqué aux commentaires dans l’info-bulle de pointage.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "Activez toutes les fonctionnalités Markdown dans l’info-bulle de pointage, à l’exception de celles qui incluent les caractères « _ » et « * ».", + "c_cpp.configuration.markdownInComments.enabled.description": "Activez toutes les fonctionnalités Markdown dans l’info-bulle de pointage.", + "c_cpp.configuration.markdownInComments.disabled.description": "Désactivez toutes les fonctionnalités Markdown dans l’info-bulle de pointage.", "c_cpp.configuration.hover.description": "Si cette option est désactivée, les détails du pointage ne sont plus fournis par le serveur de langage.", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "Activez les services d'intégration pour le [gestionnaire de dépendances vcpkg](https://aka.ms/vcpkg/).", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "Ajouter les chemins d'inclusion de `nan` et `node-addon-api` quand ils sont des dépendances.", @@ -416,7 +420,7 @@ "c_cpp.walkthrough.compilers.found.description": "L’extension C++ fonctionne avec un compilateur C++. Vous pouvez en sélectionner un parmi ceux déjà présents sur votre ordinateur en cliquant sur le bouton ci-dessous.\n[Sélectionner mon compilateur par défaut](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Image montrant la sélection d’une sélection rapide de compilateur par défaut et la liste des compilateurs trouvés sur l’ordinateur des utilisateurs, dont l’un est sélectionné.", "c_cpp.walkthrough.create.cpp.file.title": "Créer un fichier C++", - "c_cpp.walkthrough.create.cpp.file.description": "[Ouvrir](command:toSide:workbench.action.files.openFile) ou [créer](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un fichier C++. Veillez à l’enregistrer avec l’extension « .cpp », telle que « helloworld.cpp ». \n[Créer un fichier C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", + "c_cpp.walkthrough.create.cpp.file.description": "[Ouvrir](command:toSide:workbench.action.files.openFile) ou [créer](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un fichier C++. Veillez à l’enregistrer avec l’extension « .cpp », telle que « helloworld.cpp ». \n[Créer un fichier C++] (command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Ouvrez un fichier C++ ou un dossier avec un projet C++.", "c_cpp.walkthrough.command.prompt.title": "Lancer à partir de l’invite de commandes développeur", "c_cpp.walkthrough.command.prompt.description": "Quand vous utilisez le compilateur Microsoft Visual Studio C++, l’extension C++ vous demande de lancer VS Code à partir de l’invite de commandes du développeur. Suivez les instructions à droite pour relancer.\n[Recharger la fenêtre](command:workbench.action.reloadWindow)", diff --git a/Extension/i18n/fra/src/LanguageServer/client.i18n.json b/Extension/i18n/fra/src/LanguageServer/client.i18n.json index fe9a10f1bd..afd114bef1 100644 --- a/Extension/i18n/fra/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/fra/src/LanguageServer/client.i18n.json @@ -4,11 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "Impossible de démarrer le serveur de langage C/C++. Les fonctionnalités IntelliSense sont désactivées. Erreur : {0}", - "check.permissions": "EPERM : Vérifier les autorisations de '{0}'", "select.compiler": "Sélectionner un compilateur à configurer pour IntelliSense", "configure.intelliSense.forFolder": "Comment voulez-vous configurer IntelliSense pour le dossier «{0}» ?", - "configure.intelliSense.thisFolder": "Comment voulez-vous configurer IntelliSense pour ce dossier ?", + "configure.intelliSense.thisFolder": "Comment voulez-vous configurer IntelliSense pour ce dossier ?", "found.string": "Trouvé sur {0}", "use.compiler": "Utiliser {0}", "configuration.providers": "fournisseurs de configuration", @@ -23,6 +21,8 @@ "selectCompiler.string": "Sélectionner un compilateur", "confirmCompiler.string": "Oui", "selectCompiler.message": "Le compilateur {0} a été trouvé. Voulez-vous configurer IntelliSense avec ce compilateur ?", + "unable.to.start": "Impossible de démarrer le serveur de langage C/C++. Les fonctionnalités IntelliSense sont désactivées. Erreur : {0}", + "check.permissions": "EPERM : Vérifier les autorisations de '{0}'", "server.crashed.restart": "Le serveur de langue s’est arrêté. Redémarrage...", "server.crashed2": "Le serveur de langage s'est bloqué 5 fois au cours des 3 dernières minutes. Il n'est pas redémarré.", "loggingLevel.changed": "{0} a été changé en : {1}", diff --git a/Extension/i18n/fra/src/LanguageServer/extension.i18n.json b/Extension/i18n/fra/src/LanguageServer/extension.i18n.json index 0d822b760c..2fadc91e69 100644 --- a/Extension/i18n/fra/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/fra/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "Commencer par ouvrir un dossier pour sélectionner une configuration", "configuration.provider.select.first": "Commencer par ouvrir un dossier pour sélectionner un fournisseur de configuration", "edit.configurations.open.first": "Commencer par ouvrir un dossier pour modifier des configurations", - "code.action.aborted": "Impossible d’appliquer le correctif d’analyse du code, car le document a changé.", - "add.includepath.open.first": "Commencer par ouvrir un dossier à ajouter à {0}" + "code.action.aborted": "Impossible d’appliquer le correctif d’analyse du code, car le document a changé." } \ No newline at end of file diff --git a/Extension/i18n/fra/src/LanguageServer/ui.i18n.json b/Extension/i18n/fra/src/LanguageServer/ui.i18n.json index b90b9a949f..dfefc1bcea 100644 --- a/Extension/i18n/fra/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/fra/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Mode Code Analysis : ", "c.cpp.configureIntelliSenseStatus.text": "Configurer IntelliSense", "c.cpp.configureIntelliSenseStatus.cppText": "Configuration d’IntelliSense en C/C++", - "select.command": "Sélectionner une commande...", - "select.code.analysis.command": "Sélectionner une commande d’analyse du code...", "c.cpp.configuration.tooltip": "Configuration C/C++", "c.cpp.references.statusbar": "État des références C/C++", "cpptools.status.intellisense": "État IntelliSense C/C++", @@ -49,6 +47,8 @@ "disable.configuration.provider": "Désactivez le fournisseur de configuration actif, le cas échéant.", "select.compile.commands": "Sélectionner un fichier compile_commands.json...", "select.workspace": "Sélectionner un dossier d'espace de travail...", + "select.command": "Sélectionner une commande...", + "select.code.analysis.command": "Sélectionner une commande d’analyse du code...", "resume.parsing": "Reprendre l’analyse de l’espace de travail", "pause.parsing": "Suspendre l’analyse de l’espace de travail", "cancel.analysis": "Annuler", diff --git a/Extension/i18n/ita/package.i18n.json b/Extension/i18n/ita/package.i18n.json index f72a25e56b..7e4af3836e 100644 --- a/Extension/i18n/ita/package.i18n.json +++ b/Extension/i18n/ita/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "Se impostato su `default`, si presuppone che il file system dell'area di lavoro non faccia distinzione tra maiuscole e minuscole in Windows ma faccia distinzione tra maiuscole e minuscole in macOS o Linux. Se impostato su `enabled`, si presuppone che il file system dell'area di lavoro faccia distinzione tra maiuscole e minuscole in Windows.", "c_cpp.configuration.enhancedColorization.markdownDescription": "Se questa opzione è abilitata, il codice viene colorato in base a IntelliSense. Questa impostazione si applica solo se `#C_Cpp.intelliSenseEngine#` è impostato su `default`.", "c_cpp.configuration.codeFolding.description": "Se è abilitata, gli intervalli di riduzione del codice vengono fornite dal server di linguaggio.", + "c_cpp.configuration.markdownInComments.description": "Seleziona se markdown sarà disponibile nella descrizione comando al passaggio del mouse. Per impostazione predefinita, solo un subset di markdown verrà applicato ai commenti nella descrizione comando al passaggio del mouse.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "Abilita tutte le funzionalità markdown nella descrizione comando al passaggio del mouse, ad eccezione di quelle che includono i caratteri '_' e '*'.", + "c_cpp.configuration.markdownInComments.enabled.description": "Abilita tutte le funzionalità markdown nella descrizione comando al passaggio del mouse.", + "c_cpp.configuration.markdownInComments.disabled.description": "Disabilita tutte le funzionalità markdown nella descrizione comando al passaggio del mouse.", "c_cpp.configuration.hover.description": "Se questa opzione è disabilitata, i dettagli al passaggio del mouse non vengono più forniti dal server di linguaggio.", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "Abilita i servizi di integrazione per l'[utilità di gestione dipendenze di vcpkg](https://aka.ms/vcpkg/).", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "Aggiungere percorsi di inclusione da `nan` e `node-addon-api` quando sono dipendenze.", @@ -412,11 +416,11 @@ "c_cpp.walkthrough.description": "Scoprire l'esperienza di sviluppo C++ avanzata di VS Code.", "c_cpp.walkthrough.set.up.title": "Configurare l'ambiente C++", "c_cpp.walkthrough.activating.description": "Attivazione dell'estensione C++ per determinare se l'ambiente C++ è stato configurato.\nAttivazione dell'estensione...", - "c_cpp.walkthrough.no.compilers.description": "Non è stato possibile trovare un compilatore C++ nel computer, necessario per usare l'estensione C++. Seguire le istruzioni a destra per installarne uno, quindi fare clic su “Trova il nuovo compilatore” di seguito.\n [Find my new Compiler](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", - "c_cpp.walkthrough.compilers.found.description": "L'estensione C++ funziona con un compilatore C++. Selezionare una delle opzioni già presenti nel computer facendo clic sul pulsante seguente.\n [Selezionare il compilatore predefinito](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "Non è stato possibile trovare un compilatore C++ nel computer, necessario per usare l'estensione C++. Seguire le istruzioni a destra per installarne uno, quindi fare clic su “Trova il nuovo compilatore” di seguito.\n [Find my new Compiler] (command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.compilers.found.description": "L'estensione C++ funziona con un compilatore C++. Selezionare una delle opzioni già presenti nel computer facendo clic sul pulsante seguente.\n [Selezionare il compilatore predefinito] (comando:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Immagine che mostra la selezione di un quickpick del compilatore predefinito e l'elenco dei compilatori trovati nel computer degli utenti, uno dei quali è selezionato.", "c_cpp.walkthrough.create.cpp.file.title": "Creare un file C++", - "c_cpp.walkthrough.create.cpp.file.description": "[Open](command:toSide:workbench.action.files.openFile) o [creare](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un file C++. Assicurasi di salvarlo con l'estensione \".cpp\", ad esempio \"helloworld.cpp\". \n[Creare un file C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", + "c_cpp.walkthrough.create.cpp.file.description": "[Open](command:toSide:workbench.action.files.openFile) o [creare](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) un file C++. Assicurasi di salvarlo con l'estensione \".cpp\", ad esempio \"helloworld.cpp\". \n[Creare un file C++] (command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Apre un file C++ o una cartella con un progetto C++.", "c_cpp.walkthrough.command.prompt.title": "Prompt dei comandi per gli sviluppatori", "c_cpp.walkthrough.command.prompt.description": "Quando si usa il compilatore C++ Microsoft Visual Studio, l'estensione C++ richiede di avviare VS Code dal prompt dei comandi per sviluppatori. Seguire le istruzioni a destra per riavviare.\n[Reload Window](command:workbench.action.reloadWindow)", diff --git a/Extension/i18n/ita/src/LanguageServer/client.i18n.json b/Extension/i18n/ita/src/LanguageServer/client.i18n.json index 57f7ce2321..a6f429908f 100644 --- a/Extension/i18n/ita/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/ita/src/LanguageServer/client.i18n.json @@ -4,11 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "Non è possibile avviare il server di linguaggio C/C++. Le funzionalità IntelliSense verranno disabilitate. Errore: {0}", - "check.permissions": "EPERM: verificare le autorizzazioni per '{0}'", "select.compiler": "Seleziona un compilatore da configurare per IntelliSense", "configure.intelliSense.forFolder": "Come si desidera configurare IntelliSense per la cartella '{0}'?", - "configure.intelliSense.thisFolder": "Come si desidera configurare IntelliSense per questa cartella?", + "configure.intelliSense.thisFolder": "Come desideri configurare IntelliSense per questa cartella?", "found.string": "Trovato in {0}", "use.compiler": "Usa {0}", "configuration.providers": "Provider di configurazione", @@ -23,6 +21,8 @@ "selectCompiler.string": "Seleziona compilatore", "confirmCompiler.string": "Sì", "selectCompiler.message": "È stato trovato il {0} del compilatore. Configurare IntelliSense con questo compilatore?", + "unable.to.start": "Non è possibile avviare il server di linguaggio C/C++. Le funzionalità IntelliSense verranno disabilitate. Errore: {0}", + "check.permissions": "EPERM: verificare le autorizzazioni per '{0}'", "server.crashed.restart": "Si è verificato un arresto anomalo del server di linguaggio. Riavvio...", "server.crashed2": "Si sono verificati cinque arresti anomali del server di linguaggio negli ultimi tre minuti. Non verrà riavviato.", "loggingLevel.changed": "{0} è stato modificato in: {1}", diff --git a/Extension/i18n/ita/src/LanguageServer/extension.i18n.json b/Extension/i18n/ita/src/LanguageServer/extension.i18n.json index aeeda148d1..06e24baf89 100644 --- a/Extension/i18n/ita/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/ita/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "Apri prima una cartella per selezionare una configurazione.", "configuration.provider.select.first": "Apri prima una cartella per selezionare un provider di configurazione.", "edit.configurations.open.first": "Aprire prima una cartella per modificare le configurazioni", - "code.action.aborted": "Impossibile applicare la correzione di Code Analysis perché il documento è stato modificato.", - "add.includepath.open.first": "Aprire prima una cartella da aggiungere a {0}" + "code.action.aborted": "Impossibile applicare la correzione di Code Analysis perché il documento è stato modificato." } \ No newline at end of file diff --git a/Extension/i18n/ita/src/LanguageServer/ui.i18n.json b/Extension/i18n/ita/src/LanguageServer/ui.i18n.json index a79331d31a..4882996c54 100644 --- a/Extension/i18n/ita/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/ita/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Modalità Code Analysis: ", "c.cpp.configureIntelliSenseStatus.text": "Configura IntelliSense", "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ - Configura IntelliSense", - "select.command": "Seleziona un comando...", - "select.code.analysis.command": "Selezionare un comando di Code Analysis...", "c.cpp.configuration.tooltip": "Configurazione C/C++", "c.cpp.references.statusbar": "Stato riferimenti C/C++", "cpptools.status.intellisense": "Stato IntelliSense C/C++", @@ -49,6 +47,8 @@ "disable.configuration.provider": "Disabilita il provider di configurazione attivo, se applicabile.", "select.compile.commands": "Seleziona un file compile_commands.json...", "select.workspace": "Seleziona una cartella dell'area di lavoro...", + "select.command": "Seleziona un comando...", + "select.code.analysis.command": "Selezionare un comando di Code Analysis...", "resume.parsing": "Riprendi analisi area di lavoro", "pause.parsing": "Sospendi analisi area di lavoro", "cancel.analysis": "Annulla", diff --git a/Extension/i18n/jpn/package.i18n.json b/Extension/i18n/jpn/package.i18n.json index 48f5ed65e5..e9badb79ea 100644 --- a/Extension/i18n/jpn/package.i18n.json +++ b/Extension/i18n/jpn/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "`default` に設定すると、ワークスペースのファイル システムは Windows では大文字と小文字を区別せず、macOS または Linux では大文字と小文字を区別すると見なされます。`enabled` に設定すると、ワークスペースのファイル システムは Windows で大文字と小文字を区別すると見なされます。", "c_cpp.configuration.enhancedColorization.markdownDescription": "有効にすると、IntelliSense に基づいてコードが色分けされます。この設定は、 `#C_Cpp.intelliSenseEngine#` が `default` に設定されている場合にのみ適用されます。", "c_cpp.configuration.codeFolding.description": "有効にした場合、コードの折りたたみの範囲は言語サーバーによって指定されます。", + "c_cpp.configuration.markdownInComments.description": "Select whether markdown will be available in the hover tooltip. By default, only a subset of markdown will be applied to comments in the hover tooltip.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "Enable all markdown features in the hover tooltip except those that include the '_' and '*' characters.", + "c_cpp.configuration.markdownInComments.enabled.description": "Enable all markdown features in the hover tooltip.", + "c_cpp.configuration.markdownInComments.disabled.description": "Disable all markdown features in the hover tooltip.", "c_cpp.configuration.hover.description": "無効にすると、ホバーの詳細が言語サーバーから提供されなくなります。", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "[vcpkg 依存関係マネージャー](https://aka.ms/vcpkg/) の統合サービスを有効にします。", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "依存関係である場合は、`nan` および `node-addon-api` のインクルード パスを追加してください。", diff --git a/Extension/i18n/jpn/src/LanguageServer/client.i18n.json b/Extension/i18n/jpn/src/LanguageServer/client.i18n.json index c13203fd66..aed7ee250e 100644 --- a/Extension/i18n/jpn/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/jpn/src/LanguageServer/client.i18n.json @@ -4,11 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "C/C++ 言語サーバーを起動できません。IntelliSense 機能は無効になります。エラー: {0}", - "check.permissions": "EPERM: '{0}' のアクセス許可を確認してください", "select.compiler": "IntelliSense 用に構成するコンパイラを選択する", "configure.intelliSense.forFolder": "'{0}' フォルダーの IntelliSense をどのように構成しますか?", - "configure.intelliSense.thisFolder": "このフォルダーの IntelliSense をどのように構成しますか?", + "configure.intelliSense.thisFolder": "How would you like to configure IntelliSense for this folder?", "found.string": "{0} で見つかりました", "use.compiler": "{0}を使用する", "configuration.providers": "構成プロバイダー", @@ -23,6 +21,8 @@ "selectCompiler.string": "コンパイラを選択する", "confirmCompiler.string": "はい", "selectCompiler.message": "コンパイラ {0} が見つかりました。このコンパイラで IntelliSense を構成しますか?", + "unable.to.start": "C/C++ 言語サーバーを起動できません。IntelliSense 機能は無効になります。エラー: {0}", + "check.permissions": "EPERM: '{0}' のアクセス許可を確認してください", "server.crashed.restart": "言語サーバーがクラッシュしました。再起動しています...", "server.crashed2": "言語サーバーが過去 3 分間に 5 回クラッシュしました。再起動されません。", "loggingLevel.changed": "{0} が次に変更されました: {1}", diff --git a/Extension/i18n/jpn/src/LanguageServer/extension.i18n.json b/Extension/i18n/jpn/src/LanguageServer/extension.i18n.json index 3a0aa863e5..e491a51931 100644 --- a/Extension/i18n/jpn/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/jpn/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "構成を選択するには、まずフォルダーを開いてください。", "configuration.provider.select.first": "構成プロバイダーを選択するには、まずフォルダーを開いてください。", "edit.configurations.open.first": "構成を編集するには、まずフォルダーを開いてください", - "code.action.aborted": "ドキュメントが変更されたため、コード分析修正プログラムを適用できませんでした。", - "add.includepath.open.first": "{0} に追加するには、まずフォルダーを開いてください" + "code.action.aborted": "ドキュメントが変更されたため、コード分析修正プログラムを適用できませんでした。" } \ No newline at end of file diff --git a/Extension/i18n/jpn/src/LanguageServer/ui.i18n.json b/Extension/i18n/jpn/src/LanguageServer/ui.i18n.json index 7deaaaa1c1..ac67780d9d 100644 --- a/Extension/i18n/jpn/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/jpn/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Code Analysis モード: ", "c.cpp.configureIntelliSenseStatus.text": "IntelliSense の構成", "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ IntelliSense の構成", - "select.command": "コマンドを選択する...", - "select.code.analysis.command": "コード分析コマンドを選択...", "c.cpp.configuration.tooltip": "C/C++ 構成", "c.cpp.references.statusbar": "C/C + + リファレンスの状態", "cpptools.status.intellisense": "C/c + + IntelliSense の状態", @@ -49,6 +47,8 @@ "disable.configuration.provider": "該当する場合は、アクティブな構成プロバイダーを無効にします。", "select.compile.commands": "compile_commands.json を選択してください...", "select.workspace": "ワークスペース フォルダーを選択します...", + "select.command": "コマンドを選択する...", + "select.code.analysis.command": "コード分析コマンドを選択...", "resume.parsing": "ワークスペースの解析の再開", "pause.parsing": "ワークスペースの解析の一時停止", "cancel.analysis": "キャンセル", diff --git a/Extension/i18n/kor/package.i18n.json b/Extension/i18n/kor/package.i18n.json index 38545f02a2..d97057fc5d 100644 --- a/Extension/i18n/kor/package.i18n.json +++ b/Extension/i18n/kor/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "`default`로 설정하면 작업 공간의 파일 시스템이 Windows에서는 대소문자를 구분하지 않고 macOS 또는 Linux에서는 대소문자를 구분하는 것으로 간주됩니다. `enabled`로 설정하면 작업 영역의 파일 시스템이 Windows에서 대소문자를 구분하는 것으로 간주됩니다.", "c_cpp.configuration.enhancedColorization.markdownDescription": "사용하도록 설정된 경우 IntelliSense를 기반으로 코드 색이 지정됩니다. `#C_Cpp.intelliSenseEngine#`이 `default`로 설정된 경우에만 이 설정이 적용됩니다.", "c_cpp.configuration.codeFolding.description": "사용하도록 설정하면 언어 서버에서 코드 접기 범위를 제공합니다.", + "c_cpp.configuration.markdownInComments.description": "가리키기 도구 설명에서 Markdown을 사용할 수 있는지 여부를 선택합니다. 기본값으로, Markdown의 하위 집합만 가리키기 도구 설명의 주석에 적용됩니다.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "가리키기 도구 설명에서 '_' 및 '*' 문자를 포함하는 기능을 제외한 모든 Markdown 기능을 활성화합니다.", + "c_cpp.configuration.markdownInComments.enabled.description": "가리키기 도구 설명에서 모든 Markdown 기능을 활성화합니다.", + "c_cpp.configuration.markdownInComments.disabled.description": "가리키기 도구 설명에서 모든 Markdown 기능을 비활성화합니다.", "c_cpp.configuration.hover.description": "사용하지 않도록 설정하면 언어 서버에서 마우스로 가리키기 세부 정보를 더 이상 제공하지 않습니다.", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "[vcpkg 종속성 관리자](https://aka.ms/vcpkg/)에 대해 통합 서비스를 사용하도록 설정합니다.", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "`nan` 및 `node-addon-api`가 종속성일 때 해당 포함 경로를 추가합니다.", diff --git a/Extension/i18n/kor/src/LanguageServer/client.i18n.json b/Extension/i18n/kor/src/LanguageServer/client.i18n.json index 954b450a0d..da424ce378 100644 --- a/Extension/i18n/kor/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/kor/src/LanguageServer/client.i18n.json @@ -4,11 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "C/C++ 언어 서버를 시작할 수 없습니다. IntelliSense 기능을 사용할 수 없습니다. 오류: {0}", - "check.permissions": "EPERM: '{0}'에 대한 사용 권한 확인", "select.compiler": "IntelliSense에 구성할 컴파일러 선택", "configure.intelliSense.forFolder": "'{0}' 폴더에 대해 IntelliSense를 어떻게 구성하시겠습니까?", - "configure.intelliSense.thisFolder": "IntelliSense 이 폴더를 어떻게 구성하시겠습니까?", + "configure.intelliSense.thisFolder": "이 폴더에 IntelliSense를 어떻게 구성하려고 하나요?", "found.string": "{0}에서 찾음", "use.compiler": "{0} 사용", "configuration.providers": "구성 공급자", @@ -23,6 +21,8 @@ "selectCompiler.string": "컴파일러 선택", "confirmCompiler.string": "예", "selectCompiler.message": "{0} 컴파일러를 발견했습니다. 이 컴파일러를 사용하여 IntelliSense를 구성할까요?", + "unable.to.start": "C/C++ 언어 서버를 시작할 수 없습니다. IntelliSense 기능을 사용할 수 없습니다. 오류: {0}", + "check.permissions": "EPERM: '{0}'에 대한 사용 권한 확인", "server.crashed.restart": "언어 서버가 중단되었습니다. 다시 시작하는 중입니다...", "server.crashed2": "지난 3분 동안 언어 서버에서 크래시가 5회 발생했습니다. 다시 시작되지 않습니다.", "loggingLevel.changed": "{0}이(가) {1}(으)로 변경되었습니다.", diff --git a/Extension/i18n/kor/src/LanguageServer/extension.i18n.json b/Extension/i18n/kor/src/LanguageServer/extension.i18n.json index a6c4a97722..4240615fad 100644 --- a/Extension/i18n/kor/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/kor/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "먼저 구성을 선택할 폴더를 엽니다.", "configuration.provider.select.first": "먼저 구성 공급자를 선택할 폴더를 엽니다.", "edit.configurations.open.first": "먼저 구성을 편집할 폴더 열기", - "code.action.aborted": "문서가 변경되어 코드 분석 수정 사항을 적용할 수 없습니다.", - "add.includepath.open.first": "먼저 {0}에 추가할 폴더 열기" + "code.action.aborted": "문서가 변경되어 코드 분석 수정 사항을 적용할 수 없습니다." } \ No newline at end of file diff --git a/Extension/i18n/kor/src/LanguageServer/ui.i18n.json b/Extension/i18n/kor/src/LanguageServer/ui.i18n.json index 50b1921fb7..3803a27c4d 100644 --- a/Extension/i18n/kor/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/kor/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Code Analysis 모드: ", "c.cpp.configureIntelliSenseStatus.text": "IntelliSense 구성", "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ IntelliSense 구성", - "select.command": "명령 선택...", - "select.code.analysis.command": "코드 분석 명령 선택...", "c.cpp.configuration.tooltip": "C/C++ 구성", "c.cpp.references.statusbar": "C/C++ 참조 상태", "cpptools.status.intellisense": "C/C++ IntelliSense 상태", @@ -49,6 +47,8 @@ "disable.configuration.provider": "해당하는 경우 활성 구성 공급자를 사용하지 않도록 설정합니다.", "select.compile.commands": "compile_commands.json 선택...", "select.workspace": "작업 영역 폴더 선택...", + "select.command": "명령 선택...", + "select.code.analysis.command": "코드 분석 명령 선택...", "resume.parsing": "작업 영역 구문 분석 다시 시작", "pause.parsing": "작업 영역 구문 분석 일시 중지", "cancel.analysis": "취소", diff --git a/Extension/i18n/plk/package.i18n.json b/Extension/i18n/plk/package.i18n.json index 24852823a1..fa03b02e62 100644 --- a/Extension/i18n/plk/package.i18n.json +++ b/Extension/i18n/plk/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "W przypadku ustawienia wartości `default` przyjmuje się, że system plików obszaru roboczego w systemie Windows nie uwzględnia wielkości liter, a w systemie macOS lub Linux wielkość liter jest uwzględniana. W przypadku ustawienia wartości `enabled` przyjmuje się, że system plików obszaru roboczego uwzględnia wielkość liter w systemie Windows.", "c_cpp.configuration.enhancedColorization.markdownDescription": "Jeśli ta opcja jest włączona, kod jest kolorowany na podstawie funkcji IntelliSense. To ustawienie ma zastosowanie tylko wtedy, gdy właściwość `#C_Cpp.intelliSenseEngine#` ma wartość `default`.", "c_cpp.configuration.codeFolding.description": "Jeśli ta opcja jest włączona, zakresy składania kodu są dostarczane przez serwer języka.", + "c_cpp.configuration.markdownInComments.description": "Select whether markdown will be available in the hover tooltip. By default, only a subset of markdown will be applied to comments in the hover tooltip.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "Enable all markdown features in the hover tooltip except those that include the '_' and '*' characters.", + "c_cpp.configuration.markdownInComments.enabled.description": "Enable all markdown features in the hover tooltip.", + "c_cpp.configuration.markdownInComments.disabled.description": "Disable all markdown features in the hover tooltip.", "c_cpp.configuration.hover.description": "W przypadku wyłączenia szczegóły dotyczące umieszczania wskaźnika myszy nie będą już udostępniane przez serwer języka.", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "Włącz usługi integracji dla elementu [vcpkg dependency manager](https://aka.ms/vcpkg/).", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "Dodaj ścieżki dołączania z plików `nan` i `node-addon-api`, jeśli są one zależnościami.", @@ -412,14 +416,14 @@ "c_cpp.walkthrough.description": "Poznaj zaawansowane środowisko deweloperskie języka C++ w edytorze VS Code.", "c_cpp.walkthrough.set.up.title": "Konfigurowanie środowiska C++", "c_cpp.walkthrough.activating.description": "Aktywowanie rozszerzenia języka C++ w celu określenia, czy środowisko C++ zostało skonfigurowane.\nTrwa aktywowanie rozszerzenia...", - "c_cpp.walkthrough.no.compilers.description": "Nie można odnaleźć na maszynie kompilatora języka C++, który jest wymagany, aby korzystać z rozszerzenia języka C++. Postępuj zgodnie z instrukcjami po prawej stronie, aby zainstalować, a następnie kliknij poniżej pozycję „Znajdź mój nowy kompilator”.\n[Znajdź mój nowy kompilator](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D", - "c_cpp.walkthrough.compilers.found.description": "Rozszerzenie języka C++ działa z kompilatorem języka C++. Wybierz jeden z tych, które są już na Twojej maszynie, klikając poniższy przycisk.\n[Wybierz domyślny kompilator](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "Nie można odnaleźć na maszynie kompilatora języka C++, który jest wymagany, aby korzystać z rozszerzenia języka C++. Postępuj zgodnie z instrukcjami po prawej stronie, aby zainstalować, a następnie kliknij poniżej pozycję „Znajdź mój nowy kompilator”.\n[Znajdź mój nowy kompilator](polecenie:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D", + "c_cpp.walkthrough.compilers.found.description": "Rozszerzenie języka C++ działa z kompilatorem języka C++. Wybierz jeden z tych, które są już na Twojej maszynie, klikając poniższy przycisk.\n[Wybierz domyślny kompilator](polecenie:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Obraz przedstawiający wybieranie domyślnego kompilatora za pomocą narzędzia QuickPick oraz listę kompilatorów znalezionych na maszynach użytkowników, z których jeden jest zaznaczony.", "c_cpp.walkthrough.create.cpp.file.title": "Tworzenie pliku C++", - "c_cpp.walkthrough.create.cpp.file.description": "[Otwórz](command:toSide:workbench.action.files.openFile) lub [utwórz](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) plik C++. Pamiętaj, aby zapisać go z rozszerzeniem „.cpp” (na przykład „helloworld.cpp”). \n[Utwórz plik C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", + "c_cpp.walkthrough.create.cpp.file.description": "[Otwórz](command:toSide:workbench.action.files.openFile) lub [utwórz](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) plik C++. Pamiętaj, aby zapisać go z rozszerzeniem „.cpp” (na przykład „helloworld.cpp”). \n[Utwórz plik C++ ] (command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Otwórz plik C++ lub folder z projektem C++.", "c_cpp.walkthrough.command.prompt.title": "Uruchamianie z wiersza polecenia dla deweloperów", - "c_cpp.walkthrough.command.prompt.description": "Jeśli korzystasz z kompilatora języka C++ programu Microsoft Visual Studio, rozszerzenie języka C++ wymaga uruchomienia edytora VS Code z poziomu wiersza polecenia dla deweloperów. Postępuj zgodnie z instrukcjami po prawej stronie, aby uruchomić ponownie.\n[Załaduj ponownie okno](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.description": "Jeśli korzystasz z kompilatora języka C++ programu Microsoft Visual Studio, rozszerzenie języka C++ wymaga uruchomienia edytora VS Code z poziomu wiersza polecenia dla deweloperów. Postępuj zgodnie z instrukcjami po prawej stronie, aby uruchomić ponownie.\n[Załaduj ponownie okno] (command:workbench.action.reloadWindow)", "c_cpp.walkthrough.run.debug.title": "Uruchamianie i debugowanie pliku C++", "c_cpp.walkthrough.run.debug.mac.description": "Otwórz plik C++ i kliknij przycisk odtwarzania w prawym górnym rogu edytora lub naciśnij klawisz F5, gdy korzystasz z pliku. Wybierz pozycję „clang++ — kompiluj i debuguj aktywny plik\", aby uruchomić go za pomocą debugera.", "c_cpp.walkthrough.run.debug.linux.description": "Otwórz plik C++ i kliknij przycisk odtwarzania w prawym górnym rogu edytora lub naciśnij klawisz F5, gdy korzystasz z pliku. Wybierz pozycję „g++ — kompiluj i debuguj aktywny plik\", aby uruchomić go za pomocą debugera.", diff --git a/Extension/i18n/plk/src/LanguageServer/client.i18n.json b/Extension/i18n/plk/src/LanguageServer/client.i18n.json index dc406abfb1..4601cfeff3 100644 --- a/Extension/i18n/plk/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/plk/src/LanguageServer/client.i18n.json @@ -4,11 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "Nie można uruchomić serwera języka C/C++. Funkcje IntelliSense zostaną wyłączone. Błąd: {0}", - "check.permissions": "EPERM: sprawdź uprawnienia dla elementu „{0}”", "select.compiler": "Wybierz kompilator do skonfigurowania dla funkcji IntelliSense", "configure.intelliSense.forFolder": "Jak chcesz skonfigurować funkcję IntelliSense dla folderu „{0}”?", - "configure.intelliSense.thisFolder": "Jak chcesz skonfigurować funkcję IntelliSense dla tego folderu?", + "configure.intelliSense.thisFolder": "How would you like to configure IntelliSense for this folder?", "found.string": "Znaleziono w {0}", "use.compiler": "Użyj kompilatora {0}", "configuration.providers": "dostawcy konfiguracji", @@ -23,6 +21,8 @@ "selectCompiler.string": "Wybierz kompilator", "confirmCompiler.string": "Tak", "selectCompiler.message": "Znaleziono kompilator {0}. Czy chcesz skonfigurować funkcję IntelliSense za pomocą tego kompilatora?", + "unable.to.start": "Nie można uruchomić serwera języka C/C++. Funkcje IntelliSense zostaną wyłączone. Błąd: {0}", + "check.permissions": "EPERM: sprawdź uprawnienia dla elementu „{0}”", "server.crashed.restart": "Wystąpiła awaria serwera języka. Trwa ponowne uruchamianie...", "server.crashed2": "W ciągu ostatnich 3 minut awaria serwera języka wystąpiła 5 razy. Nie zostanie on ponownie uruchomiony.", "loggingLevel.changed": "Poziom {0} zmienił się na: {1}", diff --git a/Extension/i18n/plk/src/LanguageServer/extension.i18n.json b/Extension/i18n/plk/src/LanguageServer/extension.i18n.json index 358bdcd7eb..4bf4cdef27 100644 --- a/Extension/i18n/plk/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/plk/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "Najpierw otwórz folder, aby wybrać konfigurację.", "configuration.provider.select.first": "Najpierw otwórz folder, aby wybrać dostawcę konfiguracji.", "edit.configurations.open.first": "Otwórz najpierw folder, aby edytować konfiguracje", - "code.action.aborted": "Nie można rozwiązać problemu z analizą kodu, ponieważ dokument został zmieniony.", - "add.includepath.open.first": "Otwórz najpierw folder, aby dodać go do {0}" + "code.action.aborted": "Nie można rozwiązać problemu z analizą kodu, ponieważ dokument został zmieniony." } \ No newline at end of file diff --git a/Extension/i18n/plk/src/LanguageServer/ui.i18n.json b/Extension/i18n/plk/src/LanguageServer/ui.i18n.json index 118e255e79..e67c9c1243 100644 --- a/Extension/i18n/plk/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/plk/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Tryb analizy kodu: ", "c.cpp.configureIntelliSenseStatus.text": "Konfigurowanie funkcji IntelliSense", "c.cpp.configureIntelliSenseStatus.cppText": "Konfigurowanie funkcji IntelliSense (C/C++)", - "select.command": "Wybierz polecenie...", - "select.code.analysis.command": "Wybierz polecenie analizy kodu...", "c.cpp.configuration.tooltip": "Konfiguracja języka C/C++", "c.cpp.references.statusbar": "Stan odwołań języka C/C++", "cpptools.status.intellisense": "Stan funkcji IntelliSense języka C/C++", @@ -49,6 +47,8 @@ "disable.configuration.provider": "Wyłącz aktywnego dostawcę konfiguracji, jeśli ma zastosowanie.", "select.compile.commands": "Wybierz plik compile_commands.json...", "select.workspace": "Wybierz folder obszaru roboczego...", + "select.command": "Wybierz polecenie...", + "select.code.analysis.command": "Wybierz polecenie analizy kodu...", "resume.parsing": "Wznów analizowanie obszaru roboczego", "pause.parsing": "Wstrzymaj analizowanie obszaru roboczego", "cancel.analysis": "Anuluj", diff --git a/Extension/i18n/ptb/package.i18n.json b/Extension/i18n/ptb/package.i18n.json index 934c92c1cb..ff41d6b09d 100644 --- a/Extension/i18n/ptb/package.i18n.json +++ b/Extension/i18n/ptb/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "Se definido como `default`, o sistema de arquivos do workspace não diferencia maiúsculas de minúsculas no Windows e diferencia maiúsculas de minúsculas no macOS ou Linux. Se definido como `enabled`, o sistema de arquivos do workspace é considerado sensível a maiúsculas e minúsculas no Windows.", "c_cpp.configuration.enhancedColorization.markdownDescription": "Se habilitado, o código é colorido com base no IntelliSense. Esta configuração só se aplica se `#C_Cpp.intelliSenseEngine#` estiver definido como `default`.", "c_cpp.configuration.codeFolding.description": "Se habilitado, os intervalos de dobramento de código serão fornecidos pelo servidor de idiomas.", + "c_cpp.configuration.markdownInComments.description": "Selecione se a remarcação estará disponível na dica de ferramenta instantânea. Por padrão, apenas um subconjunto de marcação será aplicado aos comentários na dica de ferramenta instantânea.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "Habilite todos os recursos de marcação na dica de ferramenta instantânea, exceto aqueles que incluem os caracteres '_' e '*'.", + "c_cpp.configuration.markdownInComments.enabled.description": "Habilite todos os recursos de marcação na dica de ferramenta de foco.", + "c_cpp.configuration.markdownInComments.disabled.description": "Desabilite todos os recursos de marcação na dica de ferramenta de foco.", "c_cpp.configuration.hover.description": "Se desabilitado, os detalhes do hover não são mais fornecidos pelo servidor de idiomas.", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "Habilitar os serviços de integração para o [gerenciador de dependências vcpkg](https://aka.ms/vcpkg/).", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "Adicione caminhos de inclusão de `nan` e `node-addon-api` quando forem dependências.", @@ -416,10 +420,10 @@ "c_cpp.walkthrough.compilers.found.description": "A extensão C++ funciona com um compilador C++. Selecione um daqueles que já estão em sua máquina clicando no botão abaixo.\n[Selecione meu Compilador Padrão](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Imagem mostrando a seleção rápida de um compilador padrão e a lista de compiladores encontrados na máquina do usuário, um dos quais está selecionado.", "c_cpp.walkthrough.create.cpp.file.title": "Criar um arquivo C++", - "c_cpp.walkthrough.create.cpp.file.description": "[Abrir](command:toSide:workbench.action.files.openFile) ou [criar](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) em C++ arquivo. Certifique-se de salvá-lo com a extensão \".cpp\", como \"helloworld.cpp\".\n[Criar um arquivo C++](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", + "c_cpp.walkthrough.create.cpp.file.description": "[Abrir](command:toSide:workbench.action.files.openFile) ou [criar](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) em C++ arquivo. Certifique-se de salvá-lo com a extensão \".cpp\", como \"helloworld.cpp\".\n[Criar um arquivo C++](comando:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Abra um arquivo C++ ou uma pasta com um projeto C++.", "c_cpp.walkthrough.command.prompt.title": "Iniciar no prompt de comando do desenvolvedor", - "c_cpp.walkthrough.command.prompt.description": "Ao usar o compilador Microsoft Visual Studio C++, a extensão C++ exige que você inicie o VS Code no prompt de comando do desenvolvedor. Siga as instruções à direita para reiniciar.\n[Recarregar Janela](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.description": "Ao usar o compilador Microsoft Visual Studio C++, a extensão C++ exige que você inicie o VS Code no prompt de comando do desenvolvedor. Siga as instruções à direita para reiniciar.\n[Recarregar Janela](comando:workbench.action.reloadWindow)", "c_cpp.walkthrough.run.debug.title": "Executar e depurar o arquivo C++", "c_cpp.walkthrough.run.debug.mac.description": "Abra seu arquivo C++ e clique no botão play no canto superior direito do editor ou pressione F5 quando estiver no arquivo. Selecione \"clang++ - Construir e depurar arquivo ativo\" para executar com o depurador.", "c_cpp.walkthrough.run.debug.linux.description": "Abra seu arquivo C++ e clique no botão play no canto superior direito do editor ou pressione F5 quando estiver no arquivo. Selecione \"g++ - Construir e depurar arquivo ativo\" para executar com o depurador.", diff --git a/Extension/i18n/ptb/src/LanguageServer/client.i18n.json b/Extension/i18n/ptb/src/LanguageServer/client.i18n.json index e11c4bbb0a..e5187640b7 100644 --- a/Extension/i18n/ptb/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/ptb/src/LanguageServer/client.i18n.json @@ -4,11 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "Não é possível iniciar o servidor de linguagem C/C++. Os recursos do IntelliSense serão desabilitados. Erro: {0}", - "check.permissions": "EPERM: verifique as permissões para '{0}'", "select.compiler": "Selecionar um compilador a ser configurado para o IntelliSense", "configure.intelliSense.forFolder": "Como você deseja configurar o IntelliSense para a pasta \"{0}\"?", - "configure.intelliSense.thisFolder": "Como você deseja configurar o IntelliSense para esta pasta?", + "configure.intelliSense.thisFolder": "Como você gostaria de configurar o IntelliSense para esta pasta?", "found.string": "Encontrado em {0}", "use.compiler": "Usar {0}", "configuration.providers": "provedores de configuração", @@ -23,6 +21,8 @@ "selectCompiler.string": "Selecionar Compilador", "confirmCompiler.string": "Sim", "selectCompiler.message": "O compilador {0} foi encontrado. Deseja configurar o IntelliSense com este compilador?", + "unable.to.start": "Não é possível iniciar o servidor de linguagem C/C++. Os recursos do IntelliSense serão desabilitados. Erro: {0}", + "check.permissions": "EPERM: verifique as permissões para '{0}'", "server.crashed.restart": "O servidor de idiomas travou. Reiniciando...", "server.crashed2": "O servidor de idioma falhou cinco vezes nos últimos três minutos. Ele não será reiniciado.", "loggingLevel.changed": "{0} foi alterado para: {1}", diff --git a/Extension/i18n/ptb/src/LanguageServer/extension.i18n.json b/Extension/i18n/ptb/src/LanguageServer/extension.i18n.json index 3c1e75f49c..81472724d5 100644 --- a/Extension/i18n/ptb/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/ptb/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "Primeiro, abra uma pasta para selecionar uma configuração.", "configuration.provider.select.first": "Primeiro, abra uma pasta para selecionar um provedor de configuração.", "edit.configurations.open.first": "Abrir uma pasta primeiro para editar as configurações", - "code.action.aborted": "Não foi possível aplicar a correção de análise de código porque o documento foi alterado.", - "add.includepath.open.first": "Abrir uma pasta primeiro para adicionar a {0}" + "code.action.aborted": "Não foi possível aplicar a correção de análise de código porque o documento foi alterado." } \ No newline at end of file diff --git a/Extension/i18n/ptb/src/LanguageServer/ui.i18n.json b/Extension/i18n/ptb/src/LanguageServer/ui.i18n.json index 1aa8ec4659..976c64d232 100644 --- a/Extension/i18n/ptb/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/ptb/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Modo do Code Analysis: ", "c.cpp.configureIntelliSenseStatus.text": "Configurar o IntelliSense", "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ Configurar IntelliSense", - "select.command": "Selecionar um comando...", - "select.code.analysis.command": "Selecione um comando de análise de código...", "c.cpp.configuration.tooltip": "Configuração de C/C++", "c.cpp.references.statusbar": "Status de Referências do C/C++", "cpptools.status.intellisense": "Status do IntelliSense do C/C++", @@ -49,6 +47,8 @@ "disable.configuration.provider": "Desabilite o provedor de configuração ativo, se aplicável.", "select.compile.commands": "Selecione um compile_commands.json...", "select.workspace": "Selecionar uma pasta de workspace...", + "select.command": "Selecionar um comando...", + "select.code.analysis.command": "Selecione um comando de análise de código...", "resume.parsing": "Retomar a Análise do Espaço de trabalho", "pause.parsing": "Pausar a Análise do Espaço de trabalho", "cancel.analysis": "Cancelar", diff --git a/Extension/i18n/rus/package.i18n.json b/Extension/i18n/rus/package.i18n.json index ee3d5da9ae..3213768c19 100644 --- a/Extension/i18n/rus/package.i18n.json +++ b/Extension/i18n/rus/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "Если задано значение `default`, файловая система рабочей области считается нечувствительной к регистру в Windows и чувствительной к регистру в macOS или Linux. Если задано значение `enabled`, предполагается, что файловая система рабочей области чувствительна к регистру в Windows.", "c_cpp.configuration.enhancedColorization.markdownDescription": "Если этот параметр включен, код раскрашивается в соответствии с IntelliSense. Этот параметр применяется, только если для `#C_Cpp.intelliSenseEngine#` установлено значение `default`.", "c_cpp.configuration.codeFolding.description": "Если этот параметр включен, то диапазоны свертывания кода предоставляются языковым сервером.", + "c_cpp.configuration.markdownInComments.description": "Укажите, будет ли Markdown доступен в подсказке, появляющейся при наведении указателя мыши. По умолчанию к комментариям, подсказке, появляющейся при наведении указателя мыши, будет применено только подмножество Markdown.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "Включить все функции Markdown в подсказке, появляющейся при наведении указателя мыши, кроме тех, которые содержат символы \"_\" и \"*\".", + "c_cpp.configuration.markdownInComments.enabled.description": "Включить все функции Markdown в подсказке, появляющейся при наведении указателя мыши.", + "c_cpp.configuration.markdownInComments.disabled.description": "Отключить все функции Markdown в подсказке, появляющейся при наведении указателя мыши.", "c_cpp.configuration.hover.description": "Если этот параметр отключен, сведения при наведении курсора больше не предоставляются языковым сервером.", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "Включите службы интеграции для [диспетчера зависимостей vcpkg](https://aka.ms/vcpkg/).", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "Добавьте пути включения из `nan` и `node-addon-api`, если они являются зависимостями.", diff --git a/Extension/i18n/rus/src/LanguageServer/client.i18n.json b/Extension/i18n/rus/src/LanguageServer/client.i18n.json index 4e934312d5..0b8ad09df6 100644 --- a/Extension/i18n/rus/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/rus/src/LanguageServer/client.i18n.json @@ -4,8 +4,6 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "Не удалось запустить языковой сервер C/C++. Функции IntelliSense будут отключены. Ошибка: {0}", - "check.permissions": "EPERM: проверьте разрешения для \"{0}\"", "select.compiler": "Выберите компилятор для настройки IntelliSense", "configure.intelliSense.forFolder": "Как вы хотите настроить IntelliSense для папки \"{0}\"?", "configure.intelliSense.thisFolder": "Как вы хотите настроить IntelliSense для этой папки?", @@ -23,6 +21,8 @@ "selectCompiler.string": "Выбор компилятора", "confirmCompiler.string": "Да", "selectCompiler.message": "Обнаружен компилятор {0}. Настроить IntelliSense с этим компилятором?", + "unable.to.start": "Не удалось запустить языковой сервер C/C++. Функции IntelliSense будут отключены. Ошибка: {0}", + "check.permissions": "EPERM: проверьте разрешения для \"{0}\"", "server.crashed.restart": "Сбой языкового сервера. Перезапуск…", "server.crashed2": "Языковой сервер аварийно завершил работу 5 раз за последние 3 минуты. Он не будет перезапущен.", "loggingLevel.changed": "{0} был изменен на: {1}", diff --git a/Extension/i18n/rus/src/LanguageServer/extension.i18n.json b/Extension/i18n/rus/src/LanguageServer/extension.i18n.json index 7d723ce6a5..f6b50496da 100644 --- a/Extension/i18n/rus/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/rus/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "Сначала откройте папку, чтобы выбрать конфигурацию.", "configuration.provider.select.first": "Сначала откройте папку, чтобы выбрать поставщика конфигурации.", "edit.configurations.open.first": "Сначала откройте папку для изменения конфигураций", - "code.action.aborted": "Не удалось применить исправление анализа кода, так как документ был изменен.", - "add.includepath.open.first": "Сначала откройте папку для добавления в {0}" + "code.action.aborted": "Не удалось применить исправление анализа кода, так как документ был изменен." } \ No newline at end of file diff --git a/Extension/i18n/rus/src/LanguageServer/ui.i18n.json b/Extension/i18n/rus/src/LanguageServer/ui.i18n.json index acf76c7c7d..cf632ff63f 100644 --- a/Extension/i18n/rus/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/rus/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Режим Code Analysis: ", "c.cpp.configureIntelliSenseStatus.text": "Настройка IntelliSense", "c.cpp.configureIntelliSenseStatus.cppText": "Настройка IntelliSense C/C++", - "select.command": "Выберите команду...", - "select.code.analysis.command": "Выберите команду анализа кода...", "c.cpp.configuration.tooltip": "Конфигурация C/C++", "c.cpp.references.statusbar": "Состояние ссылок C/C++", "cpptools.status.intellisense": "Состояние IntelliSense C/C++", @@ -49,6 +47,8 @@ "disable.configuration.provider": "Отключите активный поставщик конфигурации (если применимо).", "select.compile.commands": "Выберите compile_commands.json...", "select.workspace": "Выберите папку рабочей области…", + "select.command": "Выберите команду...", + "select.code.analysis.command": "Выберите команду анализа кода...", "resume.parsing": "Возобновить анализ рабочей области", "pause.parsing": "Приостановить анализ рабочей области", "cancel.analysis": "Отмена", diff --git a/Extension/i18n/trk/package.i18n.json b/Extension/i18n/trk/package.i18n.json index ff2240526a..4bada83512 100644 --- a/Extension/i18n/trk/package.i18n.json +++ b/Extension/i18n/trk/package.i18n.json @@ -247,6 +247,10 @@ "c_cpp.configuration.caseSensitiveFileSupport.markdownDescription": "`default` olarak ayarlanırsa, çalışma alanının dosya sisteminin Windows'da büyük/küçük harfe duyarlı olmadığı ve macOS ya da Linux'ta büyük/küçük harfe duyarlı olduğu varsayılır. `enabled` olarak ayarlanırsa, çalışma alanının dosya sisteminin Windows'da büyük/küçük harfe duyarlı olduğu varsayılır.", "c_cpp.configuration.enhancedColorization.markdownDescription": "Etkinleştirilirse, kod IntelliSense'e göre renklendirilir. Bu ayar yalnızca `#C_Cpp.intelliSenseEngine#` `default` olarak ayarlandıysa geçerlidir.", "c_cpp.configuration.codeFolding.description": "Etkinleştirilirse, kod katlama aralıkları dil sunucusu tarafından sağlanır.", + "c_cpp.configuration.markdownInComments.description": "Select whether markdown will be available in the hover tooltip. By default, only a subset of markdown will be applied to comments in the hover tooltip.", + "c_cpp.configuration.markdownInComments.subsetEnabled.description": "Enable all markdown features in the hover tooltip except those that include the '_' and '*' characters.", + "c_cpp.configuration.markdownInComments.enabled.description": "Enable all markdown features in the hover tooltip.", + "c_cpp.configuration.markdownInComments.disabled.description": "Disable all markdown features in the hover tooltip.", "c_cpp.configuration.hover.description": "Devre dışı bırakılırsa üzerine gelme ayrıntıları artık dil sunucusu tarafından sağlanmaz.", "c_cpp.configuration.vcpkg.enabled.markdownDescription": "[vcpkg bağımlılık yöneticisi](https://aka.ms/vcpkg/) için tümleştirme hizmetlerini etkinleştirin.", "c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription": "`nan` ve `node-addon-api` bağımlılık olduğunda bunlardan ekleme yolları ekleyin.", @@ -412,14 +416,14 @@ "c_cpp.walkthrough.description": "VS Code'un zengin C++ geliştirme deneyimine dalın.", "c_cpp.walkthrough.set.up.title": "C++ Ortamınızı kurun", "c_cpp.walkthrough.activating.description": "C++ Ortamınızın kurulup kurulmadığını belirlemek için C++ uzantısını etkinleştirme.\nUzantı Etkinleştiriliyor...", - "c_cpp.walkthrough.no.compilers.description": "Makinenizde C++ uzantısını kullanmak için gerekli olan bir C++ derleyicisi bulamadık. Bir tane yüklemek için sağdaki talimatları izleyin, ardından aşağıdaki “Yeni Derleyicimi bul” seçeneğine tıklayın.\n[Yeni Derleyicimi bul](command:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", + "c_cpp.walkthrough.no.compilers.description": "Makinenizde C++ uzantısını kullanmak için gerekli olan bir C++ derleyicisi bulamadık. Bir tane yüklemek için sağdaki talimatları izleyin, ardından aşağıdaki “Yeni Derleyicimi bul” seçeneğine tıklayın.\n[Yeni Derleyicimi bul](komut:C_Cpp.RescanCompilers?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.description": "C++ uzantısı, bir C++ derleyicisiyle çalışır. Aşağıdaki düğmeyi tıklayarak makinenizde zaten bulunanlardan birini seçin.\n[Varsayılan Derleyicimi Seç](command:C_Cpp.SelectDefaultCompiler?%7B%22sender%22%3A%22walkthrough%22%7D)", "c_cpp.walkthrough.compilers.found.altText": "Varsayılan bir derleyici seçme hızlı seçimini ve kullanıcının makinesinde bulunan ve biri seçili olan derleyicilerin listesini gösteren resim.", "c_cpp.walkthrough.create.cpp.file.title": "C++ dosyası oluşturun", "c_cpp.walkthrough.create.cpp.file.description": "[Aç](command:toSide:workbench.action.files.openFile) veya [create](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D) bir C++ dosya. \"helloworld.cpp\" gibi \".cpp\" uzantısıyla kaydettiğinizden emin olun.\n[Bir C++ Dosyası Oluşturun](command:toSide:workbench.action.files.newUntitledFile?%7B%22languageId%22%3A%22cpp%22%7D)", "c_cpp.walkthrough.create.cpp.file.altText": "Bir C++ dosyası veya bir klasörü C++ projesiyle açın.", "c_cpp.walkthrough.command.prompt.title": "Geliştirici komut istemini kullanarak yeniden başlat", - "c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ derleyicisini kullanırken, C++ uzantısı, geliştirici komut isteminden VS Code'u başlatmanızı gerektirir. Yeniden başlatmak için sağdaki talimatları izleyin.\n[Yeniden Yükleme Penceresi](command:workbench.action.reloadWindow)", + "c_cpp.walkthrough.command.prompt.description": "Microsoft Visual Studio C++ derleyicisini kullanırken, C++ uzantısı, geliştirici komut isteminden VS Code'u başlatmanızı gerektirir. Yeniden başlatmak için sağdaki talimatları izleyin.\n[Yeniden Yükleme Penceresi](komut:workbench.action.reloadWindow)", "c_cpp.walkthrough.run.debug.title": "C++ dosyanızı çalıştırın ve hata ayıklayın", "c_cpp.walkthrough.run.debug.mac.description": "C++ dosyanızı açın ve düzenleyicinin sağ üst köşesindeki oynat düğmesine tıklayın veya dosyadayken F5'e basın. Hata ayıklayıcı ile çalıştırmak için \"clang++ - Etkin dosya oluştur ve hata ayıkla\" seçeneğini seçin.", "c_cpp.walkthrough.run.debug.linux.description": "C++ dosyanızı açın ve düzenleyicinin sağ üst köşesindeki oynat düğmesine tıklayın veya dosyadayken F5'e basın. Hata ayıklayıcı ile çalıştırmak için \"g++ - Aktif dosya oluştur ve hata ayıkla\"yı seçin.", diff --git a/Extension/i18n/trk/src/LanguageServer/client.i18n.json b/Extension/i18n/trk/src/LanguageServer/client.i18n.json index 59093ae781..3335fd8da3 100644 --- a/Extension/i18n/trk/src/LanguageServer/client.i18n.json +++ b/Extension/i18n/trk/src/LanguageServer/client.i18n.json @@ -4,11 +4,9 @@ *--------------------------------------------------------------------------------------------*/ // Do not edit this file. It is machine generated. { - "unable.to.start": "C/C++ dil sunucusu başlatılamıyor. IntelliSense özellikleri devre dışı bırakılacak. Hata: {0}", - "check.permissions": "EPERM: '{0}' için izinleri denetle", "select.compiler": "IntelliSense için yapılandırmak istediğiniz derleyiciyi seçin", "configure.intelliSense.forFolder": "'{0}' klasörü için IntelliSense'i nasıl yapılandırmak istiyorsunuz?", - "configure.intelliSense.thisFolder": "Bu klasör için IntelliSense'i nasıl yapılandırmak istiyorsunuz?", + "configure.intelliSense.thisFolder": "How would you like to configure IntelliSense for this folder?", "found.string": "{0} konumunda bulundu", "use.compiler": "{0} kullan", "configuration.providers": "yapılandırma sağlayıcıları", @@ -23,6 +21,8 @@ "selectCompiler.string": "Derleyici Seç", "confirmCompiler.string": "Evet", "selectCompiler.message": "{0} derleyicisi bulundu. IntelliSense'i bu derleyiciyle yapılandırmak istiyor musunuz?", + "unable.to.start": "C/C++ dil sunucusu başlatılamıyor. IntelliSense özellikleri devre dışı bırakılacak. Hata: {0}", + "check.permissions": "EPERM: '{0}' için izinleri denetle", "server.crashed.restart": "Dil sunucusu kilitlendi. Yeniden başlatılıyor...", "server.crashed2": "Dil sunucusu son 3 dakikada 5 kez kilitlendi. Sunucu yeniden başlatılmayacak.", "loggingLevel.changed": "{0} {1} olarak değiştirildi", diff --git a/Extension/i18n/trk/src/LanguageServer/extension.i18n.json b/Extension/i18n/trk/src/LanguageServer/extension.i18n.json index 21802306f9..b13c8f7dcf 100644 --- a/Extension/i18n/trk/src/LanguageServer/extension.i18n.json +++ b/Extension/i18n/trk/src/LanguageServer/extension.i18n.json @@ -11,6 +11,5 @@ "configuration.select.first": "Yapılandırma seçmek için önce bir klasör açın.", "configuration.provider.select.first": "Yapılandırma sağlayıcısı seçmek için önce bir klasör açın.", "edit.configurations.open.first": "Yapılandırmaları düzenlemek için önce bir klasör açın", - "code.action.aborted": "Belge değiştiğinden kod analizi düzeltmesi uygulanamadı.", - "add.includepath.open.first": "{0} öğesine eklemek için önce bir klasör açın" + "code.action.aborted": "Belge değiştiğinden kod analizi düzeltmesi uygulanamadı." } \ No newline at end of file diff --git a/Extension/i18n/trk/src/LanguageServer/ui.i18n.json b/Extension/i18n/trk/src/LanguageServer/ui.i18n.json index 2acf1736c3..01d6b3bbb2 100644 --- a/Extension/i18n/trk/src/LanguageServer/ui.i18n.json +++ b/Extension/i18n/trk/src/LanguageServer/ui.i18n.json @@ -20,8 +20,6 @@ "mode.analysis.prefix": "Code Analysis Modu: ", "c.cpp.configureIntelliSenseStatus.text": "IntelliSense'i Yapılandır", "c.cpp.configureIntelliSenseStatus.cppText": "C/C++ IntelliSense'i Yapılandır", - "select.command": "Komut seç...", - "select.code.analysis.command": "Kod analizi komutu seçin...", "c.cpp.configuration.tooltip": "C/C++ Yapılandırması", "c.cpp.references.statusbar": "C/C++ Başvuruları Durumu", "cpptools.status.intellisense": "C/C++ IntelliSense Durumu", @@ -49,6 +47,8 @@ "disable.configuration.provider": "Varsa etkin yapılandırma sağlayıcısını devre dışı bırakın.", "select.compile.commands": "compile_commands.json dosyası seçin...", "select.workspace": "Çalışma alanı klasörü seçin...", + "select.command": "Komut seç...", + "select.code.analysis.command": "Kod analizi komutu seçin...", "resume.parsing": "Çalışma Alanı Ayrıştırmasını Sürdür", "pause.parsing": "Çalışma Alanı Ayrıştırmasını Duraklat", "cancel.analysis": "İptal",