Compare commits

..
10 Commits
Author SHA1 Message Date
Sean McManus d1c9d4d298 Merge pull request #4500 from microsoft/seanmcm/0_26_1_release2
Fix a missed https-proxy-agent case. (#4497)
2019-10-25 19:01:24 -07:00
Sean McManus 69fcb1b1b4 Fix a missed https-proxy-agent case. (#4497)
* Fix a missed https-proxy-agent case.
2019-10-25 17:52:38 -07:00
Sean McManus 09ccd3af42 Merge pull request #4495 from microsoft/seanmcm/0_26_1_release
0.26.1 release
2019-10-25 16:18:54 -07:00
Sean McManus 375b64b4f8 Merge branch 'release' into seanmcm/0_26_1_release 2019-10-25 15:55:21 -07:00
Sean McManus 3d3763fbc6 Fix launch.json creation when using non-English display languages. (#4480)
* Fix `launch.json` creation when using non-English display languages.
* Update changelog.
2019-10-25 15:49:32 -07:00
Sean McManus febccce8e3 Update https-proxy-agent. (#4492)
* Update https-proxy-agent.
2019-10-25 15:39:51 -07:00
Sean McManus 1443b4f3fc Update package.json 2019-10-25 15:00:25 -07:00
Colen Garoutte-Carson 5c1f592c17 Update locale id lookup to match approach used by vscode-nls (#4474) 2019-10-21 14:59:48 -07:00
csigs d91a217559 Localization - Translated Strings (#4457) 2019-10-18 12:45:23 -04:00
csigs 565dc06c56 Localization - Translated Strings (#4448) 2019-10-16 14:21:53 -04:00
44 changed files with 108 additions and 83 deletions
+1
View File
@@ -10,6 +10,7 @@ server
debugAdapters
LLVM
bin/Microsoft.VSCode.CPP.*
bin/vcmeta.dll
# ignore lock files
install.lock
+8
View File
@@ -1,5 +1,11 @@
# C/C++ for Visual Studio Code Change Log
## Version 0.26.1: October 28, 2019
### Bug Fixes
* Fix `launch.json` creation when using non-English display languages. [#4464](https://github.com/microsoft/vscode-cpptools/issues/4464)
* Fix CHS translation. [#4422](https://github.com/microsoft/vscode-cpptools/issues/4422)
* Fix debugging hang when Windows 10 Beta Unicode (UTF-8) support is enabled. [#1527](https://github.com/microsoft/vscode-cpptools/issues/1527)
## Version 0.26.0: October 15, 2019
### New Features
* Add localization support (translated text) via `Configure Display Language`. [#7](https://github.com/microsoft/vscode-cpptools/issues/7)
@@ -17,6 +23,8 @@
### Bug Fixes
* Fix querying of non-ENU compilers. [#2874](https://github.com/microsoft/vscode-cpptools/issues/2874)
* Fix IntelliSense error with `constexpr const char* s[] = { "" }`. [#2939](https://github.com/microsoft/vscode-cpptools/issues/2939)
* Add support for C++20 designated initializers for cl and gcc. [#3491](https://github.com/Microsoft/vscode-cpptools/issues/3491)
* Fix `Find All References` not confirming references of method overrides in an inheritance hierarchy. [#4078](https://github.com/microsoft/vscode-cpptools/issues/4078)
* Fix missing references on the last line. [#4150](https://github.com/microsoft/vscode-cpptools/issues/4150)
* Fix `Go to Definition` on implicit default constructors. [#4162](https://github.com/microsoft/vscode-cpptools/issues/4162)
+3 -3
View File
@@ -22,9 +22,9 @@
"c_cpp.command.rescanWorkspace.title": "重新扫描工作区",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "将 vcpkg 安装命令复制到剪贴板",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "访问 vcpkg 帮助页",
"c_cpp.configuration.clang_format_path.description": "clang 格式的可执行文件的完整路径。",
"c_cpp.configuration.clang_format_style.description": "编码样式,当前支持: Visual Studio、LLVM、Google、Chromium、Mozilla、WebKit。使用 \"file\" 从当前目录或父目录中的 .clang 格式文件中加载样式。使用 {key: value, ...} 设置特定参数。例如,\"Visual Studio\" 样式类似于: { BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4 }",
"c_cpp.configuration.clang_format_fallbackStyle.description": "如果使用样式 \"file\" 调用 clang 格式但是找不到 .clang 格式文件,则使用预定义的样式的名称作为回退。可能的值为 Visual Studio、LLVM、Google、Chromium、Mozilla、WebKit、none,或使用 {key: value, ...} 设置特定参数。例如,\"Visual Studio\" 样式类似于: { BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4 }",
"c_cpp.configuration.clang_format_path.description": ".clang-format 可执行文件的完整路径。",
"c_cpp.configuration.clang_format_style.description": "编码样式,当前支持: Visual Studio、LLVM、Google、Chromium、Mozilla、WebKit。使用 \"file\" 从当前目录或父目录中的 .clang-format 文件中加载样式。使用 {key: value, ...} 设置特定参数。例如,\"Visual Studio\" 样式类似于: { BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4 }",
"c_cpp.configuration.clang_format_fallbackStyle.description": "如果使用样式 \"file\" 调用 clang 格式但是找不到 .clang-format 文件,则使用预定义的样式的名称作为回退。可能的值为 Visual Studio、LLVM、Google、Chromium、Mozilla、WebKit、none,或使用 {key: value, ...} 设置特定参数。例如,\"Visual Studio\" 样式类似于: { BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4 }",
"c_cpp.configuration.clang_format_sortIncludes.description": "如果已设置,则重写由 SortIncludes 参数确定的包含排序行为。",
"c_cpp.configuration.intelliSenseEngine.description": "控制 IntelliSense 提供程序。“标记分析器”提供非上下文感知的“模糊”结果。“默认”提供上下文感知结果。“已禁用”将关闭 C/C++ 语言服务功能。",
"c_cpp.configuration.intelliSenseEngineFallback.description": "控制 IntelliSense 引擎是否自动切换到包含 #include 错误的翻译单元的标记分析器。",
+2 -2
View File
@@ -17,8 +17,8 @@
"c_cpp.command.takeSurvey.title": "填寫問卷",
"c_cpp.command.buildAndDebugActiveFile.title": "組建及偵錯使用中的檔案",
"c_cpp.command.logDiagnostics.title": "記錄診斷",
"c_cpp.command.referencesViewGroupByType.title": "Group by Reference Type",
"c_cpp.command.referencesViewUngroupByType.title": "Ungroup by Reference Type",
"c_cpp.command.referencesViewGroupByType.title": "依參考型別分組",
"c_cpp.command.referencesViewUngroupByType.title": "依參考型別取消分組",
"c_cpp.command.rescanWorkspace.title": "重新掃描工作區",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "將 vcpkg 安裝命令複製到剪貼簿",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "瀏覽 vcpkg 說明頁面",
@@ -29,6 +29,6 @@
"searching.files": "正在搜尋檔案。",
"files.searched": "已搜尋 {0}/{1} 個檔案。{2}",
"files.confirmed": "已確認 {0}/{1} 個檔案。{2}",
"c.cpp.peek.references": "C/C++ Peek References",
"c.cpp.peek.references": "C/C++ 查看參考",
"some.references.may.be.missing": "[警告] 因為啟動 {0} 時工作區處於未完成狀態,所以可能缺少部分參考。"
}
+2 -2
View File
@@ -17,8 +17,8 @@
"c_cpp.command.takeSurvey.title": "Vyplnit průzkum",
"c_cpp.command.buildAndDebugActiveFile.title": "Sestavit a ladit aktivní soubor",
"c_cpp.command.logDiagnostics.title": "Protokolovat diagnostiku",
"c_cpp.command.referencesViewGroupByType.title": "Group by Reference Type",
"c_cpp.command.referencesViewUngroupByType.title": "Ungroup by Reference Type",
"c_cpp.command.referencesViewGroupByType.title": "Seskupit podle typu odkazu",
"c_cpp.command.referencesViewUngroupByType.title": "Oddělit podle typu odkazu",
"c_cpp.command.rescanWorkspace.title": "Znovu prohledat pracovní prostor",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "Zkopírovat příkaz pro instalaci vcpkg do schránky",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "Navštívit stránku nápovědy k vcpkg",
@@ -29,6 +29,6 @@
"searching.files": "Hledají se soubory.",
"files.searched": "Počet prohledaných souborů: {0}/{1}.{2}",
"files.confirmed": "Počet potvrzených souborů: {0}/{1}.{2}",
"c.cpp.peek.references": "C/C++ Peek References",
"c.cpp.peek.references": "Odkazy na náhledy C/C++",
"some.references.may.be.missing": "[Upozornění] Některé odkazy můžou chybět, protože když se spustilo {0}, nebylo ještě hotové parsování pracovního prostoru."
}
@@ -103,7 +103,7 @@
"sending_compilation_args": "posílají se argumenty kompilace pro {0}",
"include_label": "zahrnout: {0}",
"framework_label": "architektura: {0}",
"define_label": "define: {0}",
"define_label": "definovat: {0}",
"preinclude_label": "zahrnout předem: {0}",
"other_label": "jiné: {0}",
"sending_count_changes_to_server": "následující počet změn se posílá na server: {0}",
@@ -6,7 +6,7 @@
{
"package.manager.missing": "Manifest balíčku neexistuje.",
"downloading.package": "Stahuje se balíček {0}. ",
"downloading.progress.description": "Stahuje se {0}: {1}",
"downloading.progress.description": "Staženo {0}: {1}",
"error.from": "Chyba ze souboru {0}",
"failed.download.url": "Nepovedlo se stáhnout {0}.",
"failed.retrying": "Nepovedlo se. Pokus se opakuje...",
+2 -2
View File
@@ -17,8 +17,8 @@
"c_cpp.command.takeSurvey.title": "An Umfrage teilnehmen",
"c_cpp.command.buildAndDebugActiveFile.title": "Aktive Datei erstellen und debuggen",
"c_cpp.command.logDiagnostics.title": "Diagnose protokollieren",
"c_cpp.command.referencesViewGroupByType.title": "Group by Reference Type",
"c_cpp.command.referencesViewUngroupByType.title": "Ungroup by Reference Type",
"c_cpp.command.referencesViewGroupByType.title": "Nach Verweistyp gruppieren",
"c_cpp.command.referencesViewUngroupByType.title": "Gruppierung nach Verweistyp aufheben",
"c_cpp.command.rescanWorkspace.title": "Arbeitsbereich erneut überprüfen",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "vcpkg-Installationsbefehl in Zwischenablage kopieren",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "vcpkg-Hilfeseite aufrufen",
@@ -29,6 +29,6 @@
"searching.files": "Dateien werden gesucht.",
"files.searched": "{0}/{1} Dateien durchsucht.{2}",
"files.confirmed": "{0}/{1} Dateien bestätigt.{2}",
"c.cpp.peek.references": "C/C++ Peek References",
"c.cpp.peek.references": "C/C++-Peek-Verweise",
"some.references.may.be.missing": "[Warnung] Einige Verweise fehlen möglicherweise, da die Arbeitsbereichsanalyse beim Starten von {0} unvollständig war."
}
@@ -55,7 +55,7 @@
"processing_folder_recursive": "Ordner wird verarbeitet (rekursiv): {0}",
"file_exclude": "Dateiausschluss: {0}",
"search_exclude": "Suchausschluss: {0}",
"discovery_files_processed": "Dateien werden ermittelt: {0} Datei(en) verarbeitet",
"discovery_files_processed": "Dateiermittlung: {0} Datei(en) verarbeitet",
"files_removed_from_database": "{0} Datei(en) aus Datenbank entfernt",
"parsing_files_processed": "Analyse: {0} Datei(en) verarbeitet",
"shutting_down_intellisense": "IntelliSense-Server wird heruntergefahren: {0}",
@@ -101,7 +101,7 @@
"tag_parser_quick_info": "Tag Parser wird für QuickInfo verwendet.",
"closing_communication_channel": "Der Kommunikationskanal wird geschlossen.",
"sending_compilation_args": "Kompilierungsargumente für \"{0}\" werden gesendet.",
"include_label": "Include: {0}",
"include_label": "Includes: {0}",
"framework_label": "Framework: {0}",
"define_label": "Define-Anweisung: {0}",
"preinclude_label": "Preinclude: {0}",
@@ -6,7 +6,7 @@
{
"package.manager.missing": "Das Paketmanifest ist nicht vorhanden.",
"downloading.package": "Paket \"{0}\" wird heruntergeladen.",
"downloading.progress.description": "\"{0}\" wird heruntergeladen: {1}",
"downloading.progress.description": "{0} heruntergeladen: {1}",
"error.from": "Fehler von \"{0}\".",
"failed.download.url": "Fehler beim Herunterladen von \"{0}\".",
"failed.retrying": "Fehler. Vorgang wird wiederholt...",
+2 -2
View File
@@ -17,8 +17,8 @@
"c_cpp.command.takeSurvey.title": "Realizar encuesta",
"c_cpp.command.buildAndDebugActiveFile.title": "Compilar y depurar el archivo activo",
"c_cpp.command.logDiagnostics.title": "Registrar diagnósticos",
"c_cpp.command.referencesViewGroupByType.title": "Group by Reference Type",
"c_cpp.command.referencesViewUngroupByType.title": "Ungroup by Reference Type",
"c_cpp.command.referencesViewGroupByType.title": "Agrupar por tipo de referencia",
"c_cpp.command.referencesViewUngroupByType.title": "Desagrupar por tipo de referencia",
"c_cpp.command.rescanWorkspace.title": "Volver a examinar el área de trabajo",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "Copiar el comando vcpkg install en el Portapapeles",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "Visitar la página de ayuda de vcpkg",
@@ -29,6 +29,6 @@
"searching.files": "Buscando en los archivos.",
"files.searched": "{0}/{1} archivos buscados. {2}",
"files.confirmed": "{0}/{1} archivos confirmados. {2}",
"c.cpp.peek.references": "C/C++ Peek References",
"c.cpp.peek.references": "Referencias de inspección de C/C++",
"some.references.may.be.missing": "[Advertencia] Puede que falten algunas referencias, porque el análisis del área de trabajo estaba incompleto cuando se inició {0}."
}
@@ -55,7 +55,7 @@
"processing_folder_recursive": "Procesando la carpeta (modo recursivo): {0}",
"file_exclude": "Exclusión de archivos: {0}",
"search_exclude": "Excluir de la búsqueda: {0}",
"discovery_files_processed": "Detectando archivos: {0} archivos procesados",
"discovery_files_processed": "Detectando archivos. Archivos procesados: {0}",
"files_removed_from_database": "Se han quitado {0} archivos de la base de datos",
"parsing_files_processed": "Analizando: {0} archivos procesados",
"shutting_down_intellisense": "Apagando el servidor de IntelliSense: {0}",
@@ -101,11 +101,11 @@
"tag_parser_quick_info": "Se usará Tag Parser para obtener información rápida",
"closing_communication_channel": "Cerrando el canal de comunicación.",
"sending_compilation_args": "Enviando argumentos de compilación para {0}",
"include_label": "include: {0}",
"include_label": "elementos include: {0}",
"framework_label": "Marco: {0}",
"define_label": "define: {0}",
"define_label": "elementos define: {0}",
"preinclude_label": "preinclude: {0}",
"other_label": "Otro: {0}",
"other_label": "otros: {0}",
"sending_count_changes_to_server": "Enviando {0} cambios al servidor",
"invalid_open_file_instance": "Instancia de archivo abierta no válida. Se omitirá el mensaje de IntelliSense para el archivo {0}.",
"idle_loop_reparsing_active_document": "Bucle inactivo: reanalizando el documento activo",
@@ -6,7 +6,7 @@
{
"package.manager.missing": "El manifiesto del paquete no existe",
"downloading.package": "Descargando el paquete \"{0}\" ",
"downloading.progress.description": "Descargando {0}: {1}",
"downloading.progress.description": "Descargando el {0}: {1}",
"error.from": "Error de {0}",
"failed.download.url": "No se pudo descargar {0}",
"failed.retrying": "Error. Reintentando...",
+2 -2
View File
@@ -17,8 +17,8 @@
"c_cpp.command.takeSurvey.title": "Répondre à l'enquête",
"c_cpp.command.buildAndDebugActiveFile.title": "Générer et déboguer le fichier actif",
"c_cpp.command.logDiagnostics.title": "Journaliser les diagnostics",
"c_cpp.command.referencesViewGroupByType.title": "Group by Reference Type",
"c_cpp.command.referencesViewUngroupByType.title": "Ungroup by Reference Type",
"c_cpp.command.referencesViewGroupByType.title": "Regrouper par type référence",
"c_cpp.command.referencesViewUngroupByType.title": "Dissocier par type référence",
"c_cpp.command.rescanWorkspace.title": "Réanalyser l'espace de travail",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "Copier la commande vcpkg install dans le Presse-papiers",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "Visiter la page d'aide de vcpkg",
@@ -29,6 +29,6 @@
"searching.files": "Recherche dans les fichiers.",
"files.searched": "{0}/{1} fichiers recherchés.{2}",
"files.confirmed": "{0}/{1} fichiers confirmés.{2}",
"c.cpp.peek.references": "C/C++ Peek References",
"c.cpp.peek.references": "Références C/C++ Peek",
"some.references.may.be.missing": "[Avertissement] Des références sont peut-être manquantes, car l'analyse d'espace de travail était incomplète au démarrage de {0}."
}
@@ -55,7 +55,7 @@
"processing_folder_recursive": "Traitement du dossier (récursif) : {0}",
"file_exclude": "Exclusion de fichier : {0}",
"search_exclude": "Rechercher dans l'exclusion : {0}",
"discovery_files_processed": "Découverte de fichiers : {0} fichier(s) traité(s)",
"discovery_files_processed": "Découverte de fichiers : {0} fichier(s) traité(s)",
"files_removed_from_database": "{0} fichier(s) supprimé(s) dans la base de données",
"parsing_files_processed": "Analyse : {0} fichier(s) traité(s)",
"shutting_down_intellisense": "Arrêt du serveur IntelliSense : {0}",
+2 -2
View File
@@ -17,8 +17,8 @@
"c_cpp.command.takeSurvey.title": "Partecipa al sondaggio",
"c_cpp.command.buildAndDebugActiveFile.title": "Compila ed esegui il debug del file attivo",
"c_cpp.command.logDiagnostics.title": "Registra diagnostica",
"c_cpp.command.referencesViewGroupByType.title": "Group by Reference Type",
"c_cpp.command.referencesViewUngroupByType.title": "Ungroup by Reference Type",
"c_cpp.command.referencesViewGroupByType.title": "Raggruppa per tipo riferimento",
"c_cpp.command.referencesViewUngroupByType.title": "Separa per tipo riferimento",
"c_cpp.command.rescanWorkspace.title": "Ripeti analisi dell'area di lavoro",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "Copia il comando di installazione di vcpkg negli Appunti",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "Visitare la pagina della Guida di vcpkg",
@@ -29,6 +29,6 @@
"searching.files": "Ricerca dei file.",
"files.searched": "{0}/{1} file cercati.{2}",
"files.confirmed": "{0}/{1} file confermati.{2}",
"c.cpp.peek.references": "C/C++ Peek References",
"c.cpp.peek.references": "Visualizza riferimenti C/C++",
"some.references.may.be.missing": "[Avviso] Alcuni riferimenti potrebbero essere mancanti perché l'analisi dell'area di lavoro è stata incompleta quando è stato avviato {0}."
}
+3 -3
View File
@@ -17,8 +17,8 @@
"c_cpp.command.takeSurvey.title": "アンケートに答える",
"c_cpp.command.buildAndDebugActiveFile.title": "アクティブ ファイルのビルドとデバッグ",
"c_cpp.command.logDiagnostics.title": "診断のログ記録",
"c_cpp.command.referencesViewGroupByType.title": "Group by Reference Type",
"c_cpp.command.referencesViewUngroupByType.title": "Ungroup by Reference Type",
"c_cpp.command.referencesViewGroupByType.title": "参照渡し型でグループ化",
"c_cpp.command.referencesViewUngroupByType.title": "参照の種類によるグループ化解除",
"c_cpp.command.rescanWorkspace.title": "ワークスペースの再スキャン",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "vcpkg インストール コマンドをクリップボードにコピーする",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "vcpkg のヘルプ ページへのアクセス",
@@ -117,7 +117,7 @@
"c_cpp.debuggers.envFile.description": "環境変数の定義を含むファイルへの絶対パスです。このファイルには、行ごとに等号で区切られたキーと値のペアがあります。例: KEY=VALUE",
"c_cpp.debuggers.additionalSOLibSearchPath.description": ".so ファイルの検索に使用する、セミコロンで区切られたディレクトリの一覧です。例: \"c:\\dir1;c:\\dir2\"。",
"c_cpp.debuggers.MIMode.description": "MIDebugEngine が接続するコンソール デバッガーを示します。許可されている値は \"gdb\" \"lldb\" です。",
"c_cpp.debuggers.miDebuggerPath.description": "MI デバッガー (gdb など) へのパス。これを指定しないと、最初にパスからデバッガー検索ます。",
"c_cpp.debuggers.miDebuggerPath.description": "MI デバッガー (gdb など) へのパス。これを指定しないと、デバッガー検索はパスから開始されます。",
"c_cpp.debuggers.miDebuggerArgs.description": "MI デバッガー (gdb など) の追加の引数。",
"c_cpp.debuggers.miDebuggerServerAddress.description": "接続先の MI デバッガー サーバーのネットワークアドレスです (例: localhost: 1234)。",
"c_cpp.debuggers.stopAtEntry.description": "オプションのパラメーターです。true の場合、デバッガーはターゲットのエントリポイントで停止します。processId が渡された場合は効果はありません。",
@@ -29,6 +29,6 @@
"searching.files": "ファイルを検索しています。",
"files.searched": "{0}/{1} 個のファイルが検索されました。{2}",
"files.confirmed": "{0}/{1} 個のファイルを確認しました。{2}",
"c.cpp.peek.references": "C/C++ Peek References",
"c.cpp.peek.references": "C/C++ の参照のプレビュー",
"some.references.may.be.missing": "[警告] {0} が開始されたときにワークスペースの解析が不完全だったため、参照の一部がない可能性があります。"
}
@@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/
// Do not edit this file. It is machine generated.
{
"click.to.preview": "クリックして結果をプレビューす",
"click.to.preview": "クリックして結果をプレビューします",
"c.cpp.configuration.tooltip": "C/C++ 構成",
"updating.intellisense.tooltip": "IntelliSense を更新しています...",
"discovering.files.tooltip": "ファイルを検出しています...",
@@ -55,7 +55,7 @@
"processing_folder_recursive": "フォルダーを処理しています (再帰的): {0}",
"file_exclude": "ファイルの除外: {0}",
"search_exclude": "検索除外: {0}",
"discovery_files_processed": "ファイルを検出しています: {0} 個のファイル処理済み",
"discovery_files_processed": "ファイルを検出しています{0} 個のファイル処理されました",
"files_removed_from_database": "{0} 個のファイルがデータベースから削除されました",
"parsing_files_processed": "解析: {0} ファイルが処理されました",
"shutting_down_intellisense": "IntelliSense サーバーをシャットダウンしています: {0}",
+3 -3
View File
@@ -17,8 +17,8 @@
"c_cpp.command.takeSurvey.title": "설문 조사 참여",
"c_cpp.command.buildAndDebugActiveFile.title": "활성 파일 빌드 및 디버그",
"c_cpp.command.logDiagnostics.title": "진단 정보 로그",
"c_cpp.command.referencesViewGroupByType.title": "Group by Reference Type",
"c_cpp.command.referencesViewUngroupByType.title": "Ungroup by Reference Type",
"c_cpp.command.referencesViewGroupByType.title": "참조 형식으로 그룹화",
"c_cpp.command.referencesViewUngroupByType.title": "참조 형식으로 그룹화 해제",
"c_cpp.command.rescanWorkspace.title": "작업 영역 다시 검사",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "vcpkg install 명령을 클립보드에 복사",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "vcpkg 도움말 페이지 방문",
@@ -117,7 +117,7 @@
"c_cpp.debuggers.envFile.description": "환경 변수 정의를 포함하는 파일의 절대 경로입니다. 이 파일에는 줄마다 등호로 구분된 키 값 쌍이 있습니다(예: KEY=VALUE).",
"c_cpp.debuggers.additionalSOLibSearchPath.description": ".so 파일 검색에 사용할 디렉터리의 세미콜론으로 구분된 목록입니다(예: \"c:\\dir1;c:\\dir2\").",
"c_cpp.debuggers.MIMode.description": "MIDebugEngine이 연결할 콘솔 디버거를 나타냅니다. 허용되는 값은 \"gdb\" \"lldb\"입니다.",
"c_cpp.debuggers.miDebuggerPath.description": "MI 디버거(예: gdb)의 경로입니다. 지정되지 않은 경우 먼저 경로에서 디버거를 검색합니다.",
"c_cpp.debuggers.miDebuggerPath.description": "MI 디버거(예: gdb)의 경로입니다. 지정되지 않은 디버거 확장은 먼저 경로에서 디버거를 검색합니다.",
"c_cpp.debuggers.miDebuggerArgs.description": "MI 디버거(예: gdb)의 추가 인수입니다.",
"c_cpp.debuggers.miDebuggerServerAddress.description": "연결할 MI 디버거 서버의 네트워크 주소입니다(예: localhost:1234).",
"c_cpp.debuggers.stopAtEntry.description": "선택적 매개 변수입니다. True이면 디버거가 대상의 진입점에서 중지됩니다. processId가 전달되는 경우 영향을 주지 않습니다.",
@@ -29,6 +29,6 @@
"searching.files": "파일을 검색하고 있습니다.",
"files.searched": "{0}/{1}개 파일이 검색되었습니다.{2}",
"files.confirmed": "{0}/{1}개 파일이 확인되었습니다.{2}",
"c.cpp.peek.references": "C/C++ Peek References",
"c.cpp.peek.references": "C/C++ Peek 참조",
"some.references.may.be.missing": "[경고] {0}을(를) 시작할 때 작업 영역 구문 분석이 완료되지 않았으므로 일부 참조가 없을 수 있습니다."
}
@@ -6,7 +6,7 @@
{
"package.manager.missing": "패키지 매니페스트가 없습니다.",
"downloading.package": "'{0}' 패키지를 다운로드하는 중 ",
"downloading.progress.description": "{0}을(를) 다운로드하는 중: {1}",
"downloading.progress.description": "{0} 다운로드하는 중: {1}",
"error.from": "{0}의 오류",
"failed.download.url": "{0}을(를) 다운로드하지 못했습니다.",
"failed.retrying": "실패했습니다. 다시 시도하는 중...",
+3 -3
View File
@@ -17,8 +17,8 @@
"c_cpp.command.takeSurvey.title": "Wypełnij ankietę",
"c_cpp.command.buildAndDebugActiveFile.title": "Aktywny plik kompilacji i debugowania",
"c_cpp.command.logDiagnostics.title": "Rejestruj diagnostykę",
"c_cpp.command.referencesViewGroupByType.title": "Group by Reference Type",
"c_cpp.command.referencesViewUngroupByType.title": "Ungroup by Reference Type",
"c_cpp.command.referencesViewGroupByType.title": "Grupuj według typu referencyjnego",
"c_cpp.command.referencesViewUngroupByType.title": "Rozgrupuj według typu referencyjnego",
"c_cpp.command.rescanWorkspace.title": "Ponowne skanowanie obszaru roboczego",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "Kopiowanie polecenia instalowania menedżera vcpkg do schowka",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "Odwiedź stronę pomocy menedżera vcpkg",
@@ -117,7 +117,7 @@
"c_cpp.debuggers.envFile.description": "Ścieżka bezwzględna do pliku zawierającego definicje zmiennych środowiskowych. Ten plik w każdym wierszu zawiera parę klucz-wartość oddzieloną znakiem równości. Przykład: KLUCZ=WARTOŚĆ",
"c_cpp.debuggers.additionalSOLibSearchPath.description": "Rozdzielana średnikami lista katalogów, w których mają być wyszukiwanie pliki SO. Przykład: „c:\\dir1;c:\\dir2”.",
"c_cpp.debuggers.MIMode.description": "Wskazuje debuger konsoli, z którym połączy się aparat MIDebugEngine. Dozwolone wartości to „gdb” i „lldb”.",
"c_cpp.debuggers.miDebuggerPath.description": "Ścieżka do debugera MI (takiego jak gdb). Jeśli nie zostanie podana, najpierw zostanie wyszukana ścieżka debugera.",
"c_cpp.debuggers.miDebuggerPath.description": "Ścieżka do debugera MI (takiego jak gdb). Jeśli nie jest podana, najpierw zostanie przeszukana ścieżka debugera.",
"c_cpp.debuggers.miDebuggerArgs.description": "Dodatkowe argumenty dla debugera MI (takiego jak gdb).",
"c_cpp.debuggers.miDebuggerServerAddress.description": "Adres sieciowy serwera debugera MI, z którym ma zostać nawiązane połączenie (przykład: localhost:1234).",
"c_cpp.debuggers.stopAtEntry.description": "Parametr opcjonalny. Jeśli wartość to true, debuger powinien zostać zatrzymany w punkcie wejścia obiektu docelowego. W przypadku przekazania identyfikatora procesu parametr ten nie ma żadnego efektu.",
@@ -29,6 +29,6 @@
"searching.files": "Wyszukiwanie plików.",
"files.searched": "Wyszukano pliki: {0}/{1}.{2}",
"files.confirmed": "Potwierdzono pliki: {0}/{1}.{2}",
"c.cpp.peek.references": "C/C++ Peek References",
"c.cpp.peek.references": "Referencje podglądu języka C/C++",
"some.references.may.be.missing": "[Ostrzeżenie] Może brakować niektórych odwołań, ponieważ analizowanie obszaru roboczego było niekompletne po uruchomieniu elementu {0}."
}
@@ -55,7 +55,7 @@
"processing_folder_recursive": "Przetwarzanie folderu (cykliczne): {0}",
"file_exclude": "Wykluczanie plików: {0}",
"search_exclude": "Wyszukaj wykluczenie: {0}",
"discovery_files_processed": "Odnajdowanie plików: przetworzone pliki {0}",
"discovery_files_processed": "Odnajdywanie plików: przetworzono pliki w liczbie {0}",
"files_removed_from_database": "Pliki ({0}) usunięte z bazy danych",
"parsing_files_processed": "Analizowanie: przetworzone pliki ({0})",
"shutting_down_intellisense": "Zamykanie serwera funkcji IntelliSense: {0}",
@@ -6,7 +6,7 @@
{
"package.manager.missing": "Manifest pakietu nie istnieje",
"downloading.package": "Pobieranie pakietu „{0}” ",
"downloading.progress.description": "Pobieranie elementu {0}: {1}",
"downloading.progress.description": "Pobieranie {0}: {1}",
"error.from": "Błąd z pliku {0}",
"failed.download.url": "Nie można pobrać elementu {0}",
"failed.retrying": "Niepowodzenie. Trwa ponawianie próby...",
+2 -2
View File
@@ -17,8 +17,8 @@
"c_cpp.command.takeSurvey.title": "Responder Pesquisa",
"c_cpp.command.buildAndDebugActiveFile.title": "Criar e Depurar Arquivo Ativo",
"c_cpp.command.logDiagnostics.title": "Diagnóstico de Log",
"c_cpp.command.referencesViewGroupByType.title": "Group by Reference Type",
"c_cpp.command.referencesViewUngroupByType.title": "Ungroup by Reference Type",
"c_cpp.command.referencesViewGroupByType.title": "Agrupar por Tipo de Referência",
"c_cpp.command.referencesViewUngroupByType.title": "Desagrupar por Tipo de Referência",
"c_cpp.command.rescanWorkspace.title": "Examinar Novamente o Workspace",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "Copiar o comando de instalação vcpkg para a área de transferência",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "Visite a página de ajuda do vcpkg",
@@ -29,6 +29,6 @@
"searching.files": "Pesquisando os arquivos.",
"files.searched": "{0}/{1} arquivos pesquisados.{2}",
"files.confirmed": "{0}/{1} arquivos confirmados.{2}",
"c.cpp.peek.references": "C/C++ Peek References",
"c.cpp.peek.references": "Referências de Espiada do C/C++",
"some.references.may.be.missing": "[Aviso] Algumas referências podem estar ausentes, pois a análise do workspace estava incompleta quando {0} foi iniciada."
}
+2 -2
View File
@@ -17,8 +17,8 @@
"c_cpp.command.takeSurvey.title": "Пройти опрос",
"c_cpp.command.buildAndDebugActiveFile.title": "Сборка и отладка активного файла",
"c_cpp.command.logDiagnostics.title": "Журнал диагностики",
"c_cpp.command.referencesViewGroupByType.title": "Group by Reference Type",
"c_cpp.command.referencesViewUngroupByType.title": "Ungroup by Reference Type",
"c_cpp.command.referencesViewGroupByType.title": "Группирование по ссылке",
"c_cpp.command.referencesViewUngroupByType.title": "Отмена группирования по ссылке",
"c_cpp.command.rescanWorkspace.title": "Повторное сканирование рабочей области",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "Копировать команду vcpkg install в буфер обмена",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "Посетите страницу справки по vcpkg",
@@ -29,6 +29,6 @@
"searching.files": "Выполняется поиск файлов.",
"files.searched": "Просмотрено файлов: {0}/{1}. {2}",
"files.confirmed": "Подтверждено файлов: {0}/{1}. {2}",
"c.cpp.peek.references": "C/C++ Peek References",
"c.cpp.peek.references": "Ссылки для просмотра C/C++",
"some.references.may.be.missing": "[Предупреждение] Некоторые ссылки могут отсутствовать, так как при запуске {0} анализ рабочей области не был завершен."
}
@@ -55,7 +55,7 @@
"processing_folder_recursive": "Обработка папки (с рекурсией): {0}",
"file_exclude": "Исключение файла: {0}",
"search_exclude": "Исключение поиска: {0}",
"discovery_files_processed": "Обнаружение файлов: обработано файлов — {0}",
"discovery_files_processed": "Обнаружение файлов: обработано файлов — {0}.",
"files_removed_from_database": "Файлов, удаленных из базы данных: {0}",
"parsing_files_processed": "Анализ: обработано файлов — {0}",
"shutting_down_intellisense": "Завершение работы сервера IntelliSense: {0}",
@@ -105,7 +105,7 @@
"framework_label": "Платформа: {0}",
"define_label": "определите: {0}",
"preinclude_label": "предварительно включить: {0}",
"other_label": "Другой: {0}",
"other_label": "другой: {0}",
"sending_count_changes_to_server": "Отправка изменений ({0}) на сервер.",
"invalid_open_file_instance": "Недопустимый экземпляр открытого файла. Пропуск сообщения IntelliSense для файла {0}.",
"idle_loop_reparsing_active_document": "пустой цикл: повторный анализ активного документа",
+2 -2
View File
@@ -17,8 +17,8 @@
"c_cpp.command.takeSurvey.title": "Ankete Katılın",
"c_cpp.command.buildAndDebugActiveFile.title": "Etkin Dosyayı Derle ve Dosyada Hata Ayıkla",
"c_cpp.command.logDiagnostics.title": "Günlük Tanılama",
"c_cpp.command.referencesViewGroupByType.title": "Group by Reference Type",
"c_cpp.command.referencesViewUngroupByType.title": "Ungroup by Reference Type",
"c_cpp.command.referencesViewGroupByType.title": "Başvuru Türüne Göre Gruplandır",
"c_cpp.command.referencesViewUngroupByType.title": "Başvuru Türüne göre Grubu Çöz",
"c_cpp.command.rescanWorkspace.title": "Çalışma Alanını Yeniden Tara",
"c_cpp.command.vcpkgClipboardInstallSuggested.title": "vcpkg yükleme komutunu panoya kopyalayın",
"c_cpp.command.vcpkgOnlineHelpSuggested.title": "vcpkg yardım sayfasını ziyaret edin",
@@ -9,7 +9,7 @@
"rename": "Yeniden Adlandır",
"confirmed.reference.upper": "BAŞVURU ONAYLANDI",
"confirmation.in.progress.upper": "Onay işlemi devam ediyor",
"comment.reference.upper": "Açıklama başvurusu",
"comment.reference.upper": "AÇIKLAMA BAŞVURUSU",
"string.reference.upper": "Dize başvurusu",
"inactive.reference.upper": "Etkin olmayan başvuru",
"cannot.confirm.reference.upper": "Başvuru onaylanamıyor",
@@ -29,6 +29,6 @@
"searching.files": "Dosyalar aranıyor.",
"files.searched": "{1} dosya içinden {0} dosya arandı.{2}",
"files.confirmed": "{1} dosya içinden {0} dosya onaylandı.{2}",
"c.cpp.peek.references": "C/C++ Peek References",
"c.cpp.peek.references": "C/C++ Peek Başvuruları",
"some.references.may.be.missing": "[Uyarı] {0} başlatıldığında çalışma alanı ayrıştırma işlemi tamamlanmadığından bazı başvurular eksik olabilir."
}
+12 -10
View File
@@ -2,7 +2,7 @@
"name": "cpptools",
"displayName": "C/C++",
"description": "C/C++ IntelliSense, debugging, and code browsing.",
"version": "0.26.0",
"version": "0.26.1",
"publisher": "ms-vscode",
"preview": true,
"icon": "LanguageCCPP_color_128x.png",
@@ -1691,14 +1691,13 @@
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "yarn run precompile && yarn run translations-generate && webpack --mode production --vscode-nls",
"compile-dev": "yarn run precompile && webpack --mode development",
"compile-watch": "yarn run precompile && yarn run translations-generate && webpack --mode production --vscode-nls --watch --info-verbosity verbose",
"compile-dev-watch": "yarn run precompile && webpack --mode development --watch --info-verbosity verbose",
"precompile": "node ./tools/prepublish.js && gulp generate-native-strings",
"compile": "node ./tools/prepublish.js && gulp generate-native-strings && gulp translations-generate && webpack --mode production --vscode-nls",
"compile-dev": "node ./tools/prepublish.js && gulp generate-native-strings && webpack --mode development",
"compile-watch": "node ./tools/prepublish.js && gulp generate-native-strings && gulp translations-generate && webpack --mode production --vscode-nls --watch --info-verbosity verbose",
"compile-dev-watch": "node ./tools/prepublish.js && gulp generate-native-strings && webpack --mode development --watch --info-verbosity verbose",
"generateOptionsSchema": "node ./tools/prepublish.js && node ./out/tools/generateOptionsSchema.js",
"generate-native-strings": "yarn run precompile",
"translations-export": "yarn run precompile && gulp translations-export",
"generate-native-strings": "node ./tools/prepublish.js && gulp generate-native-strings",
"translations-export": "node ./tools/prepublish.js && gulp generate-native-strings && gulp translations-export",
"translations-generate": "node ./tools/prepublish.js && gulp translations-generate",
"translations-import": "node ./tools/prepublish.js && gulp translations-import",
"postinstall": "node ./node_modules/vscode/bin/install",
@@ -1748,7 +1747,7 @@
"dependencies": {
"escape-string-regexp": "^2.0.0",
"http-proxy-agent": "^2.1.0",
"https-proxy-agent": "^2.2.2",
"https-proxy-agent": "^2.2.4",
"jsonc-parser": "^2.1.1",
"minimatch": "^3.0.4",
"mkdirp": "^0.5.1",
@@ -1762,6 +1761,9 @@
"vscode-nls": "^4.1.1",
"yauzl": "^2.10.0"
},
"resolutions": {
"https-proxy-agent": "^2.2.4"
},
"runtimeDependencies": [
{
"description": "C/C++ language components (Linux / x86_64)",
@@ -1927,4 +1929,4 @@
"binaries": []
}
]
}
}
@@ -24,7 +24,7 @@ nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nls.BundleFo
const localize: nls.LocalizeFunc = nls.loadMessageBundle();
function isDebugLaunchStr(str: string): boolean {
return str === "(gdb) Launch" || str === "(lldb) Launch" || str === "(Windows) Launch";
return str.startsWith("(gdb) ") || str.startsWith("(lldb) ") || str.startsWith("(Windows) ");
}
/*
@@ -41,7 +41,7 @@ export class QuickPickConfigurationProvider implements vscode.DebugConfiguration
async provideDebugConfigurations(folder: vscode.WorkspaceFolder | undefined, token?: vscode.CancellationToken): Promise<vscode.DebugConfiguration[]> {
const configs: vscode.DebugConfiguration[] = await this.underlyingProvider.provideDebugConfigurations(folder, token);
const defaultConfig: vscode.DebugConfiguration = configs.find(config => isDebugLaunchStr(config.name));
const defaultConfig: vscode.DebugConfiguration = configs.find(config => isDebugLaunchStr(config.name) && config.request === "launch");
console.assert(defaultConfig);
const editor: vscode.TextEditor = vscode.window.activeTextEditor;
if (!editor || !util.fileIsCOrCppSource(editor.document.fileName) || configs.length <= 1) {
@@ -105,16 +105,16 @@ class CppConfigurationProvider implements vscode.DebugConfigurationProvider {
return Promise.resolve(this.provider.getInitialConfigurations(this.type));
}
const defaultConfig: vscode.DebugConfiguration = this.provider.getInitialConfigurations(this.type).find(config => {
return isDebugLaunchStr(config.name);
return isDebugLaunchStr(config.name) && config.request === "launch";
});
console.assert(defaultConfig, "Could not find default debug configuration.");
const platformInfo: PlatformInformation = await PlatformInformation.GetPlatformInformation();
const platform: string = platformInfo.platform;
// Filter out build tasks that don't match the currently selectede debug configuration type.
// Filter out build tasks that don't match the currently selected debug configuration type.
buildTasks = buildTasks.filter((task: vscode.Task) => {
if (defaultConfig.name === "(Windows) Launch") {
if (defaultConfig.name.startsWith("(Windows) ")) {
if (task.name.startsWith("cl.exe")) {
return true;
}
+17 -3
View File
@@ -906,11 +906,25 @@ export class BlockingTask<T> {
}
}
interface VSCodeNlsConfig {
locale: string;
availableLanguages: {
[pack: string]: string;
};
}
export function getLocaleId(): string {
// This replicates the language detection used by initializeSettings() in vscode-nls
if (isString(process.env.VSCODE_NLS_CONFIG)) {
let vscodeNlsConfigJson: any = JSON.parse(process.env.VSCODE_NLS_CONFIG);
if (isString(vscodeNlsConfigJson.locale)) {
return vscodeNlsConfigJson.locale;
let vscodeOptions: VSCodeNlsConfig = JSON.parse(process.env.VSCODE_NLS_CONFIG) as VSCodeNlsConfig;
if (vscodeOptions.availableLanguages) {
let value: any = vscodeOptions.availableLanguages['*'];
if (isString(value)) {
return value;
}
}
if (isString(vscodeOptions.locale)) {
return vscodeOptions.locale.toLowerCase();
}
}
return "en";
+4 -4
View File
@@ -2444,10 +2444,10 @@ https-browserify@^1.0.0:
resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
https-proxy-agent@^2.2.1, https-proxy-agent@^2.2.2:
version "2.2.2"
resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.2.tgz#271ea8e90f836ac9f119daccd39c19ff7dfb0793"
integrity sha512-c8Ndjc9Bkpfx/vCJueCPy0jlP4ccCCSNDp8xwCZzPjKJUm+B+u9WX2x98Qx4n1PiMNTWo3D7KK5ifNV/yJyRzg==
https-proxy-agent@^2.2.1, https-proxy-agent@^2.2.4:
version "2.2.4"
resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz#4ee7a737abd92678a293d9b34a1af4d0d08c787b"
integrity sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==
dependencies:
agent-base "^4.3.0"
debug "^3.1.0"