Compare commits
94
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0f8efe7197 | ||
|
|
a1eef20485 | ||
|
|
0b64d607f5 | ||
|
|
18e9335d76 | ||
|
|
0a72712f04 | ||
|
|
70b35ddbc7 | ||
|
|
53917c0de2 | ||
|
|
5993256e77 | ||
|
|
239deaf331 | ||
|
|
9b8153617c | ||
|
|
205cdf663d | ||
|
|
fcac9ac6d1 | ||
|
|
541f2b158c | ||
|
|
b271ed1c68 | ||
|
|
7a56cf9064 | ||
|
|
0015bd88c9 | ||
|
|
0666a0f0e3 | ||
|
|
030c22c6d8 | ||
|
|
b9150cbd22 | ||
|
|
3b8c545e09 | ||
|
|
a54ba1e1ce | ||
|
|
d83faa224a | ||
|
|
bb5b252ee1 | ||
|
|
8a6124fd45 | ||
|
|
fd96957a10 | ||
|
|
71278ef27b | ||
|
|
59a3309ac0 | ||
|
|
e669bc4802 | ||
|
|
25fd26acdf | ||
|
|
6797ee4f99 | ||
|
|
1f6e545118 | ||
|
|
52bec4837c | ||
|
|
a3d9417e43 | ||
|
|
96d470acb0 | ||
|
|
fd3926ffe4 | ||
|
|
2727652801 | ||
|
|
90f2ed1584 | ||
|
|
4e8203a95e | ||
|
|
b3110d8964 | ||
|
|
cf49a16515 | ||
|
|
5a07193e50 | ||
|
|
4ae7cd47e1 | ||
|
|
8f0f27e5a0 | ||
|
|
63aa33ff1d | ||
|
|
de2aadcb8b | ||
|
|
76ff264e6b | ||
|
|
61f7ecf39e | ||
|
|
a54f5698d2 | ||
|
|
8af9ded977 | ||
|
|
f754fdbe25 | ||
|
|
0f0d5a34d9 | ||
|
|
47b3ffd535 | ||
|
|
1f31ea4794 | ||
|
|
0dd2603271 | ||
|
|
c4980409a9 | ||
|
|
11df85302c | ||
|
|
d9a3f8e493 | ||
|
|
b435e56ff6 | ||
|
|
25cc9b758a | ||
|
|
11f261e796 | ||
|
|
f4fb3318f3 | ||
|
|
bfa165a92c | ||
|
|
2b8f7a2060 | ||
|
|
ecf12313ad | ||
|
|
1b29dbf772 | ||
|
|
7665e11045 | ||
|
|
25b76baa94 | ||
|
|
a6b12a8c10 | ||
|
|
775fd692ea | ||
|
|
ddb54454e3 | ||
|
|
2db5c05c37 | ||
|
|
bc9a72cf2f | ||
|
|
291e5a3228 | ||
|
|
7774dafb1f | ||
|
|
55ef430b96 | ||
|
|
bb5943c755 | ||
|
|
69d4585eb2 | ||
|
|
8e82004017 | ||
|
|
900aa75527 | ||
|
|
61b53bcda8 | ||
|
|
34d375a616 | ||
|
|
61815d8869 | ||
|
|
f309f90a4f | ||
|
|
fa097e4966 | ||
|
|
6770b0a25a | ||
|
|
5f56194feb | ||
|
|
21a8e34c91 | ||
|
|
5451e32bd8 | ||
|
|
97943a9d67 | ||
|
|
4884af8c94 | ||
|
|
65beaebaf9 | ||
|
|
6e3a7b2b7e | ||
|
|
5c16227c40 | ||
|
|
37a558260d |
@@ -1,2 +1,3 @@
|
||||
registry=https://pkgs.dev.azure.com/azure-public/VisualCpp/_packaging/cpp_PublicPackages/npm/registry/
|
||||
always-auth=true
|
||||
# Disable postinstall scripts for supply chain security. Allowlist exceptions with npm trust: https://docs.npmjs.com/cli/v11/commands/npm-trust
|
||||
ignore-scripts=true
|
||||
|
||||
@@ -25,7 +25,6 @@ export const normalizeIssue = (issue: {
|
||||
const cleanse = (str: string) => {
|
||||
let out = str
|
||||
.toLowerCase()
|
||||
.replace(/<!--.*-->/gu, '')
|
||||
.replace(/.* version: .*/gu, '')
|
||||
.replace(/issue type: .*/gu, '')
|
||||
.replace(/vs ?code/gu, '')
|
||||
@@ -36,6 +35,12 @@ export const normalizeIssue = (issue: {
|
||||
.replace(/\s+/gu, ' ')
|
||||
.replace(/```[^`]*?```/gu, '');
|
||||
|
||||
while (
|
||||
out.includes('<!--') &&
|
||||
out.includes('-->') &&
|
||||
out.indexOf('-->') > out.indexOf('<!--')) {
|
||||
out = out.slice(0, out.indexOf('<!--')) + out.slice(out.indexOf('-->') + 3);
|
||||
}
|
||||
while (
|
||||
out.includes(`<details>`) &&
|
||||
out.includes('</details>') &&
|
||||
@@ -116,9 +121,9 @@ Repo: ${context.repo.owner}/${context.repo.repo}
|
||||
|
||||
<!-- Context:
|
||||
${JSON.stringify(context, null, 2)
|
||||
.replace(/<!--/gu, '<@--')
|
||||
.replace(/-->/gu, '--@>')
|
||||
.replace(/\/|\\/gu, 'slash-')}
|
||||
.replace(/<!--/gu, '<@--')
|
||||
.replace(/--!?\s*>/gu, '--@>')
|
||||
.replace(/\/|\\/gu, 'slash-')}
|
||||
-->
|
||||
`);
|
||||
};
|
||||
|
||||
Generated
+119
-578
File diff suppressed because it is too large
Load Diff
@@ -14,9 +14,8 @@
|
||||
"@actions/github": "^8.0.1",
|
||||
"@octokit/rest": "^21.1.1",
|
||||
"@slack/web-api": "^6.9.1",
|
||||
"applicationinsights": "^2.5.1",
|
||||
"axios": "^1.13.5",
|
||||
"uuid": "^8.3.2"
|
||||
"axios": "^1.16.0",
|
||||
"uuid": "^14.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@azure/storage-blob": "^12.13.0",
|
||||
@@ -40,7 +39,7 @@
|
||||
"yargs": "^17.5.1"
|
||||
},
|
||||
"overrides": {
|
||||
"serialize-javascript": "^7.0.4",
|
||||
"serialize-javascript": "^7.0.5",
|
||||
"flatted": "^3.4.2",
|
||||
"fast-xml-parser": "^5.5.7"
|
||||
}
|
||||
|
||||
@@ -5,6 +5,12 @@ on:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
target-ref:
|
||||
description: Branch, tag, or SHA to test
|
||||
required: true
|
||||
default: main
|
||||
|
||||
env:
|
||||
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
||||
@@ -15,3 +21,4 @@ jobs:
|
||||
with:
|
||||
runner-env: ubuntu-24.04
|
||||
platform: linux
|
||||
checkout-ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.target-ref || github.ref }}
|
||||
|
||||
@@ -5,6 +5,12 @@ on:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
target-ref:
|
||||
description: Branch, tag, or SHA to test
|
||||
required: true
|
||||
default: main
|
||||
|
||||
env:
|
||||
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
||||
@@ -15,4 +21,5 @@ jobs:
|
||||
with:
|
||||
runner-env: macos-15
|
||||
platform: mac
|
||||
checkout-ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.target-ref || github.ref }}
|
||||
yarn-args: --network-timeout 100000
|
||||
|
||||
@@ -5,6 +5,12 @@ on:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
target-ref:
|
||||
description: Branch, tag, or SHA to test
|
||||
required: true
|
||||
default: main
|
||||
|
||||
env:
|
||||
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
||||
@@ -15,3 +21,4 @@ jobs:
|
||||
with:
|
||||
runner-env: windows-2025
|
||||
platform: windows
|
||||
checkout-ref: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.target-ref || github.ref }}
|
||||
|
||||
@@ -11,6 +11,9 @@ on:
|
||||
# Expects 'mac', 'linux', or 'windows'
|
||||
required: true
|
||||
type: string
|
||||
checkout-ref:
|
||||
required: false
|
||||
type: string
|
||||
yarn-args:
|
||||
type: string
|
||||
|
||||
@@ -23,6 +26,8 @@ jobs:
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
with:
|
||||
ref: ${{ inputs.checkout-ref }}
|
||||
|
||||
- name: Use Node.js 24
|
||||
uses: actions/setup-node@v4
|
||||
@@ -66,6 +71,11 @@ jobs:
|
||||
# run: yarn test --scenario=MultirootDeadlockTest
|
||||
# working-directory: Extension
|
||||
|
||||
# - name: Run E2E IntelliSense features tests
|
||||
# if: ${{ inputs.platform == 'windows' }}
|
||||
# run: yarn test --scenario=RunWithoutDebugging
|
||||
# working-directory: Extension
|
||||
|
||||
# NOTE: For mac/linux run the tests with xvfb-action for UI support.
|
||||
# Another way to start xvfb https://github.com/microsoft/vscode-test/blob/master/sample/azure-pipelines.yml
|
||||
|
||||
@@ -83,3 +93,10 @@ jobs:
|
||||
# run: yarn test --scenario=MultirootDeadlockTest
|
||||
# working-directory: Extension
|
||||
|
||||
# - name: Run E2E IntelliSense features tests (xvfb)
|
||||
# if: ${{ inputs.platform == 'mac' || inputs.platform == 'linux' }}
|
||||
# uses: coactions/setup-xvfb@v1
|
||||
# with:
|
||||
# run: yarn test --scenario=RunWithoutDebugging
|
||||
# working-directory: Extension
|
||||
|
||||
|
||||
+10
-4
@@ -107,8 +107,14 @@ extends:
|
||||
fi
|
||||
retryCountOnTaskFailure: 3
|
||||
|
||||
- script: |
|
||||
cd $(Build.SourcesDirectory)\Extension
|
||||
npx @vscode/[email protected] package --yarn -o $(Build.ArtifactStagingDirectory)\Extension\cpptools.vsix
|
||||
name: ProcessRunner_12
|
||||
- script: yarn install --frozen-lockfile
|
||||
displayName: Install dependencies with yarn
|
||||
workingDirectory: $(Build.SourcesDirectory)\Extension
|
||||
|
||||
- script: if not exist node_modules\@vscode\vsce-sign\bin\vsce-sign.exe (echo Missing vsce-sign.exe && exit 1)
|
||||
displayName: Verify vsce-sign binary exists
|
||||
workingDirectory: $(Build.SourcesDirectory)\Extension
|
||||
|
||||
- script: npx vsce package --yarn -o $(Build.ArtifactStagingDirectory)\Extension\cpptools.vsix
|
||||
displayName: Run VSCE to package vsix
|
||||
workingDirectory: $(Build.SourcesDirectory)\Extension
|
||||
|
||||
@@ -59,13 +59,24 @@ jobs:
|
||||
- script: mkdir $(Build.ArtifactStagingDirectory)\vsix
|
||||
displayName: Create Staging Directory
|
||||
|
||||
- script: |
|
||||
cd $(Build.SourcesDirectory)\${{ parameters.srcDir }}
|
||||
npx @vscode/[email protected] package -o $(Build.ArtifactStagingDirectory)\vsix\${{ parameters.vsixName }}.vsix
|
||||
- script: npm install --no-save --ignore-scripts=false --include=optional --force @vscode/[email protected]
|
||||
displayName: Install vsce
|
||||
workingDirectory: $(Build.SourcesDirectory)\${{ parameters.srcDir }}
|
||||
|
||||
- script: npm rebuild @vscode/vsce-sign --ignore-scripts=false
|
||||
displayName: Rebuild vsce-sign binary
|
||||
workingDirectory: $(Build.SourcesDirectory)\${{ parameters.srcDir }}
|
||||
|
||||
- script: if not exist node_modules\@vscode\vsce-sign\bin\vsce-sign.exe (echo Missing vsce-sign.exe && exit 1)
|
||||
displayName: Verify vsce-sign binary exists
|
||||
workingDirectory: $(Build.SourcesDirectory)\${{ parameters.srcDir }}
|
||||
|
||||
- script: npx vsce package -o $(Build.ArtifactStagingDirectory)\vsix\${{ parameters.vsixName }}.vsix
|
||||
displayName: Run VSCE to package vsix
|
||||
workingDirectory: $(Build.SourcesDirectory)\${{ parameters.srcDir }}
|
||||
|
||||
# sign the vsix
|
||||
- script: npx @vscode/[email protected] generate-manifest -i $(Build.ArtifactStagingDirectory)\vsix\${{ parameters.vsixName }}.vsix -o $(Build.ArtifactStagingDirectory)\vsix\${{ parameters.vsixName }}.manifest
|
||||
- script: npx vsce generate-manifest -i $(Build.ArtifactStagingDirectory)\vsix\${{ parameters.vsixName }}.vsix -o $(Build.ArtifactStagingDirectory)\vsix\${{ parameters.vsixName }}.manifest
|
||||
displayName: generate manifest
|
||||
workingDirectory: $(Build.SourcesDirectory)\${{ parameters.srcDir }}
|
||||
- script: copy $(Build.ArtifactStagingDirectory)\vsix\${{ parameters.vsixName }}.manifest $(Build.ArtifactStagingDirectory)\vsix\${{ parameters.vsixName }}.signature.p7s
|
||||
|
||||
@@ -31,8 +31,16 @@ jobs:
|
||||
$aadToken = az account get-access-token --query accessToken --resource $(AzureGuid) -o tsv
|
||||
Write-Host "##vso[task.setvariable variable=AAD_TOKEN;issecret=true]$aadToken"
|
||||
|
||||
- script: |
|
||||
npx @vscode/[email protected] publish --skip-duplicate -i $(Build.StagingDirectory)\vsix\${{ parameters.vsixName }}.vsix --manifestPath $(Build.StagingDirectory)\vsix\${{ parameters.vsixName }}.manifest --signaturePath $(Build.StagingDirectory)\vsix\${{ parameters.vsixName }}.signature.p7s
|
||||
- script: npm install --no-save --ignore-scripts=false --include=optional --force @vscode/[email protected]
|
||||
displayName: Install vsce
|
||||
|
||||
- script: npm rebuild @vscode/vsce-sign --ignore-scripts=false
|
||||
displayName: Rebuild vsce-sign binary
|
||||
|
||||
- script: if not exist node_modules\@vscode\vsce-sign\bin\vsce-sign.exe (echo Missing vsce-sign.exe && exit 1)
|
||||
displayName: Verify vsce-sign binary exists
|
||||
|
||||
- script: npx vsce publish --skip-duplicate -i $(Build.StagingDirectory)\vsix\${{ parameters.vsixName }}.vsix --manifestPath $(Build.StagingDirectory)\vsix\${{ parameters.vsixName }}.manifest --signaturePath $(Build.StagingDirectory)\vsix\${{ parameters.vsixName }}.signature.p7s
|
||||
displayName: Publish to Marketplace
|
||||
env:
|
||||
VSCE_PAT: $(AAD_TOKEN)
|
||||
|
||||
+2
-1
@@ -1,2 +1,3 @@
|
||||
registry=https://pkgs.dev.azure.com/azure-public/VisualCpp/_packaging/cpp_PublicPackages/npm/registry/
|
||||
always-auth=true
|
||||
# Disable postinstall scripts for supply chain security. Allowlist exceptions with npm trust: https://docs.npmjs.com/cli/v11/commands/npm-trust
|
||||
ignore-scripts=true
|
||||
|
||||
@@ -0,0 +1,113 @@
|
||||
/* --------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All Rights Reserved.
|
||||
* See 'LICENSE' in the project root for license information.
|
||||
* ------------------------------------------------------------------------------------------ */
|
||||
|
||||
import { cp, readdir, rm, stat } from 'node:fs/promises';
|
||||
import { homedir } from 'node:os';
|
||||
import { join } from 'node:path';
|
||||
import { $args, $root, green, heading, note } from './common';
|
||||
|
||||
const extensionPrefix = 'ms-vscode.cpptools-';
|
||||
const foldersToCopy = ['bin', 'debugAdapters', 'LLVM'] as const;
|
||||
|
||||
type InstalledExtension = {
|
||||
path: string;
|
||||
version: number[];
|
||||
modified: number;
|
||||
};
|
||||
|
||||
function compareVersions(left: number[], right: number[]): number {
|
||||
const maxLength: number = Math.max(left.length, right.length);
|
||||
for (let i = 0; i < maxLength; i++) {
|
||||
const diff: number = (left[i] ?? 0) - (right[i] ?? 0);
|
||||
if (diff !== 0) {
|
||||
return diff;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
function tryParseVersion(folderName: string): number[] | undefined {
|
||||
if (!folderName.startsWith(extensionPrefix)) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
const versionText: string | undefined = folderName.substring(extensionPrefix.length).match(/^\d+\.\d+\.\d+/)?.[0];
|
||||
return versionText?.split('.').map(each => Number(each));
|
||||
}
|
||||
|
||||
async function getInstalledExtensions(root: string): Promise<InstalledExtension[]> {
|
||||
try {
|
||||
const entries = await readdir(root, { withFileTypes: true });
|
||||
const candidates: Promise<InstalledExtension | undefined>[] = entries.map(async (entry) => {
|
||||
if (!entry.isDirectory()) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
const version: number[] | undefined = tryParseVersion(entry.name);
|
||||
if (!version) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
const extensionPath: string = join(root, entry.name);
|
||||
for (const folder of foldersToCopy) {
|
||||
const info = await stat(join(extensionPath, folder)).catch(() => undefined);
|
||||
if (!info?.isDirectory()) {
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
|
||||
const info = await stat(extensionPath);
|
||||
return {
|
||||
path: extensionPath,
|
||||
version,
|
||||
modified: info.mtimeMs
|
||||
};
|
||||
});
|
||||
|
||||
const found = await Promise.all(candidates);
|
||||
return found.filter((entry): entry is InstalledExtension => entry !== undefined);
|
||||
} catch {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
async function findLatestInstalledExtension(providedPath?: string): Promise<string> {
|
||||
if (providedPath) {
|
||||
return providedPath;
|
||||
}
|
||||
|
||||
const searchRoots: string[] = [
|
||||
join(homedir(), '.vscode', 'extensions'),
|
||||
join(homedir(), '.vscode-insiders', 'extensions'),
|
||||
join(homedir(), '.vscode-server', 'extensions'),
|
||||
join(homedir(), '.vscode-server-insiders', 'extensions')
|
||||
];
|
||||
|
||||
const installed: InstalledExtension[] = (await Promise.all(searchRoots.map(each => getInstalledExtensions(each)))).flat();
|
||||
if (!installed.length) {
|
||||
throw new Error(`Unable to find an installed C/C++ extension under ${searchRoots.join(' or ')}.`);
|
||||
}
|
||||
|
||||
installed.sort((left, right) => compareVersions(right.version, left.version) || right.modified - left.modified);
|
||||
return installed[0].path;
|
||||
}
|
||||
|
||||
export async function main(sourcePath = $args[0]) {
|
||||
console.log(heading('Copy installed extension binaries'));
|
||||
|
||||
const installedExtensionPath: string = await findLatestInstalledExtension(sourcePath);
|
||||
note(`Using installed extension at ${installedExtensionPath}`);
|
||||
|
||||
for (const folder of foldersToCopy) {
|
||||
const source: string = join(installedExtensionPath, folder);
|
||||
const destination: string = join($root, folder);
|
||||
|
||||
console.log(`Copying ${green(folder)} from ${source}`);
|
||||
await rm(destination, { recursive: true, force: true });
|
||||
await cp(source, destination, { recursive: true, force: true });
|
||||
}
|
||||
|
||||
note(`Copied installed binaries into ${$root}`);
|
||||
}
|
||||
Vendored
+4
@@ -97,6 +97,10 @@
|
||||
"label": "MultirootDeadlockTest ",
|
||||
"value": "${workspaceFolder}/test/scenarios/MultirootDeadlockTest/assets/test.code-workspace"
|
||||
},
|
||||
{
|
||||
"label": "RunWithoutDebugging ",
|
||||
"value": "${workspaceFolder}/test/scenarios/RunWithoutDebugging/assets/"
|
||||
},
|
||||
{
|
||||
"label": "SimpleCppProject ",
|
||||
"value": "${workspaceFolder}/test/scenarios/SimpleCppProject/assets/simpleCppProject.code-workspace"
|
||||
|
||||
@@ -35,7 +35,6 @@ eslint.config.js
|
||||
gulpfile.js
|
||||
localized_string_ids.h
|
||||
readme.developer.md
|
||||
Reinstalling the Extension.md
|
||||
test.tsconfig.json
|
||||
translations_auto_pr.js
|
||||
tsconfig.json
|
||||
|
||||
@@ -1,5 +1,54 @@
|
||||
# C/C++ for Visual Studio Code Changelog
|
||||
|
||||
## Version 1.33.0: June 22, 2026
|
||||
### New Feature
|
||||
* Unification of tag parsing with the VS implementation. In particular, it's now done using multiple parallel `cpptools-srv2` processes. [PR #14426](https://github.com/microsoft/vscode-cpptools/pull/14426)
|
||||
|
||||
### Enhancements
|
||||
* Add the `debuginfod` launch option to the `cppdbg` debugger schema. [#14458](https://github.com/microsoft/vscode-cpptools/issues/14458), [#14460](https://github.com/microsoft/vscode-cpptools/issues/14460), [PR #14471](https://github.com/microsoft/vscode-cpptools/pull/14471), [PR #14506](https://github.com/microsoft/vscode-cpptools/pull/14506), [MIEngine#1562](https://github.com/microsoft/MIEngine/issues/1562)
|
||||
* Add the `ignoreRunWithoutDebuggingWarnings` property to allow 'Run without debugging' warnings to be suppressed. [#14515](https://github.com/microsoft/vscode-cpptools/issues/14515)
|
||||
* Various localization updates.
|
||||
|
||||
### Bug Fixes
|
||||
* Fix an incorrect `invalid type conversion` IntelliSense error. [#11294](https://github.com/microsoft/vscode-cpptools/issues/11294)
|
||||
* Fix include completion (with recursive includes) still suggesting headers from a deleted folder. [#12636](https://github.com/microsoft/vscode-cpptools/issues/12636)
|
||||
* Add `important` to `C_Cpp.doxygen.sectionTags`. [PR #14473](https://github.com/microsoft/vscode-cpptools/pull/14473)
|
||||
* Update the minimum supported VS Code version to 1.77. [PR #14502](https://github.com/microsoft/vscode-cpptools/pull/14502)
|
||||
* Fix issues with the debugger `launch.json` schema. [PR #14523](https://github.com/microsoft/vscode-cpptools/pull/14523)
|
||||
* Fix `${env:VAR}` and `${env.VAR}` not expanding to an empty string when the environment variable is unset, to match VS Code's behavior. [PR #14535](https://github.com/microsoft/vscode-cpptools/pull/14535)
|
||||
* Thanks for the contribution. [@notable-equivalent](https://github.com/notable-equivalent)
|
||||
* Fix the `C_Cpp.refactoring.includeHeader` setting not honoring `always`.
|
||||
* Various other fixes found internally.
|
||||
|
||||
## Version 1.32.2: April 28, 2026
|
||||
### New Feature
|
||||
* Add support for "Run without debugging". [#1201](https://github.com/microsoft/vscode-cpptools/issues/1201)
|
||||
|
||||
### Enhancements
|
||||
* Add a `C_Cpp.doxygen.generateOnCodeAction` setting to allow disabling of Doxygen generation code actions. [#14341](https://github.com/microsoft/vscode-cpptools/issues/14341)
|
||||
* Add a `cpptools.waitForTagParsing` command (for use by the `C/C++ DevTools` extension). [PR #14407](https://github.com/microsoft/vscode-cpptools/pull/14407/changes)
|
||||
* Improve wildcard matching with the debugger natvis. [MIEngine#1162](https://github.com/microsoft/MIEngine/issues/1162)
|
||||
* Add support for `HideRawView` with the debugger natvis. [MIEngine#1458](https://github.com/microsoft/MIEngine/issues/1458)
|
||||
|
||||
### Bug Fixes
|
||||
* Fix high CPU usage caused by repeated calls to `selectChatModels`. [#14168](https://github.com/microsoft/vscode-cpptools/issues/14168), [#14211](https://github.com/microsoft/vscode-cpptools/issues/14211), [#14241](https://github.com/microsoft/vscode-cpptools/issues/14241)
|
||||
* Fix the MSVC developer environment not working if `UCRTVersion` isn't found, and update the walkthrough instructions for installing MSVC. [#14352](https://github.com/microsoft/vscode-cpptools/issues/14352)
|
||||
* Fix an IntelliSense crash when three special-case comments are used in a template. [#14360](https://github.com/microsoft/vscode-cpptools/issues/14360)
|
||||
* Fix Copilot hover taking too many premium requests. [#14372](https://github.com/microsoft/vscode-cpptools/issues/14372)
|
||||
* Fix null pointers being expandable for variables in the debugger. [MIEngine#698](https://github.com/microsoft/MIEngine/issues/698)
|
||||
* Fix recursive `{this}` evaluation with the debugger natvis. [MIEngine#1391](https://github.com/microsoft/MIEngine/issues/1391)
|
||||
* Update clang-tidy and clang-format from 22.1.1 to 22.1.3 (bug fixes).
|
||||
* Fix a bug with semantic colorization of operators.
|
||||
|
||||
## Version 1.31.5: April 20, 2026
|
||||
### Bug Fixes
|
||||
* Fix `Reinstalling the Extension.md` not being found. [#14389](https://github.com/microsoft/vscode-cpptools/issues/14389)
|
||||
* Fix the `C/C++ DevTools` extension language service tools not working after the `C/C++` extension updates via `Restart Extensions`. [#14392](https://github.com/microsoft/vscode-cpptools/issues/14392)
|
||||
|
||||
## Version 1.31.4: March 31, 2026
|
||||
### Bug Fix
|
||||
* Debugging cpptools and cpptools-srv processes on macOS (to get call stacks) is now blocked when SIP is enabled (due to a potential security issue).
|
||||
|
||||
## Version 1.31.3: March 24, 2026
|
||||
### Enhancements
|
||||
* Add support for `program` in attach debug configurations. [#14046](https://github.com/microsoft/vscode-cpptools/issues/14046)
|
||||
|
||||
+80
-159
@@ -568,6 +568,32 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
minimatch 4.2.6 - ISC
|
||||
https://github.com/isaacs/minimatch#readme
|
||||
|
||||
Copyright (c) 2011-2022 Isaac Z. Schlueter and Contributors
|
||||
|
||||
The ISC License
|
||||
|
||||
Copyright (c) 2011-2022 Isaac Z. Schlueter and Contributors
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
@@ -1117,6 +1143,44 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
@nevware21/ts-utils 0.14.0 - MIT
|
||||
https://github.com/nevware21/ts-utils
|
||||
|
||||
Copyright (c) 2022 NevWare21 Solutions LLC
|
||||
Copyright (c) 2023 NevWare21 Solutions LLC
|
||||
Copyright (c) 2024 NevWare21 Solutions LLC
|
||||
Copyright (c) 2025 NevWare21 Solutions LLC
|
||||
Copyright (c) 2026 NevWare21 Solutions LLC
|
||||
Copyright (c) 2022-2025 NevWare21 Solutions LLC
|
||||
Copyright (c) NevWare21 Solutions LLC and contributors
|
||||
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2022 NevWare21 Solutions LLC
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
@@ -1250,7 +1314,7 @@ SOFTWARE.
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
@xmldom/xmldom 0.8.11 - MIT
|
||||
@xmldom/xmldom 0.8.13 - MIT
|
||||
https://github.com/xmldom/xmldom
|
||||
|
||||
Copyright 2019 - present Christopher J. Brody and other contributors
|
||||
@@ -1334,7 +1398,7 @@ SOFTWARE.
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
axios 1.13.6 - MIT
|
||||
axios 1.16.0 - MIT
|
||||
https://axios-http.com/
|
||||
|
||||
Copyright (c) 2014-present, Facebook, Inc.
|
||||
@@ -1506,70 +1570,6 @@ The above copyright notice and this permission notice shall be included in all c
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
brace-expansion 1.1.12 - MIT
|
||||
https://github.com/juliangruber/brace-expansion
|
||||
|
||||
Copyright (c) 2013 Julian Gruber <[email protected]>
|
||||
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2013 Julian Gruber <[email protected]>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
brace-expansion 2.0.2 - MIT
|
||||
https://github.com/juliangruber/brace-expansion
|
||||
|
||||
Copyright (c) 2013 Julian Gruber <[email protected]>
|
||||
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2013 Julian Gruber <[email protected]>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
@@ -1642,7 +1642,7 @@ SOFTWARE.
|
||||
chokidar 3.6.0 - MIT
|
||||
https://github.com/paulmillr/chokidar
|
||||
|
||||
(c) Paul Miller <https://paulmillr.com>
|
||||
(c) Paul Miller
|
||||
Copyright (c) 2012-2019 Paul Miller (https://paulmillr.com), Elan Shanker
|
||||
|
||||
The MIT License (MIT)
|
||||
@@ -2090,7 +2090,7 @@ THE SOFTWARE.
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
follow-redirects 1.15.11 - MIT
|
||||
follow-redirects 1.16.0 - MIT
|
||||
https://github.com/follow-redirects/follow-redirects
|
||||
|
||||
Copyright 2014-present Olivier Lalonde <[email protected]> , James Talmage <[email protected]> , Ruben Verborgh
|
||||
@@ -2276,38 +2276,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
hasown 2.0.2 - MIT
|
||||
https://github.com/inspect-js/hasOwn#readme
|
||||
|
||||
Copyright (c) Jordan Harband and contributors
|
||||
|
||||
MIT License
|
||||
|
||||
Copyright (c) Jordan Harband and contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
@@ -3018,7 +2986,7 @@ THE SOFTWARE.
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
picomatch 2.3.1 - MIT
|
||||
picomatch 2.3.2 - MIT
|
||||
https://github.com/micromatch/picomatch
|
||||
|
||||
Copyright (c) 2017-present, Jon Schlinkert
|
||||
@@ -3116,7 +3084,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
proxy-from-env 1.1.0 - MIT
|
||||
proxy-from-env 2.1.0 - MIT
|
||||
https://github.com/Rob--W/proxy-from-env#readme
|
||||
|
||||
Copyright (c) 2016-2018 Rob Wu <[email protected]>
|
||||
@@ -3183,7 +3151,7 @@ readdirp 3.6.0 - MIT
|
||||
https://github.com/paulmillr/readdirp
|
||||
|
||||
Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller (https://paulmillr.com)
|
||||
Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller <https://paulmillr.com>
|
||||
Copyright (c) 2012-2019 Thorsten Lorenz, Paul Miller ( https://paulmillr.com )
|
||||
|
||||
MIT License
|
||||
|
||||
@@ -3277,7 +3245,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
shell-quote 1.8.2 - MIT
|
||||
shell-quote 1.8.4 - MIT
|
||||
https://github.com/ljharb/shell-quote
|
||||
|
||||
Copyright (c) 2013 James Halliday ([email protected])
|
||||
@@ -3343,7 +3311,7 @@ SOFTWARE.
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
tmp 0.2.5 - MIT
|
||||
tmp 0.2.7 - MIT
|
||||
http://github.com/raszi/node-tmp
|
||||
|
||||
Copyright (c) 2014 KARASZI Istvan
|
||||
@@ -3427,22 +3395,20 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
vscode-jsonrpc 8.1.0 - MIT
|
||||
https://github.com/Microsoft/vscode-languageserver-node#readme
|
||||
uuid 14.0.0 - MIT
|
||||
https://github.com/uuidjs/uuid#readme
|
||||
|
||||
Copyright (c) Microsoft Corporation
|
||||
Copyright (c) 2010-2020 Robert Kieffer and other contributors
|
||||
|
||||
Copyright (c) Microsoft Corporation
|
||||
The MIT License (MIT)
|
||||
|
||||
All rights reserved.
|
||||
|
||||
MIT License
|
||||
Copyright (c) 2010-2020 Robert Kieffer and other contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
@@ -3471,7 +3437,7 @@ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
vscode-languageclient 8.1.0 - MIT
|
||||
vscode-languageclient 9.0.1 - MIT
|
||||
https://github.com/Microsoft/vscode-languageserver-node#readme
|
||||
|
||||
Copyright (c) Microsoft Corporation
|
||||
@@ -3489,29 +3455,6 @@ The above copyright notice and this permission notice shall be included in all c
|
||||
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
vscode-languageserver-protocol 3.17.3 - MIT
|
||||
https://github.com/Microsoft/vscode-languageserver-node#readme
|
||||
|
||||
Copyright (c) Microsoft Corporation
|
||||
Copyright (c) TypeFox, Microsoft and others
|
||||
|
||||
Copyright (c) Microsoft Corporation
|
||||
|
||||
All rights reserved.
|
||||
|
||||
MIT License
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
@@ -3535,28 +3478,6 @@ The above copyright notice and this permission notice shall be included in all c
|
||||
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
vscode-languageserver-types 3.17.3 - MIT
|
||||
https://github.com/Microsoft/vscode-languageserver-node#readme
|
||||
|
||||
Copyright (c) Microsoft Corporation
|
||||
|
||||
Copyright (c) Microsoft Corporation
|
||||
|
||||
All rights reserved.
|
||||
|
||||
MIT License
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
---------------------------------------------------------
|
||||
|
||||
@@ -1,33 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"cpfe",
|
||||
"--wchar_t_keyword",
|
||||
"--no_warnings",
|
||||
"--rtti",
|
||||
"--edge",
|
||||
"--exceptions",
|
||||
"--error_limit",
|
||||
"25000",
|
||||
"-D_EDG_COMPILER",
|
||||
"-D_USE_DECLSPECS_FOR_SAL=1"
|
||||
],
|
||||
"source_file_format": "-f %s",
|
||||
"expressions": [
|
||||
{
|
||||
"match": "^/I(.*)",
|
||||
"replace": "-I\n$1"
|
||||
},
|
||||
{
|
||||
"match": "^/D(.*)",
|
||||
"replace": "-D$1"
|
||||
},
|
||||
{
|
||||
"match": "^/AI(.*)",
|
||||
"replace": "--using_directory\n$1"
|
||||
},
|
||||
{
|
||||
"match": "^/dE--(.*)",
|
||||
"replace": "--$1"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-Dunix=1",
|
||||
"-D__unix__=1",
|
||||
"-D__linux__=1",
|
||||
"-D__arm__=1",
|
||||
"-D__ARM_32BIT_STATE=1",
|
||||
"-D__PTRDIFF_TYPE__=int",
|
||||
"-D__SIZE_TYPE__=unsigned int",
|
||||
"-D__WCHAR_TYPE__=long int"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-Dunix=1",
|
||||
"-D__unix__=1",
|
||||
"-D__linux__=1",
|
||||
"-D__aarch64__=1",
|
||||
"-D__ARM_64BIT_STATE=1",
|
||||
"-D__PTRDIFF_TYPE__=long int",
|
||||
"-D__SIZE_TYPE__=long unsigned int",
|
||||
"-D__WCHAR_TYPE__=int"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-Dunix=1",
|
||||
"-D__unix__=1",
|
||||
"-D__linux__=1",
|
||||
"-D__x86_64=1",
|
||||
"-D__x86_64__=1",
|
||||
"-D__PTRDIFF_TYPE__=long int",
|
||||
"-D__SIZE_TYPE__=long unsigned int",
|
||||
"-D__WCHAR_TYPE__=int"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-Dunix=1",
|
||||
"-D__unix__=1",
|
||||
"-D__linux__=1",
|
||||
"-D__i386=1",
|
||||
"-D__i386__=1",
|
||||
"-D__PTRDIFF_TYPE__=int",
|
||||
"-D__SIZE_TYPE__=unsigned int",
|
||||
"-D__WCHAR_TYPE__=long int"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-Dunix=1",
|
||||
"-D__unix__=1",
|
||||
"-D__linux__=1",
|
||||
"-D__arm__=1",
|
||||
"-D__ARM_32BIT_STATE=1",
|
||||
"-D__PTRDIFF_TYPE__=int",
|
||||
"-D__SIZE_TYPE__=unsigned int",
|
||||
"-D__WCHAR_TYPE__=long int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-Dunix=1",
|
||||
"-D__unix__=1",
|
||||
"-D__linux__=1",
|
||||
"-D__aarch64__=1",
|
||||
"-D__ARM_64BIT_STATE=1",
|
||||
"-D__PTRDIFF_TYPE__=long int",
|
||||
"-D__SIZE_TYPE__=long unsigned int",
|
||||
"-D__WCHAR_TYPE__=int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-Dunix=1",
|
||||
"-D__unix__=1",
|
||||
"-D__linux__=1",
|
||||
"-D__x86_64=1",
|
||||
"-D__x86_64__=1",
|
||||
"-D__PTRDIFF_TYPE__=long int",
|
||||
"-D__SIZE_TYPE__=long unsigned int",
|
||||
"-D__WCHAR_TYPE__=int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-Dunix=1",
|
||||
"-D__unix__=1",
|
||||
"-D__linux__=1",
|
||||
"-D__i386=1",
|
||||
"-D__i386__=1",
|
||||
"-D__PTRDIFF_TYPE__=int",
|
||||
"-D__SIZE_TYPE__=unsigned int",
|
||||
"-D__WCHAR_TYPE__=long int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__APPLE__=1",
|
||||
"-D__MACH__=1",
|
||||
"-D__arm__=1",
|
||||
"-D__ARM_32BIT_STATE=1",
|
||||
"-D__PTRDIFF_TYPE__=int",
|
||||
"-D__SIZE_TYPE__=unsigned int",
|
||||
"-D__WCHAR_TYPE__=long int"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__APPLE__=1",
|
||||
"-D__MACH__=1",
|
||||
"-D__aarch64__=1",
|
||||
"-D__ARM_64BIT_STATE=1",
|
||||
"-D__PTRDIFF_TYPE__=long int",
|
||||
"-D__SIZE_TYPE__=long unsigned int",
|
||||
"-D__WCHAR_TYPE__=int"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__APPLE__=1",
|
||||
"-D__MACH__=1",
|
||||
"-D__x86_64=1",
|
||||
"-D__x86_64__=1",
|
||||
"-D__PTRDIFF_TYPE__=long int",
|
||||
"-D__SIZE_TYPE__=long unsigned int",
|
||||
"-D__WCHAR_TYPE__=int"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__APPLE__=1",
|
||||
"-D__MACH__=1",
|
||||
"-D__i386=1",
|
||||
"-D__i386__=1",
|
||||
"-D__PTRDIFF_TYPE__=int",
|
||||
"-D__SIZE_TYPE__=unsigned int",
|
||||
"-D__WCHAR_TYPE__=long int"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__APPLE__=1",
|
||||
"-D__MACH__=1",
|
||||
"-D__arm__=1",
|
||||
"-D__ARM_32BIT_STATE=1",
|
||||
"-D__PTRDIFF_TYPE__=int",
|
||||
"-D__SIZE_TYPE__=unsigned int",
|
||||
"-D__WCHAR_TYPE__=long int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__APPLE__=1",
|
||||
"-D__MACH__=1",
|
||||
"-D__aarch64__=1",
|
||||
"-D__ARM_64BIT_STATE=1",
|
||||
"-D__PTRDIFF_TYPE__=long int",
|
||||
"-D__SIZE_TYPE__=long unsigned int",
|
||||
"-D__WCHAR_TYPE__=int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__APPLE__=1",
|
||||
"-D__MACH__=1",
|
||||
"-D__x86_64=1",
|
||||
"-D__x86_64__=1",
|
||||
"-D__PTRDIFF_TYPE__=long int",
|
||||
"-D__SIZE_TYPE__=long unsigned int",
|
||||
"-D__WCHAR_TYPE__=int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D__APPLE__=1",
|
||||
"-D__MACH__=1",
|
||||
"-D__i386=1",
|
||||
"-D__i386__=1",
|
||||
"-D__PTRDIFF_TYPE__=int",
|
||||
"-D__SIZE_TYPE__=unsigned int",
|
||||
"-D__WCHAR_TYPE__=long int"
|
||||
],
|
||||
"defaults_op" : "merge"
|
||||
}
|
||||
@@ -1664,7 +1664,7 @@
|
||||
"#include_next, birincil kaynak dosyada kullanılamıyor",
|
||||
"şablon üye tanımında %no1 belirtilemiyor -- onun yerine %no2 varsayıldı",
|
||||
"yerel işlev bildiriminde, %sq özniteliği yoksayılıyor",
|
||||
"%sq öğesi ile %n içerisinde birleştirme işlemi, geçerli bir simge oluşturmuyor",
|
||||
"%sq öğesi ile %n içerisinde birleştirme işlemi, geçerli bir belirteç oluşturmuyor",
|
||||
"%no belirsiz (%n2 varsayıldı)",
|
||||
"statik bir üye işlev üzerinde tür niteleyicisine izin verilmiyor",
|
||||
"bir tür niteleyicisine, bir oluşturucu veya yıkıcı üzerinde izin verilmiyor",
|
||||
|
||||
@@ -3604,7 +3604,7 @@
|
||||
"第一个参数必须是指向整数、enum 或支持的浮点类型的指针",
|
||||
"编译多个翻译单元时无法使用 C++ 模块",
|
||||
"C++ 模块不能与 C++11 之前的 'export' 功能一起使用",
|
||||
"不支持 IFC 令牌 %sq",
|
||||
"不支持 IFC 标记 %sq",
|
||||
"'pass_object_size' 属性仅对函数声明的参数有效",
|
||||
"%sq 属性 %d1 的参数必须介于 0 和 %d2 之间",
|
||||
"此处的 ref-qualifier 被忽略",
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"記憶體不足。請考慮啟用 64 位元 IntelliSense 引擎,並在設定中增加 IntelliSense 記憶體限制。",
|
||||
null,
|
||||
"檔案結尾處有未封閉的註解",
|
||||
"無法辨認的語彙基元",
|
||||
"無法辨認的 Token",
|
||||
"遺漏右引號",
|
||||
"不允許巢狀註解",
|
||||
"這裡不應該出現 '#'",
|
||||
@@ -721,8 +721,8 @@
|
||||
"不允許 mutable",
|
||||
"不允許 %n 的重新宣告更改其存取權",
|
||||
null,
|
||||
"可能誤用替代的語彙基元 '<:'",
|
||||
"可能誤用替代的語彙基元 '%%:'",
|
||||
"可能誤用替代的 Token '<:'",
|
||||
"可能誤用替代的 Token '%%:'",
|
||||
"不允許命名空間定義",
|
||||
"名稱必須是命名空間名稱",
|
||||
"不允許命名空間別名定義",
|
||||
@@ -782,7 +782,7 @@
|
||||
"參考的目標是 %nd1 -- 根據舊的 for-init 範圍規則,它可能已 %nd2",
|
||||
"控制 for-init 差異時警告的選項只有在編譯 C++ 時才能使用",
|
||||
"這裡需要虛擬 %n 的定義",
|
||||
"空白註解被解譯為語彙基元帶入的運算子 '##'",
|
||||
"空白註解被解譯為 Token 帶入的運算子 '##'",
|
||||
"friend 宣告不能有儲存類別",
|
||||
"這個宣告不能有 %no 的樣板參數清單",
|
||||
"%n 不是有效的類別成員範本",
|
||||
@@ -1664,7 +1664,7 @@
|
||||
"#include_next 不能用於主要原始程式檔",
|
||||
"無法在樣板成員定義中指定 %no1 -- 假設為 %no2",
|
||||
"區域函式宣告忽略 %sq 屬性",
|
||||
"與 %sq (於 %n 中) 的串連不會建立有效的語彙基元",
|
||||
"與 %sq (於 %n 中) 的串連不會建立有效的 Token",
|
||||
"%no 模稜兩可 (假設為 %n2)",
|
||||
"靜態成員函式不能有類型限定詞",
|
||||
"建構函式或解構函式不能有類型限定詞",
|
||||
@@ -3388,7 +3388,7 @@
|
||||
"當 %sq 用於匯入或模組指示詞中時,不得為巨集",
|
||||
"這個指示詞只能出現在全域命名空間範圍內",
|
||||
"'export' 宣告只能出現在全域或命名空間範圍",
|
||||
"%sq 剖析為識別碼而非關鍵字,因為後續的權杖與前置處理器指示詞的標記不相符",
|
||||
"%sq 剖析為識別碼而非關鍵字,因為後續的 Token 與前置處理器指示詞的標記不相符",
|
||||
"這似乎是前置處理器指示詞的開頭,但是缺少 ';',後面緊接著新行會防止",
|
||||
"這似乎是模組前置處理指示詞,但這類指示詞不能出現在巨集展開中",
|
||||
"'module' 指示詞不能出現在條件式包含的範圍 (例如,#if、#else、#elseif 等)",
|
||||
@@ -3604,7 +3604,7 @@
|
||||
"第一個引數必須是整數的指標、enum 或支援的浮點類型",
|
||||
"編譯多個翻譯單元時,無法使用 C++ 模組",
|
||||
"C++ 模組無法搭配先前的 C++11 'export' 功能使用",
|
||||
"IFC 權杖 %sq 不受支援",
|
||||
"IFC Token %sq 不受支援",
|
||||
"'pass_object_size' 屬性僅在函式宣告的參數上有效",
|
||||
"%sq 屬性 %d1 的引數必須是介於 0 到 %d2 之間的值",
|
||||
"這裡會忽略 ref-qualifier",
|
||||
@@ -3624,11 +3624,11 @@
|
||||
"在此模式下,'auto' 作為類型規範並非標準用法",
|
||||
"由於檔案損毀,無法匯入模組檔案 %sq",
|
||||
"IFC",
|
||||
"成員宣告後插入了沒有直接關聯的權杖",
|
||||
"成員宣告後插入了沒有直接關聯的 Token",
|
||||
"錯誤的插入範圍 (%r)",
|
||||
"預期為 std::string_view 類型的值,但收到 %t",
|
||||
"陳述式後插入了沒有直接關聯的權杖",
|
||||
"宣告後插入了沒有直接關聯的權杖",
|
||||
"陳述式後插入了沒有直接關聯的 Token",
|
||||
"宣告後插入了沒有直接關聯的 Token",
|
||||
"Tuple 索引值 (%d) 溢位",
|
||||
">> 輸出來自 std::meta::__report_tokens",
|
||||
">> 結束輸出自 std::meta::__report_tokens",
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D_MSC_EXTENSIONS",
|
||||
"--microsoft",
|
||||
"--microsoft_bugs",
|
||||
"--microsoft_version",
|
||||
"1951",
|
||||
"-D_MSC_VER=1951",
|
||||
"-D_MSC_FULL_VER=195136122",
|
||||
"-D_MSC_BUILD=0",
|
||||
"-D_M_ARM=7"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D_MSC_EXTENSIONS",
|
||||
"--microsoft",
|
||||
"--microsoft_bugs",
|
||||
"--microsoft_version",
|
||||
"1951",
|
||||
"-D_CPPUNWIND=1",
|
||||
"-D_MSC_VER=1951",
|
||||
"-D_MSC_FULL_VER=195136122",
|
||||
"-D_MSC_BUILD=0",
|
||||
"-D_M_ARM64=1"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D_MSC_EXTENSIONS",
|
||||
"--microsoft",
|
||||
"--microsoft_bugs",
|
||||
"--microsoft_version",
|
||||
"1951",
|
||||
"-D_CPPUNWIND=1",
|
||||
"-D_MSC_VER=1951",
|
||||
"-D_MSC_FULL_VER=195136122",
|
||||
"-D_MSC_BUILD=0",
|
||||
"-D_M_X64=100",
|
||||
"-D_M_AMD64=100"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"defaults": [
|
||||
"-D_MSC_EXTENSIONS",
|
||||
"--microsoft",
|
||||
"--microsoft_bugs",
|
||||
"--microsoft_version",
|
||||
"1951",
|
||||
"-D_MSC_VER=1951",
|
||||
"-D_MSC_FULL_VER=195136122",
|
||||
"-D_MSC_BUILD=0",
|
||||
"-D_M_IX86=600",
|
||||
"-D_M_IX86_FP=2"
|
||||
],
|
||||
"defaults_op": "merge"
|
||||
}
|
||||
@@ -213,17 +213,6 @@
|
||||
"recursiveIncludes": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"reduce": {
|
||||
"markdownDescription": "Set to `always` to always reduce the number of recursive include paths provided to IntelliSense to only those paths currently referenced by #include statements. This requires first parsing files to determine which headers are included. Set to `never` to provide all recursive include paths to IntelliSense. Reducing the number of recursive include paths may improve IntelliSense performance when a very large number of recursive include paths are involved. Not reducing the number of recursive include paths can improve IntelliSense performance by avoiding the need to parse files to determine which include paths to provide. The `default` value is currently to reduce the number of recursive include paths provided to IntelliSense.",
|
||||
"descriptionHint": "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.",
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"always",
|
||||
"never",
|
||||
"default",
|
||||
"${default}"
|
||||
]
|
||||
},
|
||||
"priority": {
|
||||
"markdownDescription": "The priority of recursive include paths. If set to `beforeSystemIncludes`, the recursive include paths will be searched before system include paths. If set to `afterSystemIncludes`, the recursive include paths will be searched after system include paths. `beforeSystemIncludes` would more closely reflect the search order of a compiler, while `afterSystemIncludes` may result in improved performance.",
|
||||
"descriptionHint": "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.",
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.limitSymbolsToIncludedHeaders": "设为 `true` 以仅处理直接或间接包含为标头的文件,设为 `false` 则处理指定包含路径下的所有文件。",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.databaseFilename": "所生成的符号数据库的路径。如果指定了相对路径,则它将相对于工作区的默认存储位置。",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.path": "用于索引和分析工作区符号的路径列表(供“转到定义”、“查找所有引用”等使用)。默认情况下,在这些路径上进行搜索为递归搜索。指定 `*` 以指示非递归搜索。例如,`${workspaceFolder}` 将搜索所有子目录,而 `${workspaceFolder}/*` 将不进行搜索。",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.reduce": "设置为 `always` 可始终将提供给 IntelliSense 的递归包含路径数减少到仅限当前由 #include 语句引用的路径。这需要首先分析文件以确定包含哪些标头。设置为 `never` 可将所有递归包含路径提供给 IntelliSense。当涉及到大量递归包含路径时,减少递归包含路径的数量可能会提高 IntelliSense 性能。如果不减少递归包含路径的数量,则可以通过避免需要分析文件以确定要提供的包含路径来提高 IntelliSense 性能。`default` 值目前会减少提供给 IntelliSense 的递归包含路径数。",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.priority": "递归包含路径的优先级。如果设置为 `beforeSystemIncludes`,则会在系统包含路径之前搜索递归包含路径。如果设置为 `afterSystemIncludes` ,则会在系统包含路径后搜索递归包含路径。`beforeSystemIncludes` 将更密切地反映编译器的搜索顺序,而 `afterSystemIncludes` 则可能导致性能提升。",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.order": "搜索递归包含的子目录的顺序。",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.customConfigurationVariables": "可通过命令`${cpptools:activeConfigCustomVariable}` 查询的自定义变量,用于 `launch.json` 或 `tasks.json`. 中的输入变量。",
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.headerFilter.markdownDescription": "与要从中输出诊断的标头名称匹配的 POSIX 扩展正则表达式 (ERE)。始终显示来自每个翻译单元的主文件的诊断。支持 `${workspaceFolder}` 变量(如果不存在 `.clang-tidy` 文件,则该变量将用作默认回退值)。如果此选项不是 `null` (空),则将替代 `.clang-tidy` 文件中的 `HeaderFilterRegex` 选项(如果有)。",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.args.markdownDescription": "要传递给 `clang-tidy` 的其他命令行参数。这些优先于等效的 `C_Cpp.codeAnalysis.clangTidy.*` 设置。",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.useBuildPath.markdownDescription": "如果设置了 `true` 和 `compileCommands`,则 `-p=<build-path>` 参数将传递给 `clang-tidy`,而不是在 `--` 之后传递生成参数。如果未设置环境变量以便可以找到系统包含项,则此操作可能不起作用。",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "已启用的 `clang-tidy` 检查列表。这些值将追加到 `.clang-tidy` 文件中的 `Checks` 或 `#C_Cpp.codeAnalysis.clangTidy.config#` (如果有)。除非显式禁用,否则始终使用默认检查 `clang-analyzer-*`。",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "已启用的 `clang-tidy` 检查列表。这些值将追加到 `.clang-tidy` 文件中的 `Checks` 或 `#C_Cpp.codeAnalysis.clangTidy.config#` (如果有)。除非显式禁用,否则将始终启用默认检查 `clang-analyzer-core.*`。",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.disabled.markdownDescription": "已禁用的 `clang-tidy` 检查列表。该值将追加到 `.clang-tidy` 文件中的 `Checks` 或 `#C_Cpp.codeAnalysis.clangTidy.config#` (如果有)。",
|
||||
"c_cpp.configuration.formatting.description": "配置格式设置引擎。",
|
||||
"c_cpp.configuration.formatting.clangFormat.markdownDescription": "`clang-format` 将用于格式代码。",
|
||||
@@ -210,6 +210,7 @@
|
||||
"c_cpp.configuration.preferredPathSeparator.markdownDescription": "用作生成的用户路径的路径分隔符的字符。",
|
||||
"c_cpp.configuration.simplifyStructuredComments.markdownDescription": "如果为 `true`,则悬停和自动完成的工具提示将仅显示结构化注释的某些标签。否则,将显示所有注释。",
|
||||
"c_cpp.configuration.doxygen.generateOnType.description": "控制在键入所选注释样式后是否自动插入 Doxygen 注释。",
|
||||
"c_cpp.configuration.doxygen.generateOnCodeAction.description": "控制是否启用生成 Doxygen 注释的代码操作。",
|
||||
"c_cpp.configuration.doxygen.generatedStyle.description": "用作 Doxygen 注释起始行的字符串。",
|
||||
"c_cpp.configuration.doxygen.sectionTags.description": "启用“简化结构化注释”设置后,选择希望在工具提示区域中悬停时显示的 Doxygen 节标记。 ",
|
||||
"c_cpp.configuration.commentContinuationPatterns.items.anyof.string.markdownDescription": "开始多行或单行注释块的模式。多行注释块的延续模式默认为 ` * `,或单行注释块默认为此字符串。",
|
||||
@@ -390,6 +391,9 @@
|
||||
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "如果此条目仅用于堆栈帧位置映射,则为 False。如果在指定断点位置时也需要使用此条目,则为 True。",
|
||||
"c_cpp.debuggers.symbolOptions.description": "用于控制如何找到和加载符号(.pdb 文件)的选项。",
|
||||
"c_cpp.debuggers.unknownBreakpointHandling.description": "控制在命中时如何处理(通常通过原始 GDB 命令)外部设置的断点。\n允许的值为 \"throw\" (好像应用程序抛出了异常)和 \"stop\" (只会暂停调试会话)。默认值为 \"throw\"。",
|
||||
"c_cpp.debuggers.debuginfod.description": "控制 GDB 的 debuginfod 行为,以从 debuginfod 服务器下载调试符号。",
|
||||
"c_cpp.debuggers.debuginfod.enabled.description": "如果为 true (默认值),则启用 GDB 的 debuginfod 支持。设置为 false 可阻止 GDB 联系 debuginfod 服务器。",
|
||||
"c_cpp.debuggers.debuginfod.timeout.description": "debuginfod 服务器请求的超时(以秒为单位)。默认值为 30。设置为 0 可使用 GDB/libdebuginfod 默认值(无替代)。",
|
||||
"c_cpp.debuggers.VSSymbolOptions.description": "提供用于找到符号并将其加载到调试适配器的配置。",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchPaths.description": "在其中搜索 .pdb 文件的符号服务器 URL (例如 http://MyExampleSymbolServer)或目录(例如 /build/symbols)的数组。除了默认位置,还将搜索这些目录 - 在模块以及 pdb 最初放置到的路径的旁边。",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchMicrosoftSymbolServer.description": "如果为 \"true\",则 Microsoft 符号服务器(https://msdl.microsoft.com/download/symbols)会添加到符号搜索路径。如果未指定,此选项会默认为 \"false\"。",
|
||||
|
||||
@@ -4,5 +4,10 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"debugger.not.available": "调试程序类型“{0}”不适用于非 Windows 计算机。"
|
||||
"debugger.not.available": "调试程序类型“{0}”不适用于非 Windows 计算机。",
|
||||
"debugger.noDebug.requestType.not.supported": "仅启动配置支持“运行但不调试”。",
|
||||
"debugger.noDebug.pipeTransport.not.supported": "已设置 \"pipeTransport\" 的配置不支持“运行但不调试”。",
|
||||
"debugger.noDebug.debugServerPath.not.supported": "已设置 \"debugServerPath\" 的配置不支持“运行但不调试”。",
|
||||
"debugger.noDebug.miDebuggerServerAddress.not.supported": "已设置 \"miDebuggerServerAddress\" 的配置不支持“运行但不调试”。",
|
||||
"debugger.noDebug.coreDumpPath.not.supported": "已设置 \"coreDumpPath\" 的配置不支持“运行但不调试”。"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"no.terminal.emulator": "找不到终端仿真器。请将 $TERMINAL 环境变量设置为你选择的终端仿真器,或安装以下程序之一: x-terminal-emulator、gnome-terminal、konsole、xterm。"
|
||||
}
|
||||
@@ -319,5 +319,102 @@
|
||||
"file_not_found_in_path2": "在 compile_commands.json 文件中找不到 \"{0}\"。此文件将改用文件夹“{1}”中的 c_cpp_properties.json 中包含的 \"includePath\"。",
|
||||
"copilot_hover_link": "生成 Copilot 摘要",
|
||||
"browse_path_not_found": "无法为不存在的文件夹 {0} 中的文件编制索引",
|
||||
"license_terms": "C/C++ 扩展只能用于 Microsoft Visual Studio、Visual Studio for Mac、Visual Studio Code、Azure DevOps、Team Foundation Server 以及后续的 Microsoft 产品和服务,以开发和测试您的应用程序。"
|
||||
"license_terms": "C/C++ 扩展只能用于 Microsoft Visual Studio、Visual Studio for Mac、Visual Studio Code、Azure DevOps、Team Foundation Server 以及后续的 Microsoft 产品和服务,以开发和测试您的应用程序。",
|
||||
"help_title": "Microsoft C++ 语言服务器",
|
||||
"help_usage": "使用情况: {0} [选项]",
|
||||
"help_options_header": "选项:",
|
||||
"help_help": "显示此帮助消息并退出。",
|
||||
"help_version": "显示版本信息并退出。",
|
||||
"help_accept_eula": "永久接受最终用户许可协议(EULA)。",
|
||||
"help_stderr": "不将 stderr 重定向到 /dev/null (对调试有用)。",
|
||||
"help_login": "启动交互式登录(需要 GitHub Copilot 订阅)。",
|
||||
"help_force_login": "即使已完成身份验证,也强制启动登录流程。",
|
||||
"help_allow_plaintext": "如果安全密钥链不可用,允许以明文存储凭据。",
|
||||
"help_log_dir": "指定日志文件的目录(默认值: 系统临时目录)。",
|
||||
"help_log_level": "将日志详细级别从 0 (仅错误)设置为 9 (详细)。",
|
||||
"help_lsp_config": "将参数指定为绝对路径,或相对于工作区根目录或其 .github 文件夹的路径。",
|
||||
"help_disable_telemetry": "禁用发送遥测数据。",
|
||||
"auth_device_flow_prompt": "若要通过 GitHub 进行身份验证,请复制代码 {0},然后访问 {1}。正在等待授权...",
|
||||
"auth_timed_out": "等待授权超时。",
|
||||
"auth_success": "已成功通过 GitHub 身份验证。",
|
||||
"auth_save_failed": "GitHub 身份验证成功,但无法保存令牌。",
|
||||
"auth_keyring_error": "Keyring 错误: {0}",
|
||||
"auth_keyring_locked": "keyring 集合已锁定。请解锁或重启 gnome-keyring-daemon。",
|
||||
"auth_keyring_unavailable": "没有可用的 keyring 服务。安装并启动 gnome-keyring: sudo apt install gnome-keyring",
|
||||
"auth_try_plaintext": "或通过传递 --login --allow-plaintext-secret-storage 允许明文存储。",
|
||||
"auth_expired": "设备代码已过期。请重试。",
|
||||
"auth_denied": "用户拒绝了授权。",
|
||||
"auth_unexpected_error": "轮询期间发生意外错误: {0}",
|
||||
"auth_login_failed": "GitHub 登录失败。尝试从命令行使用 --login 运行以登录。",
|
||||
"auth_eula_required": "必须接受 EULA 才能继续。请使用 --accept-eula 运行。",
|
||||
"auth_already_authenticated": "已通过 GitHub 身份验证。使用 --force-login 重新进行身份验证。",
|
||||
"config_unsupported_version": "初始化失败: 配置版本不受支持。仅支持版本 1。",
|
||||
"config_file_not_found": "初始化失败: 未找到配置文件“{0}”。",
|
||||
"config_parse_failed": "初始化失败: 无法解析配置文件“{0}”。请验证 JSON 格式。错误: {1}",
|
||||
"config_repo_path_invalid": "初始化失败: \"repositoryPath\" 未配置或无效。",
|
||||
"config_missing_source": "初始化失败: 必须配置 \"compileCommands\" 或 \"cppProperties\"。",
|
||||
"config_dual_source": "初始化失败: 不能同时配置 \"compileCommands\" 和 \"cppProperties\"。",
|
||||
"config_compile_commands_not_found": "初始化失败: 未找到 \"compileCommands\" 路径:“{0}”。",
|
||||
"config_cpp_properties_not_found": "初始化失败: 未找到 \"cppProperties\" 路径:“{0}”。",
|
||||
"config_cpp_properties_parse_failed": "初始化失败: 无法解析 \"cppProperties\" 指定的文件:“{0}”。请验证 JSON 格式。错误: {1}",
|
||||
"config_cpp_properties_schema_invalid": "初始化失败: 无法从 \"cppProperties\" 文件读取配置:“{0}”。请验证架构。",
|
||||
"config_no_configurations": "初始化失败:“{0}”不包含有效的 \"configurations\" 数组。",
|
||||
"config_configuration_not_found": "初始化失败: 在 \"cppProperties\" 文件中找不到配置“{0}”:“{1}”。",
|
||||
"config_paths_cache_missing": "初始化失败: 缺少 LSP 配置路径缓存。",
|
||||
"curl_not_found": "未找到 libcurl ({0})。身份验证和遥测需要 libcurl。",
|
||||
"curl_install_macos": "macOS 默认应已提供 libcurl。如果缺失,请通过以下命令安装: brew install curl",
|
||||
"curl_install_linux": "安装 libcurl: sudo apt install libcurl4 (Debian/Ubuntu)或 sudo dnf install libcurl (Fedora/RHEL)。",
|
||||
"curl_symbols_missing": "已加载 libcurl,但缺少必需的符号。这可能表示 libcurl 版本太旧或不兼容。没有兼容的 libcurl,语言服务器无法运行。",
|
||||
"keytar_not_found": "未找到 libsecret-1.so.0 ({0})。安全凭据存储需要 libsecret。安装 libsecret: sudo apt install libsecret-1-0 (Debian/Ubuntu)或 sudo dnf install libsecret (Fedora/RHEL)。",
|
||||
"keytar_symbols_missing": "已加载 libsecret,但缺少必需的符号。没有兼容的 libsecret,语言服务器无法运行。",
|
||||
"telemetry_disable_failed": "禁用遥测失败。",
|
||||
"lsp_method_not_found": "未找到方法: {0}",
|
||||
"intellisense_same_canonical_path": "无法为与现有文件具有相同规范化路径的文件处理 IntelliSense。URI: {0},规范化路径: {1}",
|
||||
"status_initializing": "正在初始化",
|
||||
"status_initializing_with_n_of_m": "正在初始化({0}/{1})",
|
||||
"status_initializing_with_n_of_m_and_text": "正在初始化({0}/{1}): {2}",
|
||||
"status_initializing_with_text": "正在初始化 {0}",
|
||||
"status_initializing_projects": "正在初始化项目",
|
||||
"status_initializing_projects_with_n_of_m": "正在初始化项目({0}/{1})",
|
||||
"status_initializing_projects_with_n_of_m_and_text": "正在初始化项目({0}/{1}): {2}",
|
||||
"status_initializing_projects_with_text": "正在初始化项目 {0}",
|
||||
"status_checking_for_outdated_files": "正在检查过期文件",
|
||||
"status_checking_for_outdated_files_with_n_of_m": "正在检查过期文件({0}/{1})",
|
||||
"status_checking_for_outdated_files_with_n_of_m_and_text": "正在检查过期文件({0}/{1}): {2}",
|
||||
"status_checking_for_outdated_files_with_text": "正在检查过期文件 {0}",
|
||||
"status_parsing_files": "正在解析文件",
|
||||
"status_parsing_files_with_n_of_m": "正在解析文件({0}/{1})",
|
||||
"status_parsing_files_with_n_of_m_and_text": "正在解析文件({0}/{1}): {2}",
|
||||
"status_parsing_files_with_text": "正在解析文件 {0}",
|
||||
"status_parsing_includes": "正在解析包含的文件",
|
||||
"status_parsing_includes_with_n_of_m": "正在解析包含的文件({0}/{1})",
|
||||
"status_parsing_includes_with_n_of_m_and_text": "正在解析包含的文件({0}/{1}): {2}",
|
||||
"status_parsing_includes_with_text": "正在解析包含的文件 {0}",
|
||||
"status_scanning_includes": "正在扫描 #includes 以查找更多文件",
|
||||
"status_scanning_includes_with_n_of_m": "正在扫描 #includes 以查找更多文件({0}/{1})",
|
||||
"status_scanning_includes_with_n_of_m_and_text": "正在扫描 #includes 以查找更多文件({0}/{1}): {2}",
|
||||
"status_scanning_includes_with_text": "正在扫描 #includes 以查找更多文件 {0} {1}",
|
||||
"status_updating_external_dependencies": "就绪(正在更新外部依赖项)",
|
||||
"status_updating_external_dependencies_with_n_of_m": "就绪(正在更新外部依赖项)({0}/{1})",
|
||||
"status_updating_external_dependencies_with_n_of_m_and_text": "就绪(正在更新外部依赖项)({0}/{1}): {2}",
|
||||
"status_updating_external_dependencies_with_text": "就绪(正在更新外部依赖项){0}",
|
||||
"status_optimizing_database": "就绪(正在优化数据库)",
|
||||
"status_optimizing_database_with_n_of_m": "就绪(正在优化数据库)({0}/{1})",
|
||||
"status_optimizing_database_with_n_of_m_and_text": "就绪(正在优化数据库)({0}/{1}): {2}",
|
||||
"status_optimizing_database_with_text": "就绪(正在优化数据库){0}",
|
||||
"status_creating_indexes": "正在创建索引",
|
||||
"status_creating_indexes_with_n_of_m": "正在创建索引({0}/{1})",
|
||||
"status_creating_indexes_with_n_of_m_and_text": "正在创建索引({0}/{1}): {2}",
|
||||
"status_creating_indexes_with_text": "正在创建索引 {0}",
|
||||
"status_evaluating_file": "正在评估",
|
||||
"status_evaluating_file_with_n_of_m": "正在计算({0}/{1})",
|
||||
"status_evaluating_file_with_n_of_m_and_text": "正在计算({0}/{1}): {2}",
|
||||
"status_evaluating_file_with_text": "正在计算 {0}",
|
||||
"status_indexing_files": "正在为文件编制索引",
|
||||
"status_indexing_files_with_n_of_m": "正在为文件编制索引({0} of {1})",
|
||||
"status_indexing_files_with_n_of_m_and_text": "正在为文件编制索引({0}/{1}): {2}",
|
||||
"status_indexing_files_with_text": "正在为文件编制索引 {0}",
|
||||
"help_allow_missing_lsp_config": "即使指定的 --lsp-config 文件不存在,也允许服务器启动。",
|
||||
"initialize_failed_during_engine_setup": "引擎设置期间初始化失败。",
|
||||
"important_label": "重要说明:"
|
||||
}
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "在 Windows 上安装 C++ 编译器",
|
||||
"walkthrough.windows.text1": "如果要对 Windows 进行 C++ 开发,建议安装 Microsoft Visual C++ (MSVC)编译器。",
|
||||
"walkthrough.windows.text2": "若要安装 MSVC,请打开 VS Code 终端(CTRL + `)并在以下命令中粘贴:\n",
|
||||
"walkthrough.windows.text2": "若要安装 MSVC,请打开 VS Code 终端(CTRL + `)并在以下命令中粘贴:",
|
||||
"walkthrough.windows.note1": "注意",
|
||||
"walkthrough.windows.note1.text": "可以使用 Visual Studio 生成工具中的 C++ 工具集以及 Visual Studio Code 以编译、生成并验证任何 C++ 代码库,前提是同时具有有效的 Visual Studio 许可证(社区版、专业版或企业版),且正积极将其用于开发该 C++ 代码库。",
|
||||
"walkthrough.windows.verify.compiler": "验证编译器安装",
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "在 Windows 上安装 C++ 编译器",
|
||||
"walkthrough.windows.text1": "如果要对 Windows 进行 C++ 开发,建议安装 Microsoft Visual C++ (MSVC)编译器。",
|
||||
"walkthrough.windows.text2": "若要安装 MSVC,请打开 VS Code 终端(CTRL + `)并在以下命令中粘贴:\n",
|
||||
"walkthrough.windows.text2": "若要安装 MSVC,请打开 VS Code 终端(CTRL + `)并在以下命令中粘贴:",
|
||||
"walkthrough.windows.note1": "注意",
|
||||
"walkthrough.windows.note1.text": "可以使用 Visual Studio 生成工具中的 C++ 工具集以及 Visual Studio Code 以编译、生成并验证任何 C++ 代码库,前提是同时具有有效的 Visual Studio 许可证(社区版、专业版或企业版),且正积极将其用于开发该 C++ 代码库。",
|
||||
"walkthrough.windows.verify.compiler": "验证编译器安装",
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.limitSymbolsToIncludedHeaders": "設為 `true`,就會只處理直接或間接以標頭形式包含的檔案。設為 `false`,則會處理位於指定 include 路徑下的所有檔案。",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.databaseFilename": "產生的符號資料庫路徑。如果指定了相對路徑,就會是相對於工作區預設儲存位置的路徑。",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.path": "用來為工作區符號進行索引編製與剖析的路徑清單 (供 [移至定義]、[尋找所有參考] 等使用)。根據預設,會以遞迴方式搜尋這些路徑。指定 `*` 表示非遞迴搜尋。例如,`${workspaceFolder}` 將在所有子目錄中搜尋,`${workspaceFolder}/*` 則不會。",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.reduce": "設定為 `always`,可使 IntelliSense 始終僅提供目前由 #include 陳述式參考的遞迴包含路徑。這需要先剖析檔案,以確定包含哪些標頭。設定為 `never` 以將所有遞迴包含路徑提供給 IntelliSense。當涉及非常大量的遞迴包含路徑時,減少遞迴包含路徑數目可能會改善 IntelliSense 的效能。不減少遞迴包含路徑的數量,可避免需要剖析檔案以決定要提供哪些包含路徑,從而 IntelliSense 效能。目前的 `default` 值會減少 IntelliSense 提供的遞迴包含路徑數量。",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.priority": "遞迴包含路徑的優先順序。如果設定為 `beforeSystemIncludes`,則會在系統包含路徑之前搜尋遞迴包含路徑。如果設定為 `afterSystemIncludes`,系統會在包含路徑之後搜尋遞迴包含路徑。`beforeSystemIncludes` 會更密切地反映編譯器的搜尋順序,而 `afterSystemIncludes` 可能會改善效能。",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.order": "搜尋遞迴包含之子目錄的順序。",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.customConfigurationVariables": "可透過命令 `${cpptools:activeConfigCustomVariable}` 查詢的自訂變數,用於 `launch.json` 或 `tasks.json` 的輸入變數。",
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.headerFilter.markdownDescription": "符合輸出診斷來源之標頭名稱的 POSIX 擴充規則運算式 (ERE)。來自每個編譯單位之主要檔案的診斷將一律顯示。支援 `${workspaceFolder}` 變數 (如果沒有 `.clang-tidy` 檔案,則作為預設後援值)。若此選項並非 `null` (空白),則會覆寫 `.clang-tidy` 檔案中的 `HeaderFilterRegex` 選項 (如果有的話)。",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.args.markdownDescription": "要傳遞給 `clang-tidy` 的其他命令列引數。這些命令列引數會比對等的 `C_Cpp.codeAnalysis.clangTidy.*` 設定優先考慮。",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.useBuildPath.markdownDescription": "如果設定了 `true` 和 `compileCommands`,則 `-p=<build-path>` 引數會傳遞至 `clang-tidy`,而非在 `--` 之後傳遞組建引數。若未設定環境變數以找到系統包含的環境變數,可能無法運作。",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "已啟用的 `clang-tidy` 檢查清單。值會附加到 `.clang-tidy` 檔案中的 `Checks` 或 `#C_Cpp.codeAnalysis.clangTidy.config#` (如果有的話)。除非明確地停用,否則一律使用預設檢查 `clang-analyzer-*`。",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "已啟用的 `clang-tidy` 檢查清單。這些值會附加至 `.clang-tidy` 檔案中的 `Checks` 或 `#C_Cpp.codeAnalysis.clangTidy.config#` (如果有的話)。除非明確停用,否則一律使用預設檢查 `clang-analyzer-core.*`。",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.disabled.markdownDescription": "已停用的 `clang-tidy` 檢查清單。值會附加到 `.clang-tidy` 檔案中的 `Checks` 或 `#C_Cpp.codeAnalysis.clangTidy.config#` (如果有的話)。",
|
||||
"c_cpp.configuration.formatting.description": "選擇格式設定引擎。",
|
||||
"c_cpp.configuration.formatting.clangFormat.markdownDescription": "將使用 `clang-format` 來格式化程式碼。",
|
||||
@@ -210,6 +210,7 @@
|
||||
"c_cpp.configuration.preferredPathSeparator.markdownDescription": "作為所產生使用者路徑之路徑分隔符的字元。",
|
||||
"c_cpp.configuration.simplifyStructuredComments.markdownDescription": "若為 `true`,暫留與自動完成的工具提示只會顯示特定結構化註解標籤,否則將會顯示所有註解。",
|
||||
"c_cpp.configuration.doxygen.generateOnType.description": "控制是否在輸入選擇的註解樣式後自動插入 Doxygen 註解。",
|
||||
"c_cpp.configuration.doxygen.generateOnCodeAction.description": "控制是否啟用產生 Doxygen 註解的程式碼動作。",
|
||||
"c_cpp.configuration.doxygen.generatedStyle.description": "作為 Doxygen 註解起始行的字元字串。",
|
||||
"c_cpp.configuration.doxygen.sectionTags.description": "選取啟用 [簡化結構化註解] 設定時,要在於工具提示區域暫留時顯示的 [Doxygen] 區段標籤。 ",
|
||||
"c_cpp.configuration.commentContinuationPatterns.items.anyof.string.markdownDescription": "開始多行或單行註解區塊的模式。對於多行註解區塊,接續模式預設為 ` * `,或此字串表示單行註解區塊。",
|
||||
@@ -390,6 +391,9 @@
|
||||
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "若此項目只用於堆疊框架位置對應,則為 False; 若在指定中斷點位置時也應該使用此項目,則為 True。",
|
||||
"c_cpp.debuggers.symbolOptions.description": "控制如何找到並載入符號 (.pdb 檔案) 的選項。",
|
||||
"c_cpp.debuggers.unknownBreakpointHandling.description": "控制叫用時如何處理在外部設定的中斷點 (通常是透過原始 GDB 命令)。\n允許的值為 \"throw\",其作用就像應用程式擲出例外,以及 \"stop\",其只會暫停偵錯工作階段。預設值為 \"throw\"。",
|
||||
"c_cpp.debuggers.debuginfod.description": "控制從 debuginfod 伺服器下載偵錯符號的 GDB debuginfod 行為。",
|
||||
"c_cpp.debuggers.debuginfod.enabled.description": "如果為 true (預設值),則會啟用 GDB 的 debuginfod 支援。設定為 False 以防止 GDB 聯繫 debuginfod 伺服器。",
|
||||
"c_cpp.debuggers.debuginfod.timeout.description": "debuginfod 伺服器要求的逾時秒數。預設值為 30。設定為 0 以使用 GDB/libdebuginfod 預設值 (無覆寫)。",
|
||||
"c_cpp.debuggers.VSSymbolOptions.description": "提供將符號尋找及載入至偵錯介面卡的設定。",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchPaths.description": "符號陣列伺服器 URL (範例: http://MyExampleSymbolServer) 或目錄 (範例: /build/symbols) 搜尋 .pdb 檔案。除了預設位置 (位於模組旁和 pdb 原先放置的路徑),也會搜尋這些目錄。",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchMicrosoftSymbolServer.description": "如果是 'true',則會將 Microsoft 符號伺服器 (https://msdl.microsoft.com/download/symbols) 新增至符號搜尋路徑。若未指定,這個選項會預設為 'false'。",
|
||||
|
||||
@@ -4,5 +4,10 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"debugger.not.available": "非 Windows 電腦無法使用偵錯工具類型 '{0}'。"
|
||||
"debugger.not.available": "非 Windows 電腦無法使用偵錯工具類型 '{0}'。",
|
||||
"debugger.noDebug.requestType.not.supported": "僅啟動設定才支援「執行但不進行偵錯」。",
|
||||
"debugger.noDebug.pipeTransport.not.supported": "設定 'pipeTransport' 的設定不支援「執行但不進行偵錯」。",
|
||||
"debugger.noDebug.debugServerPath.not.supported": "設定 'debugServerPath' 的設定不支援「執行但不進行偵錯」。",
|
||||
"debugger.noDebug.miDebuggerServerAddress.not.supported": "設定 'miDebuggerServerAddress' 的設定不支援「執行但不進行偵錯」。",
|
||||
"debugger.noDebug.coreDumpPath.not.supported": "設定 'coreDumpPath' 的設定不支援「執行但不進行偵錯」。"
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"no.terminal.emulator": "找不到終端機模擬器。請將 $TERMINAL 環境變數設定為您所選擇的終端機模擬器,或安裝下列其中一項: x-terminal-emulator、gnome-terminal、konsole、xterm。"
|
||||
}
|
||||
@@ -319,5 +319,102 @@
|
||||
"file_not_found_in_path2": "在 compile_commands.json 檔案中找不到 \"{0}\"。將對此檔案改用資料夾 '{1}' 中 c_cpp_properties.json 的 'includePath'。",
|
||||
"copilot_hover_link": "產生 Copilot 摘要",
|
||||
"browse_path_not_found": "無法為以下不存在的資料夾中的檔案編製索引:{0}",
|
||||
"license_terms": "C/C++ 擴充功能僅能與 Microsoft Visual Studio、Visual Studio for Mac、Visual Studio Code、Azure DevOps、Team Foundation Server 及後續的 Microsoft 產品與服務搭配使用,以開發和測試您的應用程式。"
|
||||
"license_terms": "C/C++ 擴充功能僅能與 Microsoft Visual Studio、Visual Studio for Mac、Visual Studio Code、Azure DevOps、Team Foundation Server 及後續的 Microsoft 產品與服務搭配使用,以開發和測試您的應用程式。",
|
||||
"help_title": "Microsoft C++ 語言伺服器",
|
||||
"help_usage": "使用方式: {0} [選項]",
|
||||
"help_options_header": "選項:",
|
||||
"help_help": "顯示此說明訊息並結束。",
|
||||
"help_version": "顯示版本資訊並結束。",
|
||||
"help_accept_eula": "永久接受終端使用者授權合約 (EULA)。",
|
||||
"help_stderr": "請勿將 stderr 重新導向至 /dev/null (對偵錯很有幫助)。",
|
||||
"help_login": "起始互動登入 (需要 GitHub Copilot 訂閱)。",
|
||||
"help_force_login": "即使已驗證,仍強制登入程序。",
|
||||
"help_allow_plaintext": "若無法使用安全 Keychain,允許以純文字儲存認證。",
|
||||
"help_log_dir": "指定記錄檔的目錄 (預設: 系統暫存目錄)。",
|
||||
"help_log_level": "將記錄詳細程度設定為從 0 (僅錯誤) 到 9 (詳細資訊)。",
|
||||
"help_lsp_config": "請將參數指定為絕對路徑,或相對於工作區根目錄或其 .github 資料夾。",
|
||||
"help_disable_telemetry": "停用傳送遙測資料。",
|
||||
"auth_device_flow_prompt": "若要使用 GitHub 驗證,請複製代碼 {0},然後前往 {1}。正在等候授權...",
|
||||
"auth_timed_out": "等候授權時逾時。",
|
||||
"auth_success": "已成功使用 GitHub 驗證。",
|
||||
"auth_save_failed": "GitHub 驗證成功,但無法儲存權杖。",
|
||||
"auth_keyring_error": "Keyring 錯誤: {0}",
|
||||
"auth_keyring_locked": "Keyring 集合已鎖定。請將其解除鎖定,或重新啟動 gnome-keyring-daemon。",
|
||||
"auth_keyring_unavailable": "沒有可用的 Keyring 服務。請安裝並啟動 gnome-keyring: sudo apt install gnome-keyring",
|
||||
"auth_try_plaintext": "或透過傳遞 --login --allow-plaintext-secret-storage 以允許純文字儲存。",
|
||||
"auth_expired": "裝置代碼已過期。請再試一次。",
|
||||
"auth_denied": "使用者拒絕授權。",
|
||||
"auth_unexpected_error": "輪詢期間發生未預期的錯誤: {0}",
|
||||
"auth_login_failed": "GitHub 登入失敗。請嘗試使用命令列中的 --login 進行登入。",
|
||||
"auth_eula_required": "必須接受 EULA 才能繼續。請使用 --accept-eula 執行。",
|
||||
"auth_already_authenticated": "已使用 GitHub 驗證。使用 --force-login 重新驗證。",
|
||||
"config_unsupported_version": "初始化失敗: 不支援的設定版本。僅支援版本 1。",
|
||||
"config_file_not_found": "初始化失敗: 找不到設定檔 '{0}'。",
|
||||
"config_parse_failed": "初始化失敗: 無法剖析設定檔 '{0}'。請確認 JSON 格式。錯誤: {1}",
|
||||
"config_repo_path_invalid": "初始化失敗: 未設定 'repositoryPath' 或其無效。",
|
||||
"config_missing_source": "初始化失敗: 必須設定 'compileCommands' 或 'cppProperties'。",
|
||||
"config_dual_source": "初始化失敗: 無法同時設定 'compileCommands' 與 'cppProperties'。",
|
||||
"config_compile_commands_not_found": "初始化失敗: 找不到 'compileCommands' 路徑: '{0}'。",
|
||||
"config_cpp_properties_not_found": "初始化失敗: 找不到 'cppProperties' 路徑: '{0}'。",
|
||||
"config_cpp_properties_parse_failed": "初始化失敗: 無法剖析 'cppProperties' 所指定的檔案: '{0}'。請確認 JSON 格式。錯誤: {1}",
|
||||
"config_cpp_properties_schema_invalid": "初始化失敗: 無法從 'cppProperties' 檔案讀取設定: '{0}'。請驗證結構描述。",
|
||||
"config_no_configurations": "初始化失敗: '{0}' 未包含有效的 'configurations' 陣列。",
|
||||
"config_configuration_not_found": "初始化失敗: 在 'cppProperties' 檔案中找不到設定 '{0}': '{1}'。",
|
||||
"config_paths_cache_missing": "初始化失敗: 缺少 LSP 設定路徑快取。",
|
||||
"curl_not_found": "找不到 libcurl ({0})。驗證與遙測需要 libcurl。",
|
||||
"curl_install_macos": "macOS 預設應提供 libcurl。若缺少,請透過下列命令安裝: brew install curl",
|
||||
"curl_install_linux": "安裝 libcurl: sudo apt install libcurl4 (Debian/Ubuntu) 或 sudo dnf install libcurl (Fedora/RHEL)。",
|
||||
"curl_symbols_missing": "已載入 libcurl,但缺少必要符號。這可能表示 libcurl 版本非常舊或不相容。語言伺服器必須搭配相容的 libcurl 才能運作。",
|
||||
"keytar_not_found": "找不到 libsecret-1.so.0 ({0})。安全認證儲存需要 libsecret。安裝 libsecret: sudo apt install libsecret-1-0 (Debian/Ubuntu) 或 sudo dnf install libsecret (Fedora/RHEL)。",
|
||||
"keytar_symbols_missing": "已載入 libsecret,但缺少必要符號。語言伺服器必須搭配相容的 libsecret 才能運作。",
|
||||
"telemetry_disable_failed": "無法停用遙測。",
|
||||
"lsp_method_not_found": "找不到方法: {0}",
|
||||
"intellisense_same_canonical_path": "無法處理 IntelliSense,因為檔案與現有檔案具有相同的規範化路徑。URI: {0},規範化路徑: {1}",
|
||||
"status_initializing": "正在初始化",
|
||||
"status_initializing_with_n_of_m": "正在初始化 ({0}/{1})",
|
||||
"status_initializing_with_n_of_m_and_text": "正在初始化 ({0}/{1}): {2}",
|
||||
"status_initializing_with_text": "正在初始化 {0}",
|
||||
"status_initializing_projects": "正在初始化專案",
|
||||
"status_initializing_projects_with_n_of_m": "正在初始化專案 ({0}/{1})",
|
||||
"status_initializing_projects_with_n_of_m_and_text": "正在初始化專案 ({0}/{1}): {2}",
|
||||
"status_initializing_projects_with_text": "正在初始化專案 {0}",
|
||||
"status_checking_for_outdated_files": "正在檢查過期檔案",
|
||||
"status_checking_for_outdated_files_with_n_of_m": "正在檢查過期檔案 ({0}/{1})",
|
||||
"status_checking_for_outdated_files_with_n_of_m_and_text": "正在檢查過期檔案 ({0}/{1}): {2}",
|
||||
"status_checking_for_outdated_files_with_text": "正在檢查過期檔案 {0}",
|
||||
"status_parsing_files": "正在剖析檔案",
|
||||
"status_parsing_files_with_n_of_m": "正在剖析檔案 ({0}/{1})",
|
||||
"status_parsing_files_with_n_of_m_and_text": "正在剖析檔案 ({0}/{1}): {2}",
|
||||
"status_parsing_files_with_text": "正在剖析檔案 {0}",
|
||||
"status_parsing_includes": "正在剖析包含的檔案",
|
||||
"status_parsing_includes_with_n_of_m": "正在剖析包含的檔案 ({0}/{1})",
|
||||
"status_parsing_includes_with_n_of_m_and_text": "正在剖析包含的檔案 ({0}/{1}): {2}",
|
||||
"status_parsing_includes_with_text": "正在剖析包含的檔案 {0}",
|
||||
"status_scanning_includes": "正在掃描 #includes 以尋找更多檔案",
|
||||
"status_scanning_includes_with_n_of_m": "正在掃描 #includes 以尋找更多檔案 ({0}/{1})",
|
||||
"status_scanning_includes_with_n_of_m_and_text": "正在掃描 #includes 以尋找更多檔案 ({0}/{1}): {2}",
|
||||
"status_scanning_includes_with_text": "正在掃描 #includes 以尋找更多檔案 {0} {1}",
|
||||
"status_updating_external_dependencies": "就緒 (更新外部相依性)",
|
||||
"status_updating_external_dependencies_with_n_of_m": "就緒 (正在更新外部相依性) ({0}/{1})",
|
||||
"status_updating_external_dependencies_with_n_of_m_and_text": "就緒 (正在更新外部相依性) ({0}/{1}): {2}",
|
||||
"status_updating_external_dependencies_with_text": "就緒 (正在更新外部相依性) {0}",
|
||||
"status_optimizing_database": "就緒 (正在最佳化資料庫)",
|
||||
"status_optimizing_database_with_n_of_m": "就緒 (正在最佳化資料庫) ({0}/{1})",
|
||||
"status_optimizing_database_with_n_of_m_and_text": "就緒 (正在最佳化資料庫) ({0}/{1}): {2}",
|
||||
"status_optimizing_database_with_text": "就緒 (正在最佳化資料庫) {0}",
|
||||
"status_creating_indexes": "正在建立索引",
|
||||
"status_creating_indexes_with_n_of_m": "正在建立索引 ({0}/{1})",
|
||||
"status_creating_indexes_with_n_of_m_and_text": "正在建立索引 ({0}/{1}): {2}",
|
||||
"status_creating_indexes_with_text": "正在建立索引 {0}",
|
||||
"status_evaluating_file": "正在評估",
|
||||
"status_evaluating_file_with_n_of_m": "正在評估 ({0}/{1})",
|
||||
"status_evaluating_file_with_n_of_m_and_text": "正在評估 ({0}/{1}): {2}",
|
||||
"status_evaluating_file_with_text": "正在評估 {0}",
|
||||
"status_indexing_files": "正在編製索引檔案",
|
||||
"status_indexing_files_with_n_of_m": "正在編製索引檔案 ({0}/{1})",
|
||||
"status_indexing_files_with_n_of_m_and_text": "正在編製索引檔案 ({0}/{1}): {2}",
|
||||
"status_indexing_files_with_text": "正在編製索引檔案 {0}",
|
||||
"help_allow_missing_lsp_config": "即使指定的 --lsp-config 檔案不存在,仍允許伺服器啟動。",
|
||||
"initialize_failed_during_engine_setup": "引擎設定期間初始化失敗。",
|
||||
"important_label": "重要:"
|
||||
}
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "在 Windows 上安裝 C++ 編譯器",
|
||||
"walkthrough.windows.text1": "如果您正在進行 Windows 的 C++ 開發,建議您安裝 Microsoft Visual C++ (MSVC) 編譯器。",
|
||||
"walkthrough.windows.text2": "若要安裝 MSVC,請開啟 VS Code 終端機 (CTRL + `),然後在下列命令中貼上:\n",
|
||||
"walkthrough.windows.text2": "若要安裝 MSVC,請開啟 VS Code 終端機 (CTRL + `),然後在下列命令中貼上:",
|
||||
"walkthrough.windows.note1": "備註",
|
||||
"walkthrough.windows.note1.text": "您可以使用 Visual Studio Build Tools 中的 C++ 工具組以及 Visual Studio Code 來編譯、組建及驗證任何 C++ 程式碼基底,只要您也擁有有效的 Visual Studio 授權 (社群版、專業版或企業版),且您正積極開發該 C++ 程式碼基底。",
|
||||
"walkthrough.windows.verify.compiler": "驗證編譯器安裝",
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "在 Windows 上安裝 C++ 編譯器",
|
||||
"walkthrough.windows.text1": "如果您正在進行 Windows 的 C++ 開發,建議您安裝 Microsoft Visual C++ (MSVC) 編譯器。",
|
||||
"walkthrough.windows.text2": "若要安裝 MSVC,請開啟 VS Code 終端機 (CTRL + `),然後在下列命令中貼上:\n",
|
||||
"walkthrough.windows.text2": "若要安裝 MSVC,請開啟 VS Code 終端機 (CTRL + `),然後在下列命令中貼上:",
|
||||
"walkthrough.windows.note1": "備註",
|
||||
"walkthrough.windows.note1.text": "您可以使用 Visual Studio Build Tools 中的 C++ 工具組以及 Visual Studio Code 來編譯、組建及驗證任何 C++ 程式碼基底,只要您也擁有有效的 Visual Studio 授權 (社群版、專業版或企業版),且您正積極開發該 C++ 程式碼基底。",
|
||||
"walkthrough.windows.verify.compiler": "驗證編譯器安裝",
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.limitSymbolsToIncludedHeaders": "Nastavte na hodnotu `true`, pokud chcete zpracovat jen soubory přímo nebo nepřímo zahrnuté jako hlavičky. Pokud chcete zpracovat všechny soubory na zadaných cestách pro vložené soubory, nastavte na hodnotu `false`.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.databaseFilename": "Cesta k vygenerované databázi symbolů. Pokud se zadá relativní cesta, nastaví se jako relativní k výchozímu umístění úložiště pracovního prostoru.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.path": "Seznam cest, které se použijí pro indexování a parsování symbolů pracovního prostoru (použijí se pro funkce Go to Definition, Find All References apod.). Hledání na těchto cestách je standardně rekurzivní. Pokud chcete zadat nerekurzivní vyhledávání, zadejte `*`. Například `${workspaceFolder}` prohledá všechny podadresáře, ale `${workspaceFolder}/*` ne.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.reduce": "Nastavením na `always` se počet cest rekurzivních souborů k zahrnutí poskytovaných funkci IntelliSense vždy sníží pouze na ty cesty, na které aktuálně odkazují příkazy #include. K tomu je potřeba nejdříve analyzovat soubory a zjistit, které hlavičky jsou zahrnuty. Nastavením na `never` poskytnete funkci IntelliSense všechny cesty rekurzivních souborů k zahrnutí. Snížení počtu cest rekurzivních souborů k zahrnutí může zlepšit výkon funkce IntelliSense, pokud se jedná o velmi velký počet cest souborů k zahrnutí. Nesnižování počtu cest rekurzivních souborů k zahrnutí může zlepšit výkon funkce IntelliSense, protože se vyhnete nutnosti analyzovat soubory a určit, které cesty souborů k zahrnutí je třeba poskytnout. Hodnota `default` aktuálně slouží ke snížení počtu cest rekurzivních souborů k zahrnutí poskytovaných funkci IntelliSense.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.priority": "Priorita cest rekurzivních souborů zahrnutí Pokud je nastavená hodnota `beforeSystemIncludes`, budou se cesty rekurzivních souborů k zahrnutí prohledávat před cestami systémových souborů k zahrnutí. Pokud je nastaveno na `afterSystemIncludes`, budou cesty rekurzivních souborů k zahrnutí prohledávány až po cestách systémových souborů k zahrnutí. Hodnota `beforeSystemIncludes` by přesněji vyjadřovala pořadí vyhledávání kompilátoru, zatímco výsledkem použití hodnoty `afterSystemIncludes` může být vyšší výkon.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.order": "Pořadí, ve kterém se prohledávají podadresáře rekurzivních souborů k zahrnutí",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.customConfigurationVariables": "Vlastní proměnné, na které se dá poslat dotaz prostřednictvím příkazu `${cpptools:activeConfigCustomVariable}`, aby se použily jako vstupní proměnné v souborech `launch.json` nebo `tasks.json`.",
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.headerFilter.markdownDescription": "Rozšířený regulární výraz POSIX (ERE) odpovídající názvům záhlaví pro výstup diagnostiky. Diagnostika z hlavního souboru každé jednotky překladu se vždy zobrazí. Proměnná `${workspaceFolder}` se podporuje (a používá se jako výchozí základní hodnota, pokud neexistuje žádný soubor `.clang-tidy`). Pokud tato možnost není `null` (prázdná), přepíše možnost `HeaderFilterRegex` v souboru `.clang-tidy`, pokud existuje.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.args.markdownDescription": "Další argumenty příkazového řádku, které se mají předat do `clang-tidy`. Mají přednost před ekvivalentním nastavením `C_Cpp.codeAnalysis.clangTidy.*`.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.useBuildPath.markdownDescription": "Pokud je nastavená hodnota `true` a `compileCommands`, argument `-p=<build-path>` se předá do `clang-tidy` místo toho, aby se argumenty sestavení předávaly po `--`. To nemusí fungovat, pokud proměnné prostředí nejsou nastaveny tak, aby bylo možné nalézt systémové zahrnutí.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "Seznam povolených kontrol `clang-tidy`. Hodnoty jsou připojeny k hodnotě `Checks` v souboru `.clang-tidy` nebo `#C_Cpp.codeAnalysis.clangTidy.config#`, pokud existují. Pokud není explicitně zakázaná, použije se výchozí kontrola `clang-analyzer-*`.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "Seznam povolených kontrol `clang-tidy`. Hodnoty jsou připojeny k hodnotě `Checks` v souboru `.clang-tidy` nebo `#C_Cpp.codeAnalysis.clangTidy.config#`, pokud existují. Pokud není explicitně zakázaná, použije se výchozí kontrola `clang-analyzer-core.*`.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.disabled.markdownDescription": "Seznam zakázaných kontrol `clang-tidy`. Hodnoty jsou připojeny k hodnotě `Checks` v souboru `.clang-tidy` nebo `#C_Cpp.codeAnalysis.clangTidy.config#`, pokud existují.",
|
||||
"c_cpp.configuration.formatting.description": "Nakonfiguruje nástroj pro formátování.",
|
||||
"c_cpp.configuration.formatting.clangFormat.markdownDescription": "K formátování kódu se použije `clang-format`.",
|
||||
@@ -210,6 +210,7 @@
|
||||
"c_cpp.configuration.preferredPathSeparator.markdownDescription": "Znak použitý jako oddělovač cesty pro generované uživatelské cesty",
|
||||
"c_cpp.configuration.simplifyStructuredComments.markdownDescription": "Když se tato možnost nastaví na `true`, popisky ovládacích prvků po najetí myší a automatické dokončování budou zobrazovat jen určité popisky strukturovaných komentářů. Jinak se budou zobrazovat všechny komentáře.",
|
||||
"c_cpp.configuration.doxygen.generateOnType.description": "Určuje, jestli se má po zadání zvoleného stylu komentáře automaticky vložit komentář Doxygen.",
|
||||
"c_cpp.configuration.doxygen.generateOnCodeAction.description": "Určuje, zda je povolena akce kódu pro generování komentáře Doxygen.",
|
||||
"c_cpp.configuration.doxygen.generatedStyle.description": "Řetězec znaků použitý jako počáteční řádek komentáře Doxygen.",
|
||||
"c_cpp.configuration.doxygen.sectionTags.description": "Vyberte značky oddílu Doxygen, které chcete zobrazit při najetí myší v oblasti popisu, pokud je povolené nastavení Zjednodušit strukturované komentáře. ",
|
||||
"c_cpp.configuration.commentContinuationPatterns.items.anyof.string.markdownDescription": "Vzor, který zahájí víceřádkový nebo jednořádkový blok komentáře. Výchozí vzor pro pokračování je pro víceřádkové bloky komentářů ` * `, nebo tento řetězec pro jednořádkové bloky.",
|
||||
@@ -390,6 +391,9 @@
|
||||
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "False, pokud se tato položka používá jen k mapování umístění bloku zásobníku. True, pokud se tato entita má použít i při zadávání umístění zarážek",
|
||||
"c_cpp.debuggers.symbolOptions.description": "Možnosti kontroly způsobu, jakým se hledají a načítají symboly (soubory .pdb).",
|
||||
"c_cpp.debuggers.unknownBreakpointHandling.description": "Určuje, jak se mají zarážky nastavené externě (obvykle prostřednictvím nezpracovaných příkazů GDB) zpracovávat při průchodu.\nPovolené hodnoty jsou throw, která se chová, jako by aplikace vyvolala výjimku, a stop, která pouze pozastaví ladicí relaci. Výchozí hodnota je throw.",
|
||||
"c_cpp.debuggers.debuginfod.description": "Řídí chování debuginfod v GDB při stahování symbolů ladění ze serverů debuginfod.",
|
||||
"c_cpp.debuggers.debuginfod.enabled.description": "Při hodnotě true (výchozí) je podpora debuginfod v GDB povolená. Pokud chcete zabránit GDB v kontaktování serverů debuginfod, nastavte hodnotu false.",
|
||||
"c_cpp.debuggers.debuginfod.timeout.description": "Časový limit v sekundách pro žádosti serveru debuginfod. Výchozí hodnota je 30. Pokud chcete použít výchozí hodnoty GDB/libdebuginfod, nastavte hodnotu 0 (bez přepsání).",
|
||||
"c_cpp.debuggers.VSSymbolOptions.description": "Poskytuje konfiguraci pro vyhledávání a načítání symbolů do ladicího adaptéru.",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchPaths.description": "Pole adres URL serveru symbolů (například: http://MyExampleSymbolServer) nebo adresářů (například: /build/symbols) k vyhledávání souborů .pdb. Tyto adresáře budou prohledány kromě výchozích umístění – vedle modulu a cesty, kam byl soubor pdb původně přemístěn.",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchMicrosoftSymbolServer.description": "Pokud je hodnota true, přidá se do cesty pro hledání symbolů server symbolů pro produkty Microsoft (https://msdl.microsoft.com/download/symbols). Pokud tato možnost není zadaná, výchozí hodnota je false.",
|
||||
|
||||
@@ -4,5 +4,10 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"debugger.not.available": "Typ ladicího programu {0} není pro počítače, které nepoužívají Windows, k dispozici."
|
||||
"debugger.not.available": "Typ ladicího programu {0} není pro počítače, které nepoužívají Windows, k dispozici.",
|
||||
"debugger.noDebug.requestType.not.supported": "Spuštění bez ladění je podporováno pouze pro konfigurace spuštění.",
|
||||
"debugger.noDebug.pipeTransport.not.supported": "Spuštění bez ladění není podporováno pro konfigurace s nastavenou hodnotou pipeTransport.",
|
||||
"debugger.noDebug.debugServerPath.not.supported": "Spuštění bez ladění není podporováno pro konfigurace s nastavenou hodnotou debugServerPath.",
|
||||
"debugger.noDebug.miDebuggerServerAddress.not.supported": "Spuštění bez ladění není podporováno pro konfigurace s nastavenou hodnotou miDebuggerServerAddress.",
|
||||
"debugger.noDebug.coreDumpPath.not.supported": "Spuštění bez ladění není podporováno pro konfigurace s nastavenou hodnotou coreDumpPath."
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"no.terminal.emulator": "Nenašel se žádný emulátor terminálu. Nastavte proměnnou prostředí $TERMINAL na vámi preferovaný emulátor terminálu nebo nainstalujte některý z následujících: x-terminal-emulator, gnome-terminal, konsole, xterm."
|
||||
}
|
||||
@@ -319,5 +319,102 @@
|
||||
"file_not_found_in_path2": "V souborech compile_commands.json se nepovedlo najít {0}. Pro tento soubor se místo toho použije includePath ze souboru c_cpp_properties.json ve složce {1}.",
|
||||
"copilot_hover_link": "Vygenerovat souhrn Copilotu",
|
||||
"browse_path_not_found": "Nelze indexovat soubory z neexistující složky: {0}",
|
||||
"license_terms": "Rozšíření C/C++ lze používat pouze s těmito produkty a službami pro vývoj a testování aplikací a nástupci těchto produktů a služeb od Microsoftu: Microsoft Visual Studio, Visual Studio pro Mac, Visual Studio Code, Azure DevOps a Team Foundation Server."
|
||||
"license_terms": "Rozšíření C/C++ lze používat pouze s těmito produkty a službami pro vývoj a testování aplikací a nástupci těchto produktů a služeb od Microsoftu: Microsoft Visual Studio, Visual Studio pro Mac, Visual Studio Code, Azure DevOps a Team Foundation Server.",
|
||||
"help_title": "Jazykový server Microsoft C++",
|
||||
"help_usage": "Použití: {0} [možnosti]",
|
||||
"help_options_header": "Možnosti:",
|
||||
"help_help": "Umožňuje zobrazit tuto zprávu nápovědy a ukončit zobrazení.",
|
||||
"help_version": "Zobrazí informace o verzi a ukončí se.",
|
||||
"help_accept_eula": "Trvale přijměte licenční smlouvu s koncovým uživatelem (EULA).",
|
||||
"help_stderr": "Nepřesměrovává stderr na /dev/null (užitečné pro ladění).",
|
||||
"help_login": "Inicializujte interaktivní přihlášení (vyžaduje se předplatné GitHub Copilota).",
|
||||
"help_force_login": "Vynuťte proces přihlášení, i když už proběhlo ověření.",
|
||||
"help_allow_plaintext": "Povolí ukládání přihlašovacích údajů ve formátu prostého textu, pokud není zabezpečená sada klíčů k dispozici.",
|
||||
"help_log_dir": "Zadejte adresář pro soubory protokolu (výchozí: systémový dočasný adresář).",
|
||||
"help_log_level": "Nastavte úroveň podrobností protokolování z 0 (pouze chyby) na 9 (podrobné).",
|
||||
"help_lsp_config": "Zadejte parametr jako absolutní cestu nebo relativně ke kořenovému adresáři pracovního prostoru nebo jeho složce .github.",
|
||||
"help_disable_telemetry": "Zakažte odesílání telemetrických dat.",
|
||||
"auth_device_flow_prompt": "Pokud se chcete ověřit pomocí GitHubu, zkopírujte prosím kód {0} a pak navštivte {1}. Čeká se na autorizaci...",
|
||||
"auth_timed_out": "Při čekání na autorizaci vypršel časový limit.",
|
||||
"auth_success": "Ověření pomocí GitHubu proběhlo úspěšně.",
|
||||
"auth_save_failed": "Ověřování u GitHubu proběhlo úspěšně, ale tokeny se nepodařilo uložit.",
|
||||
"auth_keyring_error": "Chyba keyringu: {0}",
|
||||
"auth_keyring_locked": "Kolekce keyring je uzamčena. Odemkněte ji nebo restartujte daemon-keyring-daemon.",
|
||||
"auth_keyring_unavailable": "Není k dispozici žádná služba keyring. Instalace a spuštění keyringu: sudo apt install apt-keyring",
|
||||
"auth_try_plaintext": "Nebo povolte úložiště prostého textu předáním --login --allow-plaintext-secret-storage.",
|
||||
"auth_expired": "Platnost kódu zařízení vypršela. Zkuste to prosím znovu.",
|
||||
"auth_denied": "Uživatel zamítl autorizaci.",
|
||||
"auth_unexpected_error": "Během dotazování došlo k neočekávané chybě: {0}",
|
||||
"auth_login_failed": "Nepovedlo se přihlásit ke GitHubu. Zkuste se přihlásit spuštěním příkazu --login z příkazového řádku.",
|
||||
"auth_eula_required": "Aby bylo možné pokračovat, musí být přijata smlouva EULA. Spusťte příkaz --accept-eula.",
|
||||
"auth_already_authenticated": "Už ověřeno pomocí GitHubu. K opětovnému ověření použijte --force-login.",
|
||||
"config_unsupported_version": "Inicializace se nezdařila: Nepodporovaná verze konfigurace. Podporuje se jenom verze 1.",
|
||||
"config_file_not_found": "Inicializace se nezdařila: Konfigurační soubor {0} nebyl nalezen.",
|
||||
"config_parse_failed": "Inicializace se nezdařila: Nelze parsovat konfigurační soubor {0}. Ověřte formát JSON. Chyba: {1}",
|
||||
"config_repo_path_invalid": "Inicializace se nezdařila: vlastnost repositoryPath není nakonfigurována nebo je neplatná.",
|
||||
"config_missing_source": "Inicializace se nezdařila: je nutné nakonfigurovat compileCommands nebo cppProperties.",
|
||||
"config_dual_source": "Inicializace se nezdařila: parametry compileCommands a cppProperties nelze nakonfigurovat současně.",
|
||||
"config_compile_commands_not_found": "Inicializace se nezdařila: Cesta compileCommands nebyla nalezena: {0}.",
|
||||
"config_cpp_properties_not_found": "Inicializace se nezdařila: Cesta cppProperties nebyla nalezena: {0}.",
|
||||
"config_cpp_properties_parse_failed": "Inicializace se nezdařila: Nelze parsovat soubor určený vlastností cppProperties: {0}. Ověřte formát JSON. Chyba: {1}",
|
||||
"config_cpp_properties_schema_invalid": "Inicializace se nezdařila: Nelze číst konfiguraci ze souboru cppProperties: {0}. Ověřte schéma.",
|
||||
"config_no_configurations": "Inicializace se nezdařila: {0} neobsahuje platné pole „configurations“.",
|
||||
"config_configuration_not_found": "Inicializace se nezdařila: Konfigurace {0} nebyla v souboru cppProperties nalezena: {1}.",
|
||||
"config_paths_cache_missing": "Inicializace se nezdařila: Chybí mezipaměť konfiguračních cest LSP.",
|
||||
"curl_not_found": "libcurl nebyl nalezen ({0}). libcurl se vyžaduje pro ověřování a telemetrii.",
|
||||
"curl_install_macos": "libcurl by měl být ve výchozím nastavení dostupný v macOS. Pokud chybí, nainstalujte prostřednictvím: brew install curl",
|
||||
"curl_install_linux": "Nainstalujte libcurl: sudo apt install libcurl4 (Debian/Ubuntu) nebo sudo dnf install libcurl (Fedora/RHEL).",
|
||||
"curl_symbols_missing": "Libcurl se načetl, ale chybí požadované symboly. To může znamenat velmi starou nebo nekompatibilní verzi knihovny. Jazykový server nemůže pracovat bez kompatibilní knihovny libcurl.",
|
||||
"keytar_not_found": "libsecret-1.so.0 nebyl nalezen ({0}). Pro zabezpečené úložiště přihlašovacích údajů se vyžaduje libsecret. Nainstalujte libsecret: sudo apt install libsecret-1-0 (Debian/Ubuntu) nebo sudo dnf install libsecret (Fedora/RHEL).",
|
||||
"keytar_symbols_missing": "libsecret se načetl, ale chybí požadované symboly. Jazykový server nemůže pracovat bez kompatibilního libsecret.",
|
||||
"telemetry_disable_failed": "Nepovedlo se zakázat telemetrii.",
|
||||
"lsp_method_not_found": "Metoda nebyla nalezena: {0}",
|
||||
"intellisense_same_canonical_path": "Nejde zpracovat IntelliSense pro soubor se stejnou kanonizovanou cestou jako existující soubor. Identifikátor URI: {0}, kanonizovaná cesta: {1}",
|
||||
"status_initializing": "Probíhá inicializace",
|
||||
"status_initializing_with_n_of_m": "Probíhá inicializace ({0} z(e) {1})",
|
||||
"status_initializing_with_n_of_m_and_text": "Probíhá inicializace ({0} z(e) {1}): {2}",
|
||||
"status_initializing_with_text": "Inicializuje se {0}",
|
||||
"status_initializing_projects": "Inicializace projektů",
|
||||
"status_initializing_projects_with_n_of_m": "Inicializují se projekty ({0} z(e) {1})",
|
||||
"status_initializing_projects_with_n_of_m_and_text": "Inicializují se projekty ({0} z(e) {1}): {2}",
|
||||
"status_initializing_projects_with_text": "Inicializace projektů {0}",
|
||||
"status_checking_for_outdated_files": "Hledají se zastaralé soubory",
|
||||
"status_checking_for_outdated_files_with_n_of_m": "Hledají se zastaralé soubory ({0} z(e) {1})",
|
||||
"status_checking_for_outdated_files_with_n_of_m_and_text": "Hledají se zastaralé soubory ({0} z(e) {1}): {2}",
|
||||
"status_checking_for_outdated_files_with_text": "Hledají se zastaralé soubory {0}",
|
||||
"status_parsing_files": "Parsují se soubory",
|
||||
"status_parsing_files_with_n_of_m": "Parsují se soubory ({0} z(e) {1})",
|
||||
"status_parsing_files_with_n_of_m_and_text": "Parsují se soubory ({0} z(e) {1}): {2}",
|
||||
"status_parsing_files_with_text": "Parsují se soubory {0}",
|
||||
"status_parsing_includes": "Parsují se zahrnuté soubory",
|
||||
"status_parsing_includes_with_n_of_m": "Parsují se zahrnuté soubory ({0} z(e) {1})",
|
||||
"status_parsing_includes_with_n_of_m_and_text": "Parsují se zahrnuté soubory ({0} z(e) {1}): {2}",
|
||||
"status_parsing_includes_with_text": "Parsují se zahrnuté soubory {0}",
|
||||
"status_scanning_includes": "V #includes se hledají další soubory",
|
||||
"status_scanning_includes_with_n_of_m": "V #includes se hledají další soubory ({0} z(e) {1})",
|
||||
"status_scanning_includes_with_n_of_m_and_text": "V #includes se hledají další soubory ({0} z(e) {1}): {2}",
|
||||
"status_scanning_includes_with_text": "V #includes se hledají další soubory {0} {1}",
|
||||
"status_updating_external_dependencies": "Připraveno (aktualizování externích závislostí)",
|
||||
"status_updating_external_dependencies_with_n_of_m": "Připraveno (aktualizování externích závislostí) ({0} z(e) {1})",
|
||||
"status_updating_external_dependencies_with_n_of_m_and_text": "Připraveno (aktualizování externích závislostí) ({0} z(e) {1}): {2}",
|
||||
"status_updating_external_dependencies_with_text": "Připraveno (aktualizování externích závislostí) {0}",
|
||||
"status_optimizing_database": "Připraveno (optimalizování databáze)",
|
||||
"status_optimizing_database_with_n_of_m": "Připraveno (optimalizování databáze) ({0} z(e) {1})",
|
||||
"status_optimizing_database_with_n_of_m_and_text": "Připraveno (optimalizování databáze) ({0} z(e) {1}): {2}",
|
||||
"status_optimizing_database_with_text": "Připraveno (optimalizování databáze) {0}",
|
||||
"status_creating_indexes": "Vytváření indexů",
|
||||
"status_creating_indexes_with_n_of_m": "Vytváření indexů ({0} z(e) {1})",
|
||||
"status_creating_indexes_with_n_of_m_and_text": "Vytváření indexů ({0} z(e) {1}): {2}",
|
||||
"status_creating_indexes_with_text": "Vytváření indexů {0}",
|
||||
"status_evaluating_file": "Vyhodnocování",
|
||||
"status_evaluating_file_with_n_of_m": "Vyhodnocování ({0} z(e) {1})",
|
||||
"status_evaluating_file_with_n_of_m_and_text": "Vyhodnocování ({0} z(e) {1}): {2}",
|
||||
"status_evaluating_file_with_text": "Vyhodnocuje se {0}",
|
||||
"status_indexing_files": "Probíhá indexování souborů",
|
||||
"status_indexing_files_with_n_of_m": "Probíhá indexování souborů ({0} z(e) {1})",
|
||||
"status_indexing_files_with_n_of_m_and_text": "Probíhá indexování souborů ({0} z(e) {1}): {2}",
|
||||
"status_indexing_files_with_text": "Probíhá indexování souborů {0}",
|
||||
"help_allow_missing_lsp_config": "Povolit spuštění serveru i v případě, že zadaný soubor --lsp-config neexistuje.",
|
||||
"initialize_failed_during_engine_setup": "Inicializace se během instalace modulu nezdařila.",
|
||||
"important_label": "Důležité:"
|
||||
}
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "Instalace kompilátoru jazyka C++ v systému Windows",
|
||||
"walkthrough.windows.text1": "Pokud provádíte vývoj C++ pro Windows, doporučujeme nainstalovat kompilátor Microsoft Visual C++ (MSVC).",
|
||||
"walkthrough.windows.text2": "Pokud chcete nainstalovat MSVC, otevřete terminál VS Code (CTRL + `) a vložte následující příkaz:\n",
|
||||
"walkthrough.windows.text2": "Pokud chcete nainstalovat MSVC, otevřete terminál VS Code (CTRL + `) a vložte následující příkaz:",
|
||||
"walkthrough.windows.note1": "Poznámka",
|
||||
"walkthrough.windows.note1.text": "Můžete použít sadu nástrojů C++ z Visual Studio Build Tools spolu s Visual Studio Code ke kompilaci, sestavení a ověření jakékoli kódové báze C++, pokud máte také platnou licenci Visual Studio (buď Community, Pro nebo Enterprise), kterou aktivně používáte k vývoji kódové báze C++.",
|
||||
"walkthrough.windows.verify.compiler": "Ověřování instalace kompilátoru",
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "Instalace kompilátoru jazyka C++ v systému Windows",
|
||||
"walkthrough.windows.text1": "Pokud provádíte vývoj C++ pro Windows, doporučujeme nainstalovat kompilátor Microsoft Visual C++ (MSVC).",
|
||||
"walkthrough.windows.text2": "Pokud chcete nainstalovat MSVC, otevřete terminál VS Code (CTRL + `) a vložte následující příkaz:\n",
|
||||
"walkthrough.windows.text2": "Pokud chcete nainstalovat MSVC, otevřete terminál VS Code (CTRL + `) a vložte následující příkaz:",
|
||||
"walkthrough.windows.note1": "Poznámka",
|
||||
"walkthrough.windows.note1.text": "Můžete použít sadu nástrojů C++ z Visual Studio Build Tools spolu s Visual Studio Code ke kompilaci, sestavení a ověření jakékoli kódové báze C++, pokud máte také platnou licenci Visual Studio (buď Community, Pro nebo Enterprise), kterou aktivně používáte k vývoji kódové báze C++.",
|
||||
"walkthrough.windows.verify.compiler": "Ověřování instalace kompilátoru",
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.limitSymbolsToIncludedHeaders": "Legen Sie diesen Wert auf `true` fest, um nur die Dateien zu verarbeiten, die direkt oder indirekt als Header enthalten sind. Legen Sie diesen Wert auf `false` fest, um alle Dateien unter den angegebenen Includepfaden zu verarbeiten.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.databaseFilename": "Pfad zur generierten Symboldatenbank. Wenn ein relativer Pfad angegeben wird, wird er relativ zum Standardspeicherort des Arbeitsbereichs erstellt.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.path": "Eine Liste der Pfade, die für die Indizierung und Analyse von Arbeitsbereichssymbolen verwendet werden sollen (z. B. bei \"Gehe zu Definition\" oder \"Alle Verweise suchen\"). Die Suche in diesen Pfaden ist standardmäßig rekursiv. Geben Sie `*` an, um eine nicht rekursive Suche durchzuführen. Beispiel: `${workspaceFolder}` durchsucht alle Unterverzeichnisse, `${workspaceFolder}/*` hingegen nicht.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.reduce": "Legen Sie diese Option auf `always` fest, um die Anzahl der rekursiven Includepfade, die für IntelliSense bereitgestellt werden, immer auf die Pfade zu reduzieren, auf die derzeit von #include-Anweisungen verwiesen wird. Dazu müssen zuerst die Dateien analysiert werden, um zu bestimmen, welche Kopfzeilen eingeschlossen werden. Legen Sie diese Option auf `never` fest, um alle rekursiven Includepfade für IntelliSense bereitzustellen. Wenn Sie die Anzahl rekursiver Includepfade verringern, kann sich die Leistung von IntelliSense verbessern, wenn eine sehr große Anzahl rekursiver Includepfade betroffen ist. Wenn Sie die Anzahl rekursiver Includepfade nicht verringern, kann die Leistung von IntelliSense verbessert werden, da die Dateien nicht analysiert werden müssen, um zu bestimmen, welche Includepfade bereitgestellt werden sollen. Beim Wert `default` wird derzeit die Anzahl rekursiver Includepfade verringert, die für IntelliSense bereitgestellt werden.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.priority": "Die Priorität rekursiver Includepfade. Wenn sie auf `beforeSystemIncludes` festgelegt ist, werden die rekursiven Includepfade vor den systemseitigen Includepfaden durchsucht. Wenn sie auf `afterSystemIncludes` festgelegt ist, werden die rekursiven Includepfade nach den systemseitigen Includepfaden durchsucht. `beforeSystemIncludes` entspricht eher der Suchreihenfolge eines Compilers, während `afterSystemIncludes` zu einer verbesserten Leistung führen kann.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.order": "Die Reihenfolge, in der Unterverzeichnisse rekursiver Includepfade durchsucht werden.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.customConfigurationVariables": "Benutzerdefinierte Variablen, die über den Befehl `${cpptools:activeConfigCustomVariable}` abgefragt werden können, um sie für die Eingabevariablen in `launch.json` oder `tasks.json` zu verwenden.",
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.headerFilter.markdownDescription": "Ein erweiterter regulärer POSIX-Ausdruck (Extended Regular Expression/ERE), der dem Namen der Header entspricht, aus denen die Diagnose ausgegeben werden soll. Diagnosen aus der Hauptdatei jeder Übersetzungseinheit werden immer angezeigt. Die Variable `${workspaceFolder}` wird unterstützt (und als standardmäßiger Fallbackwert benutzt, wenn keine `.clang-tidy`-Datei vorhanden ist). Wenn diese Option nicht `null` (leer) ist, überschreibt sie die Option `HeaderFilterRegex` in einer `.clang-tidy`-Datei, sofern vorhanden.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.args.markdownDescription": "Zusätzliche Befehlszeilenargumente, die an `clang-tidy` übergeben werden sollen. Diese haben Vorrang vor den entsprechenden Einstellungen für `C_Cpp.codeAnalysis.clangTidy.*`.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.useBuildPath.markdownDescription": "Wenn `true` und `compileCommands` festgelegt sind, wird das Argument `-p=<build-path>` an `clang-tidy` übergeben, anstatt Buildargumente hinter `--` zu übergeben. Dies funktioniert möglicherweise nicht, wenn Umgebungsvariablen nicht so festgelegt sind, dass vom System eingeschlossene Elemente gefunden werden können.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "Liste der aktivierten `clang-tidy`-Überprüfungen. Die Werte werden an `Checks` in einer `.clang-tidy`-Datei oder (falls vorhanden) an `#C_Cpp.codeAnalysis.clangTidy.config#` angefügt. Die Standardüberprüfung `clang-analyzer-*` wird immer verwendet, es sei denn, sie ist explizit deaktiviert.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "Liste der aktivierten `clang-tidy`-Überprüfungen. Die Werte werden an `Checks` in einer `.clang-tidy`-Datei oder (falls vorhanden) an `#C_Cpp.codeAnalysis.clangTidy.config#` angefügt. Die Standardüberprüfung `clang-analyzer-core.*` wird immer verwendet, es sei denn, sie ist explizit deaktiviert.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.disabled.markdownDescription": "Liste der aktivierten `clang-tidy`-Überprüfungen. Die Werte werden an `Checks` in einer `.clang-tidy`-Datei oder (falls vorhanden) an `#C_Cpp.codeAnalysis.clangTidy.config#` angefügt.",
|
||||
"c_cpp.configuration.formatting.description": "Konfiguriert das Formatierungsmodul.",
|
||||
"c_cpp.configuration.formatting.clangFormat.markdownDescription": "`clang-format` wird zum Formatieren von Code verwendet.",
|
||||
@@ -210,6 +210,7 @@
|
||||
"c_cpp.configuration.preferredPathSeparator.markdownDescription": "Das Zeichen, das als Pfadtrennzeichen für generierte Benutzerpfade verwendet wird.",
|
||||
"c_cpp.configuration.simplifyStructuredComments.markdownDescription": "Wenn `true` festgelegt ist, zeigen die QuickInfos für Draufzeigen und AutoVervollständigen nur bestimmte Bezeichnungen strukturierter Kommentare an. Andernfalls werden alle Kommentare angezeigt.",
|
||||
"c_cpp.configuration.doxygen.generateOnType.description": "Steuert, ob der Doxygenkommentar nach Eingabe des ausgewählten Kommentarstils automatisch eingefügt wird.",
|
||||
"c_cpp.configuration.doxygen.generateOnCodeAction.description": "Steuert, ob die Codeaktion zum Generieren eines Doxygen-Kommentars aktiviert ist.",
|
||||
"c_cpp.configuration.doxygen.generatedStyle.description": "Die Zeichenfolge von Zeichen, die als Startzeile des Doxygen-Kommentars verwendet wird.",
|
||||
"c_cpp.configuration.doxygen.sectionTags.description": "Wählen Sie die Doxygen-Abschnittstags aus, die beim Daraufzeigen im QuickInfo-Bereich angezeigt werden sollen, wenn die Einstellung \"Strukturierte Kommentare vereinfachen\" aktiviert ist. ",
|
||||
"c_cpp.configuration.commentContinuationPatterns.items.anyof.string.markdownDescription": "Muster, mit dem ein mehrzeiliger oder einzeiliger Kommentarblock beginnt. Das Fortsetzungsmuster wird standardmäßig auf ` * ` für mehrzeilige Kommentarblöcke oder auf diese Zeichenfolge für einzeilige Kommentarblöcke festgelegt.",
|
||||
@@ -390,6 +391,9 @@
|
||||
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "FALSE, wenn dieser Eintrag nur für eine Stapelrahmen-Speicherortzuordnung verwendet wird. TRUE, wenn dieser Eintrag auch zum Angeben von Haltepunktpositionen verwendet werden soll.",
|
||||
"c_cpp.debuggers.symbolOptions.description": "Optionen zum Steuern, wie Symbole (PDB-Dateien) gefunden und geladen werden.",
|
||||
"c_cpp.debuggers.unknownBreakpointHandling.description": "Steuert, wie extern gesetzte Haltepunkte (normalerweise über rohe GDB-Befehle) behandelt werden, wenn ihnen begegnet wird.\nErlaubte Werte sind \"throw\", was sich so verhält, als ob eine Ausnahme von der Anwendung ausgelöst würde, und \"stop\", was die Debugsitzung nur pausiert. Der Standardwert ist \"throw\".",
|
||||
"c_cpp.debuggers.debuginfod.description": "Steuert das debuginfod-Verhalten von GDB beim Herunterladen von Debugsymbolen von debuginfod-Servern.",
|
||||
"c_cpp.debuggers.debuginfod.enabled.description": "Wenn auf TRUE (Standard) festgelegt, ist die debuginfod-Unterstützung in GDB aktiviert. Legen Sie den Wert auf FALSE fest, um zu verhindern, dass GDB debuginfod-Server kontaktiert.",
|
||||
"c_cpp.debuggers.debuginfod.timeout.description": "Das Zeitlimit in Sekunden für debuginfod-Serveranforderungen. Standardwert ist 30. Auf 0 festlegen, um die Standardwerte von GDB/libdebuginfod zu verwenden (keine Überschreibung).",
|
||||
"c_cpp.debuggers.VSSymbolOptions.description": "Stellt eine Konfiguration zum Suchen und Laden von Symbolen in den Debugadapter bereit.",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchPaths.description": "Ein Array von Symbolserver-URLs (Beispiel: http://MyExampleSymbolServer) oder Verzeichnisse (Beispiel:/Build/Symbols) für die Suche nach PDB-Dateien. Diese Verzeichnisse werden zusätzlich zu den Standardspeicherorten durchsucht – neben dem Modul und dem Pfad, in dem die PDB ursprünglich abgelegt wurde.",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchMicrosoftSymbolServer.description": "Wenn „true“, wird der Microsoft-Symbolserver (https://msdl.microsoft.com/download/symbols) dem Symbolsuchpfad hinzugefügt. Wenn nicht angegeben, wird diese Option standardmäßig auf „false“ eingestellt.",
|
||||
|
||||
@@ -4,5 +4,10 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"debugger.not.available": "Der Debuggertyp \"{0}\" ist für Nicht-Windows-Computer nicht verfügbar."
|
||||
"debugger.not.available": "Der Debuggertyp \"{0}\" ist für Nicht-Windows-Computer nicht verfügbar.",
|
||||
"debugger.noDebug.requestType.not.supported": "„Ausführen ohne Debuggen“ wird nur für Startkonfigurationen unterstützt.",
|
||||
"debugger.noDebug.pipeTransport.not.supported": "„Ausführen ohne Debuggen“ wird für Konfigurationen mit festgelegtem „pipeTransport“ nicht unterstützt.",
|
||||
"debugger.noDebug.debugServerPath.not.supported": "„Ausführen ohne Debuggen“ wird für Konfigurationen, für die „debugServerPath“ festgelegt ist, nicht unterstützt.",
|
||||
"debugger.noDebug.miDebuggerServerAddress.not.supported": "Das Ausführen ohne Debuggen wird für Konfigurationen mit festgelegter „miDebuggerServerAddress“ nicht unterstützt.",
|
||||
"debugger.noDebug.coreDumpPath.not.supported": "„Ausführen ohne Debuggen“ wird für Konfigurationen, für die „coreDumpPath“ festgelegt ist, nicht unterstützt."
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"no.terminal.emulator": "Kein Terminalemulator gefunden. Legen Sie die Umgebungsvariable $TERMINAL auf den Terminalemulator Ihrer Wahl fest, oder installieren Sie eine der folgenden Komponenten: x-terminal-emulator, gnome-terminal, konsole, xterm."
|
||||
}
|
||||
@@ -319,5 +319,102 @@
|
||||
"file_not_found_in_path2": "„{0}“ wurde in compile_commands.json-Dateien nicht gefunden. Stattdessen wird „includePath“ aus „c_cpp_properties.json“ im Ordner „{1}“ für diese Datei verwendet.",
|
||||
"copilot_hover_link": "Copilot-Zusammenfassung generieren",
|
||||
"browse_path_not_found": "Dateien aus einem nicht vorhandenen Ordner können nicht indiziert werden: {0}",
|
||||
"license_terms": "Die C/C++-Erweiterung darf nur mit Microsoft Visual Studio, Visual Studio für Mac, Visual Studio Code, Azure DevOps, Team Foundation Server und nachfolgenden Produkten und Diensten von Microsoft verwendet werden, um Ihre Anwendungen zu entwickeln und zu testen."
|
||||
"license_terms": "Die C/C++-Erweiterung darf nur mit Microsoft Visual Studio, Visual Studio für Mac, Visual Studio Code, Azure DevOps, Team Foundation Server und nachfolgenden Produkten und Diensten von Microsoft verwendet werden, um Ihre Anwendungen zu entwickeln und zu testen.",
|
||||
"help_title": "Microsoft C++ Language Server",
|
||||
"help_usage": "Syntax: {0} [Optionen]",
|
||||
"help_options_header": "Optionen:",
|
||||
"help_help": "Diese Hilfemeldung anzeigen und beenden.",
|
||||
"help_version": "Versionsinformationen anzeigen und beenden.",
|
||||
"help_accept_eula": "Akzeptieren Sie den Endbenutzer-Lizenzvertrag (EULA) dauerhaft.",
|
||||
"help_stderr": "stderr nicht an /dev/null umleiten (nützlich für das Debuggen).",
|
||||
"help_login": "Interaktive Anmeldung initiieren (GitHub Copilot-Abonnement erforderlich).",
|
||||
"help_force_login": "Anmeldevorgang erzwingen, auch wenn er bereits authentifiziert ist.",
|
||||
"help_allow_plaintext": "Speichern von Anmeldeinformationen im Klartext zulassen, wenn ein sicherer Schlüsselbund nicht verfügbar ist.",
|
||||
"help_log_dir": "Geben Sie das Verzeichnis für Protokolldateien an (Standard: temporäres Systemverzeichnis).",
|
||||
"help_log_level": "Legen Sie die Ausführlichkeit der Protokollierung von 0 (nur Fehler) bis 9 (ausführlich) fest.",
|
||||
"help_lsp_config": "Parameter als absoluten Pfad oder relativ zum Arbeitsbereichsstamm oder dem zugehörigen GitHub-Ordner angeben.",
|
||||
"help_disable_telemetry": "Senden von Telemetriedaten deaktivieren.",
|
||||
"auth_device_flow_prompt": "Um sich bei GitHub zu authentifizieren, kopieren Sie den Code {0}, und besuchen Sie dann {1}. Auf Autorisierung warten …",
|
||||
"auth_timed_out": "Timeout beim Warten auf Autorisierung.",
|
||||
"auth_success": "Die Authentifizierung bei GitHub war erfolgreich.",
|
||||
"auth_save_failed": "Die GitHub-Authentifizierung war erfolgreich, Token konnten jedoch nicht gespeichert werden.",
|
||||
"auth_keyring_error": "Schlüsselbundfehler: {0}",
|
||||
"auth_keyring_locked": "Die Schlüsselbundsammlung ist gesperrt. Entsperren Sie ihn, oder starten Sie „restart-keyring-daemon“ neu.",
|
||||
"auth_keyring_unavailable": "Es ist kein Schlüsselbunddienst verfügbar. „endpoint-keyring“ installieren und starten: sudo apt install endpoint-keyring",
|
||||
"auth_try_plaintext": "Alternativ können Sie Klartextspeicher zulassen, indem Sie „--login --allow-plaintext-secret-storage“ übergeben.",
|
||||
"auth_expired": "Der Gerätecode ist abgelaufen. Versuchen Sie es noch einmal.",
|
||||
"auth_denied": "Die Autorisierung wurde vom Benutzer verweigert.",
|
||||
"auth_unexpected_error": "Unerwarteter Fehler beim Abrufen: {0}",
|
||||
"auth_login_failed": "Die GitHub-Anmeldung ist fehlgeschlagen. --login über die Befehlszeile ausführen, um sich anzumelden.",
|
||||
"auth_eula_required": "EULA muss akzeptiert werden, um den Vorgang fortzusetzen. Mit --accept-eula ausführen.",
|
||||
"auth_already_authenticated": "Bereits bei GitHub authentifiziert. Verwenden Sie „--force-login“, um sich erneut zu authentifizieren.",
|
||||
"config_unsupported_version": "Initialisierungsfehler: Nicht unterstützte Konfigurationsversion. Es wird nur Version 1 unterstützt.",
|
||||
"config_file_not_found": "Initialisierungsfehler: Die Konfigurationsdatei „{0}“ wurde nicht gefunden.",
|
||||
"config_parse_failed": "Fehler bei der Initialisierung: Die Konfigurationsdatei „{0}“ kann nicht analysiert werden. JSON-Format überprüfen. Fehler: {1}",
|
||||
"config_repo_path_invalid": "Fehler bei der Initialisierung: „repositoryPath“ ist nicht konfiguriert oder ungültig.",
|
||||
"config_missing_source": "Initialisierungsfehler: „compileCommands“ oder „cppProperties“ müssen konfiguriert sein.",
|
||||
"config_dual_source": "Fehler bei der Initialisierung: „compileCommands“ und „cppProperties“ können nicht beide konfiguriert werden.",
|
||||
"config_compile_commands_not_found": "Initialisierungsfehler: Der Pfad „compileCommands“ wurde nicht gefunden: „{0}“.",
|
||||
"config_cpp_properties_not_found": "Initialisierungsfehler: Der Pfad „cppProperties“ wurde nicht gefunden: „{0}“.",
|
||||
"config_cpp_properties_parse_failed": "Initialisierungsfehler: Die durch „cppProperties“ angegebene Datei kann nicht analysiert werden: „{0}“. JSON-Format überprüfen. Fehler: {1}",
|
||||
"config_cpp_properties_schema_invalid": "Initialisierungsfehler: Die Konfiguration kann nicht aus der Datei „cppProperties“ gelesen werden: „{0}“. Überprüfen Sie das Schema.",
|
||||
"config_no_configurations": "Fehler bei der Initialisierung: „{0}“ enthält kein gültiges Array „configurations“.",
|
||||
"config_configuration_not_found": "Fehler bei der Initialisierung: Die Konfiguration „{0}“ wurde in der Datei „cppProperties“ nicht gefunden: „{1}“.",
|
||||
"config_paths_cache_missing": "Fehler bei der Initialisierung: Der Cache für LSP-Konfigurationspfade fehlt.",
|
||||
"curl_not_found": "libcurl nicht gefunden ({0}). libcurl ist für die Authentifizierung und Telemetrie erforderlich.",
|
||||
"curl_install_macos": "libcurl sollte standardmäßig unter macOS verfügbar sein. Falls nicht vorhanden, installieren über: brew install curl",
|
||||
"curl_install_linux": "libcurl: sudo apt install libcurl4 (Debian/Ubuntu) oder sudo dnf install libcurl (Fedora/RHEL) installieren.",
|
||||
"curl_symbols_missing": "libcurl geladen, aber erforderliche Symbole fehlen. Dies kann auf eine sehr alte oder inkompatible libcurl-Version hinweisen. Der Sprachserver kann nicht ohne kompatible libcurl ausgeführt werden.",
|
||||
"keytar_not_found": "libsecret-1.so.0 wurde nicht gefunden ({0}). libsecret ist für die sichere Speicherung von Anmeldeinformationen erforderlich. libsecret: sudo apt install libsecret-1-0 (Debian/Ubuntu) oder sudo dnf install libsecret (Fedora/RHEL) installieren.",
|
||||
"keytar_symbols_missing": "libsecret geladen, aber erforderliche Symbole fehlen. Der Sprachserver kann nicht ohne kompatibles libsecret ausgeführt werden.",
|
||||
"telemetry_disable_failed": "Fehler beim Deaktivieren der Telemetrie.",
|
||||
"lsp_method_not_found": "Methode nicht gefunden: {0}",
|
||||
"intellisense_same_canonical_path": "IntelliSense kann für eine Datei mit demselben kanonisierten Pfad wie eine vorhandene Datei nicht verarbeitet werden. URI: {0}, kanonischer Pfad: {1}",
|
||||
"status_initializing": "Initialisierung",
|
||||
"status_initializing_with_n_of_m": "Initialisierung ({0} von {1})",
|
||||
"status_initializing_with_n_of_m_and_text": "Initialisierung ({0} von {1}): {2}",
|
||||
"status_initializing_with_text": "{0} wird initialisiert",
|
||||
"status_initializing_projects": "Projekte werden initialisiert",
|
||||
"status_initializing_projects_with_n_of_m": "Projekte werden initialisiert ({0} von {1})",
|
||||
"status_initializing_projects_with_n_of_m_and_text": "Projekte werden initialisiert ({0} von {1}): {2}",
|
||||
"status_initializing_projects_with_text": "Projekte werden initialisiert {0}",
|
||||
"status_checking_for_outdated_files": "Veraltete Dateien werden gesucht",
|
||||
"status_checking_for_outdated_files_with_n_of_m": "Veraltete Dateien werden gesucht ({0} von {1})",
|
||||
"status_checking_for_outdated_files_with_n_of_m_and_text": "Veraltete Dateien werden gesucht ({0} von {1}): {2}",
|
||||
"status_checking_for_outdated_files_with_text": "Veraltete Dateien werden gesucht {0}",
|
||||
"status_parsing_files": "Dateien werden analysiert",
|
||||
"status_parsing_files_with_n_of_m": "Dateien werden analysiert: ({0} von {1})",
|
||||
"status_parsing_files_with_n_of_m_and_text": "Dateien werden analysiert: ({0} von {1}): {2}",
|
||||
"status_parsing_files_with_text": "Dateien werden analysiert {0}",
|
||||
"status_parsing_includes": "Eingeschlossene Dateien werden analysiert",
|
||||
"status_parsing_includes_with_n_of_m": "Eingeschlossene Dateien werden analysiert ({0} von {1})",
|
||||
"status_parsing_includes_with_n_of_m_and_text": "Eingeschlossene Dateien werden analysiert ({0} von {1}): {2}",
|
||||
"status_parsing_includes_with_text": "Eingeschlossene Dateien werden analysiert {0}",
|
||||
"status_scanning_includes": "#includes nach zusätzlichen Dateien durchsuchen",
|
||||
"status_scanning_includes_with_n_of_m": "#includes nach zusätzlichen Dateien durchsuchen ({0} von {1})",
|
||||
"status_scanning_includes_with_n_of_m_and_text": "#includes nach zusätzlichen Dateien durchsuchen ({0} von {1}): {2}",
|
||||
"status_scanning_includes_with_text": "#includes nach zusätzlichen Dateien durchsuchen {0} {1}",
|
||||
"status_updating_external_dependencies": "Bereit (Externe Abhängigkeiten werden aktualisiert)",
|
||||
"status_updating_external_dependencies_with_n_of_m": "Bereit (Externe Abhängigkeiten werden aktualisiert) ({0} von {1})",
|
||||
"status_updating_external_dependencies_with_n_of_m_and_text": "Bereit (Externe Abhängigkeiten werden aktualisiert) ({0} von {1}): {2}",
|
||||
"status_updating_external_dependencies_with_text": "Bereit (Externe Abhängigkeiten werden aktualisiert) {0}",
|
||||
"status_optimizing_database": "Bereit (Datenbank wird optimiert)",
|
||||
"status_optimizing_database_with_n_of_m": "Bereit (Datenbank wird optimiert) ({0} von {1})",
|
||||
"status_optimizing_database_with_n_of_m_and_text": "Bereit (Datenbank wird optimiert) ({0} von {1}): {2}",
|
||||
"status_optimizing_database_with_text": "Bereit (Datenbank wird optimiert) {0}",
|
||||
"status_creating_indexes": "Indizes werden erstellt",
|
||||
"status_creating_indexes_with_n_of_m": "Indizes werden erstellt ({0} von {1})",
|
||||
"status_creating_indexes_with_n_of_m_and_text": "Indizes werden erstellt ({0} von {1}): {2}",
|
||||
"status_creating_indexes_with_text": "Indizes werden erstellt {0}",
|
||||
"status_evaluating_file": "Wird ausgewertet",
|
||||
"status_evaluating_file_with_n_of_m": "Wird ausgewertet ({0} von {1})",
|
||||
"status_evaluating_file_with_n_of_m_and_text": "Wird ausgewertet ({0} von {1}): {2}",
|
||||
"status_evaluating_file_with_text": "{0} wird ausgewertet",
|
||||
"status_indexing_files": "Indizieren von Dateien",
|
||||
"status_indexing_files_with_n_of_m": "Indizieren von Dateien ({0} von {1})",
|
||||
"status_indexing_files_with_n_of_m_and_text": "Indizieren von Dateien ({0} von {1}): {2}",
|
||||
"status_indexing_files_with_text": "Indizieren von Dateien {0}",
|
||||
"help_allow_missing_lsp_config": "Zulassen, dass der Server gestartet wird, auch wenn die angegebene --lsp-config-Datei nicht vorhanden ist.",
|
||||
"initialize_failed_during_engine_setup": "Fehler bei der Initialisierung während der Engine-Einrichtung.",
|
||||
"important_label": "Wichtig:"
|
||||
}
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "C++-Compiler unter Windows installieren",
|
||||
"walkthrough.windows.text1": "Wenn Sie mithilfe von C++ unter Windows entwickeln, empfehlen wir die Installation des Microsoft Visual C++-Compiler (MSVC).",
|
||||
"walkthrough.windows.text2": "Öffnen Sie zum Installieren von MSVC das VS Code-Terminal (STRG + `), und fügen Sie den folgenden Befehl ein:\n",
|
||||
"walkthrough.windows.text2": "Öffnen Sie zum Installieren von MSVC das VS Code-Terminal (STRG + `), und fügen Sie den folgenden Befehl ein:",
|
||||
"walkthrough.windows.note1": "Hinweis",
|
||||
"walkthrough.windows.note1.text": "Sie können das C++-Toolset aus Visual Studio Build Tools zusammen mit Visual Studio Code zum Kompilieren, Erstellen und Überprüfen von C++-Codebasis verwenden, sofern Sie auch über eine gültige Visual Studio-Lizenz (Community, Pro oder Enterprise) verfügen, die Sie aktiv zum Entwickeln dieser C++-Codebasis verwenden.",
|
||||
"walkthrough.windows.verify.compiler": "Überprüfen der Compilerinstallation",
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "C++-Compiler unter Windows installieren",
|
||||
"walkthrough.windows.text1": "Wenn Sie mithilfe von C++ unter Windows entwickeln, empfehlen wir die Installation des Microsoft Visual C++-Compiler (MSVC).",
|
||||
"walkthrough.windows.text2": "Öffnen Sie zum Installieren von MSVC das VS Code-Terminal (STRG + `), und fügen Sie den folgenden Befehl ein:\n",
|
||||
"walkthrough.windows.text2": "Öffnen Sie zum Installieren von MSVC das VS Code-Terminal (STRG + `), und fügen Sie den folgenden Befehl ein:",
|
||||
"walkthrough.windows.note1": "Hinweis",
|
||||
"walkthrough.windows.note1.text": "Sie können das C++-Toolset aus Visual Studio Build Tools zusammen mit Visual Studio Code zum Kompilieren, Erstellen und Überprüfen von C++-Codebasis verwenden, sofern Sie auch über eine gültige Visual Studio-Lizenz (Community, Pro oder Enterprise) verfügen, die Sie aktiv zum Entwickeln dieser C++-Codebasis verwenden.",
|
||||
"walkthrough.windows.verify.compiler": "Überprüfen der Compilerinstallation",
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.limitSymbolsToIncludedHeaders": "Establecer `true` para procesar únicamente los archivos incluidos directa o indirectamente como encabezados. Establecer `false` para procesar todos los archivos en las rutas de acceso de inclusión especificadas.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.databaseFilename": "Ruta de acceso a la base de datos de símbolos generada. Si se especifica una ruta de acceso relativa, será relativa a la ubicación de almacenamiento predeterminada del área de trabajo.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.path": "Lista de rutas de acceso que se usarán para indexar y analizar símbolos del área de trabajo (que se usarán con comandos como 'Go to Definition', 'Find All References', etc.). La búsqueda en estas rutas de acceso es recursiva de forma predeterminada. Especifique `*` para indicar una búsqueda no recursiva. Por ejemplo, `${workspaceFolder}` buscará en todos los subdirectorios, mientras que `${workspaceFolder}/*` no lo hará.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.reduce": "Establézcalo en `always` para reducir siempre el número de rutas de inclusión recursivas proporcionadas a IntelliSense solo a aquellas rutas a las que hacen referencia actualmente las instrucciones #include. Esto requiere primero analizar los archivos para determinar qué encabezados se incluyen. Establézcalo en `never` para proporcionar todas las rutas de inclusión recursivas a IntelliSense. Reducir el número de rutas de inclusiones recursivas puede mejorar el rendimiento de IntelliSense cuando hay un gran número de rutas de inclusión recursivas involucradas. No reducir el número de rutas de inclusión recursivas puede mejorar el rendimiento de IntelliSense al evitar la necesidad de analizar archivos para determinar qué rutas de inclusión proporcionar. El valor `default` actualmente es para reducir el número de rutas de inclusión recursivas proporcionadas a IntelliSense.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.priority": "La prioridad de las rutas de acceso de inclusión recursivas. Si se establece en `beforeSystemIncludes`, se buscarán las rutas de inclusión recursivas antes que las rutas de inclusión del sistema. Si se establece en `afterSystemIncludes`, se buscarán las rutas de inclusión recursivas después de las rutas de inclusión del sistema. `beforeSystemIncludes` reflejaría más fielmente el orden de búsqueda de un compilador, mientras que `afterSystemIncludes` podría resultar en un mejor rendimiento.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.order": "El orden en el que se buscan los subdirectorios de las inclusiones recursivas.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.customConfigurationVariables": "Variables personalizadas que pueden consultarse mediante el comando `${cpptools:activeConfigCustomVariable}` para utilizarlas en las variables de entrada en `launch.json` o `tasks.json`.",
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.headerFilter.markdownDescription": "Expresión regular extendida (ERE) POSIX que coincide con los nombres de los encabezados de los que se van a generar diagnósticos. Siempre se muestran los diagnósticos del archivo principal de cada unidad de traducción. Se admite la variable `${workspaceFolder}` (y se usa como valor de reserva predeterminado si no existe ningún archivo `.clang-tidy`). Si esta opción no es `null` (vacía), invalida la opción `HeaderFilterRegex` en un archivo `.clang-tidy`, si existe.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.args.markdownDescription": "Argumentos adicionales de la línea de comandos que se pasan a `clang-tidy`. Tienen prioridad sobre la configuración equivalente `C_Cpp.codeAnalysis.clangTidy.*`.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.useBuildPath.markdownDescription": "Si se establece `true` y `compileCommands`, el argumento `-p=<build-path>` se pasa a `clang-tidy` en lugar de pasar los argumentos de compilación después de `--`. Esto puede no funcionar si no se establecen las variables de entorno para que se puedan encontrar las inclusiones del sistema.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "Lista de comprobaciones `clang-tidy` habilitadas. Los valores se anexan a `Checks` en un archivo `.clang-tidy` o `#C_Cpp.codeAnalysis.clangTidy.config#`, si los hay. La comprobación predeterminada `clang-analyzer-*` se usa siempre a menos que se deshabilite explícitamente.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "Lista de comprobaciones `clang-tidy` habilitadas. Los valores se anexan a `Checks` en un archivo `.clang-tidy` o `#C_Cpp.codeAnalysis.clangTidy.config#`, si existe. La comprobación predeterminada `clang-analyzer-core.*` siempre se usa a menos que se deshabilite explícitamente.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.disabled.markdownDescription": "Lista de comprobaciones `clang-tidy` deshabilitadas. Los valores se anexan a `Checks` en un archivo `.clang-tidy` o `#C_Cpp.codeAnalysis.clangTidy.config#`, si los hay.",
|
||||
"c_cpp.configuration.formatting.description": "Configura el motor de formato",
|
||||
"c_cpp.configuration.formatting.clangFormat.markdownDescription": "`clang-format` se usará para formatear el código.",
|
||||
@@ -210,6 +210,7 @@
|
||||
"c_cpp.configuration.preferredPathSeparator.markdownDescription": "Carácter utilizado como separador de ruta de acceso para las rutas de acceso de usuario generadas.",
|
||||
"c_cpp.configuration.simplifyStructuredComments.markdownDescription": "Si es `true`, la información sobre herramientas al mantener el puntero y autocompletar solo mostrará ciertas etiquetas de comentarios estructurados. De lo contrario, se muestran todos los comentarios.",
|
||||
"c_cpp.configuration.doxygen.generateOnType.description": "Controla si se va a insertar automáticamente el comentario de Doxygen después de escribir el estilo de comentario elegido.",
|
||||
"c_cpp.configuration.doxygen.generateOnCodeAction.description": "Controla si está habilitada la acción de código para generar un comentario Doxygen.",
|
||||
"c_cpp.configuration.doxygen.generatedStyle.description": "La cadena de caracteres utilizada como línea de inicio del comentario de Doxygen.",
|
||||
"c_cpp.configuration.doxygen.sectionTags.description": "Seleccione las etiquetas de sección de Doxygen que quiere que aparezcan al mantener el puntero en el área de información sobre herramientas cuando esté habilitada la opción 'simplificar comentarios estructurados'. ",
|
||||
"c_cpp.configuration.commentContinuationPatterns.items.anyof.string.markdownDescription": "Patrón que comienza un bloque de comentario de una o varias líneas. El valor predeterminado del patrón de continuación es ` * ` para los bloques de comentario multilínea o esta cadena para los bloques de comentario de una línea.",
|
||||
@@ -390,6 +391,9 @@
|
||||
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "False si la entrada solo se usa para la asignación de ubicación del marco de pila. True si la entrada debe usarse también al especificar ubicaciones de los puntos de interrupción.",
|
||||
"c_cpp.debuggers.symbolOptions.description": "Opciones para controlar cómo se encuentran y se cargan los símbolos (archivos .pdb).",
|
||||
"c_cpp.debuggers.unknownBreakpointHandling.description": "Controla cómo se controlan los puntos de interrupción establecidos externamente (normalmente a través de comandos GDB sin procesar) cuando se alcanzan.\nLos valores permitidos son \"throw\", que actúa como si la aplicación iniciara una excepción y \"stop\", que solo pausa la sesión de depuración. El valor predeterminado es \"throw\".",
|
||||
"c_cpp.debuggers.debuginfod.description": "Controla el comportamiento de debuginfod de GDB para descargar símbolos de depuración de servidores debuginfod.",
|
||||
"c_cpp.debuggers.debuginfod.enabled.description": "Si es true (valor predeterminado), la compatibilidad con debuginfod de GDB está habilitada. Se establece en false para evitar que GDB se ponga en contacto con los servidores debuginfod.",
|
||||
"c_cpp.debuggers.debuginfod.timeout.description": "Tiempo de espera, en segundos, para las solicitudes al servidor debuginfod. El valor predeterminado es 30. Se establece en 0 para usar los valores predeterminados de GDB/libdebuginfod (sin invalidación).",
|
||||
"c_cpp.debuggers.VSSymbolOptions.description": "Proporciona la configuración para buscar y cargar símbolos en el adaptador de depuración.",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchPaths.description": "Matriz de direcciones URL del servidor de símbolos (ejemplo: http://MiServidordeSímblosdeEjemplo) o de directorios (ejemplo: /compilar/symbols) para buscar archivos. pdb. Se buscarán estos directorios además de las ubicaciones predeterminadas, junto al módulo y la ruta de acceso en la que se anuló originalmente el archivo pdb.",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchMicrosoftSymbolServer.description": "Si es «verdadero», se agrega el servidor de símbolos de Microsoft (https://msdl.microsoft.com/download/symbols) a la ruta de búsqueda de símbolos. Si no se especifica, esta opción tendrá el valor predeterminado de «falso».",
|
||||
|
||||
@@ -4,5 +4,10 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"debugger.not.available": "El tipo de depurador '{0}' no está disponible para equipos que no son de Windows."
|
||||
"debugger.not.available": "El tipo de depurador '{0}' no está disponible para equipos que no son de Windows.",
|
||||
"debugger.noDebug.requestType.not.supported": "Ejecutar sin depuración solo se admite para las configuraciones de inicio.",
|
||||
"debugger.noDebug.pipeTransport.not.supported": "No se admite ejecutar sin depuración para configuraciones con \"pipeTransport\" establecido.",
|
||||
"debugger.noDebug.debugServerPath.not.supported": "No se admite ejecutar sin depuración para configuraciones con el valor \"debugServerPath\" establecido.",
|
||||
"debugger.noDebug.miDebuggerServerAddress.not.supported": "No se admite ejecutar sin depuración para configuraciones con el conjunto \"miDebuggerServerAddress\".",
|
||||
"debugger.noDebug.coreDumpPath.not.supported": "No se admite ejecutar sin depuración para configuraciones con \"coreDumpPath\" establecido."
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"no.terminal.emulator": "No se encontró ningún emulador de terminal. Establezca la variable de entorno $TERMINAL en el emulador de terminal que prefiera o instale una de las siguientes opciones: x-terminal-emulator, gnome-terminal, konsole, xterm."
|
||||
}
|
||||
@@ -319,5 +319,102 @@
|
||||
"file_not_found_in_path2": "\"{0}\" no se encuentra en compile_commands.json archivos. ''includePath'' de c_cpp_properties.json de la carpeta ''{1}'' se usará en su lugar para este archivo.",
|
||||
"copilot_hover_link": "Generar resumen de Copilot",
|
||||
"browse_path_not_found": "No se pueden indexar archivos de una carpeta inexistente: {0}",
|
||||
"license_terms": "La extensión de C/C++ solo se puede utilizar con Microsoft Visual Studio, Visual Studio para Mac, Visual Studio Code, Azure DevOps, Team Foundation Server y productos y servicios sucesores de Microsoft para desarrollar y probar sus aplicaciones."
|
||||
"license_terms": "La extensión de C/C++ solo se puede utilizar con Microsoft Visual Studio, Visual Studio para Mac, Visual Studio Code, Azure DevOps, Team Foundation Server y productos y servicios sucesores de Microsoft para desarrollar y probar sus aplicaciones.",
|
||||
"help_title": "Servidor de lenguaje Microsoft C++",
|
||||
"help_usage": "Uso: {0} [opciones]",
|
||||
"help_options_header": "Opciones:",
|
||||
"help_help": "Mostrar este mensaje de ayuda y salir.",
|
||||
"help_version": "Mostrar información de versión y salir.",
|
||||
"help_accept_eula": "Aceptar permanentemente el Contrato de licencia para el usuario final (EULA).",
|
||||
"help_stderr": "No redirigir stderr a /dev/null (útil para la depuración).",
|
||||
"help_login": "Inicie el inicio de sesión interactivo (se requiere una suscripción de GitHub Copilot).",
|
||||
"help_force_login": "Fuerce el proceso de inicio de sesión, incluso si ya se ha autenticado.",
|
||||
"help_allow_plaintext": "Permitir almacenar credenciales en texto sin formato si no hay un llavero seguro disponible.",
|
||||
"help_log_dir": "Especifique el directorio para los archivos de registro (valor predeterminado: directorio temporal del sistema).",
|
||||
"help_log_level": "Establezca el nivel de detalle del registro de 0 (solo errores) en 9 (detallado).",
|
||||
"help_lsp_config": "Especifique el parámetro como una ruta de acceso absoluta o relativa a la raíz del área de trabajo o su carpeta .github.",
|
||||
"help_disable_telemetry": "Deshabilite el envío de datos de telemetría.",
|
||||
"auth_device_flow_prompt": "Para autenticarse con GitHub, copie el código {0} y visite {1}. Esperando autorización...",
|
||||
"auth_timed_out": "Se agotó el tiempo de espera para la autorización.",
|
||||
"auth_success": "Se ha autenticado correctamente con GitHub.",
|
||||
"auth_save_failed": "La autenticación de GitHub se realizó correctamente, pero no se pudieron guardar los tokens.",
|
||||
"auth_keyring_error": "Error de conjunto de claves: {0}",
|
||||
"auth_keyring_locked": "La colección de teclados está bloqueada. Desbloquee o reinicie gnome-keyring-daemon.",
|
||||
"auth_keyring_unavailable": "No hay ningún servicio de conjunto de claves disponible. Instalación e inicio de gnome-keyring: sudo apt install gnome-keyring",
|
||||
"auth_try_plaintext": "O bien, permita el almacenamiento de texto sin formato pasando --login --allow-plaintext-secret-storage.",
|
||||
"auth_expired": "El código de dispositivo ha expirado. Inténtelo de nuevo.",
|
||||
"auth_denied": "El usuario denegó la autorización.",
|
||||
"auth_unexpected_error": "Error inesperado durante el sondeo: {0}",
|
||||
"auth_login_failed": "Error de inicio de sesión de GitHub. Intente ejecutar con --login desde la línea de comandos para iniciar sesión.",
|
||||
"auth_eula_required": "Se debe aceptar el EULA para continuar. Se ejecuta con --accept-eula.",
|
||||
"auth_already_authenticated": "Ya se ha autenticado con GitHub. Use --force-login para volver a autenticarse.",
|
||||
"config_unsupported_version": "Error de inicialización: versión de configuración no admitida. Solo se admite la versión 1.",
|
||||
"config_file_not_found": "Error de inicialización: no se encontró el archivo de configuración ''{0}\".",
|
||||
"config_parse_failed": "Error de inicialización: no se puede analizar el archivo de configuración ''{0}\". Compruebe el formato JSON. Error: {1}",
|
||||
"config_repo_path_invalid": "Error de inicialización: \"repositoryPath\" no está configurado o no es válido.",
|
||||
"config_missing_source": "Error de inicialización: se debe configurar \"compileCommands\" o \"cppProperties\".",
|
||||
"config_dual_source": "Error de inicialización: no se pueden configurar a la vez \"compileCommands\" y \"cppProperties\".",
|
||||
"config_compile_commands_not_found": "Error de inicialización: no se encontró la ruta de acceso \"compileCommands\": \"{0}\".",
|
||||
"config_cpp_properties_not_found": "Error de inicialización: no se encontró la ruta de acceso \"cppProperties\": \"{0}\".",
|
||||
"config_cpp_properties_parse_failed": "Error de inicialización: no se puede analizar el archivo especificado por \"cppProperties\": \"{0}\". Compruebe el formato JSON. Error: {1}",
|
||||
"config_cpp_properties_schema_invalid": "Error de inicialización: no se puede leer la configuración del archivo \"cppProperties\": \"{0}\". Compruebe el esquema.",
|
||||
"config_no_configurations": "Error de inicialización: \"{0}\" no contiene una matriz \"configurations\" válida.",
|
||||
"config_configuration_not_found": "Error de inicialización: no se encontró la configuración \"{0}\" en el archivo 'cppProperties': \"{1}\".",
|
||||
"config_paths_cache_missing": "Error de inicialización: falta la caché de rutas de acceso de configuración LSP.",
|
||||
"curl_not_found": "No se encontró libcurl ({0}). libcurl es necesario para la autenticación y la telemetría.",
|
||||
"curl_install_macos": "libcurl debe estar disponible en macOS de forma predeterminada. Si falta, instálelo a través de: brew install curl",
|
||||
"curl_install_linux": "Instale libcurl: sudo apt install libcurl4 (Debian/Ubuntu) o sudo dnf install libcurl (Fedora/RHEL).",
|
||||
"curl_symbols_missing": "libcurl se cargó, pero faltan los símbolos necesarios. Esto puede indicar una versión de libcurl muy antigua o incompatible. El servidor de lenguaje no puede funcionar sin un libcurl compatible.",
|
||||
"keytar_not_found": "libsecret-1.so.0 no se encuentra ({0}). libsecret es necesario para el almacenamiento seguro de credenciales. Instale libsecret: sudo apt install libsecret-1-0 (Debian/Ubuntu) o sudo dnf install libsecret (Fedora/RHEL).",
|
||||
"keytar_symbols_missing": "libsecret se ha cargado, pero faltan los símbolos necesarios. El servidor de lenguaje no puede funcionar sin una versión compatible de libsecret.",
|
||||
"telemetry_disable_failed": "No se pudo deshabilitar la telemetría.",
|
||||
"lsp_method_not_found": "Método no encontrado: {0}",
|
||||
"intellisense_same_canonical_path": "No se puede procesar IntelliSense para un archivo con la misma ruta de acceso canónica que un archivo existente. URI: {0}, ruta de acceso canónica: {1}",
|
||||
"status_initializing": "Inicializando",
|
||||
"status_initializing_with_n_of_m": "Inicializando ({0} de {1})",
|
||||
"status_initializing_with_n_of_m_and_text": "Inicializando ({0} de {1}): {2}",
|
||||
"status_initializing_with_text": "Inicializando {0}",
|
||||
"status_initializing_projects": "Inicializando proyectos",
|
||||
"status_initializing_projects_with_n_of_m": "Inicializando proyectos ({0} de {1})",
|
||||
"status_initializing_projects_with_n_of_m_and_text": "Inicializando proyectos ({0} de {1}): {2}",
|
||||
"status_initializing_projects_with_text": "Iniciando el proyecto {0}",
|
||||
"status_checking_for_outdated_files": "Comprobando si hay archivos obsoletos",
|
||||
"status_checking_for_outdated_files_with_n_of_m": "Comprobando si hay archivos obsoletos ({0} de {1})",
|
||||
"status_checking_for_outdated_files_with_n_of_m_and_text": "Comprobando si hay archivos obsoletos ({0} de {1}): {2}",
|
||||
"status_checking_for_outdated_files_with_text": "Comprobando si hay archivos no actualizados {0}",
|
||||
"status_parsing_files": "Análisis de archivos",
|
||||
"status_parsing_files_with_n_of_m": "Analizar archivos ({0} de {1})",
|
||||
"status_parsing_files_with_n_of_m_and_text": "Análisis de archivos ({0} de {1}): {2}",
|
||||
"status_parsing_files_with_text": "Análisis de archivos {0}",
|
||||
"status_parsing_includes": "Análisis de archivos incluidos",
|
||||
"status_parsing_includes_with_n_of_m": "Análisis de archivos incluidos ({0} de {1})",
|
||||
"status_parsing_includes_with_n_of_m_and_text": "Análisis de archivos incluidos ({0} de {1}): {2}",
|
||||
"status_parsing_includes_with_text": "Análisis de archivos incluidos {0}",
|
||||
"status_scanning_includes": "Examinando #includes en busca de más archivos",
|
||||
"status_scanning_includes_with_n_of_m": "Examinando #includes en busca de más archivos ({0} de {1})",
|
||||
"status_scanning_includes_with_n_of_m_and_text": "Examinando #includes en busca de más archivos ({0} de {1}): {2}",
|
||||
"status_scanning_includes_with_text": "Examinando #includes en busca de más archivos {0} {1}",
|
||||
"status_updating_external_dependencies": "Listo (actualizando dependencias externas)",
|
||||
"status_updating_external_dependencies_with_n_of_m": "Listo (actualizando dependencias externas) ({0} de {1})",
|
||||
"status_updating_external_dependencies_with_n_of_m_and_text": "Listo (actualizando dependencias externas) ({0} de {1}): {2}",
|
||||
"status_updating_external_dependencies_with_text": "Listo (actualizando dependencias externas) {0}",
|
||||
"status_optimizing_database": "Listo (optimizando la base de datos)",
|
||||
"status_optimizing_database_with_n_of_m": "Listo (optimización de la base de datos) ({0} de {1})",
|
||||
"status_optimizing_database_with_n_of_m_and_text": "Listo (optimización de la base de datos) ({0} de {1}): {2}",
|
||||
"status_optimizing_database_with_text": "Listo (optimizando la base de datos) {0}",
|
||||
"status_creating_indexes": "Creando índices",
|
||||
"status_creating_indexes_with_n_of_m": "Creación de índices ({0} de {1})",
|
||||
"status_creating_indexes_with_n_of_m_and_text": "Creando índices ({0} de {1}): {2}",
|
||||
"status_creating_indexes_with_text": "Creación de índices {0}",
|
||||
"status_evaluating_file": "Evaluando",
|
||||
"status_evaluating_file_with_n_of_m": "Evaluación ({0} de {1})",
|
||||
"status_evaluating_file_with_n_of_m_and_text": "Evaluando ({0} de {1}): {2}",
|
||||
"status_evaluating_file_with_text": "Evaluación {0}",
|
||||
"status_indexing_files": "Indexación de archivos",
|
||||
"status_indexing_files_with_n_of_m": "Indexación de archivos ({0} de {1})",
|
||||
"status_indexing_files_with_n_of_m_and_text": "Indexación de archivos ({0} de {1}): {2}",
|
||||
"status_indexing_files_with_text": "Indexación de archivos {0}",
|
||||
"help_allow_missing_lsp_config": "Permita que el servidor se inicie incluso si el archivo --lsp-config especificado no existe.",
|
||||
"initialize_failed_during_engine_setup": "Error de inicialización durante la configuración del motor.",
|
||||
"important_label": "Importante:"
|
||||
}
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "Instalación de un compilador de C++ en Windows",
|
||||
"walkthrough.windows.text1": "Si está desarrollando C++ para Windows, le recomendamos que instale el compilador Microsoft Visual C++ (MSVC).",
|
||||
"walkthrough.windows.text2": "Para instalar MSVC, abra el terminal de VS Code (CTRL + `) y pegue el siguiente comando:\n",
|
||||
"walkthrough.windows.text2": "Para instalar MSVC, abra el terminal de VS Code (CTRL + `) y pegue el siguiente comando:",
|
||||
"walkthrough.windows.note1": "Nota",
|
||||
"walkthrough.windows.note1.text": "Puede usar el conjunto de herramientas de C++ de Visual Studio Build Tools junto con Visual Studio Code para compilar y comprobar cualquier código base de C++, siempre que también tenga una licencia de Visual Studio válida (Community, Pro o Enterprise) que esté usando de manera activa para desarrollar ese código base de C++.",
|
||||
"walkthrough.windows.verify.compiler": "Comprobación de la instalación del compilador",
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "Instalación de un compilador de C++ en Windows",
|
||||
"walkthrough.windows.text1": "Si está desarrollando C++ para Windows, le recomendamos que instale el compilador Microsoft Visual C++ (MSVC).",
|
||||
"walkthrough.windows.text2": "Para instalar MSVC, abra el terminal de VS Code (CTRL + `) y pegue el siguiente comando:\n",
|
||||
"walkthrough.windows.text2": "Para instalar MSVC, abra el terminal de VS Code (CTRL + `) y pegue el siguiente comando:",
|
||||
"walkthrough.windows.note1": "Nota",
|
||||
"walkthrough.windows.note1.text": "Puede usar el conjunto de herramientas de C++ de Visual Studio Build Tools junto con Visual Studio Code para compilar y comprobar cualquier código base de C++, siempre que también tenga una licencia de Visual Studio válida (Community, Pro o Enterprise) que esté usando de manera activa para desarrollar ese código base de C++.",
|
||||
"walkthrough.windows.verify.compiler": "Comprobación de la instalación del compilador",
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.limitSymbolsToIncludedHeaders": "Défini sur `true` pour traiter uniquement les fichiers directement ou indirectement inclus en tant qu’en-têtes. Défini sur `false` pour traiter tous les fichiers sous les chemins d’accès Include spécifiés.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.databaseFilename": "Chemin de la base de données de symboles générée. Si un chemin relatif est spécifié, il est relatif à l'emplacement de stockage par défaut de l'espace de travail.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.path": "Liste de chemins à utiliser pour l'indexation et l'analyse des symboles d'espace de travail (à utiliser par 'Atteindre la définition', 'Rechercher toutes les références', etc.). La recherche sur ces chemins est récursive par défaut. Spécifiez `*` pour indiquer une recherche non récursive. Par exemple, `${workspaceFolder}` permet d'effectuer une recherche parmi tous les sous-répertoires, ce qui n'est pas le cas de `${workspaceFolder}/*`.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.reduce": "Affectez la valeur `always` pour toujours réduire le nombre de chemins d’accès d’inclusion récursive fournis à IntelliSense uniquement aux chemins actuellement référencés par des instructions #include. Pour cela, vous devez d’abord analyser les fichiers pour déterminer quels en-têtes sont inclus. Affectez la valeur `never` pour fournir tous les chemins d’accès d’inclusion récursive à IntelliSense. La réduction du nombre de chemins d’accès d’inclusion récursive peut améliorer les performances d’IntelliSense lorsque de très nombreux chemins d’accès d’inclusion récursive sont impliqués. Ne pas réduire le nombre de chemins d’accès d’inclusion récursive peut améliorer les performances d’IntelliSense en évitant la nécessité d’analyser les fichiers pour déterminer quels chemins d’accès d’inclusion fournir. La valeur `default` permet actuellement de réduire le nombre de chemins d’accès d’inclusion récursive fournis à IntelliSense.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.priority": "Priorité des chemins d’accès d’inclusion récursive. Si la valeur est `beforeSystemIncludes`, les chemins d’accès d’inclusion récursive seront recherchés avant les chemins d’accès d’inclusion système. Si la valeur est `afterSystemIncludes`, les chemins d’accès d’inclusion récursive seront recherchés après les chemins d’accès d’inclusion système. `beforeSystemIncludes` reflète plus étroitement l’ordre de recherche d’un compilateur, tandis que `afterSystemIncludes` peut améliorer les performances.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.order": "Ordre dans lequel les sous-répertoires des inclusions récursives sont recherchés.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.customConfigurationVariables": "Variables personnalisées qui peuvent être interrogées par le biais de la commande `${cpptools:activeConfigCustomVariable}` à utiliser pour les variables d'entrée dans `launch.json` ou `tasks.json`.",
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.headerFilter.markdownDescription": "Expression régulière étendue POSIX (ERE) correspondant aux noms des en-têtes à partir des diagnostics de sortie. Les diagnostics du fichier principal de chaque unité de traduction sont toujours affichés. La variable `${workspaceFolder}` est prise en charge (et est utilisée comme valeur de secours par défaut si aucun fichier `.clang-tidy` n’existe). Si cette option n’est pas `null` (vide), elle remplace l’option `HeaderFilterRegex` dans un fichier `.clang-tidy`, le cas échéant.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.args.markdownDescription": "Arguments de ligne de commande supplémentaires à passer à `clang-tidy`. Ces paramètres sont prioritaires sur les paramètres équivalents `C_Cpp.codeAnalysis.clangTidy.*`.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.useBuildPath.markdownDescription": "Si `true` et `compileCommands` sont définis, l’argument `-p=<build-path>` est passé à `clang-tidy` au lieu de passer les arguments de build après `--`. Cela peut ne pas fonctionner si les variables d’environnement ne sont pas définies de façon à trouver les fichiers Include du système.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "Liste des vérifications `clang-tidy` activées. Les valeurs sont ajoutées aux `Checks` dans un fichier `.clang-tidy` ou `#C_Cpp.codeAnalysis.clangTidy.config#`, le cas échéant. La vérification par défaut `clang-analyzer-*` est toujours utilisée, sauf si elle est explicitement désactivée.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "Liste des vérifications `clang-tidy` activées. Les valeurs sont ajoutées aux `Checks` dans un fichier `.clang-tidy` ou `#C_Cpp.codeAnalysis.clangTidy.config#`, le cas échéant. La vérification par défaut `clang-analyzer-core.*`est toujours utilisée, sauf si elle est explicitement désactivée.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.disabled.markdownDescription": "Liste des vérifications `clang-tidy` désactivées. Les valeurs sont ajoutées aux `Checks` dans un fichier `.clang-tidy` ou `#C_Cpp.codeAnalysis.clangTidy.config#`, le cas échéant.",
|
||||
"c_cpp.configuration.formatting.description": "Configure le moteur de mise en forme.",
|
||||
"c_cpp.configuration.formatting.clangFormat.markdownDescription": "`clang-format` sera utilisé pour mettre en forme le code.",
|
||||
@@ -210,6 +210,7 @@
|
||||
"c_cpp.configuration.preferredPathSeparator.markdownDescription": "Caractère utilisé comme séparateur de chemins d’accès pour les chemins d’utilisateur générés.",
|
||||
"c_cpp.configuration.simplifyStructuredComments.markdownDescription": "Si la valeur est `true`, les info-bulles de pointage et d'autocomplétion affichent uniquement certaines étiquettes de commentaires structurés. Sinon, tous les commentaires sont affichés.",
|
||||
"c_cpp.configuration.doxygen.generateOnType.description": "Contrôle s’il faut insérer automatiquement le commentaire Doxygen après avoir tapé le style de commentaire choisi.",
|
||||
"c_cpp.configuration.doxygen.generateOnCodeAction.description": "Contrôle si l’action de code permettant de générer un commentaire Doxygen est activée.",
|
||||
"c_cpp.configuration.doxygen.generatedStyle.description": "Chaîne de caractères utilisée comme ligne de départ du commentaire Doxygen.",
|
||||
"c_cpp.configuration.doxygen.sectionTags.description": "Sélectionnez les balises de section Doxygen que vous souhaitez afficher sur le pointage dans la zone d’info-bulle lorsque le paramètre « Simplifier les commentaires structurés » est activé. ",
|
||||
"c_cpp.configuration.commentContinuationPatterns.items.anyof.string.markdownDescription": "Modèle qui commence un bloc de commentaires multiligne ou monoligne. Le modèle consécutif a la valeur par défaut ` * ` pour les blocs de commentaires multilignes ou cette chaîne pour les blocs de commentaires monolignes.",
|
||||
@@ -390,6 +391,9 @@
|
||||
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "La valeur est false si cette entrée est utilisée uniquement pour le mappage d'emplacements de frame de pile. La valeur est true si cette entrée doit également être utilisée au moment de la spécification d'emplacements de point d'arrêt.",
|
||||
"c_cpp.debuggers.symbolOptions.description": "Options permettant de contrôler la façon dont les symboles (fichiers .pdb) sont trouvés et chargés.",
|
||||
"c_cpp.debuggers.unknownBreakpointHandling.description": "Contrôle la façon dont les points d’arrêt définis en externe (généralement via des commandes GDB brutes) sont gérés en cas d’accès.\nLes valeurs autorisées sont « throw », qui agit comme si une exception était levée par l’application, et « stop », qui suspend uniquement la session de débogage. La valeur par défaut est « throw ».",
|
||||
"c_cpp.debuggers.debuginfod.description": "Permet de contrôler le comportement de debuginfod par GDB pour télécharger les symboles de débogage à partir de serveurs debuginfod.",
|
||||
"c_cpp.debuggers.debuginfod.enabled.description": "Si la valeur est true (par défaut), la prise en charge de debuginfod par GDB est activée. Définissez-la sur false pour empêcher GDB de contacter des serveurs debuginfod.",
|
||||
"c_cpp.debuggers.debuginfod.timeout.description": "Délai d’expiration en secondes pour les requêtes du serveur debuginfod. La valeur par défaut est 30. Définissez sur 0 pour utiliser les valeurs par défaut de GDB/libdebuginfod (aucune substitution).",
|
||||
"c_cpp.debuggers.VSSymbolOptions.description": "Fournit la configuration pour localiser et charger des symboles sur l’adaptateur de débogage.",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchPaths.description": "Tableau d’URL de serveur de symboles (exemple : http://MyExampleSymbolServer) ou répertoires (exemple : /build/symbols) pour rechercher des fichiers .pdb. Ces répertoires seront recherchés en plus des emplacements par défaut, en regard du module et du chemin d’accès vers lequel le fichier pdb a été supprimé à l’origine.",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchMicrosoftSymbolServer.description": "Si la valeur est « true », le serveur de symboles Microsoft (https://msdl.microsoft.com/download/symbols) est ajouté au chemin de recherche des symboles. Si elle n’est pas spécifiée, cette option a la valeur par défaut « false ».",
|
||||
|
||||
@@ -4,5 +4,10 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"debugger.not.available": "Le type de débogueur '{0}' n’est pas disponible pour les machines non Windows."
|
||||
"debugger.not.available": "Le type de débogueur '{0}' n’est pas disponible pour les machines non Windows.",
|
||||
"debugger.noDebug.requestType.not.supported": "L’exécution sans débogage n’est prise en charge que pour les configurations de lancement.",
|
||||
"debugger.noDebug.pipeTransport.not.supported": "L’exécution sans débogage n’est pas prise en charge pour les configurations où « pipeTransport » est défini.",
|
||||
"debugger.noDebug.debugServerPath.not.supported": "L’exécution sans débogage n’est pas prise en charge pour les configurations où « debugServerPath » est défini.",
|
||||
"debugger.noDebug.miDebuggerServerAddress.not.supported": "L’exécution sans débogage n’est pas prise en charge pour les configurations où « miDebuggerServerAddress » est défini.",
|
||||
"debugger.noDebug.coreDumpPath.not.supported": "L’exécution sans débogage n’est pas prise en charge pour les configurations où « coreDumpPath » est défini."
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"no.terminal.emulator": "Émulateur de terminal introuvable. Veuillez définir la variable d’environnement $TERMINAL sur l’émulateur de terminal de votre choix, ou installez l’un des éléments suivants : x-terminal-emulator, gnome-terminal, konsole, xterm."
|
||||
}
|
||||
@@ -319,5 +319,102 @@
|
||||
"file_not_found_in_path2": "« {0} » n'a pas été trouvé dans les fichiers compile_commands.json. « includePath » from c_cpp_properties.json in folder « {1} » sera utilisé pour ce fichier à la place.",
|
||||
"copilot_hover_link": "Générer un résumé de Copilot",
|
||||
"browse_path_not_found": "Impossible d’indexer des fichiers à partir d’un dossier inexistant : {0}",
|
||||
"license_terms": "Vous ne pouvez utiliser l’extension C/C++ qu’avec Microsoft Visual Studio, Visual Studio pour Mac, Visual Studio Code, Azure DevOps, Team Foundation Server et les produits et services Microsoft qui leur succèdent pour développer et tester vos applications."
|
||||
"license_terms": "Vous ne pouvez utiliser l’extension C/C++ qu’avec Microsoft Visual Studio, Visual Studio pour Mac, Visual Studio Code, Azure DevOps, Team Foundation Server et les produits et services Microsoft qui leur succèdent pour développer et tester vos applications.",
|
||||
"help_title": "Serveur de langage Microsoft C++",
|
||||
"help_usage": "Utilisation : {0} [options]",
|
||||
"help_options_header": "Options :",
|
||||
"help_help": "Afficher ce message d’aide et quitter.",
|
||||
"help_version": "Afficher les informations de version et quitter.",
|
||||
"help_accept_eula": "Acceptez définitivement le Contrat de licence utilisateur final (CLUF).",
|
||||
"help_stderr": "Ne redirigez pas stderr vers /dev/null (utile pour le débogage).",
|
||||
"help_login": "Lancez une connexion interactive (abonnement à GitHub Copilot requis).",
|
||||
"help_force_login": "Forcer le processus de connexion, même si vous êtes déjà authentifié(e).",
|
||||
"help_allow_plaintext": "Autoriser le stockage des informations d’identification en texte clair si un trousseau sécurisé n’est pas disponible.",
|
||||
"help_log_dir": "Spécifiez le répertoire des fichiers journaux (par défaut : répertoire temporaire système).",
|
||||
"help_log_level": "Définissez le niveau de détail de la journalisation de 0 (erreurs uniquement) à 9 (très détaillé).",
|
||||
"help_lsp_config": "Spécifiez le paramètre sous forme de chemin absolu, ou relatif à la racine de l’espace de travail ou à son dossier .github.",
|
||||
"help_disable_telemetry": "Désactivez l’envoi de données de télémétrie.",
|
||||
"auth_device_flow_prompt": "Pour vous authentifier auprès de GitHub, copiez le code {0}, puis rendez-vous sur {1}. En attente de l’autorisation...",
|
||||
"auth_timed_out": "Le délai d’attente pour l’autorisation a expiré.",
|
||||
"auth_success": "Authentification réussie auprès de GitHub.",
|
||||
"auth_save_failed": "L’authentification GitHub a réussi, mais les jetons n’ont pas pu être enregistrés.",
|
||||
"auth_keyring_error": "Erreur de trousseau : {0}",
|
||||
"auth_keyring_locked": "La collection de trousseaux de clés est verrouillée. Déverrouillez-la ou redémarrez gnome-keyring-daemon.",
|
||||
"auth_keyring_unavailable": "Aucun service de trousseau n’est disponible. Installez et démarrez gnome-keyring : sudo apt install gnome-keyring",
|
||||
"auth_try_plaintext": "Ou autorisez le stockage en texte clair en passant --login --allow-plaintext-secret-storage.",
|
||||
"auth_expired": "Le code de l’appareil a expiré. Veuillez réessayer.",
|
||||
"auth_denied": "L’autorisation a été refusée par l’utilisateur(-trice).",
|
||||
"auth_unexpected_error": "Erreur inattendue lors de l’interrogation : {0}",
|
||||
"auth_login_failed": "Nous n’avons pas pu effectuer la connexion à GitHub. Essayez d’exécuter la commande avec --login depuis la ligne de commande pour vous connecter.",
|
||||
"auth_eula_required": "Le CLUF doit être accepté pour continuer. Exécutez avec --accept-eula.",
|
||||
"auth_already_authenticated": "Déjà authentifié auprès de GitHub. Utilisez --force-login pour vous réauthentifier.",
|
||||
"config_unsupported_version": "Échec de l’initialisation : version de configuration non prise en charge. Seule la version 1 est prise en charge.",
|
||||
"config_file_not_found": "Échec de l’initialisation : le fichier de configuration « {0} » est introuvable.",
|
||||
"config_parse_failed": "Échec de l’initialisation : impossible d’analyser le fichier de configuration « {0} ». Vérifiez le format JSON. Erreur : {1}",
|
||||
"config_repo_path_invalid": "Échec de l’initialisation : « repositoryPath » n’est pas configuré ou n’est pas valide.",
|
||||
"config_missing_source": "Échec de l’initialisation : « compileCommands » ou « cppProperties » doit être configuré.",
|
||||
"config_dual_source": "Échec de l’initialisation : « compileCommands » et « cppProperties » ne peuvent pas être configurés simultanément.",
|
||||
"config_compile_commands_not_found": "Échec de l’initialisation : chemin « compileCommands » introuvable : « {0} ».",
|
||||
"config_cpp_properties_not_found": "Échec de l’initialisation : chemin « cppProperties » introuvable : « {0} ».",
|
||||
"config_cpp_properties_parse_failed": "Échec de l’initialisation : nous ne pouvons pas analyser le fichier spécifié par « cppProperties » : « {0} ». Vérifiez le format JSON. Erreur : {1}",
|
||||
"config_cpp_properties_schema_invalid": "Échec de l’initialisation : impossible de lire la configuration à partir du fichier « cppProperties » : « {0} ». Vérifiez le schéma.",
|
||||
"config_no_configurations": "Échec de l’initialisation : « {0} » ne contient pas de tableau « configurations » valide.",
|
||||
"config_configuration_not_found": "Échec de l’initialisation : la configuration « {0} » est introuvable dans le fichier « cppProperties » : « {1} ».",
|
||||
"config_paths_cache_missing": "Échec de l’initialisation : le cache des chemins de configuration LSP est manquant.",
|
||||
"curl_not_found": "libcurl introuvable ({0}). libcurl est requis pour l’authentification et la télémétrie.",
|
||||
"curl_install_macos": "libcurl doit être disponible par défaut sur macOS. S’il est manquant, installez-le avec : brew install curl",
|
||||
"curl_install_linux": "Installez libcurl : sudo apt install libcurl4 (Debian/Ubuntu) ou sudo dnf install libcurl (Fedora/RHEL).",
|
||||
"curl_symbols_missing": "libcurl chargé, mais les symboles requis sont manquants. Cela peut indiquer une version très ancienne ou incompatible de libcurl. Le serveur de langage ne peut pas fonctionner sans une version compatible de libcurl.",
|
||||
"keytar_not_found": "libsecret-1.so.0 introuvable ({0}). libsecret est requis pour le stockage sécurisé des informations d’identification. Installez libsecret : sudo apt install libsecret-1-0 (Debian/Ubuntu) ou sudo dnf install libsecret (Fedora/RHEL).",
|
||||
"keytar_symbols_missing": "libsecret chargé, mais les symboles requis sont manquants. Le serveur de langage ne peut pas fonctionner sans une version compatible de libsecret.",
|
||||
"telemetry_disable_failed": "Échec de la désactivation de la télémétrie.",
|
||||
"lsp_method_not_found": "Méthode introuvable : {0}",
|
||||
"intellisense_same_canonical_path": "Nous ne pouvons pas traiter IntelliSense pour un fichier ayant le même chemin canonique qu’un fichier existant. URI : {0}, chemin canonique : {1}",
|
||||
"status_initializing": "Initialisation en cours",
|
||||
"status_initializing_with_n_of_m": "Initialisation en cours ({0} sur {1})",
|
||||
"status_initializing_with_n_of_m_and_text": "Initialisation en cours ({0} sur {1}) : {2}",
|
||||
"status_initializing_with_text": "Initialisation de {0}",
|
||||
"status_initializing_projects": "Initialisation des projets",
|
||||
"status_initializing_projects_with_n_of_m": "Initialisation des projets ({0} sur {1})",
|
||||
"status_initializing_projects_with_n_of_m_and_text": "Initialisation des projets ({0} sur {1}) : {2}",
|
||||
"status_initializing_projects_with_text": "Initialisation des projets {0}",
|
||||
"status_checking_for_outdated_files": "Recherche de fichiers obsolètes",
|
||||
"status_checking_for_outdated_files_with_n_of_m": "Recherche de fichiers obsolètes ({0} sur {1})",
|
||||
"status_checking_for_outdated_files_with_n_of_m_and_text": "Recherche de fichiers obsolètes ({0} sur {1}) : {2}",
|
||||
"status_checking_for_outdated_files_with_text": "Recherche de fichiers obsolètes {0}",
|
||||
"status_parsing_files": "Analyse des fichiers",
|
||||
"status_parsing_files_with_n_of_m": "Analyse des fichiers ({0} sur {1})",
|
||||
"status_parsing_files_with_n_of_m_and_text": "Analyse des fichiers ({0} sur {1}) : {2}",
|
||||
"status_parsing_files_with_text": "Analyse des fichiers {0}",
|
||||
"status_parsing_includes": "Analyse des fichiers inclus",
|
||||
"status_parsing_includes_with_n_of_m": "Analyse des fichiers inclus ({0} sur {1})",
|
||||
"status_parsing_includes_with_n_of_m_and_text": "Analyse des fichiers inclus ({0} sur {1}) : {2}",
|
||||
"status_parsing_includes_with_text": "Analyse des fichiers incluse {0}",
|
||||
"status_scanning_includes": "Analyse des #includes pour des fichiers supplémentaires",
|
||||
"status_scanning_includes_with_n_of_m": "Analyse des #includes pour des fichiers supplémentaires ({0} sur {1})",
|
||||
"status_scanning_includes_with_n_of_m_and_text": "Analyse des #includes pour des fichiers supplémentaires ({0} sur {1}) : {2}",
|
||||
"status_scanning_includes_with_text": "Analyse des #includes pour des fichiers supplémentaires {0} {1}",
|
||||
"status_updating_external_dependencies": "Prêt (mise à jour des dépendances externes)",
|
||||
"status_updating_external_dependencies_with_n_of_m": "Prêt(e) (mise à jour des dépendances externes) ({0} sur {1})",
|
||||
"status_updating_external_dependencies_with_n_of_m_and_text": "Prêt(e) (mise à jour des dépendances externes) ({0} sur {1}) : {2}",
|
||||
"status_updating_external_dependencies_with_text": "Prêt(e) (mise à jour des dépendances externes) {0}",
|
||||
"status_optimizing_database": "Prêt (optimisation de la base de données)",
|
||||
"status_optimizing_database_with_n_of_m": "Prêt (optimisation de la base de données) ({0} sur {1})",
|
||||
"status_optimizing_database_with_n_of_m_and_text": "Prêt (optimisation de la base de données) ({0} sur {1}) : {2}",
|
||||
"status_optimizing_database_with_text": "Prêt (optimisation de la base de données) {0}",
|
||||
"status_creating_indexes": "Création d’index",
|
||||
"status_creating_indexes_with_n_of_m": "Création d’index ({0} sur {1})",
|
||||
"status_creating_indexes_with_n_of_m_and_text": "Création d’index ({0} sur {1}) : {2}",
|
||||
"status_creating_indexes_with_text": "Création d’index {0}",
|
||||
"status_evaluating_file": "Évaluation",
|
||||
"status_evaluating_file_with_n_of_m": "Évaluation ({0} sur {1})",
|
||||
"status_evaluating_file_with_n_of_m_and_text": "Évaluation ({0} sur {1}) : {2}",
|
||||
"status_evaluating_file_with_text": "Évaluation de {0} en cours...",
|
||||
"status_indexing_files": "Indexation des fichiers",
|
||||
"status_indexing_files_with_n_of_m": "Indexation des fichiers ({0} sur {1})",
|
||||
"status_indexing_files_with_n_of_m_and_text": "Indexation des fichiers ({0} sur {1}) : {2}",
|
||||
"status_indexing_files_with_text": "Indexation des fichiers {0}",
|
||||
"help_allow_missing_lsp_config": "Autorisez le serveur à démarrer même si le fichier --lsp-config spécifié n’existe pas.",
|
||||
"initialize_failed_during_engine_setup": "Échec de l’initialisation lors de la configuration du moteur.",
|
||||
"important_label": "Important :"
|
||||
}
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "Installer un compilateur C++ sur Windows",
|
||||
"walkthrough.windows.text1": "Si vous effectuez un développement C++ pour Windows, nous vous recommandons d’installer le compilateur Microsoft Visual C++ (MSVC).",
|
||||
"walkthrough.windows.text2": "Pour installer MSVC, ouvrez le terminal VS Code (CTRL + `) et collez-le dans la commande suivante :\n",
|
||||
"walkthrough.windows.text2": "Pour installer MSVC, ouvrez le terminal VS Code (CTRL + `) et collez-le dans la commande suivante :",
|
||||
"walkthrough.windows.note1": "Remarque",
|
||||
"walkthrough.windows.note1.text": "Vous pouvez utiliser l’ensemble d’outils C++ à partir de Visual Studio Build Tools avec Visual Studio Code pour compiler, générer et vérifier n’importe quelle base de code C++, tant que vous disposez également d’une licence Visual Studio valide (Community, Pro ou Enterprise) que vous utilisez activement pour développer cette base de code C++.",
|
||||
"walkthrough.windows.verify.compiler": "Vérification de l’installation du compilateur",
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "Installer un compilateur C++ sur Windows",
|
||||
"walkthrough.windows.text1": "Si vous effectuez un développement C++ pour Windows, nous vous recommandons d’installer le compilateur Microsoft Visual C++ (MSVC).",
|
||||
"walkthrough.windows.text2": "Pour installer MSVC, ouvrez le terminal VS Code (CTRL + `) et collez-le dans la commande suivante :\n",
|
||||
"walkthrough.windows.text2": "Pour installer MSVC, ouvrez le terminal VS Code (CTRL + `) et collez-le dans la commande suivante :",
|
||||
"walkthrough.windows.note1": "Remarque",
|
||||
"walkthrough.windows.note1.text": "Vous pouvez utiliser l’ensemble d’outils C++ à partir de Visual Studio Build Tools avec Visual Studio Code pour compiler, générer et vérifier n’importe quelle base de code C++, tant que vous disposez également d’une licence Visual Studio valide (Community, Pro ou Enterprise) que vous utilisez activement pour développer cette base de code C++.",
|
||||
"walkthrough.windows.verify.compiler": "Vérification de l’installation du compilateur",
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.limitSymbolsToIncludedHeaders": "Impostare su `true` per elaborare solo i file inclusi direttamente o indirettamente come intestazioni, su `false` per elaborare tutti i file nei percorsi di inclusione specificati.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.databaseFilename": "Percorso del database dei simboli generato. Se viene specificato un percorso relativo, sarà relativo al percorso di archiviazione predefinito dell'area di lavoro.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.browse.properties.path": "Elenco di percorsi da usare per l'indicizzazione e l'analisi dei simboli dell'area di lavoro (usati da 'Vai alla definizione', 'Trova tutti i riferimenti' e così via). Per impostazione predefinita, la ricerca in questi percorsi è ricorsiva. Specificare `*` per indicare la ricerca non ricorsiva. Ad esempio, con `${workspaceFolder}` la ricerca verrà estesa a tutte le sottodirectory, mentre con `${workspaceFolder}/*` sarà limitata a quella corrente.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.reduce": "Imposta su `always` per ridurre sempre il numero di percorsi di inclusione ricorsivi forniti a IntelliSense, limitandoli solo ai percorsi attualmente referenziati da istruzioni #include. Per determinare quali intestazioni sono incluse, è necessario prima analizzare i file. Imposta su `never` per fornire tutti i percorsi di inclusione ricorsivi a IntelliSense. La riduzione del numero di percorsi di inclusione ricorsivi può migliorare le prestazioni di IntelliSense in caso di un numero molto elevato di percorsi di inclusione ricorsivi. Non ridurre il numero di percorsi di inclusione ricorsivi può migliorare le prestazioni di IntelliSense evitando la necessità di analizzare i file per determinare quali percorsi di inclusione fornire. Il valore `default` attualmente consente di ridurre il numero di percorsi di inclusione ricorsivi forniti a IntelliSense.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.priority": "La priorità dei percorsi di inclusione ricorsivi. Se impostato su `beforeSystemIncludes`, i percorsi di inclusione ricorsivi verranno cercati prima dei percorsi di inclusione di sistema. Se impostato su `afterSystemIncludes`, i percorsi di inclusione ricorsivi verranno cercati dopo i percorsi di inclusione di sistema. `beforeSystemIncludes` rifletterebbe più accuratamente l'ordine di ricerca di un compilatore, mentre `afterSystemIncludes` potrebbe migliorare le prestazioni.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.recursiveIncludes.properties.order": "L'ordine in cui vengono cercate le sottodirectory dei percorsi di inclusione ricorsivi.",
|
||||
"c_cpp_properties.schema.json.definitions.configurations.items.properties.customConfigurationVariables": "Variabili personalizzate su cui è possibile eseguire query tramite il comando `${cpptools:activeConfigCustomVariable}` da usare per le variabili di input in `launch.json` o `tasks.json`.",
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.headerFilter.markdownDescription": "Espressione regolare estesa POSIX (ERE) corrispondente ai nomi delle intestazioni da cui eseguire la diagnostica di output. La diagnostica dal file principale di ogni unità di conversione viene sempre visualizzata. La variabile `${workspaceFolder}` è supportata e viene usata come valore di fallback predefinito se non esiste alcun file `.clang-tidy`. Se questa opzione non è `null` (vuota), esegue l'override dell'opzione `HeaderFilterRegex` in un file `.clang-tidy`, se presente.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.args.markdownDescription": "Argomenti aggiuntivi della riga di comando da passare a `clang-tidy`. Hanno la precedenza sulle impostazioni equivalenti di `C_Cpp.codeAnalysis.clangTidy.*`.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.useBuildPath.markdownDescription": "Se `true` e `compileCommands` sono impostati, l'argomento `-p=<build-path>` viene passato a `clang-tidy` anziché agli argomenti di compilazione passati dopo `--`. Questa operazione potrebbe non funzionare se le variabili di ambiente non sono impostate in modo da poter trovare direttive include di sistema.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "Elenco dei controlli `clang-tidy` abilitati. I valori vengono aggiunti a `Checks` in un file `.clang-tidy` o `#C_Cpp.codeAnalysis.clangTidy.config#`, se presente. Il controllo predefinito `clang-analyzer-*` viene sempre usato a meno che non sia disabilitato in modo esplicito.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.enabled.markdownDescription": "Elenco dei controlli `clang-tidy` abilitati. I valori vengono accodati a `Checks` in un file `.clang-tidy` o `#C_Cpp.codeAnalysis.clangTidy.config#`, se presente. Viene sempre usato il controllo predefinito `clang-analyzer-core.*` a meno che non venga disabilitato in modo esplicito.",
|
||||
"c_cpp.configuration.codeAnalysis.clangTidy.checks.disabled.markdownDescription": "Elenco dei controlli `clang-tidy` disabilitati. I valori vengono aggiunti a `Checks` in un file `.clang-tidy` o `#C_Cpp.codeAnalysis.clangTidy.config#`, se presente.",
|
||||
"c_cpp.configuration.formatting.description": "Configurare il motore di formattazione.",
|
||||
"c_cpp.configuration.formatting.clangFormat.markdownDescription": "Per formattare il codice, verrà usato `clang-format`.",
|
||||
@@ -210,6 +210,7 @@
|
||||
"c_cpp.configuration.preferredPathSeparator.markdownDescription": "Carattere utilizzato come separatore di percorso per i percorsi utente generati.",
|
||||
"c_cpp.configuration.simplifyStructuredComments.markdownDescription": "Se è `true`, le descrizioni comando al passaggio del mouse e del completamento automatico visualizzeranno solo alcune etichette di commenti strutturati. In caso contrario, vengono visualizzati tutti i commenti.",
|
||||
"c_cpp.configuration.doxygen.generateOnType.description": "Controlla se inserire automaticamente il commento Doxygen dopo aver digitato lo stile di commento scelto.",
|
||||
"c_cpp.configuration.doxygen.generateOnCodeAction.description": "Controllare se l'azione codice per generare un commento Doxygen è abilitata.",
|
||||
"c_cpp.configuration.doxygen.generatedStyle.description": "Stringa di caratteri utilizzata come riga iniziale del commento Doxygen.",
|
||||
"c_cpp.configuration.doxygen.sectionTags.description": "Seleziona i tag di sezione Doxygen da visualizzare al passaggio del mouse nell'area della descrizione comando quando è abilitata l'impostazione 'Semplifica commenti strutturati'. ",
|
||||
"c_cpp.configuration.commentContinuationPatterns.items.anyof.string.markdownDescription": "Criterio con cui inizia un blocco di commento su più righe o su una sola riga. Il criterio di continuazione è impostato su `* ` per i blocchi di commento su più righe o su questa stringa per i blocchi di commento su una sola riga.",
|
||||
@@ -390,6 +391,9 @@
|
||||
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "False se questa voce viene usata solo per il mapping dei percorsi dello stack frame. True se questa voce deve essere usata anche quando si specificano i percorsi dei punti di interruzione.",
|
||||
"c_cpp.debuggers.symbolOptions.description": "Opzioni per controllare il modo in cui vengono trovati e caricati i simboli (file PDB).",
|
||||
"c_cpp.debuggers.unknownBreakpointHandling.description": "Controllare la modalità di gestione dei punti di interruzione impostati esternamente (in genere tramite comandi GDB non elaborati) quando vengono selezionati.\nI valori consentiti sono \"throw\", che funziona come se fosse stata generata un'eccezione dall'applicazione e \"stop\", che sospende solo la sessione di debug. Il valore predefinito è \"throw\".",
|
||||
"c_cpp.debuggers.debuginfod.description": "Controllare il comportamento di debuginfod in GDB per il download dei simboli di debug dai server debuginfod.",
|
||||
"c_cpp.debuggers.debuginfod.enabled.description": "Se true (impostazione predefinita), il supporto a debuginfod di GDB è abilitato. Impostare su false per impedire a GDB di contattare i server debuginfod.",
|
||||
"c_cpp.debuggers.debuginfod.timeout.description": "Il timeout in secondi per le richieste al server debuginfod. Il valore predefinito è 30. Impostare su 0 per usare le impostazioni predefinite di GDB/libdebuginfod (senza override).",
|
||||
"c_cpp.debuggers.VSSymbolOptions.description": "Fornisce la configurazione per l'individuazione e il caricamento dei simboli nell'adattatore di debug.",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchPaths.description": "Matrice di URL del server dei simboli, ad esempio http://MyExampleSymbolServer, o di directory, ad esempio /build/symbols, in cui eseguire la ricerca dei file PDB. La ricerca verrà eseguita in queste directory oltre che nei percorsi predefiniti, in aggiunta al modulo e al percorso in cui è stato rilasciato originariamente il file PDB.",
|
||||
"c_cpp.debuggers.VSSymbolOptions.searchMicrosoftSymbolServer.description": "Se 'true', il server dei simboli Microsoft (https://msdl.microsoft.com/download/symbols) viene aggiunto al percorso di ricerca dei simboli. Se non è specificata, l'impostazione predefinita di questa opzione è 'false'.",
|
||||
|
||||
@@ -4,5 +4,10 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"debugger.not.available": "Il tipo di debugger '{0}' non è disponibile per computer non Windows."
|
||||
"debugger.not.available": "Il tipo di debugger '{0}' non è disponibile per computer non Windows.",
|
||||
"debugger.noDebug.requestType.not.supported": "L'opzione Esegui senza debug è supportata solo per le configurazioni di avvio.",
|
||||
"debugger.noDebug.pipeTransport.not.supported": "L'opzione Esegui senza debug non è supportata per le configurazioni con \"pipeTransport\" impostato.",
|
||||
"debugger.noDebug.debugServerPath.not.supported": "L'opzione Esegui senza debug non è supportata per le configurazioni con \"debugServerPath\" impostato.",
|
||||
"debugger.noDebug.miDebuggerServerAddress.not.supported": "L'opzione Esegui senza debug non è supportata per le configurazioni con \"miDebuggerServerAddress\" impostato.",
|
||||
"debugger.noDebug.coreDumpPath.not.supported": "L'opzione Esegui senza debug non è supportata per le configurazioni con \"coreDumpPath\" impostato."
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
// Do not edit this file. It is machine generated.
|
||||
{
|
||||
"no.terminal.emulator": "Nessun emulatore di terminale trovato. Impostare la variabile d'ambiente $TERMINAL sull'emulatore del terminale preferito, oppure installarne uno dei seguenti: x-terminal-emulator, gnome-terminal, konsole, xterm."
|
||||
}
|
||||
@@ -319,5 +319,102 @@
|
||||
"file_not_found_in_path2": "\"{0}\" non è stato trovato nei file compile_commands.json. In alternativa per questo file verrà usato ''includePath'' del file c_cpp_properties.json nella cartella ''{1}''.",
|
||||
"copilot_hover_link": "Genera riepilogo Copilot",
|
||||
"browse_path_not_found": "Non è possibile indicizzare i file da una cartella non esistente: {0}",
|
||||
"license_terms": "L'estensione C/C++ può essere utilizzata solo con Microsoft Visual Studio, Visual Studio per Mac, Visual Studio Code, Azure DevOps, Team Foundation Server e i successori dei prodotti e servizi Microsoft per sviluppare e testare le tue applicazioni."
|
||||
"license_terms": "L'estensione C/C++ può essere utilizzata solo con Microsoft Visual Studio, Visual Studio per Mac, Visual Studio Code, Azure DevOps, Team Foundation Server e i successori dei prodotti e servizi Microsoft per sviluppare e testare le tue applicazioni.",
|
||||
"help_title": "Server di linguaggio Microsoft C++",
|
||||
"help_usage": "Sintassi: {0} [opzioni]",
|
||||
"help_options_header": "Opzioni:",
|
||||
"help_help": "Visualizza questo messaggio della Guida ed esce.",
|
||||
"help_version": "Visualizza le informazioni sulla versione ed esce.",
|
||||
"help_accept_eula": "Accettare definitivamente il Contratto di licenza con l'utente finale (EULA).",
|
||||
"help_stderr": "Non reindirizzare stderr a /dev/null (utile per il debug).",
|
||||
"help_login": "Avviare l'accesso interattivo (è necessaria la sottoscrizione a GitHub Copilot).",
|
||||
"help_force_login": "Forzare il processo di accesso, anche se l'autenticazione è già stata eseguita.",
|
||||
"help_allow_plaintext": "Consentire l'archiviazione delle credenziali in testo non crittografato se non è disponibile un keychain sicuro.",
|
||||
"help_log_dir": "Specificare la directory per i file di lg (impostazione predefinita: directory temporanea di sistema).",
|
||||
"help_log_level": "Impostare il livello di dettaglio dei log da 0 (solo errori) a 9 (dettagliato).",
|
||||
"help_lsp_config": "Specificare il parametro come percorso assoluto o rispetto alla radice dell'area di lavoro o alla relativa cartella .github.",
|
||||
"help_disable_telemetry": "Disabilitare l'invio dei dati di telemetria.",
|
||||
"auth_device_flow_prompt": "Per autenticarsi con GitHub, copiare il codice {0} e quindi visitare {1}. In attesa dell'autorizzazione...",
|
||||
"auth_timed_out": "Timeout durante l'attesa di autorizzazione.",
|
||||
"auth_success": "Autenticazione con GitHub riuscita.",
|
||||
"auth_save_failed": "L'autenticazione con GitHub è riuscita, ma non è stato possibile salvare i token.",
|
||||
"auth_keyring_error": "Errore keyring: {0}",
|
||||
"auth_keyring_locked": "La raccolta keyring è bloccata. Sbloccarla o riavviare gnome-keyring-daemon.",
|
||||
"auth_keyring_unavailable": "Nessun servizio keyring disponibile. Installare e avviare gnome-keyring: sudo apt install gnome-keyring",
|
||||
"auth_try_plaintext": "In alternativa, consentire l'archiviazione di testo non crittografato passando --login --allow-plaintext-secret-storage.",
|
||||
"auth_expired": "Il codice del dispositivo è scaduto. Riprovare.",
|
||||
"auth_denied": "Autorizzazione negata dall'utente.",
|
||||
"auth_unexpected_error": "Errore imprevisto durante il polling: {0}",
|
||||
"auth_login_failed": "Accesso a GitHub non riuscito. Per eseguire l'accesso, provare a eseguire --login dalla riga di comando.",
|
||||
"auth_eula_required": "Per continuare, è necessario accettare il contratto di licenza con l'utente finale. Eseguire con --accept-eula.",
|
||||
"auth_already_authenticated": "Autenticazione con GitHub già eseguita. Usare --force-login per ripetere l'autenticazione.",
|
||||
"config_unsupported_version": "Inizializzazione non riuscita: versione di configurazione non supportata. È supportata solo la versione 1.",
|
||||
"config_file_not_found": "Inizializzazione non riuscita: file di configurazione '{0}' non trovato.",
|
||||
"config_parse_failed": "Inizializzazione non riuscita:non è possibile analizzare il file di configurazione '{0}'. Verificare il formato JSON. Errore: {1}",
|
||||
"config_repo_path_invalid": "Inizializzazione non riuscita: 'repositoryPath' non è configurato o non è valido.",
|
||||
"config_missing_source": "Inizializzazione non riuscita: è necessario configurare 'compileCommands' o 'cppProperties'.",
|
||||
"config_dual_source": "Inizializzazione non riuscita: non è possibile configurare sia 'compileCommands' sia 'cppProperties'.",
|
||||
"config_compile_commands_not_found": "Inizializzazione non riuscita: percorso di 'compileCommands' non trovato: '{0}'.",
|
||||
"config_cpp_properties_not_found": "Inizializzazione non riuscita: percorso 'cppProperties' non trovato: '{0}'.",
|
||||
"config_cpp_properties_parse_failed": "Inizializzazione non riuscita: non è possibile analizzare il file specificato da 'cppProperties': '{0}'. Verificare il formato JSON. Errore: {1}",
|
||||
"config_cpp_properties_schema_invalid": "Inizializzazione non riuscita: non è possibile leggere la configurazione dal file 'cppProperties': '{0}'. Verificare lo schema.",
|
||||
"config_no_configurations": "Inizializzazione non riuscita: '{0}' non contiene una matrice 'configurations' valida.",
|
||||
"config_configuration_not_found": "Inizializzazione non riuscita: la configurazione '{0}' non è stata trovata nel file 'cppProperties': '{1}'.",
|
||||
"config_paths_cache_missing": "Inizializzazione non riuscita: manca la cache dei percorsi di configurazione LSP.",
|
||||
"curl_not_found": "libcurl non trovato ({0}). libcurl è necessario per l'autenticazione e la telemetria.",
|
||||
"curl_install_macos": "Per impostazione predefinita libcurl dovrebbe essere disponibile in macOS. Se non è presente, installarlo con: brew install curl",
|
||||
"curl_install_linux": "Installare libcurl: sudo apt install libcurl4 (Debian/Ubuntu) o sudo dnf install libcurl (Fedora/RHEL).",
|
||||
"curl_symbols_missing": "libcurl è stato scaricato ma mancano i simboli necessari. Ciò potrebbe indicare una versione di libcurl molto obsoleta o incompatibile. Il server di linguaggio non può funzionare senza una versione compatibile di libcurl.",
|
||||
"keytar_not_found": "libsecret-1.so.0 non trovato ({0}). libsecret è necessario per l'archiviazione sicura delle credenziali. Installare libsecret: sudo apt install libsecret-1-0 (Debian/Ubuntu) o sudo dnf install libsecret (Fedora/RHEL).",
|
||||
"keytar_symbols_missing": "libsecret è stato caricato, ma mancano i simboli necessari. Il server di linguaggio non può funzionare senza una versione compatibile di libsecret.",
|
||||
"telemetry_disable_failed": "Disabilitazione della telemetria non riuscita.",
|
||||
"lsp_method_not_found": "Metodo non trovato: {0}",
|
||||
"intellisense_same_canonical_path": "Non è possibile elaborare IntelliSense per un file con lo stesso percorso canonico di un file esistente. URI: {0}, percorso canonico: {1}",
|
||||
"status_initializing": "Inizializzazione",
|
||||
"status_initializing_with_n_of_m": "Inizializzazione ({0} di {1})",
|
||||
"status_initializing_with_n_of_m_and_text": "Inizializzazione ({0} di {1}): {2}",
|
||||
"status_initializing_with_text": "Inizializzazione di {0}",
|
||||
"status_initializing_projects": "Inizializzazione dei progetti",
|
||||
"status_initializing_projects_with_n_of_m": "Inizializzazione dei progetti ({0} di {1})",
|
||||
"status_initializing_projects_with_n_of_m_and_text": "Inizializzazione dei progetti ({0} di {1}): {2}",
|
||||
"status_initializing_projects_with_text": "Inizializzazione dei progetti {0}",
|
||||
"status_checking_for_outdated_files": "Verifica della presenza di file non aggiornati",
|
||||
"status_checking_for_outdated_files_with_n_of_m": "Verifica della presenza di file non aggiornati ({0} di {1})",
|
||||
"status_checking_for_outdated_files_with_n_of_m_and_text": "Verifica della presenza di file non aggiornati ({0} di {1}): {2}",
|
||||
"status_checking_for_outdated_files_with_text": "Verifica della presenza di file non aggiornati {0}",
|
||||
"status_parsing_files": "Analisi dei file",
|
||||
"status_parsing_files_with_n_of_m": "Analisi dei file ({0} di {1})",
|
||||
"status_parsing_files_with_n_of_m_and_text": "Analisi dei file ({0} di {1}): {2}",
|
||||
"status_parsing_files_with_text": "Analisi dei file {0}",
|
||||
"status_parsing_includes": "Analisi dei file inclusi",
|
||||
"status_parsing_includes_with_n_of_m": "Analisi dei file inclusi ({0} di {1})",
|
||||
"status_parsing_includes_with_n_of_m_and_text": "Analisi dei file inclusi ({0} di {1}): {2}",
|
||||
"status_parsing_includes_with_text": "Analisi dei file inclusi {0}",
|
||||
"status_scanning_includes": "Analisi di #includes per la verifica di altri file",
|
||||
"status_scanning_includes_with_n_of_m": "Analisi di #includes per la verifica di altri file ({0} di {1})",
|
||||
"status_scanning_includes_with_n_of_m_and_text": "Analisi di #includes per la verifica di altri file ({0} di {1}): {2}",
|
||||
"status_scanning_includes_with_text": "Analisi di #includes per la verifica di altri file {0} {1}",
|
||||
"status_updating_external_dependencies": "Abilitato (aggiornamento dipendenze esterne)",
|
||||
"status_updating_external_dependencies_with_n_of_m": "Pronto (Aggiornamento delle dipendenze esterne) ({0} di {1})",
|
||||
"status_updating_external_dependencies_with_n_of_m_and_text": "Pronto (Aggiornamento delle dipendenze esterne) ({0} di {1}): {2}",
|
||||
"status_updating_external_dependencies_with_text": "Pronto (Aggiornamento delle dipendenze esterne) {0}",
|
||||
"status_optimizing_database": "Pronto (Ottimizzazione del database)",
|
||||
"status_optimizing_database_with_n_of_m": "Pronto (Ottimizzazione del database) ({0} di {1})",
|
||||
"status_optimizing_database_with_n_of_m_and_text": "Pronto (Ottimizzazione del database) ({0} di {1}): {2}",
|
||||
"status_optimizing_database_with_text": "Pronto (Ottimizzazione del database) {0}",
|
||||
"status_creating_indexes": "Creazione di indici",
|
||||
"status_creating_indexes_with_n_of_m": "Creazione degli indici ({0} di {1})",
|
||||
"status_creating_indexes_with_n_of_m_and_text": "Creazione degli indici ({0} di {1}): {2}",
|
||||
"status_creating_indexes_with_text": "Creazione di indici {0}",
|
||||
"status_evaluating_file": "Valutazione",
|
||||
"status_evaluating_file_with_n_of_m": "Valutazione ({0} di {1})",
|
||||
"status_evaluating_file_with_n_of_m_and_text": "Valutazione ({0} di {1}): {2}",
|
||||
"status_evaluating_file_with_text": "Valutazione di {0}",
|
||||
"status_indexing_files": "Indicizzazione dei file",
|
||||
"status_indexing_files_with_n_of_m": "Indicizzazione dei file ({0} di {1})",
|
||||
"status_indexing_files_with_n_of_m_and_text": "Indicizzazione dei file ({0} di {1}): {2}",
|
||||
"status_indexing_files_with_text": "Indicizzazione dei file {0}",
|
||||
"help_allow_missing_lsp_config": "Consentire l'avvio del server anche se il file --lsp-config specificato non esiste.",
|
||||
"initialize_failed_during_engine_setup": "Inizializzazione non riuscita durante la configurazione del motore.",
|
||||
"important_label": "Importante:"
|
||||
}
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "Installa un compilatore C++ in Windows",
|
||||
"walkthrough.windows.text1": "Se si sviluppa in C++ per Windows, è consigliabile installare il compilatore Microsoft Visual C++ (MSVC).",
|
||||
"walkthrough.windows.text2": "Per installare MSVC, aprire il terminale VS Code (CTRL+ `) e incollare il comando seguente:\n",
|
||||
"walkthrough.windows.text2": "Per installare MSVC, aprire il terminale VS Code (CTRL+ `) e incollare il comando seguente:",
|
||||
"walkthrough.windows.note1": "Nota",
|
||||
"walkthrough.windows.note1.text": "È possibile usare il set di strumenti C++ di Visual Studio Build Tools insieme a Visual Studio Code per compilare, creare e verificare qualsiasi codebase C++, purché sia disponibile una licenza di Visual Studio valida (Community, Pro o Enterprise) usata attivamente per sviluppare la codebase C++.",
|
||||
"walkthrough.windows.verify.compiler": "Verifica dell'installazione del compilatore",
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"walkthrough.windows.install.compiler": "Installa un compilatore C++ in Windows",
|
||||
"walkthrough.windows.text1": "Se si sviluppa in C++ per Windows, è consigliabile installare il compilatore Microsoft Visual C++ (MSVC).",
|
||||
"walkthrough.windows.text2": "Per installare MSVC, aprire il terminale VS Code (CTRL+ `) e incollare il comando seguente:\n",
|
||||
"walkthrough.windows.text2": "Per installare MSVC, aprire il terminale VS Code (CTRL+ `) e incollare il comando seguente:",
|
||||
"walkthrough.windows.note1": "Nota",
|
||||
"walkthrough.windows.note1.text": "È possibile usare il set di strumenti C++ di Visual Studio Build Tools insieme a Visual Studio Code per compilare, creare e verificare qualsiasi codebase C++, purché sia disponibile una licenza di Visual Studio valida (Community, Pro o Enterprise) usata attivamente per sviluppare la codebase C++.",
|
||||
"walkthrough.windows.verify.compiler": "Verifica dell'installazione del compilatore",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user