Compare commits
84
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e9613ae7ad | ||
|
|
1e89750b0b | ||
|
|
4079b1e516 | ||
|
|
cc653f8685 | ||
|
|
b92dbb40c1 | ||
|
|
1f83dd7715 | ||
|
|
8d7668ea88 | ||
|
|
3570705b5c | ||
|
|
478765f1fc | ||
|
|
096b1463a6 | ||
|
|
1f263c50b7 | ||
|
|
812318163d | ||
|
|
0efda4b1c2 | ||
|
|
ca12b97c37 | ||
|
|
225b776d99 | ||
|
|
e4ae0b7fdf | ||
|
|
458ef304e8 | ||
|
|
970f95bfea | ||
|
|
cd4ef2329f | ||
|
|
ccc07f5adb | ||
|
|
50e0f8685a | ||
|
|
12d95f4708 | ||
|
|
fc5a084781 | ||
|
|
44671aa6b7 | ||
|
|
731cccd8e3 | ||
|
|
8718b9686b | ||
|
|
8111083f6a | ||
|
|
7006e18ea4 | ||
|
|
f077665994 | ||
|
|
317df57496 | ||
|
|
f63c3652f8 | ||
|
|
5d62607760 | ||
|
|
26d0932972 | ||
|
|
825033f768 | ||
|
|
d8426caacc | ||
|
|
8942530744 | ||
|
|
e663939e56 | ||
|
|
1fb5b63ab7 | ||
|
|
fd482d2169 | ||
|
|
2fafd831e5 | ||
|
|
1ceae9d4ed | ||
|
|
d4d5d4551f | ||
|
|
0ef77b5616 | ||
|
|
efdc8e90f6 | ||
|
|
9f020e9258 | ||
|
|
c058568767 | ||
|
|
8809e69e91 | ||
|
|
7af5c40dd0 | ||
|
|
1d2bd10691 | ||
|
|
dac96fe852 | ||
|
|
a1487e5e79 | ||
|
|
6f19496172 | ||
|
|
76ccb791ff | ||
|
|
a5a5735089 | ||
|
|
5077edf585 | ||
|
|
f38926f8b1 | ||
|
|
30de9bcc27 | ||
|
|
100e2e0828 | ||
|
|
e3b41771c6 | ||
|
|
3f7f3090f6 | ||
|
|
4149493f2c | ||
|
|
43aad3f65c | ||
|
|
bedcacb0a1 | ||
|
|
a5f8f84b43 | ||
|
|
e53b190380 | ||
|
|
1846fd4001 | ||
|
|
62e09945e3 | ||
|
|
c9b0db02fd | ||
|
|
51da619eec | ||
|
|
3eb50568e9 | ||
|
|
866b145645 | ||
|
|
9762fe5397 | ||
|
|
377896c30a | ||
|
|
98f13a6f11 | ||
|
|
0d85aea687 | ||
|
|
25d2b76514 | ||
|
|
42dfef3f6b | ||
|
|
1ce1e9cd71 | ||
|
|
65163966d5 | ||
|
|
edf8e0a155 | ||
|
|
4083075476 | ||
|
|
b745ebc218 | ||
|
|
b69d17a0f5 | ||
|
|
be8b6fb693 |
@@ -102,6 +102,10 @@ extends:
|
||||
filename: mkdir
|
||||
arguments: $(Build.ArtifactStagingDirectory)\Extension
|
||||
|
||||
- script: yarn run vsix-prepublish
|
||||
displayName: Build files
|
||||
workingDirectory: $(Build.SourcesDirectory)\Extension
|
||||
|
||||
- task: CmdLine@1
|
||||
name: ProcessRunner_12
|
||||
displayName: Run VSCE to package vsix
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="SignFiles" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="packages\Microsoft.VisualStudioEng.MicroBuild.Core.0.4.1\build\Microsoft.VisualStudioEng.MicroBuild.Core.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<BaseOutputDirectory>$(BUILD_STAGINGDIRECTORY)/Extension</BaseOutputDirectory>
|
||||
<!-- These properties are required by MicroBuild, which only signs files that are under these paths -->
|
||||
<IntermediateOutputPath>$(BaseOutputDirectory)</IntermediateOutputPath>
|
||||
<OutDir>$(BaseOutputDirectory)</OutDir>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<!-- Because of Webpack bundling, these are the only shipping Javascript files.
|
||||
There are no third-party files to sign because they've all been bundled. -->
|
||||
<FilesToSign Include="$(OutDir)\dist\src\main.js;$(OutDir)\dist\ui\settings.js">
|
||||
<Authenticode>Microsoft400</Authenticode>
|
||||
</FilesToSign>
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="packages\Microsoft.VisualStudioEng.MicroBuild.Core.0.4.1\build\Microsoft.VisualStudioEng.MicroBuild.Core.targets" />
|
||||
</Project>
|
||||
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Microsoft.VisualStudioEng.MicroBuild.Core" version="0.4.1" developmentDependency="true" />
|
||||
</packages>
|
||||
@@ -325,6 +325,7 @@ export async function checkDTS() {
|
||||
let failing = false;
|
||||
failing = !await assertAnyFile('vscode.d.ts') && (quiet || warn(`The VSCode import file '${$root}/dist/src/vscode.d.ts is missing.`)) || failing;
|
||||
failing = !await assertAnyFile('vscode.proposed.terminalDataWriteEvent.d.ts') && (quiet || warn(`The VSCode import file '${$root}/dist/src/vscode.proposed.terminalDataWriteEvent.d.ts is missing.`)) || failing;
|
||||
failing = !await assertAnyFile('vscode.proposed.lmTools.d.ts') && (quiet || warn(`The VSCode import file '${$root}/dist/src/vscode.proposed.lmTools.d.ts is missing.`)) || failing;
|
||||
|
||||
if (!failing) {
|
||||
verbose('VSCode d.ts files appear to be in place.');
|
||||
|
||||
Vendored
+1
-1
@@ -37,7 +37,7 @@
|
||||
},
|
||||
"[typescript]": {
|
||||
"editor.tabSize": 4,
|
||||
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
||||
"editor.defaultFormatter": "vscode.typescript-language-features",
|
||||
"editor.formatOnSave": true,
|
||||
"files.insertFinalNewline": true,
|
||||
"editor.codeActionsOnSave": {
|
||||
|
||||
@@ -1,5 +1,42 @@
|
||||
# C/C++ for Visual Studio Code Changelog
|
||||
|
||||
## Version 1.22.5: September 24, 2024
|
||||
### Enhancement
|
||||
* Add the database path to the `C/C++: Log Diagnostics` output.
|
||||
|
||||
### Bug Fixes
|
||||
* Fix some synchronization and crash issues with `handle_edits`. [#12747](https://github.com/microsoft/vscode-cpptools/issues/12747)
|
||||
* Fix usage of `#cpp` with Copilot chat. [PR #12755](https://github.com/microsoft/vscode-cpptools/pull/12755)
|
||||
* Fix some document buffer issues.
|
||||
|
||||
## Version 1.22.4: September 19, 2024
|
||||
### Enhancements
|
||||
* Performance improvements related to how custom configurations are processed. [#12632](https://github.com/microsoft/vscode-cpptools/issues/12632)
|
||||
* Performance improvements related to LSP request processing.
|
||||
|
||||
### Bug Fixes
|
||||
* Fix an issue with missing database symbols after a Rename operation. [#12480](https://github.com/microsoft/vscode-cpptools/issues/12480)
|
||||
* Work around IntelliSense issues with clang 18 due to `size_t` not being defined. [#12618](https://github.com/microsoft/vscode-cpptools/issues/12618)
|
||||
* Fix some crashes with recursive includes. [#12643](https://github.com/microsoft/vscode-cpptools/issues/12643)
|
||||
* Possibly fix a crash in `find_existing_intellisense_client`. [#12666](https://github.com/microsoft/vscode-cpptools/issues/12666)
|
||||
* Fix issues applying `files.exclude` settings when `C_Cpp.caseSensitiveFileSupport` is enabled. [#12672](https://github.com/microsoft/vscode-cpptools/issues/12672)
|
||||
* Fix an issue with duplicate tag parsing occurring after a Rename operation. [#12728](https://github.com/microsoft/vscode-cpptools/issues/12728)
|
||||
* Fix an issue causing unnecessary TU updates for files opened during a Rename operation, when `"files.refactoring.autoSave": false` is used.
|
||||
|
||||
## Version 1.22.3: September 12, 2024
|
||||
### Enhancement
|
||||
* Add support for providing additional context information to Copilot Chat. [PR #12685](https://github.com/microsoft/vscode-cpptools/pull/12685)
|
||||
* Currently, it requires `"C_Cpp.experimentalFeatures": "enabled"` and typing `#cpp` in the chat.
|
||||
|
||||
### Bug Fixes
|
||||
* Fix the compiler selection control not keeping the list in sync with contents of the textbox. [#7427](https://github.com/microsoft/vscode-cpptools/issues/7427)
|
||||
* Fix a string localization issue. [#7824](https://github.com/microsoft/vscode-cpptools/issues/7824)
|
||||
* Stop logging duplicate compiler path messages. [#12445](https://github.com/microsoft/vscode-cpptools/issues/12445)
|
||||
* Fix some crashes with recursive includes. [#12643](https://github.com/microsoft/vscode-cpptools/issues/12643)
|
||||
* Fix a rare crash on macOS related to `get_memory_usage`. [#12667](https://github.com/microsoft/vscode-cpptools/issues/12667)
|
||||
* Fix an issue with 'Extract to Function' formatting. [#12677](https://github.com/microsoft/vscode-cpptools/issues/12677)
|
||||
* Fix a potential deadlock in `process_paths`. [#12690](https://github.com/microsoft/vscode-cpptools/issues/12690)
|
||||
|
||||
## Version 1.22.2: August 29, 2024
|
||||
### Enhancement
|
||||
* Remove the `C_Cpp.intelliSenseEngineFallback` setting. [#12596](https://github.com/microsoft/vscode-cpptools/issues/12596)
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__building_module(x)=0",
|
||||
"--pack_alignment",
|
||||
"8",
|
||||
"-Dunix=1",
|
||||
@@ -11,5 +12,5 @@
|
||||
"-D__SIZE_TYPE__=unsigned int",
|
||||
"-D__WCHAR_TYPE__=long int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__building_module(x)=0",
|
||||
"--pack_alignment",
|
||||
"8",
|
||||
"-Dunix=1",
|
||||
@@ -11,5 +12,5 @@
|
||||
"-D__SIZE_TYPE__=long unsigned int",
|
||||
"-D__WCHAR_TYPE__=int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__building_module(x)=0",
|
||||
"--pack_alignment",
|
||||
"8",
|
||||
"-Dunix=1",
|
||||
@@ -11,5 +12,5 @@
|
||||
"-D__SIZE_TYPE__=long unsigned int",
|
||||
"-D__WCHAR_TYPE__=int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__building_module(x)=0",
|
||||
"--pack_alignment",
|
||||
"8",
|
||||
"-Dunix=1",
|
||||
@@ -11,5 +12,5 @@
|
||||
"-D__SIZE_TYPE__=unsigned int",
|
||||
"-D__WCHAR_TYPE__=long int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__building_module(x)=0",
|
||||
"--pack_alignment",
|
||||
"8",
|
||||
"-D__APPLE__=1",
|
||||
@@ -10,5 +11,5 @@
|
||||
"-D__SIZE_TYPE__=unsigned int",
|
||||
"-D__WCHAR_TYPE__=long int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__building_module(x)=0",
|
||||
"--pack_alignment",
|
||||
"8",
|
||||
"-D__APPLE__=1",
|
||||
@@ -10,5 +11,5 @@
|
||||
"-D__SIZE_TYPE__=long unsigned int",
|
||||
"-D__WCHAR_TYPE__=int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__building_module(x)=0",
|
||||
"--pack_alignment",
|
||||
"8",
|
||||
"-D__APPLE__=1",
|
||||
@@ -10,5 +11,5 @@
|
||||
"-D__SIZE_TYPE__=long unsigned int",
|
||||
"-D__WCHAR_TYPE__=int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__building_module(x)=0",
|
||||
"--pack_alignment",
|
||||
"8",
|
||||
"-D__APPLE__=1",
|
||||
@@ -10,5 +11,5 @@
|
||||
"-D__SIZE_TYPE__=unsigned int",
|
||||
"-D__WCHAR_TYPE__=long int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"Striktní režim je nekompatibilní se zpracováním oboru názvů std jako aliasu pro globální obor názvů.",
|
||||
"v rozšíření makra %s %p",
|
||||
"<NEZNÁMÝ>",
|
||||
"",
|
||||
null,
|
||||
"[rozšíření makra %d není zobrazené]",
|
||||
"v rozšíření makra v %p",
|
||||
"neplatný název symbolického operandu %sq",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"Chyba příkazového řádku",
|
||||
"vnitřní chyba",
|
||||
"Vnitřní chyba",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"Došlo k dosažení limitu chyb.",
|
||||
"Smyčka interní chyby",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"převodní jazyk (7)",
|
||||
"převodní jazyk (8)",
|
||||
"převodní jazyk (9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"neplatný znak pro literál char16_t",
|
||||
null,
|
||||
"Nerozpoznaná konvence volání %s, musí být jednou z:",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"Nadřízený typ typu výčtu musí být integrální typ.",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"Neplatná hodnota sady pragma %s pro funkci s omezením AMP",
|
||||
"Překrývající se specifikátory omezení nejsou povolené.",
|
||||
"Specifikátory omezení destruktoru musejí pokrývat sjednocení specifikátorů omezení všech konstruktorů.",
|
||||
"<error>",
|
||||
"error",
|
||||
"Pro nostdlib se vyžaduje aspoň jedno nucené použití.",
|
||||
"<error-type>",
|
||||
"error-type",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"Der Strict-Modus ist mit dem Behandeln des Namespaces \"std\" als Alias für den globalen Namespace inkompatibel.",
|
||||
"In Erweiterung von Makro \"%s\" %p",
|
||||
"<UNBEKANNT>",
|
||||
"",
|
||||
null,
|
||||
"[%d Makroerweiterungen werden nicht angezeigt.]",
|
||||
"In Makroerweiterung bei %p",
|
||||
"Ungültiger symbolischer Operandname \"%sq\".",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"Befehlszeilenfehler",
|
||||
"Interner Fehler.",
|
||||
"Interner Fehler.",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"Fehlerlimit erreicht.",
|
||||
"Interne Fehlerschleife",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"Zwischensprache (7)",
|
||||
"Zwischensprache (8)",
|
||||
"Zwischensprache (9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"Ungültiges Zeichen für char16_t-Literal.",
|
||||
null,
|
||||
"Unbekannte Aufrufkonvention \"%s\", muss eine der folgenden Optionen sein:",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"Der zugrunde liegende Typ des Enumerationstyps muss ein integraler Typ sein.",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"Unzulässiger Wert für Pragmapaket \"%s\" für die auf AMP begrenzte Funktion.",
|
||||
"Überlappende Einschränkungsspezifizierer sind unzulässig.",
|
||||
"Die Einschränkungsspezifizierer des Destruktors müssen die Union der Einschränkungsspezifizierer für alle Konstruktoren abdecken.",
|
||||
"<error>",
|
||||
"Fehler",
|
||||
"Für \"nostdlib\" ist mindestens eine erzwungene Verwendung erforderlich.",
|
||||
"<error-type>",
|
||||
"Fehlertyp",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"el modo strict no es compatible con el trato del espacio de nombres std como alias para el espacio de nombres global",
|
||||
"en la expansión de macro '%s' %p,",
|
||||
"<DESCONOCIDO>",
|
||||
"",
|
||||
null,
|
||||
"[ las expansiones de macro %d no se muestran ]",
|
||||
"en expansión de macro en %p",
|
||||
"nombre de operando simbólico %sq no válido",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"Error de la línea de comandos",
|
||||
"Error interno",
|
||||
"Error interno",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"Se ha alcanzado el límite de error.",
|
||||
"Bucle de error interno",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"lenguaje intermedio (7)",
|
||||
"lenguaje intermedio (8)",
|
||||
"lenguaje intermedio (9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"carácter no válido para el literal char16_t",
|
||||
null,
|
||||
"convención de llamada %s no reconocida, debe ser una de las siguientes:",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"el tipo subyacente del tipo de enumeración debe ser un tipo entero",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"valor de pragma pack %s no válido para la función con restricción amp",
|
||||
"no se permiten especificadores de restricción superpuestos",
|
||||
"los especificadores de restricción del destructor deben cubrir la unión de los especificadores de restricción de todos los constructores",
|
||||
"<error>",
|
||||
"error",
|
||||
"nostdlib requiere al menos un uso forzado",
|
||||
"<error-type>",
|
||||
"error-type",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"le mode strict est incompatible avec le traitement de namespace std en tant qu'alias pour l'espace de noms global",
|
||||
"dans l'expansion macro '%s' %p",
|
||||
"<Inconnu>",
|
||||
"",
|
||||
null,
|
||||
"[ %d expansions macro non affichées ]",
|
||||
"dans l'expansion macro à %p",
|
||||
"nom d'opérande symbolique non valide %sq",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"Erreur de ligne de commande",
|
||||
"erreur interne",
|
||||
"Erreur interne",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"Limitation d'erreur atteinte.",
|
||||
"Boucle d'erreur interne",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"langage intermédiaire (7)",
|
||||
"langage intermédiaire (8)",
|
||||
"langage intermédiaire (9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"caractère non valide pour le littéral char16_t",
|
||||
null,
|
||||
"convention d'appel inconnue %s, doit être l'une des suivantes :",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"le type sous-jacent du type enum doit être un type intégral",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"valeur de pragma pack non conforme %s pour la fonction à restriction amp",
|
||||
"spécificateurs de restriction en chevauchement non autorisés",
|
||||
"les spécificateurs de restriction du destructeur doivent couvrir l'union des spécificateurs de restriction sur tous les constructeurs",
|
||||
"<error>",
|
||||
"erreur",
|
||||
"nostdlib nécessite au moins un using forcé",
|
||||
"<error-type>",
|
||||
"type d’erreur",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -453,15 +453,15 @@
|
||||
"omissione di %sq non conforme allo standard",
|
||||
"impossibile specificare il tipo restituito in una funzione di conversione",
|
||||
"rilevato durante:",
|
||||
"creazione di un'istanza del contesto %p1 del modello %nt1",
|
||||
"generazione implicita del contesto %p1 del modello %nt1",
|
||||
"creazione di un'istanza del contesto %nt %p",
|
||||
"generazione implicita del contesto %nt %p",
|
||||
"ricorsione eccessiva durante la creazione di un'istanza di %n",
|
||||
"%sq non è una funzione o un membro dati statici",
|
||||
"l'argomento di tipo %t1 è incompatibile con il parametro del modello di tipo %t2",
|
||||
"non è possibile eseguire un'inizializzazione che richiede un tipo temporaneo o una conversione",
|
||||
"se si dichiara %sq, il parametro della funzione verrà nascosto",
|
||||
"il valore iniziale del riferimento a non const deve essere un lvalue",
|
||||
"definizione implicita del contesto %p del modello %nt",
|
||||
"definizione implicita del contesto %nt %p",
|
||||
"'template' non consentito",
|
||||
"%t non è un modello di classe",
|
||||
null,
|
||||
@@ -526,7 +526,7 @@
|
||||
"chiamata funzione non const per l'oggetto const (anacronismo)",
|
||||
"un'istruzione dipendente non può essere una dichiarazione",
|
||||
"il tipo di un parametro non può essere void",
|
||||
"creazione di un'istanza del contesto %p1 della classe %na1",
|
||||
"creazione di un'istanza del contesto %na %p",
|
||||
"elaborazione dell'elenco degli argomenti di modello per %na %p",
|
||||
"operatore non consentito in un'espressione di argomento del modello",
|
||||
"con il blocco try è richiesto almeno un gestore",
|
||||
@@ -682,11 +682,11 @@
|
||||
"directory PCH non valida: %s",
|
||||
"previsto __except o __finally",
|
||||
"un'istruzione __leave può essere utilizzata solo in un blocco __try",
|
||||
"rilevato durante la creazione di un'istanza del contesto %p del modello %nt",
|
||||
"rilevato durante la generazione implicita del contesto %p1 del modello %nt1",
|
||||
"rilevato durante la creazione di un'istanza del contesto %p della classe %na",
|
||||
"rilevato durante la creazione di un'istanza del contesto %nt %p",
|
||||
"rilevato durante la generazione implicita del contesto %nt %p",
|
||||
"rilevato durante la creazione di un'istanza del contesto %na %p",
|
||||
"rilevato durante l'elaborazione dell'elenco degli argomenti di modello per %na %p",
|
||||
"rilevato durante la definizione implicita del contesto %p1 del modello %nt1",
|
||||
"rilevato durante la definizione implicita del contesto %nt %p",
|
||||
"%sq non trovato nello stack di allineamento compressione",
|
||||
"stack di allineamento compressione vuoto",
|
||||
"è possibile utilizzare l'opzione RTTI solo quando si esegue la compilazione nel linguaggio C++",
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"modalità strict incompatibile con lo spazio dei nomi std utilizzato come alias dello spazio dei nomi globale",
|
||||
"nell'espansione della macro '%s' %p",
|
||||
"<SCONOSCIUTO>",
|
||||
"",
|
||||
null,
|
||||
"[ espansioni della macro %d non visualizzate ]",
|
||||
"nell'espansione della macro in %p",
|
||||
"nome di operando simbolico %sq non valido",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"Errore nella riga di comando",
|
||||
"errore interno",
|
||||
"Errore interno",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"Limite di errore raggiunto.",
|
||||
"Ciclo di errore interno",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"linguaggio intermedio (7)",
|
||||
"linguaggio intermedio (8)",
|
||||
"linguaggio intermedio (9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"carattere non valido per il valore letterale char16_t",
|
||||
null,
|
||||
"convenzione di chiamata %s non riconosciuta. Deve essere una delle seguenti:",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"il tipo sottostante del tipo enumerazione deve essere un tipo integrale",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"il valore %s del pacchetto pragma per la funzione con restrizioni AMP non è valido",
|
||||
"gli identificatori di limitazione sovrapposti non sono consentiti",
|
||||
"gli identificatori di limitazione del distruttore devono coprire l'unione degli identificatori di limitazione in tutti i costruttori",
|
||||
"<error>",
|
||||
"errore",
|
||||
"con nostdlib è richiesta almeno un'opzione Forced Using",
|
||||
"<error-type>",
|
||||
"tipo di errore",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"strict モードはグローバル名前空間に対するエイリアスとしての名前空間 std の取り扱いと互換性がありません",
|
||||
"マクロ '%s' %p の展開で、",
|
||||
"<不明>",
|
||||
"",
|
||||
null,
|
||||
"[ %d マクロの展開は示されていません ]",
|
||||
"%p の場所でのマクロの展開で",
|
||||
"シンボル オペランド名 %sq が無効です",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"コマンド ライン エラー",
|
||||
"内部エラー",
|
||||
"内部エラー",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"エラーの上限に達しました。",
|
||||
"内部エラー ループ",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"中間言語 (7)",
|
||||
"中間言語 (8)",
|
||||
"中間言語 (9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"char16_t リテラルには無効な文字です",
|
||||
null,
|
||||
"呼び出し規約 %s は認識されないため、次のいずれかを使用する必要があります:",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"列挙型の基になる型は整数型である必要があります",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"amp 制限関数に無効な pragma pack 値 %s ",
|
||||
"重複した制限指定子は許可されていません",
|
||||
"デストラクターの制限指定子は、すべてのコンストラクターの制限指定子の和集合を対象とする必要があります",
|
||||
"<error>",
|
||||
"エラー",
|
||||
"nostdlib には少なくとも 1 つの強制された using が必要です",
|
||||
"<error-type>",
|
||||
"エラーの種類",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"strict 모드가 std 네임스페이스를 전역 네임스페이스에 대한 별칭으로 처리하는 방식과 호환되지 않습니다.",
|
||||
"매크로 '%s' %p의 확장,",
|
||||
"<알 수 없음>",
|
||||
"",
|
||||
null,
|
||||
"[ %d 매크로 확장이 표시되지 않음 ]",
|
||||
"%p의 매크로 확장",
|
||||
"기호화된 피연산자 이름 %sq이(가) 잘못되었습니다.",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"명령줄 오류",
|
||||
"내부 오류",
|
||||
"내부 오류",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"오류 한계에 도달했습니다.",
|
||||
"내부 오류 루프",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"중간 언어 (7)",
|
||||
"중간 언어 (8)",
|
||||
"중간 언어 (9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"char16_t 리터럴에 대한 잘못된 문자",
|
||||
null,
|
||||
"인식할 수 없는 호출 규칙 %s, 다음 중 하나여야 함:",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"열거형 형식의 내부 형식은 정수 계열 형식이어야 합니다.",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"amp 제한 함수의 pragma pack 값 %s이(가) 잘못되었습니다.",
|
||||
"겹치는 제한 지정자는 사용할 수 없습니다.",
|
||||
"소멸자의 제한 지정자는 모든 생성자에 대한 제한 지정자의 공용 구조체를 지정해야 합니다.",
|
||||
"<error>",
|
||||
"오류",
|
||||
"nostdlib에는 한 번 이상의 강제 사용이 필요합니다.",
|
||||
"<error-type>",
|
||||
"error-type",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"tryb z ograniczeniami jest niezgodny z traktowaniem przestrzeni nazw std jako aliasu dla globalnej przestrzeni nazw",
|
||||
"w rozwinięciu makra „%s” %p",
|
||||
"<NIEZNANE>",
|
||||
"",
|
||||
null,
|
||||
"[liczba niewyświetlanych rozwinięć makr: %d]",
|
||||
"w rozszerzeniu makra w położeniu %p",
|
||||
"nieprawidłowa nazwa symboliczna argumentu operacji %sq",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"Błąd wiersza polecenia",
|
||||
"błąd wewnętrzny",
|
||||
"Błąd wewnętrzny",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"Osiągnięto limit błędów.",
|
||||
"Pętla błędu wewnętrznego",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"język pośredni (7)",
|
||||
"język pośredni (8)",
|
||||
"język pośredni (9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"nieprawidłowy znak dla literału char16_t",
|
||||
null,
|
||||
"nierozpoznana konwencja wywoływania %s. Musi ona być jedną z następujących:",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"typ bazowy typu wyliczenia musi być typem całkowitoliczbowym",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"niedozwolona wartość dyrektywy pragma pack %s dla funkcji z ograniczeniem amp",
|
||||
"nakładające się specyfikatory ograniczenia są niedozwolone",
|
||||
"specyfikatory ograniczenia destruktora muszą obejmować unię specyfikatorów ograniczenia na wszystkich konstruktorach",
|
||||
"<error>",
|
||||
"błąd",
|
||||
"element nostdlib wymaga co najmniej jednego wymuszonego użycia",
|
||||
"<error-type>",
|
||||
"error-type",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"o modo estrito é incompatível com o tratamento do namespace padrão como um alias para o namespace global",
|
||||
"na expansão da macro '%s' %p",
|
||||
"<DESCONHECIDO>",
|
||||
"",
|
||||
null,
|
||||
"[ %d expansões de macro não mostradas ]",
|
||||
"na expansão da macro em %p",
|
||||
"nome de operando simbólico inválido %sq",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"Erro de linha de comando",
|
||||
"erro interno",
|
||||
"Erro interno",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"Limite de erro atingido.",
|
||||
"Laço de erro interno",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"linguagem intermediária (7)",
|
||||
"linguagem intermediária (8)",
|
||||
"linguagem intermediária (9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"caractere inválido para literal char16_t",
|
||||
null,
|
||||
"convenção de chamadas não reconhecida %s, deve ser um dos:",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"o tipo subjacente da enumeração deve ser integral",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"valor do pacote pragma %s ilícito para a função restrita por amp",
|
||||
"não é permitido sobrepor especificadores restritos",
|
||||
"os especificadores restritos do destruidor devem conter a união dos especificadores restritos em todos os construtores",
|
||||
"<error>",
|
||||
"erro",
|
||||
"o nostdlib exige pelo menos um uso forçado",
|
||||
"<error-type>",
|
||||
"tipo de erro",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"строгий режим несовместим с обработкой пространства имен std в качестве псевдонима для глобального пространства имен",
|
||||
"в расширении макроса \"%s\" %p",
|
||||
"<НЕТ ДАННЫХ>",
|
||||
"",
|
||||
null,
|
||||
"[ расширение макроса \"%d\" не показано ]",
|
||||
"в расширении макроса в %p",
|
||||
"недопустимое имя символьного операнда %sq",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"Ошибка в командной строке",
|
||||
"внутренняя ошибка",
|
||||
"Внутренняя ошибка",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"Достигнут предел ошибок.",
|
||||
"Внутренний цикл ошибки",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"промежуточный язык (7)",
|
||||
"промежуточный язык (8)",
|
||||
"промежуточный язык (9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"недопустимый знак для литерала char16_t",
|
||||
null,
|
||||
"нераспознанное соглашение о вызовах %s; необходимо использовать одно из следующих:",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"базовый тип для перечисляемого типа должен быть целочисленным",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"Недопустимое значение pragma pack %s для функции со спецификатором ограничения amp.",
|
||||
"перекрывающиеся описатели restrict запрещены",
|
||||
"описатели restrict деструктора должны охватывать объединение описателей restrict всех конструкторов",
|
||||
"<error>",
|
||||
"ошибка",
|
||||
"для nostdlib требуется по меньшей мере одна директива forced using",
|
||||
"<error-type>",
|
||||
"тип ошибки",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"katı mod, std ad uzayının genel ad uzayı için bir diğer ad olarak değerlendirilmesi ile uyumsuz",
|
||||
"makro '%s' genişletilmesinde %p,",
|
||||
"<UNKNOWN>",
|
||||
"",
|
||||
null,
|
||||
"[%d makro genişletmesi gösterilmiyor ]",
|
||||
"%p konumunda makro genişletmesinde",
|
||||
"geçersiz sembolik işlenen adı %sq",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"Komut satırı hatası",
|
||||
"iç hata",
|
||||
"İç hata",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"Hata sınırına ulaşıldı.",
|
||||
"İç hata döngüsü",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"ara dil (7)",
|
||||
"ara dil (8)",
|
||||
"ara dil (9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"char16_t sabit değeri için geçersiz karakter",
|
||||
null,
|
||||
"çağrı kuralı %s tanınmıyor, şunlardan biri olmalıdır:",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"Sabit listesi türünün temel alınan türü bir tam sayı türü olmalıdır",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"AMP ile sınırlı işlev için pragma paket değeri (%s) geçersiz",
|
||||
"örtüşen kısıtlama tanımlayıcılarına izin verilmiyor",
|
||||
"yıkıcının kısıtlama tanımlayıcıları, tüm oluşturuculardaki kısıtlama tanımlayıcılarının birleşimini kapsamalıdır",
|
||||
"<error>",
|
||||
"hata",
|
||||
"nostdlib en az bir zorunlu kullanım gerektirir",
|
||||
"<error-type>",
|
||||
"error-type",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"严格模式与将命名空间标准视为全局命名空间的别名不兼容",
|
||||
"在宏“%s”%p 的扩展中",
|
||||
"<未知>",
|
||||
"",
|
||||
null,
|
||||
"[ %d 宏扩展未显示]",
|
||||
"在 %p 的宏扩展中",
|
||||
"符号操作数名称 %sq 无效",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"命令行错误",
|
||||
"内部错误",
|
||||
"内部错误",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"达到错误限制。",
|
||||
"内部错误循环",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"中间语言(7)",
|
||||
"中间语言(8)",
|
||||
"中间语言(9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"char16_t 文本的无效字符",
|
||||
null,
|
||||
"无法识别的调用约定 %s,必须为以下内容之一:",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"枚举类型的基础类型必须是整型",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"受 AMP 限制的函数的 pragma 包值 %s 非法",
|
||||
"限制说明符不可重叠",
|
||||
"析构函数的限制说明符必须包含所有构造函数的限制说明符的联合部分",
|
||||
"<error>",
|
||||
"错误",
|
||||
"nostdlib 要求至少使用一个强制 using",
|
||||
"<error-type>",
|
||||
"error-type",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -1410,7 +1410,7 @@
|
||||
"strict 模式不相容,因為將命名空間 std 視為全域命名空間的別名",
|
||||
"在巨集 '%s' %p 的展開中",
|
||||
"<未知>",
|
||||
"",
|
||||
null,
|
||||
"[ 未顯示 %d 個巨集展開 ]",
|
||||
"在 %p 的巨集展開中",
|
||||
"無效的符號運算元名稱 %sq",
|
||||
@@ -1505,7 +1505,7 @@
|
||||
"命令列錯誤",
|
||||
"內部錯誤",
|
||||
"內部錯誤",
|
||||
null,
|
||||
"-D",
|
||||
null,
|
||||
"已達錯誤限制。",
|
||||
"內部錯誤迴圈",
|
||||
@@ -1524,7 +1524,7 @@
|
||||
"中繼語言 (7)",
|
||||
"中繼語言 (8)",
|
||||
"中繼語言 (9)",
|
||||
null,
|
||||
"PCH",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
@@ -1537,7 +1537,7 @@
|
||||
"char16_t literal 的字元無效",
|
||||
null,
|
||||
"無法辨認的呼叫慣例 %s,必須是下列其中一個: ",
|
||||
null,
|
||||
"%s",
|
||||
null,
|
||||
null,
|
||||
"列舉類型的基礎類型必須是整數類型",
|
||||
@@ -2953,9 +2953,9 @@
|
||||
"AMP 限制涵式中有不合法的 pragma 套件值 %s",
|
||||
"不允許重疊的限制指定名稱",
|
||||
"解構函式的限制規範必須涵蓋所有建構函式的限制規範聯集",
|
||||
"<error>",
|
||||
"error",
|
||||
"nostdlib 至少需要一個強制 Using",
|
||||
"<error-type>",
|
||||
"error-type",
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__building_module(x)=0",
|
||||
"--pack_alignment",
|
||||
"8"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__building_module(x)=0",
|
||||
"--pack_alignment",
|
||||
"8"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__building_module(x)=0",
|
||||
"--pack_alignment",
|
||||
"8"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__building_module(x)=0",
|
||||
"--pack_alignment",
|
||||
"8"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "转到引用"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "转到引用",
|
||||
"pending.rename": "正在等待重命名",
|
||||
"candidates.for.rename": "重命名候选项"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "分析工作区",
|
||||
"paused.tagparser.text": "分析工作区: 已暂停",
|
||||
"complete.tagparser.text": "分析完毕",
|
||||
"initializing.tagparser.text": "正在初始化工作区",
|
||||
"indexing.tagparser.text": "正在索引工作区",
|
||||
"rescan.tagparse.text": "重新扫描工作区",
|
||||
"c.cpp.parsing.open.files.tooltip": "正在分析打开的文件",
|
||||
"click.to.preview": "单击以预览结果",
|
||||
"updating.intellisense.text": "IntelliSense: 正在更新",
|
||||
"idle.intellisense.text": "IntelliSense: 就绪",
|
||||
"absent.intellisense.text": "IntelliSense: 未配置",
|
||||
"running.analysis.text": "Code Analysis: 正在运行",
|
||||
"paused.analysis.text": "Code Analysis: 已暂停",
|
||||
"mode.analysis.prefix": "Code Analysis 模式:",
|
||||
"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 状态",
|
||||
"cpptools.status.tagparser": "C/C++ 标记分析器状态",
|
||||
"cpptools.detail.tagparser": "正在初始化...",
|
||||
"cpptools.status.codeanalysis": "C/C++ Code Analysis 状态",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "立即运行",
|
||||
"tagparser.pause.text": "暂停",
|
||||
"tagparser.resume.text": "继续",
|
||||
"intellisense.select.text": "选择编译器",
|
||||
"rescan.intellisense.text": "重新扫描",
|
||||
"rescan.intellisense.tooltip": "重新扫描 IntelliSense",
|
||||
"mode.codeanalysis.status.automatic": "自动",
|
||||
"mode.codeanalysis.status.manual": "手动",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "选项",
|
||||
"startup.codeanalysis.status": "正在启动...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "立即运行",
|
||||
"running.analysis.processed.tooltip": "正在运行: {0}/{1} ({2}%)",
|
||||
"select.a.configuration": "选择配置...",
|
||||
"edit.configuration.ui": "编辑配置(UI)",
|
||||
"edit.configuration.json": "编辑配置(JSON)",
|
||||
"select.configuration.provider": "选择配置提供程序...",
|
||||
"active": "活动",
|
||||
"none": "无",
|
||||
"disable.configuration.provider": "禁用活动配置提供程序(如果适用)。",
|
||||
"select.compile.commands": "选择 compile_commands.json...",
|
||||
"select.workspace": "选择工作区文件夹…",
|
||||
"resume.parsing": "恢复工作区分析",
|
||||
"pause.parsing": "暂停工作区分析",
|
||||
"cancel.analysis": "取消",
|
||||
"resume.analysis": "继续",
|
||||
"pause.analysis": "暂停",
|
||||
"another.analysis": "启动另一个...",
|
||||
"active.analysis": "在活动文件上运行 Code Analysis",
|
||||
"all.analysis": "在所有文件上运行 Code Analysis",
|
||||
"open.analysis": "在打开的文件上运行 Code Analysis"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "此命令已禁用,因为“{0}”被设置为“{1}”。"
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "正在下载 {0}",
|
||||
"installing.progress.description": "正在安装 {0}",
|
||||
"package.manager.missing": "程序包清单不存在",
|
||||
"downloading.package": "正在下载程序包“{0}”",
|
||||
"error.from": "来自 {0} 的错误",
|
||||
"failed.download.url": "未能下载 {0}",
|
||||
"failed.retrying": "失败。正在重试...",
|
||||
"done": "完成!",
|
||||
"waiting.seconds": "正在等待 {0} 秒...",
|
||||
"temp.package.unavailable": "临时包文件不可用",
|
||||
"invalid.download.location.received": "接收的下载位置无效",
|
||||
"invalid.response.code.received": "接收的响应代码无效",
|
||||
"failed.web.error": "失败(错误代码“{0}”)",
|
||||
"web.response.error": "HTTP/HTTPS 响应错误",
|
||||
"invalid.content.length.received": "接收的内容长度位置无效",
|
||||
"invalid.content.received": "收到的内容无效。哈希不正确。",
|
||||
"web.request.error": "HTTP/HTTPS 请求错误",
|
||||
"installing.package": "正在安装包“{0}”",
|
||||
"downloaded.unavailable": "下载的文件不可用",
|
||||
"zip.file.error": "Zip 文件错误",
|
||||
"create.directory.error": "创建目录时出错",
|
||||
"zip.stream.error": "读取 zip 流时出错",
|
||||
"unlink.error": "取消链接文件 {0} 时出错",
|
||||
"rename.error": "重命名文件 {0} 时出错",
|
||||
"read.stream.error": "“读取”流中出错",
|
||||
"write.stream.error": "“写入”流中出错",
|
||||
"file.already.exists": "警告: 文件“{0}”已存在,但未更新。"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "移至參考"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "移至參考",
|
||||
"pending.rename": "等待重新命名",
|
||||
"candidates.for.rename": "要重新命名的候選者"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "剖析工作區",
|
||||
"paused.tagparser.text": "剖析工作區: 已暫停",
|
||||
"complete.tagparser.text": "剖析完成",
|
||||
"initializing.tagparser.text": "正在初始化工作區",
|
||||
"indexing.tagparser.text": "索引工作區",
|
||||
"rescan.tagparse.text": "重新掃描工作區",
|
||||
"c.cpp.parsing.open.files.tooltip": "剖析開啟的檔案",
|
||||
"click.to.preview": "按一下以預覽結果",
|
||||
"updating.intellisense.text": "IntelliSense: 更新中",
|
||||
"idle.intellisense.text": "IntelliSense: 就緒",
|
||||
"absent.intellisense.text": "IntelliSense: 未設定",
|
||||
"running.analysis.text": "Code Analysis: 執行中",
|
||||
"paused.analysis.text": "Code Analysis: 已暫停",
|
||||
"mode.analysis.prefix": "Code Analysis 模式: ",
|
||||
"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 狀態",
|
||||
"cpptools.status.tagparser": "C/C++ 標記剖析器狀態",
|
||||
"cpptools.detail.tagparser": "正在初始化...",
|
||||
"cpptools.status.codeanalysis": "C/C++ Code Analysis 狀態",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "立即執行",
|
||||
"tagparser.pause.text": "暫停",
|
||||
"tagparser.resume.text": "繼續",
|
||||
"intellisense.select.text": "選取編譯器",
|
||||
"rescan.intellisense.text": "重新掃描",
|
||||
"rescan.intellisense.tooltip": "重新掃描 IntelliSense",
|
||||
"mode.codeanalysis.status.automatic": "自動",
|
||||
"mode.codeanalysis.status.manual": "手動",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "選項",
|
||||
"startup.codeanalysis.status": "正在啟動...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "立即執行",
|
||||
"running.analysis.processed.tooltip": "正在執行: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "選取設定...",
|
||||
"edit.configuration.ui": "編輯設定 (UI)",
|
||||
"edit.configuration.json": "編輯設定 (JSON)",
|
||||
"select.configuration.provider": "選取組態提供者...",
|
||||
"active": "使用中",
|
||||
"none": "無",
|
||||
"disable.configuration.provider": "如果適用,停用現有組態提供者。",
|
||||
"select.compile.commands": "選取 compile_commands.json...",
|
||||
"select.workspace": "選取工作區資料夾...",
|
||||
"resume.parsing": "繼續工作區剖析",
|
||||
"pause.parsing": "暫停工作區剖析",
|
||||
"cancel.analysis": "取消",
|
||||
"resume.analysis": "繼續",
|
||||
"pause.analysis": "暫停",
|
||||
"another.analysis": "啟動另一個...",
|
||||
"active.analysis": "在使用中檔案上執行程式碼分析",
|
||||
"all.analysis": "在所有檔案上執行程式碼分析",
|
||||
"open.analysis": "在開啟檔案上執行程式碼分析"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "因為 \"{0}\" 設定為 \"{1}\",所以已停用此命令。"
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "正在下載 {0}",
|
||||
"installing.progress.description": "正在安裝 {0}",
|
||||
"package.manager.missing": "套件資訊清單不存在",
|
||||
"downloading.package": "下載套件 '{0}'",
|
||||
"error.from": "來自 {0} 的錯誤",
|
||||
"failed.download.url": "無法下載 {0}",
|
||||
"failed.retrying": "失敗。正在重試...",
|
||||
"done": "完成!",
|
||||
"waiting.seconds": "等待 {0} 秒...",
|
||||
"temp.package.unavailable": "暫存套件檔案無法使用",
|
||||
"invalid.download.location.received": "收到的下載位置無效",
|
||||
"invalid.response.code.received": "收到的回應碼無效",
|
||||
"failed.web.error": "失敗 (錯誤碼 '{0}')",
|
||||
"web.response.error": "HTTP/HTTPS 回應錯誤",
|
||||
"invalid.content.length.received": "收到的內容長度位置無效",
|
||||
"invalid.content.received": "收到的內容無效。雜湊不正確。",
|
||||
"web.request.error": "HTTP/HTTPS 要求錯誤",
|
||||
"installing.package": "正在安裝套件 '{0}'",
|
||||
"downloaded.unavailable": "下載的檔案無法使用",
|
||||
"zip.file.error": "Zip 檔案錯誤",
|
||||
"create.directory.error": "建立目錄時發生錯誤",
|
||||
"zip.stream.error": "讀取 zip 串流時發生錯誤",
|
||||
"unlink.error": "將檔案 {0} 取消連結時發生錯誤",
|
||||
"rename.error": "重新命名檔案 {0} 時發生錯誤",
|
||||
"read.stream.error": "讀取串流中發生錯誤",
|
||||
"write.stream.error": "寫入串流中發生錯誤",
|
||||
"file.already.exists": "警告: 檔案 '{0}' 已經存在但未更新。"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Přejít na odkaz"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Přejít na odkaz",
|
||||
"pending.rename": "Čeká na přejmenování",
|
||||
"candidates.for.rename": "Kandidáti na přejmenování"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "Parsování pracovního prostoru",
|
||||
"paused.tagparser.text": "Pracovní prostor analýzy: Pozastaveno",
|
||||
"complete.tagparser.text": "Analýza byla dokončena.",
|
||||
"initializing.tagparser.text": "Inicializuje se pracovní prostor",
|
||||
"indexing.tagparser.text": "Pracovní prostor indexování",
|
||||
"rescan.tagparse.text": "Znovu prohledat pracovní prostor",
|
||||
"c.cpp.parsing.open.files.tooltip": "Analýza otevřených souborů.",
|
||||
"click.to.preview": "kliknutím si můžete zobrazit náhled výsledků",
|
||||
"updating.intellisense.text": "IntelliSense: Aktualizace",
|
||||
"idle.intellisense.text": "IntelliSense: Připraveno",
|
||||
"absent.intellisense.text": "IntelliSense: Nenakonfigurováno",
|
||||
"running.analysis.text": "Code Analysis: Spuštěno",
|
||||
"paused.analysis.text": "Code Analysis: Pozastaveno",
|
||||
"mode.analysis.prefix": "Režim Code Analysis: ",
|
||||
"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",
|
||||
"cpptools.status.tagparser": "Stav analyzátoru značky jazyka C/C++",
|
||||
"cpptools.detail.tagparser": "Probíhá inicializace...",
|
||||
"cpptools.status.codeanalysis": "Stav Code Analysis C/C++",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Spustit",
|
||||
"tagparser.pause.text": "Pozastavit",
|
||||
"tagparser.resume.text": "Pokračovat",
|
||||
"intellisense.select.text": "Vyberte kompilátor.",
|
||||
"rescan.intellisense.text": "Prohledat znovu",
|
||||
"rescan.intellisense.tooltip": "Znovu prohledat IntelliSense",
|
||||
"mode.codeanalysis.status.automatic": "Automaticky",
|
||||
"mode.codeanalysis.status.manual": "Ručně",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Možnosti",
|
||||
"startup.codeanalysis.status": "Spouštění...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Spustit",
|
||||
"running.analysis.processed.tooltip": "Spuštěno: {0} / {1} ({2} %)",
|
||||
"select.a.configuration": "Vybrat konfiguraci...",
|
||||
"edit.configuration.ui": "Upravit konfigurace (uživatelské rozhraní)",
|
||||
"edit.configuration.json": "Upravit konfigurace (JSON)",
|
||||
"select.configuration.provider": "Vyberte poskytovatele konfigurací...",
|
||||
"active": "aktivní",
|
||||
"none": "žádné",
|
||||
"disable.configuration.provider": "Zakažte aktivního poskytovatele konfigurací, pokud je to možné.",
|
||||
"select.compile.commands": "Vyberte soubor compile_commands.json...",
|
||||
"select.workspace": "Vyberte složku pracovního prostoru...",
|
||||
"resume.parsing": "Pokračovat v analýze pracovního prostoru",
|
||||
"pause.parsing": "Pozastavit analýzu pracovního prostoru",
|
||||
"cancel.analysis": "Zrušit",
|
||||
"resume.analysis": "Pokračovat",
|
||||
"pause.analysis": "Pozastavit",
|
||||
"another.analysis": "Spustit další…",
|
||||
"active.analysis": "Spustit Code Analysis u aktivního souboru",
|
||||
"all.analysis": "Spustit Code Analysis u všech souborů",
|
||||
"open.analysis": "Spustit Code Analysis při otevírání souborů"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "Tento příkaz se zakázal, protože {0} je nastavené na {1}."
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "Stahuje se {0}.",
|
||||
"installing.progress.description": "Instaluje se {0}.",
|
||||
"package.manager.missing": "Manifest balíčku neexistuje.",
|
||||
"downloading.package": "Stahuje se balíček {0}. ",
|
||||
"error.from": "Chyba ze souboru {0}",
|
||||
"failed.download.url": "Nepovedlo se stáhnout {0}.",
|
||||
"failed.retrying": "Nepovedlo se. Pokus se opakuje...",
|
||||
"done": "Hotovo!",
|
||||
"waiting.seconds": "Čeká se {0} s...",
|
||||
"temp.package.unavailable": "Soubor dočasného balíčku není k dispozici.",
|
||||
"invalid.download.location.received": "Přijato neplatné umístění pro stahování",
|
||||
"invalid.response.code.received": "Přijat neplatný kód odpovědi",
|
||||
"failed.web.error": "neúspěšné (kód chyby {0})",
|
||||
"web.response.error": "Chyba odpovědi HTTP/HTTPS",
|
||||
"invalid.content.length.received": "Přijato neplatné umístění délky obsahu",
|
||||
"invalid.content.received": "Přijal se neplatný obsah. Hodnota hash je nesprávná.",
|
||||
"web.request.error": "Chyba požadavku HTTP/HTTPS",
|
||||
"installing.package": "Instaluje se balíček {0}",
|
||||
"downloaded.unavailable": "Stažený soubor není k dispozici.",
|
||||
"zip.file.error": "Chyba souboru ZIP",
|
||||
"create.directory.error": "Při vytváření adresáře došlo k chybě.",
|
||||
"zip.stream.error": "Chyba při čtení streamu ZIP",
|
||||
"unlink.error": "Při rušení propojení souboru {0} došlo k chybě.",
|
||||
"rename.error": "Při přejmenování souboru {0} došlo k chybě.",
|
||||
"read.stream.error": "Ve streamu pro čtení došlo k chybě.",
|
||||
"write.stream.error": "Ve streamu pro zápis došlo k chybě.",
|
||||
"file.already.exists": "Upozornění: Soubor {0} už existuje a neaktualizoval se."
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Zu Verweis wechseln"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Zu Verweis wechseln",
|
||||
"pending.rename": "Umbenennung steht aus",
|
||||
"candidates.for.rename": "Kandidaten für die Umbenennung"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "Parsing-Arbeitsbereich",
|
||||
"paused.tagparser.text": "Parsing-Arbeitsbereich: Angehalten",
|
||||
"complete.tagparser.text": "Parsing abgeschlossen",
|
||||
"initializing.tagparser.text": "Arbeitsbereich wird initialisiert",
|
||||
"indexing.tagparser.text": "Arbeitsbereich für die Indizierung",
|
||||
"rescan.tagparse.text": "Arbeitsbereich neu einlesen",
|
||||
"c.cpp.parsing.open.files.tooltip": "Offene Dateien werden geparst",
|
||||
"click.to.preview": "Klicken Sie, um eine Vorschau der Ergebnisse anzuzeigen.",
|
||||
"updating.intellisense.text": "IntelliSense: Aktualisieren",
|
||||
"idle.intellisense.text": "IntelliSense: Bereit",
|
||||
"absent.intellisense.text": "IntelliSense: Nicht konfiguriert",
|
||||
"running.analysis.text": "Code Analysis: Wird ausgeführt",
|
||||
"paused.analysis.text": "Code Analysis: Angehalten",
|
||||
"mode.analysis.prefix": "Code Analysis-Modus: ",
|
||||
"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++-Referenzenstatus",
|
||||
"cpptools.status.intellisense": "C/C++-IntelliSense-Status",
|
||||
"cpptools.status.tagparser": "Status des C/C++-Tagparsers",
|
||||
"cpptools.detail.tagparser": "Wird initialisiert...",
|
||||
"cpptools.status.codeanalysis": "C/C++-Code Analysis-Status",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Jetzt ausführen",
|
||||
"tagparser.pause.text": "Anhalten",
|
||||
"tagparser.resume.text": "Fortsetzen",
|
||||
"intellisense.select.text": "Compiler auswählen",
|
||||
"rescan.intellisense.text": "Neu einlesen",
|
||||
"rescan.intellisense.tooltip": "IntelliSense neu einlesen",
|
||||
"mode.codeanalysis.status.automatic": "Automatisch",
|
||||
"mode.codeanalysis.status.manual": "Manuell",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Optionen",
|
||||
"startup.codeanalysis.status": "Wird gestartet...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Jetzt ausführen",
|
||||
"running.analysis.processed.tooltip": "Wird ausgeführt: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "Konfiguration auswählen...",
|
||||
"edit.configuration.ui": "Konfigurationen bearbeiten (Benutzeroberfläche)",
|
||||
"edit.configuration.json": "Konfigurationen bearbeiten (JSON)",
|
||||
"select.configuration.provider": "Konfigurationsanbieter auswählen...",
|
||||
"active": "aktiv",
|
||||
"none": "keine",
|
||||
"disable.configuration.provider": "Deaktivieren Sie den aktiven Konfigurationsanbieter, falls zutreffend.",
|
||||
"select.compile.commands": "compile_commands.json-Datei auswählen...",
|
||||
"select.workspace": "Arbeitsbereichsordner auswählen...",
|
||||
"resume.parsing": "Parsing des Arbeitsbereichs fortsetzen",
|
||||
"pause.parsing": "Parsing des Arbeitsbereichs anhalten",
|
||||
"cancel.analysis": "Abbrechen",
|
||||
"resume.analysis": "Fortsetzen",
|
||||
"pause.analysis": "Anhalten",
|
||||
"another.analysis": "Starten Sie eine weitere...",
|
||||
"active.analysis": "Code Analysis auf \"Aktive Dateien\" ausführen",
|
||||
"all.analysis": "Code Analysis auf \"Alle Dateien\" ausführen",
|
||||
"open.analysis": "Code Analysis auf \"Dateien öffnen\" ausführen"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "Dieser Befehl ist deaktiviert, weil \"{0}\" auf \"{1}\" festgelegt ist."
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "\"{0}\" wird heruntergeladen.",
|
||||
"installing.progress.description": "\"{0}\" wird installiert.",
|
||||
"package.manager.missing": "Das Paketmanifest ist nicht vorhanden.",
|
||||
"downloading.package": "Paket \"{0}\" wird heruntergeladen.",
|
||||
"error.from": "Fehler von \"{0}\".",
|
||||
"failed.download.url": "Fehler beim Herunterladen von \"{0}\".",
|
||||
"failed.retrying": "Fehler. Vorgang wird wiederholt...",
|
||||
"done": "Fertig",
|
||||
"waiting.seconds": "{0} Sekunden lang warten...",
|
||||
"temp.package.unavailable": "Temporäre Paketdatei nicht verfügbar.",
|
||||
"invalid.download.location.received": "Ungültiger Downloadspeicherort empfangen.",
|
||||
"invalid.response.code.received": "Ungültiger Antwortcode empfangen.",
|
||||
"failed.web.error": "Fehler (Fehlercode: {0})",
|
||||
"web.response.error": "HTTP/HTTPS-Antwortfehler",
|
||||
"invalid.content.length.received": "Ungültige Content-Length-Position empfangen.",
|
||||
"invalid.content.received": "Ungültige Inhalte empfangen: Der Hash ist falsch.",
|
||||
"web.request.error": "HTTP/HTTPS-Anforderungsfehler",
|
||||
"installing.package": "Paket \"{0}\" wird installiert",
|
||||
"downloaded.unavailable": "Heruntergeladene Datei nicht verfügbar",
|
||||
"zip.file.error": "Fehler in ZIP-Datei.",
|
||||
"create.directory.error": "Fehler beim Erstellen des Verzeichnisses.",
|
||||
"zip.stream.error": "Fehler beim Lesen des ZIP-Datenstroms.",
|
||||
"unlink.error": "Fehler beim Aufheben der Verknüpfung für die Datei \"{0}\".",
|
||||
"rename.error": "Fehler beim Umbenennen der Datei\"{0}\".",
|
||||
"read.stream.error": "Fehler im Lesedatenstrom.",
|
||||
"write.stream.error": "Fehler im Schreibdatenstrom.",
|
||||
"file.already.exists": "Warnung: Die Datei \"{0}\" ist bereits vorhanden und wurde nicht aktualisiert."
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Ir a referencia"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Ir a referencia",
|
||||
"pending.rename": "Cambio de nombre pendiente",
|
||||
"candidates.for.rename": "Candidatos a cambios de nombre"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "Analizar área de trabajo",
|
||||
"paused.tagparser.text": "Área de trabajo de análisis: en pausa",
|
||||
"complete.tagparser.text": "Análisis finalizado",
|
||||
"initializing.tagparser.text": "Inicializando área de trabajo",
|
||||
"indexing.tagparser.text": "Área de trabajo de indexación",
|
||||
"rescan.tagparse.text": "Volver a examinar el área de trabajo",
|
||||
"c.cpp.parsing.open.files.tooltip": "Analizando archivos abiertos",
|
||||
"click.to.preview": "hacer clic para obtener una vista previa de los resultados",
|
||||
"updating.intellisense.text": "IntelliSense: actualización",
|
||||
"idle.intellisense.text": "IntelliSense: listo",
|
||||
"absent.intellisense.text": "IntelliSense: no configurado",
|
||||
"running.analysis.text": "Code Analysis: en ejecución",
|
||||
"paused.analysis.text": "Code Analysis: en pausa",
|
||||
"mode.analysis.prefix": "Modo de Code Analysis: ",
|
||||
"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++",
|
||||
"cpptools.status.tagparser": "Estado del analizador de etiquetas de C/C++",
|
||||
"cpptools.detail.tagparser": "Inicializando...",
|
||||
"cpptools.status.codeanalysis": "Estado de Code Analysis de C/C++",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Ejecutar ahora",
|
||||
"tagparser.pause.text": "Pausa",
|
||||
"tagparser.resume.text": "Reanudar",
|
||||
"intellisense.select.text": "Seleccione un compilador",
|
||||
"rescan.intellisense.text": "Volver a examinar",
|
||||
"rescan.intellisense.tooltip": "Volver a examinar IntelliSense",
|
||||
"mode.codeanalysis.status.automatic": "Automático",
|
||||
"mode.codeanalysis.status.manual": "Manual",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Opciones",
|
||||
"startup.codeanalysis.status": "Iniciando...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Ejecutar ahora",
|
||||
"running.analysis.processed.tooltip": "En ejecución: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "Seleccione una configuración...",
|
||||
"edit.configuration.ui": "Editar configuraciones (interfaz de usuario)",
|
||||
"edit.configuration.json": "Editar configuraciones (JSON)",
|
||||
"select.configuration.provider": "Seleccione un proveedor de configuración...",
|
||||
"active": "activar",
|
||||
"none": "ninguno",
|
||||
"disable.configuration.provider": "Deshabilite el proveedor de configuración activo, si procede.",
|
||||
"select.compile.commands": "Seleccione un archivo compile_commands.json...",
|
||||
"select.workspace": "Seleccione una carpeta del área de trabajo...",
|
||||
"resume.parsing": "Reanudar el análisis de área de trabajo",
|
||||
"pause.parsing": "Pausar el análisis de área de trabajo",
|
||||
"cancel.analysis": "Cancelar",
|
||||
"resume.analysis": "Reanudar",
|
||||
"pause.analysis": "Pausa",
|
||||
"another.analysis": "Iniciar otro...",
|
||||
"active.analysis": "Ejecutar Code Analysis en el archivo activo",
|
||||
"all.analysis": "Ejecutar análisis de código en todos los archivos",
|
||||
"open.analysis": "Ejecutar análisis de código en archivos abiertos"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "Este comando está deshabilitado porque \"{0}\" está establecido en \"{1}\"."
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "Descargando {0}",
|
||||
"installing.progress.description": "Instalando {0}",
|
||||
"package.manager.missing": "El manifiesto del paquete no existe",
|
||||
"downloading.package": "Descargando el paquete \"{0}\" ",
|
||||
"error.from": "Error de {0}",
|
||||
"failed.download.url": "No se pudo descargar {0}",
|
||||
"failed.retrying": "Error. Reintentando...",
|
||||
"done": "¡Listo!",
|
||||
"waiting.seconds": "Esperando {0} segundos...",
|
||||
"temp.package.unavailable": "El archivo de paquete temporal no está disponible",
|
||||
"invalid.download.location.received": "Se ha recibido una ubicación de descarga no válida.",
|
||||
"invalid.response.code.received": "Se ha recibido un código de respuesta no válido.",
|
||||
"failed.web.error": "Error (código de error: {0})",
|
||||
"web.response.error": "Error de respuesta HTTP/HTTPS",
|
||||
"invalid.content.length.received": "Se ha recibido una ubicación con una longitud de contenido no válida.",
|
||||
"invalid.content.received": "Se ha recibido contenido no válido. El hash es incorrecto.",
|
||||
"web.request.error": "Error de solicitud HTTP/HTTPS",
|
||||
"installing.package": "Instalando el paquete \"{0}\"",
|
||||
"downloaded.unavailable": "El archivo descargado no está disponible",
|
||||
"zip.file.error": "Error de archivo ZIP",
|
||||
"create.directory.error": "Error al crear el directorio",
|
||||
"zip.stream.error": "Error al leer la secuencia ZIP",
|
||||
"unlink.error": "Error al desvincular el archivo {0}",
|
||||
"rename.error": "Error al cambiar el nombre del archivo {0}",
|
||||
"read.stream.error": "Error en la secuencia de lectura",
|
||||
"write.stream.error": "Error en la secuencia de escritura",
|
||||
"file.already.exists": "Advertencia: El archivo \"{0}\" ya existe y no se ha actualizado."
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Atteindre la référence"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Atteindre la référence",
|
||||
"pending.rename": "Renommage en attente",
|
||||
"candidates.for.rename": "Candidats pour le renommage"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "Analyse de l’espace de travail",
|
||||
"paused.tagparser.text": "Analyse de l’espace de travail : suspendu",
|
||||
"complete.tagparser.text": "Analyse terminée",
|
||||
"initializing.tagparser.text": "Initialisation de l’espace de travail",
|
||||
"indexing.tagparser.text": "Indexation de l’espace de travail",
|
||||
"rescan.tagparse.text": "Réanalyser l'espace de travail",
|
||||
"c.cpp.parsing.open.files.tooltip": "Analyse des fichiers ouverts",
|
||||
"click.to.preview": "cliquez pour voir un aperçu des résultats",
|
||||
"updating.intellisense.text": "IntelliSense : mise à jour",
|
||||
"idle.intellisense.text": "IntelliSense : prêt",
|
||||
"absent.intellisense.text": "IntelliSense : non configuré",
|
||||
"running.analysis.text": "Code Analysis : en cours d’exécution",
|
||||
"paused.analysis.text": "Code Analysis : suspendu",
|
||||
"mode.analysis.prefix": "Mode Code Analysis : ",
|
||||
"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++",
|
||||
"cpptools.status.tagparser": "État de l’analyseur de balises C/C++",
|
||||
"cpptools.detail.tagparser": "Initialisation en cours...",
|
||||
"cpptools.status.codeanalysis": "État du Code Analysis C/C++",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Exécuter maintenant",
|
||||
"tagparser.pause.text": "Pause",
|
||||
"tagparser.resume.text": "Reprendre",
|
||||
"intellisense.select.text": "Sélectionnez un compilateur",
|
||||
"rescan.intellisense.text": "Relancer l'analyse",
|
||||
"rescan.intellisense.tooltip": "Relancer l'analyse IntelliSense",
|
||||
"mode.codeanalysis.status.automatic": "Automatique",
|
||||
"mode.codeanalysis.status.manual": "Manuel",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Options",
|
||||
"startup.codeanalysis.status": "Démarrage en cours...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Exécuter maintenant",
|
||||
"running.analysis.processed.tooltip": "En cours d’exécution : {0}/{1} ({2} %)",
|
||||
"select.a.configuration": "Sélectionner une configuration...",
|
||||
"edit.configuration.ui": "Modifier les configurations (IU)",
|
||||
"edit.configuration.json": "Modifier les configurations (JSON)",
|
||||
"select.configuration.provider": "Sélectionner un fournisseur de configuration...",
|
||||
"active": "active",
|
||||
"none": "aucun",
|
||||
"disable.configuration.provider": "Désactivez le fournisseur de configuration actif, le cas échéant.",
|
||||
"select.compile.commands": "Sélectionner un fichier compile_commands.json...",
|
||||
"select.workspace": "Sélectionner un dossier d'espace de travail...",
|
||||
"resume.parsing": "Reprendre l’analyse de l’espace de travail",
|
||||
"pause.parsing": "Suspendre l’analyse de l’espace de travail",
|
||||
"cancel.analysis": "Annuler",
|
||||
"resume.analysis": "Reprendre",
|
||||
"pause.analysis": "Suspendre",
|
||||
"another.analysis": "Démarrer une autre...",
|
||||
"active.analysis": "Exécuter Code Analysis sur le fichier actif",
|
||||
"all.analysis": "Exécuter une analyse de code sur Tous les fichiers",
|
||||
"open.analysis": "Exécuter une analyse de code sur Ouvrir les fichiers"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "Cette commande est désactivée, car \"{0}\" est défini sur \"{1}\"."
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "Téléchargement de {0} en cours",
|
||||
"installing.progress.description": "Installation de {0}",
|
||||
"package.manager.missing": "Le manifeste du package n'existe pas",
|
||||
"downloading.package": "Téléchargement du package '{0}'",
|
||||
"error.from": "Erreur de {0}",
|
||||
"failed.download.url": "Le téléchargement de {0} a échoué",
|
||||
"failed.retrying": "Échec. Nouvelle tentative...",
|
||||
"done": "Terminé !",
|
||||
"waiting.seconds": "Attente de {0} secondes...",
|
||||
"temp.package.unavailable": "Fichier de package temporaire non disponible",
|
||||
"invalid.download.location.received": "Emplacement de téléchargement reçu non valide",
|
||||
"invalid.response.code.received": "Code de réponse reçu non valide",
|
||||
"failed.web.error": "échec (code d'erreur '{0}')",
|
||||
"web.response.error": "Erreur de réponse HTTP/HTTPS",
|
||||
"invalid.content.length.received": "Emplacement de longueur de contenu reçu non valide",
|
||||
"invalid.content.received": "Contenu non valide reçu. Code de hachage incorrect.",
|
||||
"web.request.error": "Erreur de requête HTTP/HTTPS",
|
||||
"installing.package": "Installation du package '{0}'",
|
||||
"downloaded.unavailable": "Fichier téléchargé non disponible",
|
||||
"zip.file.error": "Erreur du fichier zip",
|
||||
"create.directory.error": "Erreur de création du répertoire",
|
||||
"zip.stream.error": "Erreur de lecture du flux zip",
|
||||
"unlink.error": "Erreur de dissociation du fichier {0}",
|
||||
"rename.error": "Erreur de renommage du fichier {0}",
|
||||
"read.stream.error": "Erreur du flux de lecture",
|
||||
"write.stream.error": "Erreur du flux d'écriture",
|
||||
"file.already.exists": "Avertissement : Le fichier '{0}' existe déjà et n'a pas été mis à jour."
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Vai a riferimento"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Vai a riferimento",
|
||||
"pending.rename": "Ridenominazione in sospeso",
|
||||
"candidates.for.rename": "Candidati per ridenominazione"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "Analisi area di lavoro",
|
||||
"paused.tagparser.text": "Analisi area di lavoro: Sospesa",
|
||||
"complete.tagparser.text": "Analisi completata",
|
||||
"initializing.tagparser.text": "Inizializzazione dell'area di lavoro",
|
||||
"indexing.tagparser.text": "Area di lavoro di indicizzazione",
|
||||
"rescan.tagparse.text": "Ripeti analisi area di lavoro",
|
||||
"c.cpp.parsing.open.files.tooltip": "Analisi dei file aperti",
|
||||
"click.to.preview": "fare clic per visualizzare l'anteprima dei risultati",
|
||||
"updating.intellisense.text": "IntelliSense: aggiornamento",
|
||||
"idle.intellisense.text": "IntelliSense: Pronto",
|
||||
"absent.intellisense.text": "IntelliSense: Non configurato",
|
||||
"running.analysis.text": "Code Analysis: In esecuzione",
|
||||
"paused.analysis.text": "Code Analysis: Sospeso",
|
||||
"mode.analysis.prefix": "Modalità Code Analysis: ",
|
||||
"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 di C/C++",
|
||||
"c.cpp.references.statusbar": "Stato riferimenti C/C++",
|
||||
"cpptools.status.intellisense": "Stato IntelliSense C/C++",
|
||||
"cpptools.status.tagparser": "Stato del parser del tag C/C++",
|
||||
"cpptools.detail.tagparser": "Inizializzazione...",
|
||||
"cpptools.status.codeanalysis": "Stato Code Analysis C/C++",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Esegui",
|
||||
"tagparser.pause.text": "Sospendi",
|
||||
"tagparser.resume.text": "Riprendi",
|
||||
"intellisense.select.text": "Seleziona un compilatore",
|
||||
"rescan.intellisense.text": "Ripeti analisi",
|
||||
"rescan.intellisense.tooltip": "Ripeti analisi di IntelliSense",
|
||||
"mode.codeanalysis.status.automatic": "Automatico",
|
||||
"mode.codeanalysis.status.manual": "Manuale",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Opzioni",
|
||||
"startup.codeanalysis.status": "Avvio...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Esegui",
|
||||
"running.analysis.processed.tooltip": "In esecuzione: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "Seleziona una configurazione...",
|
||||
"edit.configuration.ui": "Modifica configurazioni (interfaccia utente)",
|
||||
"edit.configuration.json": "Modifica configurazioni (JSON)",
|
||||
"select.configuration.provider": "Seleziona un provider di configurazione...",
|
||||
"active": "attivo",
|
||||
"none": "nessuno",
|
||||
"disable.configuration.provider": "Disabilita il provider di configurazione attivo, se applicabile.",
|
||||
"select.compile.commands": "Seleziona un file compile_commands.json...",
|
||||
"select.workspace": "Seleziona una cartella dell'area di lavoro...",
|
||||
"resume.parsing": "Riprendi analisi area di lavoro",
|
||||
"pause.parsing": "Sospendi analisi area di lavoro",
|
||||
"cancel.analysis": "Annulla",
|
||||
"resume.analysis": "Riprendi",
|
||||
"pause.analysis": "Sospendi",
|
||||
"another.analysis": "Avvia un'altra...",
|
||||
"active.analysis": "Esegui analisi del codice su File attivo",
|
||||
"all.analysis": "Esegui analisi del codice su Tutti i file",
|
||||
"open.analysis": "Esegui analisi del codice su Apri file"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "Questo comando è disabilitato perché \"{0}\" è impostato su \"{1}\"."
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "Download di {0}",
|
||||
"installing.progress.description": "Installazione di {0}",
|
||||
"package.manager.missing": "Il manifesto del pacchetto non esiste",
|
||||
"downloading.package": "Download del pacchetto '{0}' ",
|
||||
"error.from": "Errore restituito da {0}",
|
||||
"failed.download.url": "Non è stato possibile scaricare {0}",
|
||||
"failed.retrying": "Errore. Verrà effettuato un nuovo tentativo...",
|
||||
"done": "Operazione completata.",
|
||||
"waiting.seconds": "In attesa per {0} secondi...",
|
||||
"temp.package.unavailable": "File del pacchetto temporaneo non disponibile",
|
||||
"invalid.download.location.received": "È stato ricevuto un percorso di download non valido",
|
||||
"invalid.response.code.received": "È stato ricevuto un codice di risposta non valido",
|
||||
"failed.web.error": "errore (codice errore '{0}')",
|
||||
"web.response.error": "Errore della risposta HTTP/HTTPS",
|
||||
"invalid.content.length.received": "È stata ricevuta una lunghezza del contenuto non valida",
|
||||
"invalid.content.received": "È stato ricevuto contenuto non valido. L'hash non è corretto.",
|
||||
"web.request.error": "Errore della richiesta HTTP/HTTPS",
|
||||
"installing.package": "Installazione del pacchetto '{0}'",
|
||||
"downloaded.unavailable": "Il file scaricato non è disponibile",
|
||||
"zip.file.error": "Errore del file ZIP",
|
||||
"create.directory.error": "Si è verificato un errore durante la creazione della directory",
|
||||
"zip.stream.error": "Si è verificato un errore durante la lettura del flusso ZIP",
|
||||
"unlink.error": "Si è verificato durante lo scollegamento del file {0}",
|
||||
"rename.error": "Si è verificato durante la ridenominazione del file {0}",
|
||||
"read.stream.error": "Si è verificato un errore durante la lettura del flusso",
|
||||
"write.stream.error": "Si è verificato un errore durante la scrittura del flusso",
|
||||
"file.already.exists": "Avviso: il file '{0}' esiste già e non è stato aggiornato."
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "参照へ移動"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "参照へ移動",
|
||||
"pending.rename": "保留中の名前変更",
|
||||
"candidates.for.rename": "名前変更候補"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "ワークスペースを解析しています",
|
||||
"paused.tagparser.text": "ワークスペースを解析しています: 一時停止",
|
||||
"complete.tagparser.text": "解析完了",
|
||||
"initializing.tagparser.text": "ワークスペースの初期化",
|
||||
"indexing.tagparser.text": "ワークスペースのインデックス作成",
|
||||
"rescan.tagparse.text": "ワークスペースの再スキャン",
|
||||
"c.cpp.parsing.open.files.tooltip": "開いているファイルを解析しています",
|
||||
"click.to.preview": "クリックして結果をプレビューします",
|
||||
"updating.intellisense.text": "IntelliSense: 更新中",
|
||||
"idle.intellisense.text": "IntelliSense: 準備完了",
|
||||
"absent.intellisense.text": "IntelliSense: 未構成",
|
||||
"running.analysis.text": "Code Analysis: 実行中",
|
||||
"paused.analysis.text": "Code Analysis: 一時停止",
|
||||
"mode.analysis.prefix": "Code Analysis モード: ",
|
||||
"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 の状態",
|
||||
"cpptools.status.tagparser": "C/C + + タグ パーサーの状態",
|
||||
"cpptools.detail.tagparser": "初期化しています...",
|
||||
"cpptools.status.codeanalysis": "C/C++ Code Analysis の状態",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "直ちに実行",
|
||||
"tagparser.pause.text": "一時停止",
|
||||
"tagparser.resume.text": "再開",
|
||||
"intellisense.select.text": "コンパイラを選択する",
|
||||
"rescan.intellisense.text": "再スキャン",
|
||||
"rescan.intellisense.tooltip": "IntelliSense の再スキャン",
|
||||
"mode.codeanalysis.status.automatic": "自動",
|
||||
"mode.codeanalysis.status.manual": "手動",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "オプション",
|
||||
"startup.codeanalysis.status": "開始しています...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "直ちに実行",
|
||||
"running.analysis.processed.tooltip": "実行中: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "構成を選択する...",
|
||||
"edit.configuration.ui": "構成の編集 (UI)",
|
||||
"edit.configuration.json": "構成の編集 (JSON)",
|
||||
"select.configuration.provider": "構成プロバイダーを選択してください...",
|
||||
"active": "アクティブ",
|
||||
"none": "なし",
|
||||
"disable.configuration.provider": "該当する場合は、アクティブな構成プロバイダーを無効にします。",
|
||||
"select.compile.commands": "compile_commands.json を選択してください...",
|
||||
"select.workspace": "ワークスペース フォルダーを選択します...",
|
||||
"resume.parsing": "ワークスペースの解析の再開",
|
||||
"pause.parsing": "ワークスペースの解析の一時停止",
|
||||
"cancel.analysis": "キャンセル",
|
||||
"resume.analysis": "再開",
|
||||
"pause.analysis": "一時停止",
|
||||
"another.analysis": "別のファイルを開始...",
|
||||
"active.analysis": "アクティブ ファイルで Code Analysis を実行する",
|
||||
"all.analysis": "すべてのファイルで Code Analysis を実行する",
|
||||
"open.analysis": "開いているファイルで Code Analysis を実行する"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "\"{0}\" が \"{1}\" に設定されているため、このコマンドは無効です。"
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "{0} のダウンロード中",
|
||||
"installing.progress.description": "{0} のインストール中",
|
||||
"package.manager.missing": "パッケージ マニフェストが存在しません",
|
||||
"downloading.package": "パッケージ '{0}' をダウンロードしています",
|
||||
"error.from": "{0} からのエラー",
|
||||
"failed.download.url": "{0} をダウンロードできませんでした",
|
||||
"failed.retrying": "失敗しました。再試行しています...",
|
||||
"done": "完了しました!",
|
||||
"waiting.seconds": "待機中 ({0} 秒)...",
|
||||
"temp.package.unavailable": "一時パッケージ ファイルを使用できません",
|
||||
"invalid.download.location.received": "無効なダウンロード場所を受信しました",
|
||||
"invalid.response.code.received": "無効な応答コードを受信しました",
|
||||
"failed.web.error": "失敗 (エラー コード '{0}')",
|
||||
"web.response.error": "HTTP/HTTPS 応答エラー",
|
||||
"invalid.content.length.received": "無効なコンテンツの長さの場所を受信しました",
|
||||
"invalid.content.received": "無効な内容が受信されました。ハッシュが正しくありません。",
|
||||
"web.request.error": "HTTP/HTTPS 要求エラー",
|
||||
"installing.package": "パッケージ '{0}' をインストールしています",
|
||||
"downloaded.unavailable": "ダウンロードしたファイルは利用できません",
|
||||
"zip.file.error": "Zip ファイルのエラー",
|
||||
"create.directory.error": "ディレクトリの作成中にエラーが発生しました",
|
||||
"zip.stream.error": "zip ストリームの読み取りでエラーが発生しました",
|
||||
"unlink.error": "ファイル {0} のリンク解除中にエラーが発生しました",
|
||||
"rename.error": "ファイル {0} の名前変更でエラーが発生しました",
|
||||
"read.stream.error": "ストリームの読み取りでエラーが発生しました",
|
||||
"write.stream.error": "ストリームの書き込みでエラーが発生しました",
|
||||
"file.already.exists": "警告: ファイル '{0}' は既に存在するため、更新されませんでした。"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "참조로 이동"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "참조로 이동",
|
||||
"pending.rename": "보류 중인 이름 바꾸기",
|
||||
"candidates.for.rename": "이름 바꾸기 후보"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "작업 영역 구문 분석",
|
||||
"paused.tagparser.text": "작업 영역 구문 분석: 일시 중지됨",
|
||||
"complete.tagparser.text": "구문 분석이 완료되었습니다.",
|
||||
"initializing.tagparser.text": "작업 영역 초기화",
|
||||
"indexing.tagparser.text": "작업 영역 인덱싱",
|
||||
"rescan.tagparse.text": "작업 영역 다시 검사",
|
||||
"c.cpp.parsing.open.files.tooltip": "열린 파일을 구문 분석하는 중",
|
||||
"click.to.preview": "결과를 미리 보려면 클릭",
|
||||
"updating.intellisense.text": "IntelliSense: 업데이트 중",
|
||||
"idle.intellisense.text": "IntelliSense: 준비 완료",
|
||||
"absent.intellisense.text": "IntelliSense: 구성되지 않음",
|
||||
"running.analysis.text": "Code Analysis: 실행 중",
|
||||
"paused.analysis.text": "Code Analysis: 일시 중지됨",
|
||||
"mode.analysis.prefix": "Code Analysis 모드: ",
|
||||
"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 상태",
|
||||
"cpptools.status.tagparser": "C/C++ 태그 파서 상태",
|
||||
"cpptools.detail.tagparser": "초기화하는 중...",
|
||||
"cpptools.status.codeanalysis": "C/C++ Code Analysis 상태",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "지금 실행",
|
||||
"tagparser.pause.text": "일시 중지",
|
||||
"tagparser.resume.text": "다시 시작",
|
||||
"intellisense.select.text": "컴파일러 선택",
|
||||
"rescan.intellisense.text": "다시 검사",
|
||||
"rescan.intellisense.tooltip": "IntelliSense 다시 검사",
|
||||
"mode.codeanalysis.status.automatic": "자동",
|
||||
"mode.codeanalysis.status.manual": "수동",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "옵션",
|
||||
"startup.codeanalysis.status": "시작 중...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "지금 실행",
|
||||
"running.analysis.processed.tooltip": "실행 중: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "구성 선택...",
|
||||
"edit.configuration.ui": "구성 편집(UI)",
|
||||
"edit.configuration.json": "구성 편집(JSON)",
|
||||
"select.configuration.provider": "구성 공급자 선택...",
|
||||
"active": "활성",
|
||||
"none": "없음",
|
||||
"disable.configuration.provider": "해당하는 경우 활성 구성 공급자를 사용하지 않도록 설정합니다.",
|
||||
"select.compile.commands": "compile_commands.json 선택...",
|
||||
"select.workspace": "작업 영역 폴더 선택...",
|
||||
"resume.parsing": "작업 영역 구문 분석 다시 시작",
|
||||
"pause.parsing": "작업 영역 구문 분석 일시 중지",
|
||||
"cancel.analysis": "취소",
|
||||
"resume.analysis": "다시 시작",
|
||||
"pause.analysis": "일시 중지",
|
||||
"another.analysis": "다른 시작...",
|
||||
"active.analysis": "활성 파일에서 코드 분석 실행",
|
||||
"all.analysis": "모든 파일에 대한 코드 분석 실행",
|
||||
"open.analysis": "열린 파일에서 코드 분석 실행"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "\"{0}\"이(가) \"{1}\"(으)로 설정되어 있으므로 이 명령을 사용할 수 없습니다."
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "{0} 다운로드 중",
|
||||
"installing.progress.description": "{0} 설치 중",
|
||||
"package.manager.missing": "패키지 매니페스트가 없습니다.",
|
||||
"downloading.package": "'{0}' 패키지를 다운로드하는 중 ",
|
||||
"error.from": "{0}의 오류",
|
||||
"failed.download.url": "{0}을(를) 다운로드하지 못했습니다.",
|
||||
"failed.retrying": "실패했습니다. 다시 시도하는 중...",
|
||||
"done": "완료되었습니다.",
|
||||
"waiting.seconds": "{0}초 동안 기다리는 중...",
|
||||
"temp.package.unavailable": "임시 패키지 파일을 사용할 수 없음",
|
||||
"invalid.download.location.received": "잘못된 다운로드 위치가 수신되었습니다.",
|
||||
"invalid.response.code.received": "잘못된 응답 코드가 수신되었습니다.",
|
||||
"failed.web.error": "실패(오류 코드 '{0}')",
|
||||
"web.response.error": "HTTP/HTTPS 응답 오류",
|
||||
"invalid.content.length.received": "잘못된 콘텐츠 길이 위치가 수신되었습니다.",
|
||||
"invalid.content.received": "잘못된 콘텐츠를 받았습니다. 해시가 올바르지 않습니다.",
|
||||
"web.request.error": "HTTP/HTTPS 요청 오류",
|
||||
"installing.package": "'{0}' 패키지를 설치하는 중",
|
||||
"downloaded.unavailable": "다운로드한 파일을 사용할 수 없음",
|
||||
"zip.file.error": "Zip 파일 오류",
|
||||
"create.directory.error": "디렉터리를 만드는 동안 오류가 발생했습니다.",
|
||||
"zip.stream.error": "zip 스트림을 읽는 동안 오류가 발생했습니다.",
|
||||
"unlink.error": "{0} 파일의 연결을 해제하는 동안 오류가 발생했습니다.",
|
||||
"rename.error": "{0} 파일의 이름을 바꾸는 동안 오류가 발생했습니다.",
|
||||
"read.stream.error": "읽기 스트림의 오류",
|
||||
"write.stream.error": "쓰기 스트림의 오류",
|
||||
"file.already.exists": "경고: '{0}' 파일이 이미 있으므로 업데이트되지 않았습니다."
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Przejdź do odwołania"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Przejdź do odwołania",
|
||||
"pending.rename": "Oczekiwanie na zmianę nazwy",
|
||||
"candidates.for.rename": "Kandydaci do zmiany nazwy"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "Analizowanie obszaru roboczego",
|
||||
"paused.tagparser.text": "Analizowanie obszaru roboczego: wstrzymane",
|
||||
"complete.tagparser.text": "Analizowanie zakończone",
|
||||
"initializing.tagparser.text": "Inicjowanie obszaru roboczego",
|
||||
"indexing.tagparser.text": "Indeksowanie obszaru roboczego",
|
||||
"rescan.tagparse.text": "Ponowne skanowanie obszaru roboczego",
|
||||
"c.cpp.parsing.open.files.tooltip": "Analizowanie otwartych plików",
|
||||
"click.to.preview": "kliknij, aby wyświetlić podgląd wyników",
|
||||
"updating.intellisense.text": "IntelliSense: aktualizowanie",
|
||||
"idle.intellisense.text": "IntelliSense: gotowe",
|
||||
"absent.intellisense.text": "IntelliSense: nieskonfigurowane",
|
||||
"running.analysis.text": "Analiza kodu: uruchamianie",
|
||||
"paused.analysis.text": "Analiza kodu: wstrzymano",
|
||||
"mode.analysis.prefix": "Tryb analizy kodu: ",
|
||||
"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++",
|
||||
"cpptools.status.tagparser": "Stan parsera tagów języka C/C++",
|
||||
"cpptools.detail.tagparser": "Trwa inicjowanie...",
|
||||
"cpptools.status.codeanalysis": "Stan analizy kodu C/C++",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Uruchom teraz",
|
||||
"tagparser.pause.text": "Wstrzymaj",
|
||||
"tagparser.resume.text": "Wznów",
|
||||
"intellisense.select.text": "Wybierz kompilator",
|
||||
"rescan.intellisense.text": "Skanuj ponownie",
|
||||
"rescan.intellisense.tooltip": "Ponowne skanowanie funkcji IntelliSense",
|
||||
"mode.codeanalysis.status.automatic": "Automatycznie",
|
||||
"mode.codeanalysis.status.manual": "Ręczny",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Opcje",
|
||||
"startup.codeanalysis.status": "Trwa uruchamianie...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Uruchom teraz",
|
||||
"running.analysis.processed.tooltip": "Uruchomione: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "Wybierz konfigurację...",
|
||||
"edit.configuration.ui": "Edytowanie konfiguracji (interfejs użytkownika)",
|
||||
"edit.configuration.json": "Edytowanie konfiguracji (JSON)",
|
||||
"select.configuration.provider": "Wybierz dostawcę konfiguracji...",
|
||||
"active": "aktywne",
|
||||
"none": "brak",
|
||||
"disable.configuration.provider": "Wyłącz aktywnego dostawcę konfiguracji, jeśli ma zastosowanie.",
|
||||
"select.compile.commands": "Wybierz plik compile_commands.json...",
|
||||
"select.workspace": "Wybierz folder obszaru roboczego...",
|
||||
"resume.parsing": "Wznów analizowanie obszaru roboczego",
|
||||
"pause.parsing": "Wstrzymaj analizowanie obszaru roboczego",
|
||||
"cancel.analysis": "Anuluj",
|
||||
"resume.analysis": "Wznów",
|
||||
"pause.analysis": "Wstrzymaj",
|
||||
"another.analysis": "Uruchom kolejną...",
|
||||
"active.analysis": "Uruchom analizę kodu dla aktywnego pliku",
|
||||
"all.analysis": "Uruchamianie analizy kodu dla wszystkich plików",
|
||||
"open.analysis": "Uruchamianie rozszerzenia Code Analysis na otwartych plikach"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "To polecenie zostało wyłączone, ponieważ element „{0}” ma wartość „{1}”."
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "Pobieranie: {0}",
|
||||
"installing.progress.description": "Instalowanie: {0}",
|
||||
"package.manager.missing": "Manifest pakietu nie istnieje",
|
||||
"downloading.package": "Pobieranie pakietu „{0}” ",
|
||||
"error.from": "Błąd z pliku {0}",
|
||||
"failed.download.url": "Nie można pobrać elementu {0}",
|
||||
"failed.retrying": "Niepowodzenie. Trwa ponawianie próby...",
|
||||
"done": "Gotowe!",
|
||||
"waiting.seconds": "Trwa oczekiwanie na upłynięcie {0} s...",
|
||||
"temp.package.unavailable": "Plik pakietu tymczasowego niedostępny",
|
||||
"invalid.download.location.received": "Odebrano nieprawidłową lokalizację pobierania",
|
||||
"invalid.response.code.received": "Odebrano nieprawidłowy kod odpowiedzi",
|
||||
"failed.web.error": "niepowodzenie (kod błędu „{0}”)",
|
||||
"web.response.error": "Błąd odpowiedzi HTTP/HTTPS",
|
||||
"invalid.content.length.received": "Odebrano nieprawidłową lokalizację długości zawartości",
|
||||
"invalid.content.received": "Odebrano nieprawidłową zawartość. Wartość skrótu jest niepoprawna.",
|
||||
"web.request.error": "Błąd żądania HTTP/HTTPS",
|
||||
"installing.package": "Instalowanie pakietu „{0}”",
|
||||
"downloaded.unavailable": "Pobrany plik niedostępny",
|
||||
"zip.file.error": "Błąd pliku ZIP",
|
||||
"create.directory.error": "Błąd tworzenia katalogu",
|
||||
"zip.stream.error": "Błąd odczytu strumienia ZIP",
|
||||
"unlink.error": "Błąd podczas odłączania pliku {0}",
|
||||
"rename.error": "Błąd podczas zmieniania nazwy pliku {0}",
|
||||
"read.stream.error": "Błąd w strumieniu odczytu",
|
||||
"write.stream.error": "Błąd w strumieniu zapisu",
|
||||
"file.already.exists": "Ostrzeżenie: plik „{0}” już istnieje i nie został zaktualizowany."
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Acessar a referência"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Acessar a referência",
|
||||
"pending.rename": "Renomeação Pendente",
|
||||
"candidates.for.rename": "Candidatos para a Renomeação"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "Analisando o Workspace",
|
||||
"paused.tagparser.text": "Workspace de Análise: Pausado",
|
||||
"complete.tagparser.text": "Análise Concluída",
|
||||
"initializing.tagparser.text": "Inicializando o Workspace",
|
||||
"indexing.tagparser.text": "Workspace da Indexação",
|
||||
"rescan.tagparse.text": "Examinar Novamente o Workspace",
|
||||
"c.cpp.parsing.open.files.tooltip": "Analisando Arquivos Abertos",
|
||||
"click.to.preview": "clique aqui para visualizar os resultados",
|
||||
"updating.intellisense.text": "IntelliSense: Atualizando",
|
||||
"idle.intellisense.text": "IntelliSense: Pronto",
|
||||
"absent.intellisense.text": "IntelliSense: Não Configurado",
|
||||
"running.analysis.text": "Code Analysis: em Execução",
|
||||
"paused.analysis.text": "Code Analysis: Pausado",
|
||||
"mode.analysis.prefix": "Modo do Code Analysis: ",
|
||||
"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++",
|
||||
"cpptools.status.tagparser": "Status do Analisador de Marcas do C/C++",
|
||||
"cpptools.detail.tagparser": "Inicializando...",
|
||||
"cpptools.status.codeanalysis": "Status do Code Analysis do C/C++",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Executar Agora",
|
||||
"tagparser.pause.text": "Pausar",
|
||||
"tagparser.resume.text": "Retomar",
|
||||
"intellisense.select.text": "Selecionar um Compilador",
|
||||
"rescan.intellisense.text": "Examinar novamente",
|
||||
"rescan.intellisense.tooltip": "Examinar Novamente o IntelliSense",
|
||||
"mode.codeanalysis.status.automatic": "Automático",
|
||||
"mode.codeanalysis.status.manual": "Manual",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Opções",
|
||||
"startup.codeanalysis.status": "Iniciando...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Executar Agora",
|
||||
"running.analysis.processed.tooltip": "Executando: {0} / {1} ({2}%)",
|
||||
"select.a.configuration": "Selecione uma Configuração...",
|
||||
"edit.configuration.ui": "Editar Configurações (IU)",
|
||||
"edit.configuration.json": "Editar Configurações (JSON)",
|
||||
"select.configuration.provider": "Selecione um Provedor de Configuração...",
|
||||
"active": "ativo",
|
||||
"none": "nenhum",
|
||||
"disable.configuration.provider": "Desabilite o provedor de configuração ativo, se aplicável.",
|
||||
"select.compile.commands": "Selecione um compile_commands.json...",
|
||||
"select.workspace": "Selecionar uma pasta de workspace...",
|
||||
"resume.parsing": "Retomar a Análise do Espaço de trabalho",
|
||||
"pause.parsing": "Pausar a Análise do Espaço de trabalho",
|
||||
"cancel.analysis": "Cancelar",
|
||||
"resume.analysis": "Retomar",
|
||||
"pause.analysis": "Pausar",
|
||||
"another.analysis": "Iniciar Outro...",
|
||||
"active.analysis": "Executar Code Analysis no Arquivo Ativo",
|
||||
"all.analysis": "Executar Code Analysis em Todos os Arquivos",
|
||||
"open.analysis": "Executar Code Analysis em Abrir Arquivos"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "Este comando está desabilitado porque \"{0}\" está definido como \"{1}\"."
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "Baixando {0}",
|
||||
"installing.progress.description": "Instalando {0}",
|
||||
"package.manager.missing": "O manifesto do pacote não existe",
|
||||
"downloading.package": "Baixando o pacote '{0}' ",
|
||||
"error.from": "Erro de {0}",
|
||||
"failed.download.url": "Falha ao baixar {0}",
|
||||
"failed.retrying": "Falha. Repetindo...",
|
||||
"done": "Concluído!",
|
||||
"waiting.seconds": "Aguardando {0} segundos...",
|
||||
"temp.package.unavailable": "Arquivo de Pacote Temporário não disponível",
|
||||
"invalid.download.location.received": "Recebido um local de download inválido",
|
||||
"invalid.response.code.received": "Recebido código de resposta inválido",
|
||||
"failed.web.error": "falha (código de erro '{0}')",
|
||||
"web.response.error": "Erro de resposta HTTP/HTTPS",
|
||||
"invalid.content.length.received": "Recebido local de comprimento de conteúdo inválido",
|
||||
"invalid.content.received": "Conteúdo inválido recebido. O hash está incorreto.",
|
||||
"web.request.error": "Erro de solicitação HTTP/HTTPS",
|
||||
"installing.package": "Instalando o pacote '{0}'",
|
||||
"downloaded.unavailable": "Arquivo baixado não disponível",
|
||||
"zip.file.error": "Erro no arquivo zip",
|
||||
"create.directory.error": "Erro ao criar o diretório",
|
||||
"zip.stream.error": "Erro ao ler o fluxo zip",
|
||||
"unlink.error": "Erro ao desvincular o arquivo {0}",
|
||||
"rename.error": "Erro ao renomear o arquivo {0}",
|
||||
"read.stream.error": "Erro no fluxo de leitura",
|
||||
"write.stream.error": "Erro no fluxo de gravação",
|
||||
"file.already.exists": "Aviso: o arquivo '{0}' já existe e não foi atualizado."
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Переход по ссылке"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Переход по ссылке",
|
||||
"pending.rename": "Ожидающее переименование",
|
||||
"candidates.for.rename": "Кандидаты для переименования"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "Анализ рабочей области",
|
||||
"paused.tagparser.text": "Анализ рабочей области: приостановлено",
|
||||
"complete.tagparser.text": "Анализ завершен",
|
||||
"initializing.tagparser.text": "Инициализация рабочей области",
|
||||
"indexing.tagparser.text": "Индексация рабочей области",
|
||||
"rescan.tagparse.text": "Повторное сканирование рабочей области",
|
||||
"c.cpp.parsing.open.files.tooltip": "Анализ открытых файлов",
|
||||
"click.to.preview": "щелкните для предварительного просмотра результатов",
|
||||
"updating.intellisense.text": "IntelliSense: обновление",
|
||||
"idle.intellisense.text": "IntelliSense: готово",
|
||||
"absent.intellisense.text": "IntelliSense: не настроено",
|
||||
"running.analysis.text": "Code Analysis: запуск",
|
||||
"paused.analysis.text": "Code Analysis: приостановлено",
|
||||
"mode.analysis.prefix": "Режим Code Analysis: ",
|
||||
"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++",
|
||||
"cpptools.status.tagparser": "Состояние анализатора тегов C/C++",
|
||||
"cpptools.detail.tagparser": "Выполняется инициализация…",
|
||||
"cpptools.status.codeanalysis": "Состояние Code Analysis C/C++",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Запустить сейчас",
|
||||
"tagparser.pause.text": "Приостановить",
|
||||
"tagparser.resume.text": "Возобновить",
|
||||
"intellisense.select.text": "Выбор компилятора",
|
||||
"rescan.intellisense.text": "Повторное сканирование",
|
||||
"rescan.intellisense.tooltip": "Повторное сканирование IntelliSense",
|
||||
"mode.codeanalysis.status.automatic": "Автоматически",
|
||||
"mode.codeanalysis.status.manual": "Вручную",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Параметры",
|
||||
"startup.codeanalysis.status": "Запуск…",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Запустить сейчас",
|
||||
"running.analysis.processed.tooltip": "Выполняется: {0}/{1} ({2}%)",
|
||||
"select.a.configuration": "Выберите конфигурацию...",
|
||||
"edit.configuration.ui": "Изменить конфигурации (пользовательский интерфейс)",
|
||||
"edit.configuration.json": "Изменить конфигурации (JSON)",
|
||||
"select.configuration.provider": "Выберите поставщик конфигурации...",
|
||||
"active": "активные",
|
||||
"none": "нет",
|
||||
"disable.configuration.provider": "Отключите активный поставщик конфигурации (если применимо).",
|
||||
"select.compile.commands": "Выберите compile_commands.json...",
|
||||
"select.workspace": "Выберите папку рабочей области…",
|
||||
"resume.parsing": "Возобновить анализ рабочей области",
|
||||
"pause.parsing": "Приостановить анализ рабочей области",
|
||||
"cancel.analysis": "Отмена",
|
||||
"resume.analysis": "Возобновить",
|
||||
"pause.analysis": "Приостановить",
|
||||
"another.analysis": "Запустить другой...",
|
||||
"active.analysis": "Запустить Code Analysis в активном файле",
|
||||
"all.analysis": "Запустить Code Analysis во всех файлах",
|
||||
"open.analysis": "Запустить Code Analysis в открытых файлах"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "Эта команда отключена, так как для \"{0}\" задано значение \"{1}\"."
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "Скачивание {0}.",
|
||||
"installing.progress.description": "Установка {0}.",
|
||||
"package.manager.missing": "Манифест пакета не существует",
|
||||
"downloading.package": "Выполняется скачивание пакета \"{0}\"",
|
||||
"error.from": "Ошибка из файла {0}",
|
||||
"failed.download.url": "Не удалось скачать {0}",
|
||||
"failed.retrying": "Сбой. Повторная попытка...",
|
||||
"done": "Готово.",
|
||||
"waiting.seconds": "Ожидание {0} с...",
|
||||
"temp.package.unavailable": "Временный файл пакета недоступен",
|
||||
"invalid.download.location.received": "Получено недопустимое расположение скачивания",
|
||||
"invalid.response.code.received": "Получен недопустимый код отклика",
|
||||
"failed.web.error": "Сбой (код ошибки \"{0}\").",
|
||||
"web.response.error": "Ошибка ответа HTTP/HTTPS",
|
||||
"invalid.content.length.received": "Получено недопустимое расположение длины содержимого",
|
||||
"invalid.content.received": "Получено недопустимое содержимое. Неверный хэш.",
|
||||
"web.request.error": "Ошибка запроса HTTP/HTTPS",
|
||||
"installing.package": "Установка пакета \"{0}\"",
|
||||
"downloaded.unavailable": "Скачанный файл недоступен",
|
||||
"zip.file.error": "Ошибка в ZIP-файле",
|
||||
"create.directory.error": "Ошибка при создании каталога",
|
||||
"zip.stream.error": "Ошибка при чтении потока zip",
|
||||
"unlink.error": "Ошибка при удалении связи файла {0}",
|
||||
"rename.error": "Ошибка при переименовании файла {0}",
|
||||
"read.stream.error": "Ошибка в потоке чтения",
|
||||
"write.stream.error": "Ошибка в потоке записи",
|
||||
"file.already.exists": "Предупреждение: файл \"{0}\" уже существует и не был обновлен."
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Başvuruya git"
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"goto.reference": "Başvuruya git",
|
||||
"pending.rename": "Yeniden Adlandırma Bekleniyor",
|
||||
"candidates.for.rename": "Yeniden adlandırma adayları"
|
||||
}
|
||||
@@ -1,61 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"running.tagparser.text": "Çalışma Alanı Ayrıştırılıyor",
|
||||
"paused.tagparser.text": "Çalışma Alanı Ayrıştırılıyor: Duraklatıldı",
|
||||
"complete.tagparser.text": "Ayrıştırma Tamamlandı",
|
||||
"initializing.tagparser.text": "Çalışma Alanı Başlatılıyor",
|
||||
"indexing.tagparser.text": "Çalışma Alanı Dizine Ekleniyor",
|
||||
"rescan.tagparse.text": "Çalışma Alanını Yeniden Tara",
|
||||
"c.cpp.parsing.open.files.tooltip": "Açık Dosyalar Ayrıştırılıyor",
|
||||
"click.to.preview": "sonuçların önizlemesini görüntülemek için tıklayın",
|
||||
"updating.intellisense.text": "IntelliSense: Güncelleştiriliyor",
|
||||
"idle.intellisense.text": "IntelliSense: Hazır",
|
||||
"absent.intellisense.text": "IntelliSense: Yapılandırılmadı",
|
||||
"running.analysis.text": "Code Analysis: Çalışıyor",
|
||||
"paused.analysis.text": "Code Analysis: Duraklatıldı",
|
||||
"mode.analysis.prefix": "Code Analysis Modu: ",
|
||||
"c.cpp.configureIntelliSenseStatus.text": "IntelliSense'i Yapılandır",
|
||||
"c.cpp.configureIntelliSenseStatus.cppText": "C/C++ IntelliSense'i Yapılandır",
|
||||
"select.command": "Komut seçin...",
|
||||
"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",
|
||||
"cpptools.status.tagparser": "C/C++ Etiket Ayrıştırıcısı Durumu",
|
||||
"cpptools.detail.tagparser": "Başlatılıyor...",
|
||||
"cpptools.status.codeanalysis": "C/C++ Code Analysis Durumu",
|
||||
"c.cpp.codeanalysis.statusbar.runNow": "Şimdi Çalıştır",
|
||||
"tagparser.pause.text": "Duraklat",
|
||||
"tagparser.resume.text": "Sürdür",
|
||||
"intellisense.select.text": "Derleyici seçin",
|
||||
"rescan.intellisense.text": "Yeniden tara",
|
||||
"rescan.intellisense.tooltip": "Rescan IntelliSense",
|
||||
"mode.codeanalysis.status.automatic": "Otomatik",
|
||||
"mode.codeanalysis.status.manual": "El ile",
|
||||
"c.cpp.codeanalysis.statusbar.showCodeAnalysisOptions": "Seçenekler",
|
||||
"startup.codeanalysis.status": "Başlatılıyor...",
|
||||
"c.cpp.codeanalysis.statusbar.showRunNowOptions": "Şimdi Çalıştır",
|
||||
"running.analysis.processed.tooltip": "Çalışıyor: {0}/{1} (%{2})",
|
||||
"select.a.configuration": "Yapılandırma Seçin...",
|
||||
"edit.configuration.ui": "Yapılandırmaları Düzenle (UI)",
|
||||
"edit.configuration.json": "Yapılandırmaları Düzenle (JSON)",
|
||||
"select.configuration.provider": "Yapılandırma Sağlayıcısı Seçin...",
|
||||
"active": "etkin",
|
||||
"none": "yok",
|
||||
"disable.configuration.provider": "Varsa etkin yapılandırma sağlayıcısını devre dışı bırakın.",
|
||||
"select.compile.commands": "compile_commands.json dosyası seçin...",
|
||||
"select.workspace": "Çalışma alanı klasörü seçin...",
|
||||
"resume.parsing": "Çalışma Alanı Ayrıştırmasını Sürdür",
|
||||
"pause.parsing": "Çalışma Alanı Ayrıştırmasını Duraklat",
|
||||
"cancel.analysis": "İptal",
|
||||
"resume.analysis": "Sürdür",
|
||||
"pause.analysis": "Duraklat",
|
||||
"another.analysis": "Başkasını Başlat...",
|
||||
"active.analysis": "Aktif Dosyada Code Analysis’i Çalıştır",
|
||||
"all.analysis": "Tüm Dosyalarda Code Analysis’i Çalıştır",
|
||||
"open.analysis": "Açık Dosyalarda Code Analysis’i Çalıştır"
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"command.disabled": "\"{0}\", \"{1}\" olarak ayarlandığından bu komut devre dışı bırakıldı."
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"downloading.progress.description": "{0} indiriliyor",
|
||||
"installing.progress.description": "{0} yükleniyor",
|
||||
"package.manager.missing": "Paket bildirimi yok",
|
||||
"downloading.package": "'{0}' paketi indiriliyor ",
|
||||
"error.from": "Hata kaynağı: {0}",
|
||||
"failed.download.url": "{0} indirilemedi",
|
||||
"failed.retrying": "Başarısız oldu. Yeniden deneniyor...",
|
||||
"done": "Tamamlandı!",
|
||||
"waiting.seconds": "{0} saniye bekleniyor...",
|
||||
"temp.package.unavailable": "Geçici Paket dosyası kullanılamıyor",
|
||||
"invalid.download.location.received": "Geçersiz indirme konumu alındı",
|
||||
"invalid.response.code.received": "Geçersiz yanıt kodu alındı",
|
||||
"failed.web.error": "başarısız oldu (hata kodu '{0}')",
|
||||
"web.response.error": "HTTP/HTTPS Yanıt Hatası",
|
||||
"invalid.content.length.received": "Geçersiz içerik uzunluğu konumu alındı",
|
||||
"invalid.content.received": "Geçersiz içerik alındı. Karma yanlış.",
|
||||
"web.request.error": "HTTP/HTTPS İstek hatası",
|
||||
"installing.package": "'{0}' paketi yükleniyor",
|
||||
"downloaded.unavailable": "İndirilen dosya kullanılamıyor",
|
||||
"zip.file.error": "Zip dosyası hatası",
|
||||
"create.directory.error": "Dizin oluşturulurken hata oluştu",
|
||||
"zip.stream.error": "Zip akışı okuma hatası",
|
||||
"unlink.error": "{0} dosyasının bağlantısı kaldırılırken hata oluştu",
|
||||
"rename.error": "{0} dosyası yeniden adlandırılırken hata oluştu",
|
||||
"read.stream.error": "Akış okunurken hata",
|
||||
"write.stream.error": "Akışa yazılırken hata",
|
||||
"file.already.exists": "Uyarı: '{0}' dosyası zaten var ve güncelleştirilmedi."
|
||||
}
|
||||
+21
-15
@@ -2,7 +2,7 @@
|
||||
"name": "cpptools",
|
||||
"displayName": "C/C++",
|
||||
"description": "C/C++ IntelliSense, debugging, and code browsing.",
|
||||
"version": "1.22.2-main",
|
||||
"version": "1.22.5-main",
|
||||
"publisher": "ms-vscode",
|
||||
"icon": "LanguageCCPP_color_128x.png",
|
||||
"readme": "README.md",
|
||||
@@ -38,7 +38,8 @@
|
||||
"Snippets"
|
||||
],
|
||||
"enabledApiProposals": [
|
||||
"terminalDataWriteEvent"
|
||||
"terminalDataWriteEvent",
|
||||
"lmTools"
|
||||
],
|
||||
"capabilities": {
|
||||
"untrustedWorkspaces": {
|
||||
@@ -3277,17 +3278,6 @@
|
||||
"default": false,
|
||||
"markdownDescription": "%c_cpp.configuration.addNodeAddonIncludePaths.markdownDescription%",
|
||||
"scope": "application"
|
||||
},
|
||||
"C_Cpp.copilotHover": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"default",
|
||||
"enabled",
|
||||
"disabled"
|
||||
],
|
||||
"default": "default",
|
||||
"markdownDescription": "%c_cpp.configuration.copilotHover.markdownDescription%",
|
||||
"scope": "window"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -5874,7 +5864,7 @@
|
||||
},
|
||||
{
|
||||
"command": "C_Cpp.LogDiagnostics",
|
||||
"when": "editorLangId =~ /^(c|(cuda-)?cpp)$/ && !(config.C_Cpp.intelliSenseEngine =~ /^[dD]isabled$/)"
|
||||
"when": "!(config.C_Cpp.intelliSenseEngine =~ /^[dD]isabled$/)"
|
||||
},
|
||||
{
|
||||
"command": "C_Cpp.RescanWorkspace",
|
||||
@@ -6451,6 +6441,22 @@
|
||||
"description": "%c_cpp.codeActions.refactor.extract.function.description%"
|
||||
}
|
||||
}
|
||||
],
|
||||
"languageModelTools": [
|
||||
{
|
||||
"id": "cpptools-lmtool-configuration",
|
||||
"name": "cpp",
|
||||
"displayName": "%c_cpp.languageModelTools.configuration.displayName%",
|
||||
"canBeInvokedManually": true,
|
||||
"userDescription": "%c_cpp.languageModelTools.configuration.userDescription%",
|
||||
"modelDescription": "For the active C or C++ file, this tool provides: the language (C, C++, or CUDA), the language standard version (such as C++11, C++14, C++17, or C++20), the compiler (such as GCC, Clang, or MSVC), the target platform (such as x86, x64, or ARM), and the target architecture (such as 32-bit or 64-bit).",
|
||||
"icon": "$(file-code)",
|
||||
"parametersSchema": {},
|
||||
"when": "(config.C_Cpp.experimentalFeatures =~ /^[eE]nabled$/)",
|
||||
"supportedContentTypes": [
|
||||
"text/plain"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
@@ -6465,7 +6471,7 @@
|
||||
"compile": "yarn install && (yarn verify prep --quiet || yarn prep) && yarn build",
|
||||
"watch": "yarn install && (yarn verify prep --quiet || yarn prep) && tsc --build tsconfig.json --watch",
|
||||
"rebuild": "yarn install && yarn clean && yarn prep && yarn build",
|
||||
"vscode:prepublish": "yarn install && yarn clean && yarn webpack",
|
||||
"vsix-prepublish": "yarn install && yarn clean && yarn webpack",
|
||||
"webpack": "yarn install && (yarn verify prep --quiet || yarn prep) && tsc --build ui.tsconfig.json && webpack --mode production --env vscode_nls",
|
||||
"generate-native-strings": "ts-node -T ./.scripts/generateNativeStrings.ts",
|
||||
"generate-options-schema": "ts-node -T ./.scripts/generateOptionsSchema.ts",
|
||||
|
||||
@@ -768,12 +768,6 @@
|
||||
"Markdown text between `` should not be translated or localized (they represent literal text) and the capitalization, spacing, and punctuation (including the ``) should not be altered."
|
||||
]
|
||||
},
|
||||
"c_cpp.configuration.copilotHover.markdownDescription": {
|
||||
"message": "If `enabled`, the hover tooltip will display an option to generate a summary of the symbol with Copilot. If `disabled`, the option will not be displayed.",
|
||||
"comment": [
|
||||
"Markdown text between `` should not be translated or localized (they represent literal text) and the capitalization, spacing, and punctuation (including the ``) should not be altered."
|
||||
]
|
||||
},
|
||||
"c_cpp.configuration.renameRequiresIdentifier.markdownDescription": {
|
||||
"message": "If `true`, 'Rename Symbol' will require a valid C/C++ identifier.",
|
||||
"comment": [
|
||||
@@ -1012,5 +1006,7 @@
|
||||
"c_cpp.configuration.refactoring.includeHeader.markdownDescription": "Controls whether to include the header file of a refactored function/symbol to its corresponding source file when doing a refactoring action, such as create declaration/definition.",
|
||||
"c_cpp.configuration.refactoring.includeHeader.always.description": "Always include the header file if it is not included explicitly in its source file.",
|
||||
"c_cpp.configuration.refactoring.includeHeader.ifNeeded.description": "Only include the header file if it is not included explicitly in its source file or through implicit inclusion.",
|
||||
"c_cpp.configuration.refactoring.includeHeader.never.description": "Never include the header file."
|
||||
"c_cpp.configuration.refactoring.includeHeader.never.description": "Never include the header file.",
|
||||
"c_cpp.languageModelTools.configuration.displayName": "C/C++ configuration",
|
||||
"c_cpp.languageModelTools.configuration.userDescription": "Configuration of the active C or C++ file, like language standard version and target platform."
|
||||
}
|
||||
|
||||
@@ -1,33 +0,0 @@
|
||||
/* --------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All Rights Reserved.
|
||||
* See 'LICENSE' in the project root for license information.
|
||||
* ------------------------------------------------------------------------------------------ */
|
||||
import * as vscode from 'vscode';
|
||||
import { CppSettings } from '../settings';
|
||||
import { HoverProvider } from './HoverProvider';
|
||||
|
||||
export class CopilotHoverProvider implements vscode.HoverProvider {
|
||||
private provider: HoverProvider;
|
||||
constructor(provider: HoverProvider) {
|
||||
this.provider = provider;
|
||||
}
|
||||
|
||||
public async provideHover(document: vscode.TextDocument, _position: vscode.Position, _token: vscode.CancellationToken): Promise<vscode.Hover | undefined> {
|
||||
const settings: CppSettings = new CppSettings(vscode.workspace.getWorkspaceFolder(document.uri)?.uri);
|
||||
if (settings.hover === "disabled") {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
// Why does it show "Loading..." and is that vscode?
|
||||
// TODO: add intermediate loading state spinner before long ops
|
||||
const content = await this.provider.showCopilotHover;
|
||||
if (!content) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
const markdownContent = new vscode.MarkdownString(content);
|
||||
markdownContent.supportThemeIcons = true;
|
||||
|
||||
return new vscode.Hover(markdownContent);
|
||||
}
|
||||
}
|
||||
@@ -4,7 +4,6 @@
|
||||
* ------------------------------------------------------------------------------------------ */
|
||||
import * as vscode from 'vscode';
|
||||
import { Position, ResponseError, TextDocumentPositionParams } from 'vscode-languageclient';
|
||||
import { ManualSignal } from '../../Utility/Async/manualSignal';
|
||||
import { DefaultClient, HoverRequest } from '../client';
|
||||
import { RequestCancelled, ServerCancelled } from '../protocolFilter';
|
||||
import { CppSettings } from '../settings';
|
||||
@@ -55,6 +54,4 @@ export class HoverProvider implements vscode.HoverProvider {
|
||||
|
||||
return new vscode.Hover(strings, range);
|
||||
}
|
||||
|
||||
public showCopilotHover = new ManualSignal<string>(true);
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user