Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
3144d82
Call hierarchy feature (#10697)
michelleangela Apr 28, 2023
94c1281
Fix some spelling errors and formatting. (#10901)
sean-mcmanus Apr 28, 2023
33bdb7f
Fix code analysis command strings. (#10906)
sean-mcmanus May 1, 2023
bb3d290
Fix C/C++ Configurations loc. (#10908)
sean-mcmanus May 4, 2023
b2d989f
Always add `workspaceFolder` to `browse.path` if unset (#10916)
Colengms May 4, 2023
c3cfd55
Add server-originated notification to cancel reference (#10929)
Colengms May 9, 2023
478fb3c
Call Hierarchy Callers Of - add progress and cancellation (#10936)
michelleangela May 12, 2023
684404f
Add copy to clipboard support for CDD (#10835)
browntarik May 12, 2023
352e0bf
Update IntelliSense strings loc (#10950)
sean-mcmanus May 15, 2023
5ce976f
Call hierarchy incoming calls fix return (#10962)
michelleangela May 17, 2023
4b20f32
Support server-side cancellation/error in CDD (#10966)
Colengms May 18, 2023
290a53e
call hierarchy telemetry (#10971)
michelleangela May 19, 2023
c22d13a
Fix addTrustedCompiler. (#10961)
sean-mcmanus May 19, 2023
fc909f8
Fix incorrect workspace parsing status. (#10974)
sean-mcmanus May 19, 2023
65ec5ab
Changelog 1.16.0 (#10973)
michelleangela May 19, 2023
e65e602
[Auto] Localization - Translated Strings (#10889)
csigs May 22, 2023
e394edb
Fix Other References not getting cleared for Call Hierarchy. (#10989)
sean-mcmanus May 23, 2023
3ef10f2
Stop using vcFormat for non-formatting editorconfig settings. (#11015)
sean-mcmanus May 31, 2023
9621430
Make sure empty non-enum string settings are equivalent to undefined.…
sean-mcmanus Jun 1, 2023
7504532
Removed LanguageStatus experiment code and merged ui.ts and ui_new.ts…
browntarik Jun 2, 2023
478ccb6
Update vscode/dts (#11047)
sean-mcmanus Jun 5, 2023
0452f0a
Remove line preventing `Don't Show Again` (#11076)
Colengms Jun 12, 2023
71c6cb6
add file path to call hierarchy details (#11095)
michelleangela Jun 15, 2023
46eaddc
include miDebuggerArgs in attach option (#11066)
Summon528 Jun 15, 2023
5b51db1
configurationProvider.ts: default cppvsdbg integratedTerminal (#11035)
caiohamamura Jun 15, 2023
491456e
Fix references cancellation and preview (#11056)
michelleangela Jun 16, 2023
7544de0
1.16.1 changelog (#11094)
michelleangela Jun 16, 2023
79f4e8d
Update LICENSE.md (#11102)
bobbrow Jun 16, 2023
4f5ec73
Add configuration telemetry (#11093)
browntarik Jun 19, 2023
a67c661
1.16.2 changelog (#11111)
michelleangela Jun 21, 2023
67565fe
Merge branch 'main' into mimatias/1_16
michelleangela Jun 21, 2023
4037db9
remove extra adjustments to textEdit for CDD (#11110)
browntarik Jun 21, 2023
68777f9
[Auto] Localization - Translated Strings (#10992)
csigs Jun 21, 2023
e5f74bc
Merge branch 'main' into mimatias/1_16
michelleangela Jun 21, 2023
baa9353
update log (#11115)
michelleangela Jun 21, 2023
605015c
Merge branch 'main' into mimatias/1_16
michelleangela Jun 21, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Extension/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ module.exports = {
"format": ["PascalCase"]
}
],
"@typescript-eslint/indent": "error",
"@typescript-eslint/member-delimiter-style": [
"error",
{
Expand Down
40 changes: 40 additions & 0 deletions Extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,45 @@
# C/C++ for Visual Studio Code Changelog

## Version 1.16.2: June 22, 2023

### New Features
* Add Call Hierarchy. [#16](https://github.com/microsoft/vscode-cpptools/issues/16)
* Add "Copy Definition" and "Copy Declaration" code actions (for when the default Create placement isn't desired). [#10238](https://github.com/microsoft/vscode-cpptools/issues/10238), [#10942](https://github.com/microsoft/vscode-cpptools/issues/10942)

### Enhancements
* Add support for other glob pattern syntax, such as `[]` and `^`. [#8960](https://github.com/microsoft/vscode-cpptools/issues/8960)
* Add support for C++23 z/Z and zu/ZU suffixes in clang/gcc modes. [#10190](https://github.com/microsoft/vscode-cpptools/issues/10190)
* Add warning logging when the database is reset due to a version change. [#10984](https://github.com/microsoft/vscode-cpptools/issues/10984)
* Move user compilers to the beginning of the "known compilers" lists. [#10985](https://github.com/microsoft/vscode-cpptools/issues/10985)
* Add file path to the details of a call hierarchy result. [#10997](https://github.com/microsoft/vscode-cpptools/issues/10997)
* Add `miDebuggerArgs` to debugger attach option.
* Thank you for the contribution @Summon528 [PR #11066](https://github.com/microsoft/vscode-cpptools/pull/11066)

### Bug Fixes
* Fix an IntelliSense parsing bug with C++20 ranges. [#8039](https://github.com/microsoft/vscode-cpptools/issues/8039)
* Fix incorrect insertion of Create Declaration/Definition when it also adds a #include. [#10464](https://github.com/microsoft/vscode-cpptools/issues/#10464)
* Fix an IntelliSense bug with user-defined floating-point literals. [#10837](https://github.com/microsoft/vscode-cpptools/issues/10837)
* Fix deadlock with Find All References. [#10855](https://github.com/microsoft/vscode-cpptools/issues/10855)
* Fix performance issues on machines with > 32 threads. [#10874](https://github.com/microsoft/vscode-cpptools/issues/10874)
* Fix localization of "C/C++ Configurations". [#10907](https://github.com/microsoft/vscode-cpptools/issues/10907)
* Fix the workspace folder not getting added to the browse.path in some cases. [#10914](https://github.com/microsoft/vscode-cpptools/issues/10914)
* Fix incorrect Apple clang to LLVM clang version mappings. [#10920](https://github.com/microsoft/vscode-cpptools/issues/10920)
* Revert -fms-extensions being added for mingw compilers by default (due to bugs). [#10940](https://github.com/microsoft/vscode-cpptools/issues/10940)
* Fix the "known compilers" list not getting updated with "user compilers". [#10943](https://github.com/microsoft/vscode-cpptools/issues/10943)
* Fix cancelation of Find All References while confirming references. [#10947](https://github.com/microsoft/vscode-cpptools/issues/10947)
* Fix a bug with workspace parsing status. [PR #10974](https://github.com/microsoft/vscode-cpptools/pull/10974)
* Fix some bugs if settings were empty string or null. [#10994](https://github.com/microsoft/vscode-cpptools/issues/10994)
* Fix cancellation for Find All References/Rename/Call Hierarchy. [#10998](https://github.com/microsoft/vscode-cpptools/issues/10998)
* Fix two Doxygen comment generation bugs. [#10995](https://github.com/microsoft/vscode-cpptools/issues/10995), [#11016](https://github.com/microsoft/vscode-cpptools/issues/11016)
* Fix the thread pool sometimes not increasing in size, which could lead to the cpptools process incorrectly being shut down. [#11003](https://github.com/microsoft/vscode-cpptools/issues/11003)
* Stop using vcFormat if .editorconfig exists with only non-formatting cpp settings. [PR #11015](https://github.com/microsoft/vscode-cpptools/pull/11015)
* Use integratedTerminal when user is running cl.exe for debugger. [#11032](https://github.com/microsoft/vscode-cpptools/issues/11032)
* Thank you for the contribution @caiohamamura [PR #11035](https://github.com/microsoft/vscode-cpptools/pull/11035)
* Fix the configure your IntelliSense notification to not show again when the "Don't Show Again" option is selected. [#11070](https://github.com/microsoft/vscode-cpptools/issues/11070)
* Fix a bug that could cause incomplete reading of stdout/stderr of child processes on Windows.
* Fix incorrect "declaration is incompatible" IntelliSense errors.
* Fix some potential crashes.

## Version 1.15.4: May 1, 2023
### Enhancements
* Support multiple natvis files in `visualizerFile`. [#925](https://github.com/microsoft/vscode-cpptools/issues/925)
Expand Down
20 changes: 17 additions & 3 deletions Extension/bin/messages/cs/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3343,14 +3343,14 @@
"mapování souborů modulu pro %s bylo zadané více než jednou",
"mapování jednotek záhlaví pro %s bylo zadané více než jednou",
"není zadané žádné mapování pro %s",
"mapování souborů modulu pro %s je neplatné",
null,
"nejde najít záhlaví %s, které se má importovat",
"více než jeden soubor v seznamu souborů modulu odpovídá %s",
"soubor modulu, který se našel pro %s, je pro jiný modul",
"libovolný druh souboru modulu",
"nejde přečíst soubor modulu",
"předdefinovaná funkce není k dispozici, protože typ char8_t se nepodporuje s aktuálními možnostmi",
"možnost příkazového řádku --ms_await nejde zadat, pokud jsou povolené korutiny C++20",
null,
"nestandardní použití explicitního konstruktoru %nod pro inicializaci výchozího agregačního elementu",
"zdroj nebo cíl vnitřní funkce memcpy-like neukazuje na objekt",
"vnitřní funkce memcpy-like se pokouší o kopírování reprezentačně odlišných typů %t1 a %t2",
Expand Down Expand Up @@ -3483,5 +3483,19 @@
"Explicitní deklarace specializace nemůže být deklarací typu friend.",
"typ std::float128_t se nepodporuje. místo toho se použije std::float64_t",
"typ std::bfloat16_t se nepodporuje. místo toho se použije std::float32_t",
"vodítko pro dedukce se nedá deklarovat pro šablonu aliasu %no"
"vodítko pro dedukce se nedá deklarovat pro šablonu aliasu %no",
"%n bylo deklarováno jako nedostupné.",
"%n bylo deklarováno jako nedostupné (%sq).",
"kvůli atributu deprecated",
"explicitní parametry šablony lambda jsou funkcí C++20",
"použití _Noreturn je od C23 zastaralé. Místo toho použijte [[noreturn]].",
"použití _Alignof je od C23 zastaralé. Místo toho použijte alignof.",
"použití _Alignas je od C23 zastaralé. Místo toho použijte alignas.",
"použití _Bool je od C23 zastaralé. Místo toho použijte bool.",
"použití _Static_assert je od C23 zastaralé. Místo toho použijte static_assert.",
"použití _Thread_local je od C23 zastaralé. Místo toho použijte thread_local.",
"Aby bylo možné používat soubor modulu %sq (modul Microsoft Visual Studio IFC), musí být povolený režim Microsoftu.",
"soubor modulu %sq se nepovedlo otevřít",
"nalezeno v mapě modulu %sq.",
"nalezeno v mapě jednotek hlaviček pro %sq"
]
20 changes: 17 additions & 3 deletions Extension/bin/messages/de/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3343,14 +3343,14 @@
"Die Moduldateizuordnung für \"%s\" wurde mehrmals angegeben.",
"Die Zuordnung der Headereinheit für \"%s\" wurde mehrmals angegeben.",
"Für \"%s\" wurde keine Zuordnung angegeben.",
"Die Moduldateizuordnung für \"%s\" ist ungültig.",
null,
"Der zu importierende Header \"%s\" wurde nicht gefunden.",
"Mehrere Dateien in der Moduldateiliste stimmen mit \"%s\" überein.",
"Die für \"%s\" gefundene Moduldatei ist für ein anderes Modul bestimmt.",
"Beliebige Art von Moduldatei",
"Die Moduldatei kann nicht gelesen werden.",
"Die integrierte Funktion ist nicht verfügbar, weil der char8_t-Typ mit den aktuellen Optionen nicht unterstützt wird.",
"Die Befehlszeilenoption \"--ms_await\" kann nicht angegeben werden, wenn C++20-Coroutinen aktiviert sind.",
null,
"Nicht standardmäßige Verwendung des expliziten Konstruktors \"%nod\" für die standardmäßige Aggregatelementinitialisierung",
"Die Quelle oder das Ziel des memcpy-ähnlichen systeminternen Objekts verweist nicht auf ein Objekt.",
"Ein memcpy-ähnliches systeminternes Objekt versucht, die darstellerisch unterschiedlichen Typen %t1 und %t2 zu kopieren.",
Expand Down Expand Up @@ -3483,5 +3483,19 @@
"Eine explizite Spezialisierungsdeklaration darf keine Frienddeklaration sein",
"der Typ „std::float128_t“ wird nicht unterstützt. Stattdessen wird „std::float64_t“ verwendet",
"der Typ „std::bfloat16_t“ wird nicht unterstützt. Stattdessen wird „std::float32_t“ verwendet",
"Für die Aliasvorlage %no darf keine Deduktionsanleitung deklariert werden."
"Für die Aliasvorlage %no darf keine Deduktionsanleitung deklariert werden.",
"%n wurde als nicht verfügbar deklariert.",
"%n wurde als nicht verfügbar deklariert (%sq).",
"aufgrund eines „veralteten“ Attributs",
"Explizite Lambdavorlagenparameter sind ein C++20-Feature.",
"Die Verwendung von „_Noreturn“ in C23 ist veraltet. Verwenden Sie stattdessen „[[noreturn]]“.",
"Die Verwendung von „_Alignof“ in C23 ist veraltet. Verwenden Sie stattdessen „alignof“.",
"Die Verwendung von „_Alignas“ in C23 ist veraltet. Verwenden Sie stattdessen „alignas“.",
"Die Verwendung von „_Bool“ in C23 ist veraltet. Verwenden Sie stattdessen „bool“.",
"Die Verwendung von „_Static_assert“ in C23 ist veraltet. Verwenden Sie stattdessen „static_assert“.",
"Die Verwendung von „_Thread_local“ in C23 ist veraltet. Verwenden Sie stattdessen „thread_local“.",
"Der Microsoft-Modus muss aktiviert sein, um die Moduldatei %sq (ein Microsoft Visual Studio IFC-Modul) zu verwenden.",
"Die Moduldatei \"%sq\" konnte nicht importiert werden.",
"wurde in der Modulzuordnung für das Modul %sq gefunden",
"wurde in der Headereinheitszuordnung für %sq gefunden"
]
27 changes: 21 additions & 6 deletions Extension/bin/messages/es/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -2935,7 +2935,7 @@
"tipo %t no válido en puntero this para la función miembro %nfd con restricción amp",
"Tipo de valor devuelto %t no válido para la función %nfd con restricción amp",
"Tipo de parámetro %t no válido para la función %nfd con restricción amp",
null,
"construcción no válida en la función %nfd con restricción amp",
"Clase de almacenamiento %s no válida en la función %nfd con restricción amp",
"%s no se permite en la función %nfd con restricción amp",
"conversión no válida en la función con restricción amp",
Expand Down Expand Up @@ -3343,14 +3343,14 @@
"la asignación de archivos de módulo para \"%s\" se especificó más de una vez",
"la asignación de unidades de encabezado para \"%s\" se especificó más de una vez",
"no se especificó ninguna asignación para \"%s\"",
"la asignación del archivo de módulo para \"%s\" no es válida",
null,
"no se encuentra el encabezado \"%s\" para importar",
"hay más de un archivo de la lista de archivos de módulo que coincide con \"%s\"",
"el archivo de módulo que se encontró para \"%s\" es para otro módulo",
"cualquier tipo de archivo de módulo",
"no se puede leer el archivo de módulo",
"la función integrada no está disponible porque no se admite el tipo char8_t con las opciones actuales",
"no se puede especificar la opción de línea de comandos --ms_await si están habilitadas las corrutinas de C++ 20",
null,
"uso no estándar de %nod de constructor explícito para la inicialización predeterminada del elemento de agregado",
"el origen o el destino del intento intrínseco de tipo memcpy no apunta a un objeto",
"intentos intrínsecos de tipo memcpy para copiar los tipos %t1 y %t2 diferentes de forma representativa",
Expand Down Expand Up @@ -3465,7 +3465,7 @@
"debido a un atributo “no disponible”",
"calificador 'asm' duplicado",
"un campo de bits con un tipo de enumeración incompleto o una enumeración opaca con un tipo base no válido",
"intentó construir un elemento a partir de la partición IFC %sq mediante un índice en la partición IFC %sq",
"intentó construir un elemento a partir de la partición IFC %sq mediante un índice en la partición IFC %sq2",
"la partición %sq especificó su tamaño de entrada como %d1 cuando se esperaba %d2",
"se encontró un requisito IFC inesperado al procesar el módulo %sq1",
"error de condición en la línea %d en %s1: %sq2",
Expand All @@ -3478,9 +3478,24 @@
"el módulo %sq es un valor de ordenación no válido",
"una plantilla de función cargada desde un módulo IFC se analizó incorrectamente como %nd",
"no se pudo cargar una referencia de entidad IFC en el módulo %sq",
"Ordenación de índice IFC = %d1, valor = %d2",
"de la partición %sq elemento %d1 (posición de archivo %d2, posición relativa %d3)",
"no se permiten designadores encadenados para un tipo de clase con un destructor no trivial",
"una declaración de especialización explícita no puede ser una declaración \"friend\"",
"no se admite el tipo std::float128_t; se usará std::float64_t en su lugar",
"no se admite el tipo std::bfloat16_t; se usará std::float32_t en su lugar"
"no se admite el tipo std::bfloat16_t; se usará std::float32_t en su lugar",
"no se puede declarar una guía de deducción para la plantilla de alias %no",
"%n se declaró no disponible",
"%n se declaró no disponible (%sq)",
"debido a un atributo \"en desuso\"",
"los parámetros de plantilla lambda explícitos son una característica de C++20",
"el uso de \"_Noreturn\" ha quedado obsoleto en C23; usar '[[noreturn]]' en su lugar",
"el uso de \"_Alignof\" ha quedado obsoleto en C23; usar \"alignof\" en su lugar",
"el uso de \"_Alignas\" ha quedado obsoleto en C23; usar \"alignas\" en su lugar",
"el uso de \"_Bool\" ha quedado obsoleto en C23; usar 'bool' en su lugar",
"el uso de \"_Static_assert\" ha quedado obsoleto en C23; usar \"static_assert\" en su lugar",
"el uso de \"_Thread_local\" ha quedado obsoleto en C23; usar \"thread_local\" en su lugar",
"El modo Microsoft debe estar habilitado para usar el archivo de módulo %sq (un módulo IFC de Microsoft Visual Studio).",
"no se pudo abrir el archivo de módulo %sq",
"se encuentra en la asignación de módulo para el módulo %sq",
"se encuentra en el mapa de unidad de encabezado para %sq"
]
20 changes: 17 additions & 3 deletions Extension/bin/messages/fr/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3343,14 +3343,14 @@
"mappage de fichier de module pour '%s' spécifié plusieurs fois",
"mappage d'unité d'en-tête pour '%s' spécifié plusieurs fois",
"aucun mappage spécifié pour '%s'",
"le mappage de fichier de module pour '%s' est non valide",
null,
"l'en-tête '%s' à importer est introuvable",
"plusieurs fichiers dans la liste de fichiers de module correspondent à '%s'",
"le fichier de module trouvé pour '%s' est destiné à un autre module",
"n'importe quel genre de fichier de module",
"impossible de lire le fichier de module",
"la fonction intégrée n'est pas disponible, car le type char8_t n'est pas pris en charge avec les options actuelles",
"l'option de ligne de commande --ms_await ne peut pas être spécifiée si les coroutines C++20 sont activées",
null,
"utilisation non standard du constructeur explicite %nod pour l'initialisation de l'élément d'agrégation par défaut",
"la source ou la destination de l'intrinsèque de type memcpy ne pointe pas vers un objet",
"l'intrinsèque de type memcpy tente de copier les types représentatifs distincts %t1 et %t2",
Expand Down Expand Up @@ -3483,5 +3483,19 @@
"une déclaration de spécialisation explicite ne peut pas être une déclaration friend",
"le type std::float128_t n’est pas pris en charge ; std::float64_t sera utilisé à la place",
"le type std::bfloat16_t n’est pas pris en charge ; std::float32_t sera utilisé à la place",
"un guide de déduction ne peut pas être déclaré pour le modèle d’alias %no"
"un guide de déduction ne peut pas être déclaré pour le modèle d’alias %no",
"%n a été déclaré non disponible",
"%n a été déclaré indisponible (%sq)",
"en raison d’un attribut 'deprecated'",
"les paramètres de modèle lambda explicites sont une fonctionnalité C++20",
"l’utilisation de '_Noreturn' a été obsolète en C23; utiliser '[[noreturn]]' à la place",
"l’utilisation de '_Alignof' a été obsolète en C23; utiliser 'alignof' à la place",
"l’utilisation de '_Alignas' a été obsolète en C23; utiliser 'alignas' à la place",
"l’utilisation de '_Bool' a été obsolète en C23; utiliser 'bool' à la place",
"l’utilisation de '_Static_assert' a été obsolète en C23; utiliser 'static_assert' à la place",
"l’utilisation de '_Thread_local' a été obsolète en C23; utiliser 'thread_local' à la place",
"Le mode Microsoft doit être activé pour utiliser le fichier de module %sq (module IFC Microsoft Visual Studio)",
"impossible d’ouvrir le fichier de module %sq",
"trouvé dans le mappage de module pour le module %sq",
"trouvé dans le mappage d’unité d’en-tête pour %sq"
]
20 changes: 17 additions & 3 deletions Extension/bin/messages/it/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3343,14 +3343,14 @@
"il mapping del file del modulo per '%s' è stato specificato più di una volta",
"il mapping dell'unità intestazione per '%s' è stato specificato più di una volta",
"non è stato specificato alcun mapping per '%s'",
"Il mapping del file del modulo per '%s' non è valido",
null,
"non è possibile trovare l'intestazione '%s' da importare",
"più di un file nell'elenco file di modulo corrisponde a '%s'",
"il file di modulo trovato per '%s' è riferito a un modulo diverso",
"qualsiasi tipo di modulo",
"non è possibile leggere il file del modulo",
"la funzione predefinita non è disponibile perché il tipo char8_t non è supportato con le opzioni correnti",
"non è possibile specificare l'opzione della riga di comando --ms_await se le coroutine di C++20 sono abilitate",
null,
"uso non standard del costruttore esplicito %nod per l'inizializzazione dell'elemento di aggregazione predefinito",
"l'origine o la destinazione dell'intrinseco simile a memcpy non punta a un oggetto",
"l'intrinseco simile a memcpy prova a copiare i tipi distinti dal punto di vista della rappresentazione %t1 e %t2",
Expand Down Expand Up @@ -3483,5 +3483,19 @@
"una dichiarazione di specializzazione esplicita non può essere una dichiarazione Friend",
"il tipo std::float128_t non è supportato; verrà invece usato std::float64_t",
"il tipo std::bfloat16_t non è supportato; verrà utilizzato std::float32_t",
"non è possibile dichiarare una guida alla deduzione per il modello di alias %no"
"non è possibile dichiarare una guida alla deduzione per il modello di alias %no",
"%n dichiarato non disponibile",
"%n dichiarato non disponibile (%sq)",
"a causa di un attributo 'deprecato'",
"i parametri espliciti del modello lambda sono una funzionalità di C++20",
"l'uso di '_Noreturn' è obsoleto in C23; usare '[[noreturn]]'",
"l'uso di '_Alignof' è obsoleto in C23; usare 'alignof'",
"l'uso di '_Alignas' è obsoleto in C23; usare 'alignas'",
"l'uso di '_Bool' è obsoleto in C23; usare 'bool'",
"l'uso di '_Static_assert' è obsoleto in C23; usare 'static_assert'",
"l'uso di '_Thread_local' è obsoleto in C23; usare 'thread_local'",
"È necessario abilitare la modalità Microsoft per usare il file del modulo %sq (un modulo IFC Microsoft Visual Studio)",
"non è stato possibile aprire il file del modulo %sq",
"trovato nella mappa dei moduli per il modulo %sq",
"trovato nella mappa delle unità intestazione per %sq"
]
Loading